.
BIN
Bilder/Strom-Unten.jpg
Normal file
After ![]() (image error) Size: 140 KiB |
5
Eingang/Markdown-Howto.md
Normal file
@ -0,0 +1,5 @@
|
||||
Title : Markdown-Howto.md
|
||||
===
|
||||
|
||||
## escape pipe (|) symbol while writing markdown tables
|
||||
Bar | xyz | 23 |
|
35
Eingang/RegEx-SearchPattern.md
Normal file
@ -0,0 +1,35 @@
|
||||
Title : RegEx-SearchPattern.md
|
||||
===
|
||||
|
||||
```PlainText
|
||||
((this)(.*\n)\*.*(that))|((that)(.*\n)\*.*(this))
|
||||
```
|
||||
```PlainText
|
||||
(this)
|
||||
```
|
||||
|
||||
= Word
|
||||
|
||||
```PlainText
|
||||
(.*\n)*.*
|
||||
```
|
||||
= alle Zeichen inkl neue Zeile
|
||||
```PlainText
|
||||
(that)
|
||||
```
|
||||
|
||||
= Word
|
||||
|
||||
```PlainText
|
||||
((this)(.*\n)*.*(that))
|
||||
```
|
||||
= ersten 2 Wörter
|
||||
|
||||
```PlainText
|
||||
|
|
||||
```
|
||||
= oder
|
||||
```PlainText
|
||||
((that)(.*\n)*.*(this))
|
||||
```
|
||||
= Eine Gruppe
|
103
Eingang/Regex.md
Normal file
@ -0,0 +1,103 @@
|
||||
Title : Regex.md
|
||||
===
|
||||
|
||||
## Common operators
|
||||
To define patterns to match, you can use these common operators:
|
||||
|
||||
|Operator|Description |Example |Returns |
|
||||
|--------|--------------|------------|---------------|
|
||||
|^ |Matches the beginning of a string |^abc |abc, abcdef..., abc123|
|
||||
|$ |Matches the end of a string |abc$ |my:abc, 123abc, theabc|
|
||||
|. |Matches any character as a wildcard |a.c |abc, asc, a123c|
|
||||
|| |An OR character |abc|xyz |abc or xyz|
|
||||
|(...) |Captures values in the parentheses |(a)b(c) |a and c|
|
||||
|[...] |Matches anything within the brackets |[abc] |a, b, or c|
|
||||
|[a-z] |Matches lowercase characters between a and z |[b-z] |bc, mind, xyz|
|
||||
|[0-9] |Matches any number values between 0 and 9 |[0-3] |3201|
|
||||
|{x} |The exact number of times to match |(abc){2} |abcabc|
|
||||
|{x,} |The minimum number of times to match |(abc){2,} |abcabcabc|
|
||||
|* |Matches anything in the place of the *, or a "greedy" match |ab*c |abc, abbcc, abcdc|
|
||||
|+ |Matches the character before the + one or more times |a+c |ac, aac, aaac|
|
||||
|? |Matches the character before the ? zero or one times, or a "non-greedy" match |ab?c |ac, abc|
|
||||
|/ |Escapes the character after the /, or creates an escape sequence |a/bc |a c, with the space matching the /b|
|
||||
|
||||
|
||||
|
||||
To use an operator's literal character within a pattern, not as regex:
|
||||
|
||||
- For a circumflex (^), period (.), open bracket ([), dollar sign ($), open or close parenthesis (() or ()), pipe (|), asterisk (*), plus sign (+), question mark (?), open brace ({), or backslash (\), follow it with the escape operator (\).
|
||||
- For an end bracket (]) or end brace (}), make it the first character, with or without an opening ^.
|
||||
- For a dash (-), make it the first or last character, or the second endpoint of a range.
|
||||
|
||||
_Tip: All characters within brackets are taken literally, and not as regex operators. For example, **[*\+?{}.]** matches any of the literal characters within the brackets._
|
||||
|
||||
## Match start or end of string (^ and $)
|
||||
To match patterns at the beginning or end of the string, use the operators **\^** and **\$** , respectively. For example:
|
||||
|
||||
|Example |Matches|
|
||||
|-----------|-------|
|
||||
|^The |Any string that starts with The|
|
||||
|of despair$ |Any string that ends with of despair|
|
||||
|^abc$ |A string that starts and ends with abc—an exact match|
|
||||
|
||||
_Tip: If neither **\^** or **\$** is used, the pattern matches any string that contains the characters specified. For example, notice—with no **^** or **$**—returns any string that contains notice._
|
||||
|
||||
|
||||
## Match characters (*, +, and ?)
|
||||
To match patterns based on a specific character, follow the character with the operator **\*, +, or ?**. These operators indicate the number of times the character should occur for a match—zero or more, one or more, or one or zero, respectively. For example:
|
||||
|
||||
|Example |Matches|
|
||||
|-------|-------|
|
||||
|ab* |A string that contains a, followed by zero or more bs—ac, abc, or abbc|
|
||||
|ab+ |A string that contains a, followed by one or more bs—abc or abbc, but not ac|
|
||||
|ab? |A string that contains a, followed by zero or one bs—ac or abc, but not abc|
|
||||
|a?b+$ |A string that ends with one or more bs, with or without a preceding a; for example, ab, abb, b, or bb, but not aab or aabb|
|
||||
|
||||
|
||||
## Match characters' frequency ({...} or (...))
|
||||
To match a pattern based on how often a single character occurs, follow it with the number or range of instances, wrapped in braces **({...})** . For example:
|
||||
|
||||
|Example |Matches|
|
||||
|-----|------|
|
||||
|ab{2} |A string that contains a, followed by exactly 2 bs—abb|
|
||||
|ab{2,} |A string that contains a, followed by at least 2 bs—abb, abbbb, etc.|
|
||||
|ab{3,5} |A string that contains a, followed by three to five bs—abbb, abbbb, or abbbbb|
|
||||
|
||||
|
||||
_Tip: Always specify the first number of a range—{0,2}, not {,2}. Instead of the ranges <span style="color:red">{0,}</span>{0,}, {1,}, or {0,1}, you can use the operators *, +, or ?, respectively._
|
||||
|
||||
To match a pattern based on how often a sequence of characters occurs, wrap it in parentheses **((...))**. For example, **a(bc){1,5}** matches a string that contains a, followed by one to five instances of bc.
|
||||
|
||||
## Match one of multiple patterns (|)
|
||||
To match one of multiple patterns—such as this OR that—use the OR operator **|** . For example:
|
||||
|
||||
|Example |Matches|
|
||||
|-----|-----|
|
||||
|hi|hello |A string that contains either hi or hello|
|
||||
|(b|cd)ef |A string that contains either bef or cdef|
|
||||
|(a | b)*c |A string that has a sequence of alternating as and bs, ending with <span style="color:red">c</span>|
|
||||
|
||||
## Match any character (.)
|
||||
To represent any character in a pattern to match, use the wildcard operator **.** . For example:
|
||||
|
||||
|Example |Matches|
|
||||
|----|-----|
|
||||
|a.[0-9] |A string that contains a, followed by any character and a digit|
|
||||
|^.{3}$ |Any string of exactly three characters|
|
||||
|
||||
|
||||
## Match character position ([...])
|
||||
To match a pattern based on the position of a character, use brackets **([...])**. For example:
|
||||
|
||||
|Example |Matches|
|
||||
|----|-----|
|
||||
|[ab] |A string that contains either a or b; equivalent to a|b|
|
||||
|[a-d]|A string that contains a lowercase a, b, c, or d; equivalent to a|b|c|d or [abcd]|
|
||||
| ^[a-zA-Z] |A string that starts with any letter, regardless of case|
|
||||
| [0-9]% |A string that contains any single digit followed by a percent sign|
|
||||
| ,[a-zA-Z0-9]$ |A string that ends with a comma followed by any character|
|
||||
|
||||
_Note: All characters within brackets are taken literally, and not as regex operators. For example, **[*\+?{}.]** matches any of the literal characters within the brackets._
|
||||
|
||||
## Match unwanted characters ([^...])
|
||||
To match a pattern that does not contain characters, start the sequence with an **^** operator, and wrap it in brackets. For example, **%[^a-zA-z]%** matches a string with any non-letter character between two percent signs.
|
5
Eingang/Strom-unten.md
Normal file
@ -0,0 +1,5 @@
|
||||
Title : Strom-unten.md
|
||||
===
|
||||
|
||||
|
||||
#zuhause
|
160
Eingang/StromOben.drawio
Normal file
@ -0,0 +1,160 @@
|
||||
<mxfile host="65bd71144e">
|
||||
<diagram id="4ZEtLMbl5nhnnBWow9lm" name="Page-1">
|
||||
<mxGraphModel dx="1058" dy="1314" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
|
||||
<root>
|
||||
<mxCell id="0"/>
|
||||
<mxCell id="1" parent="0"/>
|
||||
<mxCell id="2" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="130" y="80" as="sourcePoint"/>
|
||||
<mxPoint x="400" y="80" as="targetPoint"/>
|
||||
<Array as="points">
|
||||
<mxPoint x="250" y="80"/>
|
||||
</Array>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="3" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="400" y="630" as="sourcePoint"/>
|
||||
<mxPoint x="400" y="80" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="4" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="400" y="630" as="sourcePoint"/>
|
||||
<mxPoint x="690" y="630" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="5" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="690" y="920" as="sourcePoint"/>
|
||||
<mxPoint x="690" y="630" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="6" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="210" y="920" as="sourcePoint"/>
|
||||
<mxPoint x="690" y="920" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="7" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="460" y="910" as="sourcePoint"/>
|
||||
<mxPoint x="460" y="760" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="8" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="460" y="710" as="sourcePoint"/>
|
||||
<mxPoint x="460" y="630" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="9" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="360" y="710" as="sourcePoint"/>
|
||||
<mxPoint x="360" y="630" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="10" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="360" y="630" as="sourcePoint"/>
|
||||
<mxPoint x="400" y="630" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="11" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="360" y="710" as="sourcePoint"/>
|
||||
<mxPoint x="460" y="710" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="12" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="460" y="760" as="sourcePoint"/>
|
||||
<mxPoint x="320" y="760" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="13" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="290" y="760" as="sourcePoint"/>
|
||||
<mxPoint x="210" y="760" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="14" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="210" y="920" as="sourcePoint"/>
|
||||
<mxPoint x="210" y="700" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="15" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="210" y="670" as="sourcePoint"/>
|
||||
<mxPoint x="210" y="630" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="16" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="120" y="630" as="sourcePoint"/>
|
||||
<mxPoint x="210" y="630" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="17" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="120" y="630" as="sourcePoint"/>
|
||||
<mxPoint x="120" y="80" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="18" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="260" y="240" as="sourcePoint"/>
|
||||
<mxPoint x="400" y="240" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="19" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="120" y="240" as="sourcePoint"/>
|
||||
<mxPoint x="210" y="240" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="20" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="270" y="440" as="sourcePoint"/>
|
||||
<mxPoint x="270" y="240" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="21" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="210" y="290" as="sourcePoint"/>
|
||||
<mxPoint x="210" y="240" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="22" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="210" y="540" as="sourcePoint"/>
|
||||
<mxPoint x="210" y="320" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="23" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="120" y="350" as="sourcePoint"/>
|
||||
<mxPoint x="210" y="350" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="24" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="210" y="630" as="sourcePoint"/>
|
||||
<mxPoint x="210" y="590" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="25" value="" style="rounded=0;whiteSpace=wrap;html=1;rotation=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="310" y="400" width="90" height="60" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="26" value="" style="rounded=0;whiteSpace=wrap;html=1;rotation=-90;" vertex="1" parent="1">
|
||||
<mxGeometry x="290" y="290" width="160" height="60" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="27" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="270" y="240" width="70" height="60" as="geometry"/>
|
||||
</mxCell>
|
||||
</root>
|
||||
</mxGraphModel>
|
||||
</diagram>
|
||||
</mxfile>
|
0
Eingang/StromUnten.drawio
Normal file
157
Eingang/Terrassendach.drawio
Normal file
@ -0,0 +1,157 @@
|
||||
<mxfile host="65bd71144e">
|
||||
<diagram id="sFGF_1-4LDypjgZcpteu" name="Page-1">
|
||||
<mxGraphModel dx="905" dy="768" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
|
||||
<root>
|
||||
<mxCell id="0"/>
|
||||
<mxCell id="1" parent="0"/>
|
||||
<mxCell id="2" value="8 cm" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="70" y="80" width="640" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="3" value="4 CM" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="70" y="80" width="20" height="330" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="4" value="8 cm" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="190" y="80" width="20" height="330" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="5" value="8 cm" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="300" y="80" width="20" height="330" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="6" value="8 cm" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="415" y="80" width="20" height="330" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="7" value="8 cm" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="550" y="80" width="20" height="330" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="8" value="4 cm" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="690" y="80" width="20" height="330" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="9" value="8 cm" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="70" y="340" width="640" height="20" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="10" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="70" y="80" as="sourcePoint"/>
|
||||
<mxPoint x="70" y="30" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="11" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="709" y="80" as="sourcePoint"/>
|
||||
<mxPoint x="709" y="30" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="12" value="616,5" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="310" y="40" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="18" value="" style="edgeStyle=none;html=1;" edge="1" parent="1" source="13" target="14">
|
||||
<mxGeometry relative="1" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="13" value="127,5" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="110" y="100" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="14" value="300" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="110" y="220" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="16" value="" style="endArrow=none;html=1;exitX=1.136;exitY=0.122;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" source="3" target="13">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="110" y="180" as="sourcePoint"/>
|
||||
<mxPoint x="160" y="130" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="17" value="" style="endArrow=none;html=1;entryX=1;entryY=0.5;entryDx=0;entryDy=0;exitX=-0.179;exitY=0.106;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" source="4" target="13">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="180" y="130" as="sourcePoint"/>
|
||||
<mxPoint x="120" y="136.21304347826072" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="19" value="" style="edgeStyle=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="139.57999999999998" y="330" as="sourcePoint"/>
|
||||
<mxPoint x="139.57999999999998" y="240" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="20" value="128" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="230" y="120" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="21" value="30" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="30" y="380" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="22" value="346" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="40" y="210" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="23" value="95" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="340" y="110" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="24" value="113" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="600" y="110" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="26" value="110" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="470" y="120" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="27" value="127" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="240" y="310" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="28" value="96" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="330" y="300" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="29" value="303" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="630" y="200" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="30" value="349" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="740" y="210" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="31" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="80" y="480" as="sourcePoint"/>
|
||||
<mxPoint x="80" y="430" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="32" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="199.57999999999998" y="480" as="sourcePoint"/>
|
||||
<mxPoint x="199.57999999999998" y="430" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="33" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="309.99999999999994" y="480" as="sourcePoint"/>
|
||||
<mxPoint x="309.99999999999994" y="430" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="34" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="425" y="480" as="sourcePoint"/>
|
||||
<mxPoint x="425" y="430" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="35" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="559.58" y="480" as="sourcePoint"/>
|
||||
<mxPoint x="559.58" y="430" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="36" value="" style="endArrow=none;html=1;" edge="1" parent="1">
|
||||
<mxGeometry width="50" height="50" relative="1" as="geometry">
|
||||
<mxPoint x="699.5799999999999" y="480" as="sourcePoint"/>
|
||||
<mxPoint x="699.5799999999999" y="430" as="targetPoint"/>
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="38" value="135,5" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="120" y="450" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="39" value="135" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="240" y="440" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="40" value="104,75" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="340" y="440" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="41" value="119,5" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="460" y="440" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
<mxCell id="42" value="121,75" style="text;strokeColor=none;align=center;fillColor=none;html=1;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
|
||||
<mxGeometry x="590" y="440" width="60" height="30" as="geometry"/>
|
||||
</mxCell>
|
||||
</root>
|
||||
</mxGraphModel>
|
||||
</diagram>
|
||||
</mxfile>
|
39
Eingang/Xpenology.md
Normal file
@ -0,0 +1,39 @@
|
||||
d
|
||||
|
||||
|
||||
Festplatten :
|
||||
```Plaintext
|
||||
sudo hdparm -I /dev/sdc
|
||||
```
|
||||
/dev/sdd:
|
||||
|
||||
Auf Sata Port 4
|
||||
ATA device, with non-removable media
|
||||
Model Number: WDC WD80EFBX-68AZZN0
|
||||
Serial Number: VGKH69PG
|
||||
Firmware Revision: 85.00A85
|
||||
|
||||
WWN Device Identifier: 5000cca0bef12fc6
|
||||
|
||||
/dev/sdf:
|
||||
|
||||
Auf SATA Port 6
|
||||
ATA device, with non-removable media
|
||||
Model Number: WDC WD80EFBX-68AZZN0
|
||||
Serial Number: VGJWB4YG
|
||||
Firmware Revision: 85.00A85
|
||||
|
||||
WWN Device Identifier: 5000cca0bee89eeb
|
||||
|
||||
/dev/sdb:
|
||||
|
||||
auf SATA Port 2
|
||||
ATA device, with non-removable media
|
||||
Model Number: WDC WD80EFBX-68AZZN0
|
||||
Serial Number: VGJZBHKG
|
||||
Firmware Revision: 85.00A85
|
||||
|
||||
WWN Device Identifier: 5000cca0bee9fd51
|
||||
|
||||
|
||||
#xpenology, #Raid, #Ausstattung
|
14
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/filelist.xml
Normal file
@ -0,0 +1,14 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../00_Ausdruck.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="image002.png"/>
|
||||
<o:File HRef="image003.png"/>
|
||||
<o:File HRef="image004.png"/>
|
||||
<o:File HRef="image005.png"/>
|
||||
<o:File HRef="image006.png"/>
|
||||
<o:File HRef="image007.png"/>
|
||||
<o:File HRef="image008.png"/>
|
||||
<o:File HRef="image009.png"/>
|
||||
<o:File HRef="image010.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
BIN
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/image001.png
Normal file
After ![]() (image error) Size: 120 KiB |
BIN
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/image002.png
Normal file
After ![]() (image error) Size: 42 KiB |
BIN
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/image003.png
Normal file
After ![]() (image error) Size: 70 KiB |
BIN
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/image004.png
Normal file
After ![]() (image error) Size: 128 KiB |
BIN
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/image005.png
Normal file
After ![]() (image error) Size: 29 KiB |
BIN
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/image006.png
Normal file
After ![]() (image error) Size: 38 KiB |
BIN
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/image007.png
Normal file
After ![]() (image error) Size: 119 KiB |
BIN
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/image008.png
Normal file
After ![]() (image error) Size: 128 KiB |
BIN
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/image009.png
Normal file
After ![]() (image error) Size: 33 KiB |
BIN
OneNoteExport/KK/Hardware/00_Ausdruck-Dateien/image010.png
Normal file
After ![]() (image error) Size: 25 KiB |
290
OneNoteExport/KK/Hardware/00_Ausdruck.md
Normal file
@ -0,0 +1,290 @@
|
||||
Title : Ausdruck.md
|
||||
===================
|
||||
|
||||
Dienstag, 18. Mai 2021
|
||||
|
||||
11:47
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
Vertraulich
|
||||
|
||||
Netzwerk
|
||||
|
||||
IP Adressraum
|
||||
|
||||
Netzmaske
|
||||
|
||||
Default Router
|
||||
|
||||
kck
|
||||
|
||||
Server-DC File
|
||||
|
||||
Server-DC File
|
||||
|
||||
Citrix Server (K-TS2
|
||||
|
||||
Neuer Server 05/2019
|
||||
|
||||
HyperV
|
||||
|
||||
Hostname
|
||||
|
||||
Hardware
|
||||
|
||||
IP iLO
|
||||
|
||||
Speicher System
|
||||
|
||||
Speicher Daten
|
||||
|
||||
RAM
|
||||
|
||||
Hostname
|
||||
|
||||
VM Ressourcen
|
||||
|
||||
Dienste
|
||||
|
||||
VM2
|
||||
|
||||
Hostname
|
||||
|
||||
VM Ressourcen
|
||||
|
||||
Dienste
|
||||
|
||||
VM3
|
||||
|
||||
Hostname
|
||||
|
||||
VM Ressourcen
|
||||
|
||||
Dienste
|
||||
|
||||
Drucker Laserjet 5
|
||||
|
||||
Drucker Kyocera
|
||||
|
||||
192.168.11
|
||||
|
||||
255.255.255.0
|
||||
|
||||
192.168.11.1
|
||||
|
||||
192.168.11.2 \"ALT!!
|
||||
|
||||
192.168.11.3 !!ALT!! aber noch aktiv für Renostar
|
||||
|
||||
192.168.11.6
|
||||
|
||||
ILO .11.26
|
||||
|
||||
ILO Pw-Hinweis Def+ 1..4
|
||||
|
||||
Windows SRV 2019
|
||||
|
||||
k-hvl. kossen. local
|
||||
|
||||
HP DL380Gen10 (Inkl iL05 Adv. Lic)
|
||||
|
||||
192.168.11.10
|
||||
|
||||
192.168.11.9 ( admin 1 kck\$2019SE )
|
||||
|
||||
HyperV ist auf Raidl SSDs 240GB installiert
|
||||
|
||||
1,2TB im Raid5
|
||||
|
||||
64GB
|
||||
|
||||
Windows SRV 2019
|
||||
|
||||
.11
|
||||
|
||||
k-dcl. kossen.local
|
||||
|
||||
HD:800GB RAM:16GB CPU-Kerne.•2/4
|
||||
|
||||
AD,DNS,FileServer, Kerio
|
||||
|
||||
Wndows SRV 2019
|
||||
|
||||
.12
|
||||
|
||||
k-apl. kossen.local
|
||||
|
||||
HD.•500GB RAM: 16GB CPU-Kerne:2/4
|
||||
|
||||
RA-Micro
|
||||
|
||||
Wndows SRV 2019
|
||||
|
||||
.13
|
||||
|
||||
k-rdsl. kossen. local
|
||||
|
||||
HD:500GB RAM:16GB CPU-Kerne:2/4
|
||||
|
||||
RDS
|
||||
|
||||
192.168.11.11 Port 9100 Protokoll RAW (alt)
|
||||
|
||||
192.168.11.30 (Kyocera FS-C5300DN KX)
|
||||
|
||||

|
||||
|
||||
Arbeitsplätze
|
||||
|
||||
Arbeitsplätze
|
||||
|
||||
Dr. Kossen
|
||||
|
||||
Empfang
|
||||
|
||||
Sekretariat 1
|
||||
|
||||
Sekretariat 2
|
||||
|
||||
Anwalt 2
|
||||
|
||||
Meyer-Gerhaü
|
||||
|
||||
Imme Aggen
|
||||
|
||||
Doris Gatermann
|
||||
|
||||
Login Name
|
||||
|
||||
SI (Suxdorf)
|
||||
|
||||
S2 (Henk)
|
||||
|
||||
RA2 (Poock)
|
||||
|
||||
MG ?
|
||||
|
||||
Ag
|
||||
|
||||
PC-Name
|
||||
|
||||
KOI
|
||||
|
||||
Empfang
|
||||
|
||||
Anwalt2
|
||||
|
||||
02
|
||||
|
||||
Standard Anwender ist Mitglied von Domäne-Benutzer, Renostar, Scan-Gruppe,
|
||||
|
||||
DSRMKennwort
|
||||
|
||||
kckS4SE
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
Datensicherung
|
||||
|
||||
Software
|
||||
|
||||
Ziell NAS
|
||||
|
||||
Zie12 LT06
|
||||
|
||||
Zeitplan
|
||||
|
||||
WLAN
|
||||
|
||||
Veeam installiert auf HyperV
|
||||
|
||||
Synlogy NAS 192.168.131.9 AD angebundenen
|
||||
|
||||
admin I PW wie Dom
|
||||
|
||||
Direkt am HyperV Angeschlossen
|
||||
|
||||
Start 21 h erst Platten anschließend Bandsicherung auf LTO
|
||||
|
||||
Allgemeines Passwort der Benutzer
|
||||
|
||||
1234
|
||||
|
||||
Administrator
|
||||
|
||||
WLAN-Ap
|
||||
|
||||
SSID
|
||||
|
||||
Passwort
|
||||
|
||||
DHCP
|
||||
|
||||
Verschlüsselung
|
||||
|
||||
Schlüssel
|
||||
|
||||
APDCK
|
||||
|
||||
kck34SE
|
||||
|
||||
aus
|
||||
|
||||
VivPA / VVPA2 mit Pre-shared key
|
||||
|
||||
SP46742F336
|
||||
|
||||
Sicherung der Konfiguration im Kundenordner abgelegt
|
||||
|
||||
WLAN-„Router
|
||||
|
||||
SSID
|
||||
|
||||
Kyocera FS-C5300DN
|
||||
|
||||
Schachtl = Blanko
|
||||
|
||||
Schacht2 = Brief
|
||||
|
||||
Thin Client (Rangee)
|
||||
|
||||
APDCKeller
|
||||
|
||||
SEkck34SE
|
||||
|
||||
Zugang
|
||||
|
||||
<https://192.168.11.70>
|
||||
|
||||
Admin / admin
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
Lancom Advanced VPN Client
|
||||
|
||||
Lizenz 9055-2819-5693-2554-1669 / Seriennr. 21043404
|
||||
|
||||
(veraltete Lizenz vor Version 2.3 nicht mehr gebrauchsfähig)
|
||||
|
||||
|
||||
10512-A2S9C-6STXB
|
||||

|
||||

|
||||
|
||||
Lancom Advanced VPN Client Lizenz 2014-02
|
||||
|
||||
70457575-5470-2550-4371 / 21186742
|
||||
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||
|
5
OneNoteExport/KK/Hardware/01_Router-Dateien/filelist.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../01_Router.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
BIN
OneNoteExport/KK/Hardware/01_Router-Dateien/image001.png
Normal file
After ![]() (image error) Size: 7.2 KiB |
137
OneNoteExport/KK/Hardware/01_Router.md
Normal file
@ -0,0 +1,137 @@
|
||||
Router
|
||||
|
||||
Donnerstag, 13. Mai 2021
|
||||
|
||||
18:25
|
||||
|
||||
|
||||
|
||||
VPN Zugänge :
|
||||
|
||||
|
||||
|
||||
68ralfkoop10130
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
ShrewVPN
|
||||
|
||||
|
||||
|
||||
4Lvku=Ep
|
||||
|
||||
Fqdn
|
||||
|
||||
SVPN_RalfKoop
|
||||
|
||||
IP 192.168.11.135
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Lancom Router 1781VAW
|
||||
|
||||
Seriennummer 4004396432100086
|
||||
|
||||
IP 192.168.11.1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Zugriff über 192.168.11.3 (K-srv-2)
|
||||
|
||||
Zugang : ohne Namen \"nur\" Passwort
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Lancom Support
|
||||
|
||||
Username :
|
||||
|
||||
ralfkoop@gmx.de
|
||||
|
||||
Passwort mN
|
||||
|
||||
|
||||
|
||||
Gespräch mit Herrn Wildensadt
|
||||
|
||||
|
||||
|
||||
Windows
|
||||
|
||||
VPN Zugänge welche gehören zu ihrer Firma?
|
||||
|
||||
1\. !-RE
|
||||
|
||||
100M-A J
|
||||
|
||||
100M-J R
|
||||
|
||||
110011-QQ
|
||||
|
||||
10011-QQ-WVW
|
||||
|
||||
RE-VIA-DT DNS
|
||||
|
||||
T- Entut
|
||||
|
||||
IPTV-Entut
|
||||
|
||||
Lizenzen
|
||||
|
||||
|
||||
|
||||
10011-aj qq
|
||||
|
||||
10011-jr mitarbeiter kck rehberg
|
||||
|
||||
10011-qq qq
|
||||
|
||||
10011-qq-wvw qq herr wildenrath pers fragen ob bleiben soll
|
||||
|
||||
10011-1wvw qq
|
||||
|
||||
k-mac2 kck
|
||||
|
||||
Kck kck
|
||||
|
||||
Kck-home kck
|
||||
|
||||
Kck-mac ????
|
||||
|
||||
Re-via-dtdns frau rehberg kck
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
Erfasster Bildschirmausschnitt: 25.05.2021 09:28
|
||||
|
||||
|
33
OneNoteExport/KK/Hardware/02_Backup.md
Normal file
@ -0,0 +1,33 @@
|
||||
Backup
|
||||
|
||||
Montag, 31. Mai 2021
|
||||
|
||||
18:05
|
||||
|
||||
|
||||
|
||||
Quantum BAckuplaufwerk
|
||||
|
||||
|
||||
|
||||
Nas :
|
||||
|
||||
IP 192.168.11.9
|
||||
|
||||
Synology
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Der K-TS2 (Physikalische Maschine) wird mit Windows backup auf K-SRV2 gesichert !!!
|
||||
|
||||
Am 12.11.2021 umgestellt auf Veeam.
|
||||
|
||||
|
||||
|
||||
Wie wird K-SRV2 gesichert ????? NovaBackup wohin ist nicht bekannt
|
||||
|
||||
Wen der Server wieder läuft, muß ich das Backup mal richtig Einrichten (erledigt!!!! Ist nun im Veeam integriert)
|
||||
|
||||
|
@ -0,0 +1,5 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../03_Email%20Settings.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
BIN
OneNoteExport/KK/Hardware/03_Email Settings-Dateien/image001.png
Normal file
After ![]() (image error) Size: 20 KiB |
17
OneNoteExport/KK/Hardware/03_Email Settings.md
Normal file
@ -0,0 +1,17 @@
|
||||
Email Settings
|
||||
|
||||
Samstag, 13. November 2021
|
||||
|
||||
11:58
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
Erfasster Bildschirmausschnitt: 13.11.2021 11:58
|
||||
|
||||
|
||||
|
||||
Hier war vorher 10011@qq-service.de
|
@ -0,0 +1,5 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../04_Rechner.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
BIN
OneNoteExport/KK/Hardware/04_Rechner-Dateien/image001.png
Normal file
After ![]() (image error) Size: 20 KiB |
273
OneNoteExport/KK/Hardware/04_Rechner.md
Normal file
@ -0,0 +1,273 @@
|
||||
Rechner
|
||||
|
||||
Dienstag, 20. Juli 2021
|
||||
|
||||
20:58
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
Rechner am Empfang:
|
||||
|
||||
|
||||
|
||||
Name k-TC-03
|
||||
|
||||
|
||||
|
||||
BS 32bit Windows Embedded Standard W7
|
||||
|
||||
|
||||
|
||||
Terra Thin Client 4 GB Ram
|
||||
|
||||
|
||||
|
||||
Ist nicht in der Domain
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
K-Sfirm
|
||||
|
||||
|
||||
|
||||
Name : kossen-SfirmPC
|
||||
|
||||
|
||||
|
||||
BS 64Bit Windows 10 Pro
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
IP 192.168.11.14
|
||||
|
||||
|
||||
|
||||
Laufwerke :
|
||||
|
||||
c:\\ 198 GB
|
||||
|
||||
|
||||
|
||||
Netzlaufwerke :
|
||||
|
||||
|
||||
|
||||
f:\\ [\\\\k-srv-2\\daten](file://k-srv-2/daten)
|
||||
|
||||
g:\\ [\\\\k-dc1\\daten](file://k-dc1/daten)
|
||||
|
||||
O:\\ [\\\\k-dc1\\ODT\$](file://k-dc1/ODT$)
|
||||
|
||||
R:\\ [\\\\k-ap1\\RA-Daten\$](file://k-ap1/RA-Daten$)
|
||||
|
||||
U:\\ [\\\\k-dc1\\administrator\$](file://k-dc1/administrator$)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
NB-3 Notebook Extern per VPN angebunden zuhause bei Frau Henck
|
||||
|
||||
|
||||
|
||||
Domain kossen.local
|
||||
|
||||
|
||||
|
||||
Benutzername kossen\\he
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{width="1.1041666666666667in" height="0.3125in"}
|
||||
|
||||
|
||||
|
||||
{width="0.75in" height="0.3333333333333333in"}
|
||||
|
||||
|
||||
|
||||
{width="1.1666666666666667in" height="0.2916666666666667in"}
|
||||
|
||||
|
||||
|
||||
**Rechner: Lampe-Schöne**
|
||||
|
||||
Windows 10 Prpo 20H2
|
||||
|
||||
IP 192.168.11.75
|
||||
|
||||
Hersteller Terra I5 Proz
|
||||
|
||||
PC Name K-PC-2
|
||||
|
||||
16 GB Ram
|
||||
|
||||
Laufwerk C 222 GB
|
||||
|
||||
Netzlaufwerke
|
||||
|
||||
f: Daten auf K-SVC-2
|
||||
|
||||
G: Daten auf K-DC-1
|
||||
|
||||
R: RA- Daten auf K-ap-1
|
||||
|
||||
|
||||
|
||||
**Rechner PC-3** (ältester Rechner)
|
||||
|
||||
Windows 10 Pro 21H1
|
||||
|
||||
|
||||
|
||||
IP 192.168.11.55
|
||||
|
||||
RAM 8GB
|
||||
|
||||
CPU 4 Core I3-6100
|
||||
|
||||
Festplatte SSD 240 GB
|
||||
|
||||
Teamviewer 372 175 937
|
||||
|
||||
|
||||
|
||||
**Rechner PC-S3** (ganz alter Rechner) Der wird neu gemacht
|
||||
|
||||
Windows 10 Pro 20H2 (64Bit)
|
||||
|
||||
Ram 4 GB
|
||||
|
||||
Intel Core I5-3470 4 Core\'s
|
||||
|
||||
Laufwerk C : 220 GB
|
||||
|
||||
Laufwerk D: nicht formatiert
|
||||
|
||||
Netzlaufwerk R: Daten auf k-ap1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Rechner K-PC-1
|
||||
|
||||
Windows 10 pro 21H1
|
||||
|
||||
CPU Intel Core I5-7200 4Cores
|
||||
|
||||
Ram 16GB
|
||||
|
||||
Laufwerk c: 240GB SSD
|
||||
|
||||
Netzlaufwerke :
|
||||
|
||||
G: Daten auf K-dc1
|
||||
|
||||
R: RA-Daten auf K-AP1
|
||||
|
||||
|
||||
|
||||
Rechner: K-PC-4
|
||||
|
||||
Windows 10 Pro 21H1
|
||||
|
||||
CPU Intel Core I5-7200 4 Core\'s
|
||||
|
||||
Ram 16 GB
|
||||
|
||||
Laufwerk c: 240 GB SSD
|
||||
|
||||
Netzlaufwerke :
|
||||
|
||||
G: Daten auf K-DC1
|
||||
|
||||
R: RA-Daten auf K-AP1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Rechner: K-PC03
|
||||
|
||||
Windows 10 Pro 21H1
|
||||
|
||||
CPU Intel I5 7200 4 Core\'s
|
||||
|
||||
RAM 16 GB
|
||||
|
||||
C: 240 GB SSD
|
||||
|
||||
Netzlaufwerke :
|
||||
|
||||
G: Daten auf K-DC1
|
||||
|
||||
R: RA-Daten auf K-AP1
|
||||
|
||||
K: kck-key\$ auf K-SRV-2
|
||||
|
||||
V: K\$ auf K-DC1
|
||||
|
||||
Z: SfirmV4 auf 192.168.11.14
|
||||
|
||||
|
||||
|
||||
Rechner: Desktop-AOJOUB9
|
||||
|
||||
Windows 10 Pro 20H2
|
||||
|
||||
CPU Intel I5 8259U 8 Core\'s
|
||||
|
||||
Ram 16 GB
|
||||
|
||||
Laufwerk C 800GB
|
||||
|
||||
Netzlaufwerke :
|
||||
|
||||
G: Daten auf K-DC1
|
||||
|
||||
R: RA-Daten auf K-AP1
|
||||
|
||||
U: he\$ auf K-DC1
|
||||
|
||||
|
||||
|
||||
Rechner : K-PC5 (Neuster Rechner Stand 03.2022)
|
||||
|
||||
|
||||
|
||||
192.168.11.56
|
||||
|
||||
CPU Intel Core I5-10210U
|
||||
|
||||
RAM 16GB
|
||||
|
||||
Laufwerk C 500 GB
|
||||
|
||||
Teamviewer 905 196 970
|
||||
|
||||
-.v...C...-
|
194
OneNoteExport/KK/Hardware/05_Server.md
Normal file
@ -0,0 +1,194 @@
|
||||
# Server
|
||||
|
||||
Samstag, 7. August 2021
|
||||
|
||||
12:37
|
||||
|
||||
|
||||
|
||||
Name K-TS1
|
||||
|
||||
## Name k-dc1
|
||||
|
||||
Virtuelle Maschine
|
||||
|
||||
16GB Ram
|
||||
|
||||
4 Prozessoren
|
||||
|
||||
IP 192.168.11.11
|
||||
|
||||
BS Windows Server 2019 Standard
|
||||
|
||||
|
||||
|
||||
Laufwerke :
|
||||
|
||||
C 800 GB
|
||||
|
||||
|
||||
|
||||
Netzlaufwerke
|
||||
|
||||
f:\\ [\\\\k-srv-2\\daten](file://k-srv-2/daten)
|
||||
|
||||
g:\\ [\\\\k-dc1\\daten](file://k-dc1/daten)
|
||||
|
||||
O:\\ [\\\\k-dc1\\ODT\$](file://k-dc1/ODT$)
|
||||
|
||||
R:\\ [\\\\k-ap1\\RA-Daten\$](file://k-ap1/RA-Daten$)
|
||||
|
||||
U:\\ [\\\\k-dc1\\administrator\$](file://k-dc1/administrator$)
|
||||
|
||||
|
||||
|
||||
## Name K-AP1
|
||||
|
||||
Virtuelle Maschine
|
||||
|
||||
8GB Ram
|
||||
|
||||
1 Prozessor
|
||||
|
||||
IP 192.168.11.12
|
||||
|
||||
BS Windows Server 2019 Stabdard
|
||||
|
||||
|
||||
|
||||
Laufwerke :
|
||||
|
||||
c:\\ 499 GB
|
||||
|
||||
|
||||
|
||||
Netzlaufwerke
|
||||
|
||||
f:\\ [\\\\k-srv-2\\daten](file://k-srv-2/daten)
|
||||
|
||||
g:\\ [\\\\k-dc1\\daten](file://k-dc1/daten)
|
||||
|
||||
O:\\ [\\\\k-dc1\\ODT\$](file://k-dc1/ODT$)
|
||||
|
||||
R:\\ [\\\\k-ap1\\RA-Daten\$](file://k-ap1/RA-Daten$)
|
||||
|
||||
U:\\ [\\\\k-dc1\\administrator\$](file://k-dc1/administrator$)
|
||||
|
||||
Name K-SRV-2
|
||||
|
||||
|
||||
|
||||
neu als VM gemacht vorher
|
||||
|
||||
Physik dl180 Gen9
|
||||
|
||||
BS Server 2012 R2 Standard
|
||||
|
||||
12 Cores
|
||||
|
||||
16 GB Ram
|
||||
|
||||
Ip 192.168.11.3
|
||||
|
||||
|
||||
|
||||
Laufwerke
|
||||
|
||||
c:\\ 195 GB
|
||||
|
||||
e:\\ 735 GB
|
||||
|
||||
|
||||
|
||||
Software :
|
||||
|
||||
Lanconfig
|
||||
|
||||
|
||||
|
||||
NAS :
|
||||
|
||||
| Synology Disk Station | DS218+ |
|
||||
|-----------------------|-----------------------|
|
||||
| Prozessor | INTEL Celeron J3355 |
|
||||
| Prozessor takt | 2GHz |
|
||||
| Cores | 2 |
|
||||
| RAM | 2GB |
|
||||
| Zeitserver | k-srv-2.kossen.local |
|
||||
| Netzwerk | |
|
||||
| IP | 192.168.11.9 |
|
||||
| httpAdresse | <http://k-nas1:5000/> |
|
||||
| Loginname | Admin |
|
||||
| | |
|
||||
|
||||
Name K-HV1
|
||||
|
||||
Physikalische Maschine
|
||||
|
||||
HP DL380 Gen 10
|
||||
|
||||
96 GB Ram. am 27.02.22 erweitert von 64gb
|
||||
|
||||
16 Prozessoren
|
||||
|
||||
IP 192.168.11.10
|
||||
|
||||
ILO Adresse. 192.168.11.2
|
||||
|
||||
BS Windows Server 2019 Standard
|
||||
|
||||
|
||||
|
||||
HyperV ist auf Raidl SSDs 240GB installiert
|
||||
|
||||
1,2TB im Raid5
|
||||
|
||||
1 762 139 464
|
||||
|
||||
Laufwerke :
|
||||
|
||||
C:\\ 222 GB
|
||||
|
||||
D:\\ 2,18 TB
|
||||
|
||||
|
||||
|
||||
Netzlaufwerk
|
||||
|
||||
N:\\ [\\\\k-nas1\\k-nas-dasi](file://k-nas1/k-nas-dasi)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Name K-RDS1
|
||||
|
||||
Name K-TS2
|
||||
|
||||
Physikalische Maschine
|
||||
|
||||
HP DL380 Gen 7
|
||||
|
||||
12GB Ram
|
||||
|
||||
8 Prozessoren
|
||||
|
||||
IP 192.168.11.6
|
||||
|
||||
BS Windows Server 2008 R2 Standard
|
||||
|
||||
|
||||
|
||||
Laufwerk C: 500 GB
|
||||
|
||||
|
||||
|
||||
Netzlaufwerk :
|
||||
|
||||
F: Daten auf K-SRV-1 (RenoStart)
|
||||
|
||||
|
||||
|
||||
Sicherung liegt auf dem SRV2 Server und wird mit Windows Backup durchgeführt !!!!!!
|
||||
|
||||
Umgestellt auf Veeam
|
@ -0,0 +1,5 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../06_Netzwerk.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
BIN
OneNoteExport/KK/Hardware/06_Netzwerk-Dateien/image001.png
Normal file
After ![]() (image error) Size: 225 KiB |
43
OneNoteExport/KK/Hardware/06_Netzwerk.md
Normal file
@ -0,0 +1,43 @@
|
||||
Netzwerk
|
||||
|
||||
Samstag, 7. August 2021
|
||||
|
||||
12:46
|
||||
|
||||
|
||||
|
||||
DNS Einträge :
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
Erfasster Bildschirmausschnitt: 07.08.2021 12:47
|
||||
|
||||
|
||||
|
||||
UM
|
||||
|
||||
{width="0.6041666666666666in" height="0.2708333333333333in"}{width="0.5416666666666666in" height="0.14583333333333334in"}
|
||||
|
||||
> Handrums
|
||||
>
|
||||
> Hardware
|
||||
|
||||
Nicht mehr
|
||||
|
||||
erreichbar
|
||||
|
||||
{width="0.75in" height="0.3333333333333333in"}{width="0.6875in" height="0.16666666666666666in"}{width="1.25in" height="0.5208333333333334in"}
|
||||
|
||||
Hardware
|
43
OneNoteExport/KK/Hardware/07_Drucker.md
Normal file
@ -0,0 +1,43 @@
|
||||
Drucker
|
||||
|
||||
Donnerstag, 4. November 2021
|
||||
|
||||
20:33
|
||||
|
||||
|
||||
|
||||
Modell
|
||||
|
||||
Konica Minolta
|
||||
|
||||
bizhub C308
|
||||
|
||||
Admin Passwort 12345678
|
||||
|
||||
IP: 192.168.11.53
|
||||
|
||||
Seen Ordner:
|
||||
|
||||
192.168.11.11 Datenscan (Aktiv) (K-DC1)
|
||||
|
||||
192.168.11.31 Datenscan (K-srv-2)
|
||||
|
||||
|
||||
|
||||
Neuer Drucker ab 10.08.2022
|
||||
|
||||
|
||||
|
||||
Bizhub C300i
|
||||
|
||||
|
||||
|
||||
IP 192.168.11.53
|
||||
|
||||
|
||||
|
||||
Passwort 1-8
|
||||
|
||||
|
||||
|
||||
|
41
OneNoteExport/KK/Hardware/08_Nas.md
Normal file
@ -0,0 +1,41 @@
|
||||
Nas
|
||||
|
||||
Samstag, 13. November 2021
|
||||
|
||||
11:57
|
||||
|
||||
|
||||
|
||||
Diskstation
|
||||
|
||||
Model DS218+
|
||||
|
||||
Intel Celeron J3355 2Ghz
|
||||
|
||||
2 GB Ram
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Stand 11.2022 DSM 6.2.4-25556 Update 6
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
2 x 8TB in SHR Raid
|
||||
|
||||
|
||||
|
||||
Freigabe K-NAS-DASI
|
||||
|
||||
|
||||
|
||||
192.168.11.9
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
101
OneNoteExport/KK/Hardware/09_Programme.md
Normal file
@ -0,0 +1,101 @@
|
||||
Programme
|
||||
|
||||
Sonntag, 6. März 2022
|
||||
|
||||
15:14
|
||||
|
||||
|
||||
|
||||
- 7zip
|
||||
|
||||
- -Adobe reader
|
||||
|
||||
- FLashPlayer ?
|
||||
|
||||
- Apache Couch DB
|
||||
|
||||
- Bea Client Security 3.9.0.8 port 9998
|
||||
|
||||
- Citrix Reciever
|
||||
|
||||
- cyperJack
|
||||
|
||||
- DDBAC
|
||||
|
||||
- DeskUpdate
|
||||
|
||||
- Grundig Citrix ICA Client
|
||||
|
||||
- Grundig Digta Hardware
|
||||
|
||||
- Java8
|
||||
|
||||
- Kerio Outlook Connector offline Edition
|
||||
|
||||
- Konica Minolta
|
||||
|
||||
- Office MS SQL Server 2014 Express
|
||||
|
||||
- Firefox
|
||||
|
||||
- PDF Creator
|
||||
|
||||
- PDF NetDriver
|
||||
|
||||
- RA Micro
|
||||
|
||||
- Sfirm 4.0
|
||||
|
||||
- HYC USB DisplayWorkplace Power Settings
|
||||
|
||||
- Dicanet
|
||||
|
||||
>
|
||||
|
||||
Outlook Einstellungen für Kerio
|
||||
|
||||
Konto:
|
||||
|
||||
|
||||
|
||||
Servername k-dc1.kossen.local
|
||||
|
||||
Manuelle Auth he Passwort .....
|
||||
|
||||
|
||||
|
||||
Serverdetails
|
||||
|
||||
SSL 443 Timeout 180
|
||||
|
||||
|
||||
|
||||
Andere Mailboxen
|
||||
|
||||
Klaus Kossen (kck@kk-recht.de)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Office Installation :
|
||||
|
||||
|
||||
|
||||
Office 2019 standart VL
|
||||
|
||||
|
||||
|
||||
Liegt unter o:\\\_Setup
|
||||
|
||||
Textdatei Link zum installieren.txt öffnen!!
|
||||
|
||||
Dann mit PS dort hin gehen und den link einfügen bzw ausführen
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
14
OneNoteExport/KK/Hardware/Sekreteriat-eingang.md
Normal file
@ -0,0 +1,14 @@
|
||||
Name
|
||||
|
||||
IP
|
||||
|
||||
|
||||
|
||||
|
||||
Netzwerkkarte : Intel i219-LM
|
||||
Netzwerkkarte noch mal prüfen, läuft "nur" auf 100Mbit
|
||||
|
||||
|
||||
|
||||
|
||||
#TODO, #kk #Ausstattung
|
18
OneNoteExport/KK/Hardware/klaus-kossen-rechner.md
Normal file
@ -0,0 +1,18 @@
|
||||
Name : K-PC-03
|
||||
|
||||
IP 192.168.11.77
|
||||
|
||||
|
||||
Prozessor I5 7200U
|
||||
|
||||
Terra PC Seriennummer R5766866
|
||||
|
||||
Modell Terra PC-Micro 6000_V3
|
||||
|
||||
|
||||
Error PCI Express Root Port WHEA-Logge Event ID 17
|
||||
|
||||
|
||||
|
||||
|
||||
#TODO, #kk, #Ausstattung
|
@ -0,0 +1,5 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../00_Raumplan.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
After ![]() (image error) Size: 59 KiB |
9
OneNoteExport/KK/Neuer Abschnitt 1/00_Raumplan.md
Normal file
@ -0,0 +1,9 @@
|
||||
Raumplan
|
||||
|
||||
Samstag, 10. Juli 2021
|
||||
|
||||
11:21
|
||||
|
||||
|
||||
|
||||

|
15
OneNoteExport/KK/Neuer Abschnitt 1/01_VPN.md
Normal file
@ -0,0 +1,15 @@
|
||||
VPN
|
||||
|
||||
Dienstag, 20. Juli 2021
|
||||
|
||||
15:24
|
||||
|
||||
|
||||
|
||||
Lancom Advanced VPN Client Lizenz 2014-02 Version 3.0
|
||||
|
||||
7045-7575-5470-2550-4371 / 21186742
|
||||
|
||||
|
||||
|
||||
|
25
OneNoteExport/KK/Neuer Abschnitt 1/02_teamviewer.md
Normal file
@ -0,0 +1,25 @@
|
||||
teamviewer
|
||||
|
||||
Dienstag, 20. Juli 2021
|
||||
|
||||
16:36
|
||||
|
||||
|
||||
|
||||
Empfang
|
||||
|
||||
ID: 886981354
|
||||
|
||||
Kennwort: 9142.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Hyper V
|
||||
|
||||
|
||||
|
||||
1288175760
|
58
OneNoteExport/KK/Neuer Abschnitt 1/03_Benutzer im AD.md
Normal file
@ -0,0 +1,58 @@
|
||||
Benutzer im AD
|
||||
|
||||
Montag, 25. Juli 2022
|
||||
|
||||
17:50
|
||||
|
||||
|
||||
|
||||
Angelika Zippel deaktivieren
|
||||
|
||||
Caroline Julia Lampe-Schöne aktiv
|
||||
|
||||
Christiane Kuhn deaktivieren
|
||||
|
||||
Lisa Marie Urbanski deaktivieren (ist noch an einem Rechner angemeldet Hauptsekreteriat)
|
||||
|
||||
Maike Moser deaktivieren
|
||||
|
||||
Sabine Ihlig-Hirche aktiv
|
||||
|
||||
|
||||
Empfang
|
||||
> war auf dem RDP Server (192.168.11.13) in der Admin Gruppe, habe dies geändert in Hauptbenutzer,
|
||||
Damit der User Empfang den Server nicht mehr herunterfahren kann
|
||||
|
||||
|
||||
Lisa Buzalski aktiv 1234
|
||||
|
||||
---
|
||||
tags:
|
||||
---
|
||||
|
||||
Empfang 1....
|
||||
RA2 1...
|
||||
AZ Angelika Zippel
|
||||
CJS Caroline Julia lampe- Schöne
|
||||
HE Jessica Henck
|
||||
Hi Sabine Ihris -Hirche
|
||||
KCK Klaus Kossen
|
||||
mm Maike Moser
|
||||
UR Lisa Marie Urbanski
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
---
|
||||
## Tags:
|
||||
[[ Accounts]], [[KK]]
|
||||
|
||||
|
||||
#kk
|
||||
|
@ -0,0 +1,5 @@
|
||||
Benutzer in Kerio Connect
|
||||
|
||||
Montag, 25. Juli 2022
|
||||
|
||||
19:04
|
@ -0,0 +1,13 @@
|
||||
|
||||
|
||||
Montag, 14. November 2022
|
||||
|
||||
19:57
|
||||
|
||||
|
||||
|
||||
Dr Kossen hat die Nummer angerufen wegen \"Support\"
|
||||
|
||||
030 71078918
|
||||
|
||||
|
22
OneNoteExport/KK/Neuer Abschnitt 1/Email-Einstellungen.md
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
tags:
|
||||
---
|
||||
|
||||
Kerio Server
|
||||
K-dc1.Kossen.local
|
||||
HTTP://localbost:4040/admin
|
||||
User Admin
|
||||
Passwort DomainPasswort
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
---
|
||||
## Tags:
|
||||
[[Einstellungen]], [[Kk]]
|
39
OneNoteExport/KK/Neuer Abschnitt 1/Kennenlernen.md
Normal file
@ -0,0 +1,39 @@
|
||||
Test mit Stift---
|
||||
tags:
|
||||
---
|
||||
|
||||
Dr. jur. Klaus C. Kossen
|
||||
|
||||
Rechtsanwalt
|
||||
|
||||
auch Fachanwalt für Arbeitsrecht
|
||||
|
||||
und Fachanwalt für Versicherungsrecht
|
||||
|
||||
sowie Fachanwalt für Medizinrecht
|
||||
|
||||
Kurhausstr. 88
|
||||
|
||||
23795 Bad Segeberg
|
||||
|
||||
Tel.: 04551 89930
|
||||
|
||||
Fax: 04551 899333
|
||||
|
||||
E-mail: mail@kk-recht.de
|
||||
|
||||
website: [www.kk-recht.de](http://www.kk-recht.de/)
|
||||
|
||||
Parkplätze finden Sie über die „Hindenburgstr.“, die stadtauswärtsfahrend unmittelbar hinter dem Kanzleigebäude links einmündet. Nach ca. 7 Metern die erste Einfahrt („Privatparkplatz“).
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
---
|
||||
## Tags:
|
||||
[[ Kontakt ]] , [[KK]]
|
23
OneNoteExport/KK/Software/00_ACTIVE DIRECTORY .md
Normal file
@ -0,0 +1,23 @@
|
||||
# Active Directory
|
||||
|
||||
Freitag, 12. November 2021
|
||||
|
||||
23:00
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
**Active Directory**
|
||||
|
||||
Name: Kossen.local
|
||||
|
||||
DC: K-DC1 192.168.11.11
|
||||
|
||||
K-SRV-2 192.168.11.3
|
||||
|
||||
|
||||
|
||||
Funktionslevel
|
||||
|
||||
Gruppenrichtlinien:
|
23
OneNoteExport/KK/Software/01_vorhandene Software.md
Normal file
@ -0,0 +1,23 @@
|
||||
vorhandene Software
|
||||
|
||||
Freitag, 12. November 2021
|
||||
|
||||
23:48
|
||||
|
||||
|
||||
|
||||
- Renostar
|
||||
|
||||
- RaMicro
|
||||
|
||||
- Sfirm. \[K-SFirm)
|
||||
|
||||
- David
|
||||
|
||||
- Veeam Backup. (K-HV1)
|
||||
|
||||
- Kerio
|
||||
|
||||
- Citrix
|
||||
|
||||
>
|
67
OneNoteExport/KK/Software/02_kerio.md
Normal file
@ -0,0 +1,67 @@
|
||||
kerio
|
||||
|
||||
Sonntag, 6. März 2022
|
||||
|
||||
15:59
|
||||
|
||||
|
||||
|
||||
Server läuft auf K-DC1
|
||||
|
||||
|
||||
|
||||
Webmail ist erreichbar unter
|
||||
|
||||
<Http://k-dc1.kossen.local/webmail/login>
|
||||
|
||||
|
||||
|
||||
Hat nun ein Lets Encrypt Zertifikat erstellt am 24.05.2023 um ca 21:00 Uhr
|
||||
|
||||
|
||||
|
||||
Dort kann unter Einstellungen und Windows Integration der Kerio Connect Client und das Outlookplugin heruntergeladen werden. Ebenso eine AutoKonfig Datei für den aktuellen Nutzer
|
||||
|
||||
Beides installieren.
|
||||
|
||||
Dann kann man die Konfigdatei ausführen und Outlook ist automatisch verbunden.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Admin (keepass)
|
||||
|
||||
|
||||
|
||||
Kalender Dr. Kossen Freigabe :
|
||||
|
||||
|
||||
|
||||
Mit dem Admin Konto Verbinden unter :
|
||||
|
||||
<http://k-dc1.kossen.local/webmail/#calendar>
|
||||
|
||||
|
||||
|
||||
Dort ist der Kalender von Dr. Kossen eingebunden und ich kann die Berechtigung dort ergänzen.
|
||||
|
||||
|
||||
|
||||
e57127Aj0
|
||||
|
||||
|
||||
|
||||
SW locales Postfach
|
||||
|
||||
|
||||
## Zertifikat :
|
||||
|
||||
ein Lets Encrypt Zertifikat mit dem DNS Namen SE-K.dnsuser.de
|
||||
Damit das automatische erneuern geht, muss in der Firewall der Port80 auf Port 80 auf dem Server weitergeleitet werden !!!!!
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#kk
|
25
OneNoteExport/KK/Software/03_Outlook.md
Normal file
@ -0,0 +1,25 @@
|
||||
Outlook
|
||||
|
||||
Mittwoch, 20. April 2022
|
||||
|
||||
19:03
|
||||
|
||||
|
||||
|
||||
Servername K-DC1
|
||||
|
||||
|
||||
|
||||
Serverdetails :
|
||||
|
||||
Http ssl yes
|
||||
|
||||
Http port 443
|
||||
|
||||
Verwende Datenkomprimierung yes
|
||||
|
||||
|
||||
|
||||
Iphone
|
||||
|
||||
Server SE-k.dnsuser:443
|
87
OneNoteExport/KK/Software/04_Neuer User.md
Normal file
@ -0,0 +1,87 @@
|
||||
Neuer User
|
||||
|
||||
Mittwoch, 15. Februar 2023
|
||||
|
||||
19:14
|
||||
|
||||
|
||||
|
||||
Email Server Extern User einrichten :
|
||||
|
||||
|
||||
|
||||
<https://kasserver.com>
|
||||
|
||||
Hier werden die Mailadressen angelegt
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Weblogin :
|
||||
|
||||
|
||||
|
||||
<https://kasmail.kasserver.com/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Danach noch einen User im AD Anlegen :
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Kalender Dr. Kossen Freigabe :
|
||||
|
||||
|
||||
|
||||
Mit dem Admin Konto Verbinden unter :
|
||||
|
||||
<http://k-dc1.kossen.local/webmail/#calendar>
|
||||
|
||||
|
||||
|
||||
Dort ist der Kalender von Dr. Kossen eingebunden und ich kann die Berechtigung dort ergänzen.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Senden als Mail erlauben :
|
||||
|
||||
|
||||
|
||||
Im Webmail unter Einstellungen des Users die Standart Absendeadresse eintragen als :
|
||||
|
||||
mail@kk-recht.de. Ebenso die Standart Antwortadresse dahingehen ändern
|
||||
|
||||
|
||||
|
||||
Es muss noch das Plugin für RA-Micro und Outlook, Excel und Word installiert werden.
|
||||
|
||||
Erst dann ist der Benutzer richtig und vollständig eingerichtet !
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1340013226. Teamviewer K-PC-4
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
-.mko0;LP?.-
|
27
OneNoteExport/KK/Software/05_RA-Micro.md
Normal file
@ -0,0 +1,27 @@
|
||||
RA-Micro
|
||||
|
||||
Donnerstag, 23. März 2023
|
||||
|
||||
17:05
|
||||
|
||||
|
||||
|
||||
Hamburg
|
||||
|
||||
|
||||
|
||||
Verwaltungspasswort
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Kundennummer :
|
||||
|
||||
|
||||
|
||||
378 /19
|
||||
|
||||
|
||||
|
||||
|
57
OneNoteExport/KK/Software/06_Email Einrichtung.md
Normal file
@ -0,0 +1,57 @@
|
||||
Email Einrichtung
|
||||
|
||||
Samstag, 25. März 2023
|
||||
|
||||
17:08
|
||||
|
||||
|
||||
|
||||
ServerLogin :
|
||||
|
||||
[Kundenadministrationssystem (KAS), technische Verwaltung](https://kasserver.com/) <https://kasserver.com>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Login w1088a97 (Keepass)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Lisa Buzalski \<lb@kk-recht.de\>
|
||||
|
||||
|
||||
|
||||
SPF Eintrag für alle Domains :
|
||||
|
||||
<table>
|
||||
<colgroup>
|
||||
<col style="width: 100%" />
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr class="header">
|
||||
<th><p> </p>
|
||||
<p><strong>v=spf1 mx ip4:85.13.154.232 all</strong></p></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Nameserver werden aber woanders gehostet :
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,5 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../00_Aktuelle%20Themen%20und%20Fragen.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
After ![]() (image error) Size: 155 B |
@ -0,0 +1,25 @@
|
||||
Aktuelle Themen und Fragen
|
||||
|
||||
Donnerstag, 16. Mai 2019
|
||||
|
||||
07:10
|
||||
|
||||
|
||||
|
||||
Fragen:
|
||||
|
||||
|
||||
|
||||
- Wo finde ich interne allgemeine Arbeitshilfen und Dokumentationen? Hier sollten wir mal gucken was noch aktuell ist und was entsprechend neu gemacht werden muss.
|
||||
|
||||
- Wo finde ich die aktuelle Software für die Administration?
|
||||
|
||||
>
|
||||
>
|
||||
> Dokumentationen nicht aktuell:
|
||||
>
|
||||
>
|
||||
>
|
||||
> Ich habe keine aktuelle Einrichtung der Telefone mit Tastaturbeschriftung gefunden.
|
||||
>
|
||||
> Gibt es eine Arbeitshilfe zur Einrichtung des ASA?
|
23
OneNoteExport/Kommunikationstechnologie/AVAYA/01_Links.md
Normal file
@ -0,0 +1,23 @@
|
||||
Links
|
||||
|
||||
Donnerstag, 25. Oktober 2018
|
||||
|
||||
15:35
|
||||
|
||||
|
||||
|
||||
<https://www.avaya.com/en/videos/avaya-oceana-solution-for-agents-and-supervisors/0_ac3k5ayc/>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[F:\\IT-Service\\CMDB\\SW\\Avaya-CM\\Doku\\2018_10_11 - Arktis Produkte](file:///F:/IT-Service/CMDB/SW/Avaya-CM/Doku/2018_10_11%20-%20Arktis%20Produkte)
|
||||
|
||||
|
@ -0,0 +1,19 @@
|
||||
Termin KickOff Upgrade und Ugdate
|
||||
|
||||
Montag, 15. April 2019
|
||||
|
||||
11:40
|
||||
|
||||
|
||||
|
||||
Ziel des Termins ist eine Roadmap
|
||||
|
||||
|
||||
|
||||
Aussenstandorte zuerst
|
||||
|
||||
ESS und LSP mit Unterstützung vor Ort
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,62 @@
|
||||
Themen und Zuordnung
|
||||
|
||||
Donnerstag, 9. Mai 2019
|
||||
|
||||
15:04
|
||||
|
||||
|
||||
|
||||
- Virtualisierung der meisten Systeme der AVAYA Anlage (CMS bleibt HW)\
|
||||
> Schnittmenge zum Update, da hier die Systeme auf dem neuen Stand implementiert werden sollen und im Parallelbetrieb in Betrieb genommen werden.\
|
||||
> Prüfen ob Hardware für VM Angeschafft werden muss.
|
||||
|
||||
- Prüfen welche Systeme nicht mehr benötigt werden. Hierfür müssen keine VMs eingeplant werden. Beispiel: ESS Server an den Standorten.
|
||||
|
||||
- Einführung von SIP in der internen Umgebung.
|
||||
|
||||
- Für einen Mischbetrieb von SIP und H323 muss die alte Umgebung weiter parallel betrieben werden. Hierzu muss noch geklärt werden ob es hierzu alternativen ohne weiterbetrieb der Altumgebung gibt. Beratung Arktis, bzw. Konzepterstellung.
|
||||
|
||||
- Austausch der Telefone im Haus die kein SIP unterstützen. Vorher kann keine komplette Umstellung auf SIP erfolgen.
|
||||
|
||||
- Analoge und ISDN Anschlüsse müssen geprüft und wenn möglich abgeschaltet werden. Für weiterhin benötigte Anschlüsse müssen SIP Converter evaluiert werden.
|
||||
|
||||
- Umstellung der Homeoffice Telefone auf SIP. Hierdurch entfällt die Aufwendige Konfiguration der Zugänge.
|
||||
|
||||
- Ausstattung der Service Point Arbeitsplätze mit Funktaster für Alarm.\
|
||||
> (Anschaffung und Inbetriebnahme Hardware (Taster) und Lizenzen)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Separates Projekt von Marcus
|
||||
|
||||
|
||||
|
||||
Einführung AVAYA Videokonferenzsystem - Es besteht eine Abhängigkeit. Wenn dieses Projekt nicht in der Form umgesetzt wird muss ein Konferenz Server Technik und Lizenzen berücksichtig werden.
|
||||
|
||||
|
||||
|
||||
Vorprojekt zu Equinox
|
||||
|
||||
|
||||
|
||||
Prüfen ob Funktional SfB abgelöst werden kann.
|
||||
|
||||
Teststellung organisieren
|
||||
|
||||
Konzept Nutzung Equinox für Office und Agent.
|
||||
|
||||
Prüfung Einführung Equinox für Ablösung Skype for Business, Desktop Telefon, Steuerung des Tischtelefons, Videokonferenz am Arbeitsplatz, etc.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Update aller Systeme auf den aktuellen Stand. Es soll Rel. 8.x eingesetzt werden.
|
||||
|
||||
\- Ist eine Restarbeit aus dem Projekt zur Ausschreibung der Wartung
|
||||
|
||||
|
||||
|
||||
Abhängigkeit besteht zu dem Projekt in der Form dass die Umsetzung auf VM realisiert werden soll.
|
@ -0,0 +1,5 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../00_Allerlei.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
After ![]() (image error) Size: 61 KiB |
@ -0,0 +1,35 @@
|
||||
Allerlei
|
||||
|
||||
Dienstag, 31. Juli 2018
|
||||
|
||||
12:58
|
||||
|
||||
|
||||
|
||||
**Betriebskrankenkasse Mobil Oil**
|
||||
|
||||
**20091 Hamburg**
|
||||
|
||||
|
||||
|
||||
Frühdienst Liste:
|
||||
|
||||
F:\\IT-Service\\Allgemein\\Organisatorisches\\Protokolle Frühdienst
|
||||
|
||||
Bereitschaft Liste:
|
||||
|
||||
F:\\IT-Service\\Allgemein\\Organisatorisches\\Protokolle Bereitschaftsdienst
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
Erfasster Bildschirmausschnitt: 15.11.2019 10:08
|
||||
|
||||
|
||||
|
||||
\+ 42 MB unter Apps sind
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,11 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../01_Temporär.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="image002.png"/>
|
||||
<o:File HRef="image003.png"/>
|
||||
<o:File HRef="image004.png"/>
|
||||
<o:File HRef="image005.png"/>
|
||||
<o:File HRef="image006.png"/>
|
||||
<o:File HRef="image007.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
After ![]() (image error) Size: 146 KiB |
After ![]() (image error) Size: 128 KiB |
After ![]() (image error) Size: 110 KiB |
After ![]() (image error) Size: 99 KiB |
After ![]() (image error) Size: 70 KiB |
After ![]() (image error) Size: 70 KiB |
After ![]() (image error) Size: 53 KiB |
101
OneNoteExport/Kommunikationstechnologie/Allgemein/01_Temporär.md
Normal file
@ -0,0 +1,101 @@
|
||||
Temporär
|
||||
|
||||
Freitag, 14. Juni 2019
|
||||
|
||||
13:33
|
||||
|
||||
|
||||
|
||||
Auf allen Server WWW Publishing gestoppt
|
||||
|
||||
|
||||
|
||||
{width="11.322916666666666in" height="6.25in"}
|
||||
|
||||
{width="12.458333333333334in" height="5.447916666666667in"}
|
||||
|
||||
|
||||
|
||||
Erfasster Bildschirmausschnitt: 14.06.2019 13:33
|
||||
|
||||
APP001
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{width="10.614583333333334in" height="5.114583333333333in"}
|
||||
|
||||
|
||||
|
||||
Erfasster Bildschirmausschnitt: 14.06.2019 13:35
|
||||
|
||||
|
||||
|
||||
APP002
|
||||
|
||||
|
||||
|
||||
{width="10.1875in" height="4.53125in"}
|
||||
|
||||
|
||||
|
||||
Erfasster Bildschirmausschnitt: 14.06.2019 13:35
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{width="3.90625in" height="5.302083333333333in"}
|
||||
|
||||
|
||||
|
||||
Erfasster Bildschirmausschnitt: 14.06.2019 13:42
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{width="3.7604166666666665in" height="5.166666666666667in"}
|
||||
|
||||
|
||||
|
||||
Erfasster Bildschirmausschnitt: 17.06.2019 11:23
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{width="3.4583333333333335in" height="4.364583333333333in"}
|
||||
|
||||
|
||||
|
||||
Erfasster Bildschirmausschnitt: 17.06.2019 11:23
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,23 @@
|
||||
|
||||
|
||||
Mittwoch, 30. Mai 2018
|
||||
|
||||
10:20
|
||||
|
||||
|
||||
|
||||
Enable-CsUser : Die von der Anmeldung angeforderte xds-Datenbank kann nicht geöffnet werden. Fehler bei der Anmeldung.
|
||||
|
||||
Fehler bei der Anmeldung für den Benutzer \'BKK-MOBILOIL\\\_SkypeScripteService\'.
|
||||
|
||||
In C:\\Skype Scripts\\Skype_User_Provisioning_v7.ps1:40 Zeichen:5
|
||||
|
||||
\+ Enable-CsUser -identity \$domainuser -RegistrarPool \"Lync.bkk-mobiloil.de\" -S \...
|
||||
|
||||
\+ \~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~\~
|
||||
|
||||
\+ CategoryInfo : NotSpecified: (:) \[Enable-CsUser\], SqlConnectionException
|
||||
|
||||
\+ FullyQualifiedErrorId : Microsoft.Rtc.Common.Data.SqlConnectionException,Microsoft.Rtc.Management.AD.Cmdlets.Ena
|
||||
|
||||
bleOcsUserCmdlet
|
33
OneNoteExport/Kommunikationstechnologie/Allgemein/03_Banf.md
Normal file
@ -0,0 +1,33 @@
|
||||
Banf
|
||||
|
||||
Donnerstag, 24. Mai 2018
|
||||
|
||||
08:37
|
||||
|
||||
|
||||
|
||||
Kostenstelle unseres Teams: 1161
|
||||
|
||||
|
||||
|
||||
Kostenstelle neues Intranet 1807
|
||||
|
||||
|
||||
|
||||
Sachkonto :
|
||||
|
||||
Software 710002
|
||||
|
||||
Buch
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Kostenstelle Exchange 2016 Projekt: 1573
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,281 @@
|
||||
AD / Namen Konzept
|
||||
|
||||
Donnerstag, 31. Mai 2018
|
||||
|
||||
12:09
|
||||
|
||||
|
||||
|
||||
Vorhandenes Namenkonzept liegt unter :
|
||||
|
||||
|
||||
|
||||
F:\\IT-Service\\CMDB\\CI-uebergreifendes\\Namenskonventionen\\Sammlung Namenskonventionen.docx
|
||||
|
||||
|
||||
|
||||
[Geräte-CIs [NEU]{.mark}](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906965)
|
||||
|
||||
[Hardware-CIs in den Rechenzentren](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906966)
|
||||
|
||||
[Hardware-CIs für Technik- und Verteilerräume aller Standorte [NEU]{.mark}](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906967)
|
||||
|
||||
[Passive Infrastruktur Standort HAMBURG](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906968)
|
||||
|
||||
[Passive Infrastruktur Allgemeines](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906969)
|
||||
|
||||
[Passive Infrastruktur Netzwerkanschlüsse (Datendosen)](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906970)
|
||||
|
||||
[Passive Infrastruktur Patchfelder](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906971)
|
||||
|
||||
[~~Passive Infrastruktur Datenschränke~~ unter Rack geführt](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906972)
|
||||
|
||||
[Passive Infrastruktur Patchkabel](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906973)
|
||||
|
||||
[Passive Infrastruktur Edge-Patchungen](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906974)
|
||||
|
||||
[Passive Infrastruktur Server-Patchungen](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906975)
|
||||
|
||||
[AD-Gruppen -- MUSTER für diese Namenskonvention](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906976)
|
||||
|
||||
[AD Applikationsgruppen Appl-](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906977)
|
||||
|
||||
[AD E-Mail-Verteiler mit externen Kontakten](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906978)
|
||||
|
||||
[AD E-Mail-Verteiler 13- , 99- und [eine Ausnahme]{.mark}](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906979)
|
||||
|
||||
[AD E-Mail-Verteiler Projektteam 13-PT\_ und 99-PT\_](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906980)
|
||||
|
||||
[AD E-Mail-Verteiler Projektleitung 13-PL\_ [99]{.mark}-PL\_](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906981)
|
||||
|
||||
[AD E-Mail-Verteiler Projektlenkungsausschuss 13-PLA\_ [99]{.mark}-PLA\_](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906982)
|
||||
|
||||
[AD E-Mail-Verteiler 13-Projekt MOBILUS (historisch)](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906983)
|
||||
|
||||
[AD E-Mail-Verteiler Projekt TOP MOBIL (historisch)](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906984)
|
||||
|
||||
[AD Zugriffsberechtigungsgruppen POSTFACH\_](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906985)
|
||||
|
||||
[AD Sendeberechtigungsgruppen SENDTO\_](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906986)
|
||||
|
||||
[AD Sicherheitsgruppen SG-](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906987)
|
||||
|
||||
[AD Computer-Gruppen CG-](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906988)
|
||||
|
||||
[gekürzte E-Mail-Adressen](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906989)
|
||||
|
||||
[Softwareentwicklung [Neu]{.mark}](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906990)
|
||||
|
||||
[AD-Kennungen [Neu]{.mark}](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906991)
|
||||
|
||||
[AD-Kennungen Service-Accounts (@work, Kay Krausz, Prüfung durch CG, RM, PD)](file:///F:/IT-Service/CMDB/CI-uebergreifendes/Namenskonventionen/Sammlung%20Namenskonventionen.docx#_Toc506906992)
|
||||
|
||||
|
||||
|
||||
**AD-Kennungen Service-Accounts (@work, Kay Krausz, Prüfung durch CG, RM, PD)**
|
||||
|
||||
Für automatisierte Vorgänge können Service-Accounts angelegt werden.
|
||||
|
||||
Diese sind nach diesem Schema zu benennen:
|
||||
|
||||
Anzeigenamen Service, Anwendung (z. B. Service, Germo)
|
||||
|
||||
Nachname: Service
|
||||
|
||||
Vorname: Applikationsname (z. B. Germo)
|
||||
|
||||
Konto: (\_{Applikationsname}service).
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Für die Administration von Diensten können Administrationsaccounts angelegt werden
|
||||
|
||||
Diese sind nach dem folgenden Schema zu benennen:
|
||||
|
||||
Anzeigenamen Service, Administration (z. B. ServiceAdministration, PWDepot)
|
||||
|
||||
Nachname: Serviceadministration
|
||||
|
||||
Vorname: Name der Anwendung
|
||||
|
||||
Konto: (\_{Applikationsname}admin). \_PWDepotadmin
|
||||
|
||||
** **
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Gruppen Aufbau :
|
||||
|
||||
<https://www.faq-o-matic.net/2011/03/07/windows-gruppen-richtig-nutzen/>
|
||||
|
||||
|
||||
|
||||
und
|
||||
|
||||
<https://www.msxfaq.de/windows/gruppen.htm>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
example, DL-SEC-ACL-SALES-READ, bei uns zB: statt - lieber \_ wegen - im Namen (wie zB IT-KT)
|
||||
|
||||
DL Domain Local, DL /GL /UN
|
||||
|
||||
SEC Security group, SG DG
|
||||
|
||||
ACL applied to ACLs ACL / PT (Projekt Team) / MSX Mailbox /
|
||||
|
||||
Sales for the Sales team, IT-KT (Kommunikationstechnologie) / Logon Localy / RDP usw
|
||||
|
||||
READ read only. READ
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Gruppenbereich
|
||||
|
||||
Typ der Gruppe
|
||||
|
||||
Funktion der Gruppe
|
||||
|
||||
Nutzer der gruppe
|
||||
|
||||
Berechtigung
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Aus \<<https://social.technet.microsoft.com/Forums/ie/en-US/ae9468e7-b38c-4baa-bcf8-b731de668055/group-naming-conventions?forum=winserverDS>\>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
User Benennung
|
||||
|
||||
Zu beachten ist, dass der SamAccountName nicht mehr wie 20 Zeichen haben darf.
|
||||
|
||||
|
||||
|
||||
Unsere Service accounts fangen alle mit
|
||||
|
||||
\_service an bzw fangen mit \_ an und enden auf service allein dies sind schon 8 Buchstaben besser wäre hier zB svc\_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Admin-rko
|
||||
|
||||
|
||||
|
||||
Koopr
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Svc_SPT_Search
|
||||
|
||||
|
||||
|
||||
SVC Service User , keine Nutzung durch Benutzer (zB kein Logon Localy)
|
||||
|
||||
SPT Systemkürzel (Sharepoint Test)
|
||||
|
||||
Search Service auf dem Systems
|
||||
|
||||
|
||||
|
||||
Hier sind zB nur Dienstkonten hinterlegt, die des Systems und zB die des IIS
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
FCT_SPT_Admin
|
||||
|
||||
|
||||
|
||||
FCT Funktions User (nicht personalisiert)
|
||||
|
||||
SPT Systemkürzel (Sharepoint Test)
|
||||
|
||||
Admin Funktion innerhalb des Systems
|
||||
|
||||
|
||||
|
||||
Administrationskonten, die zB bei Installation- und / oder Updates des Systems genutzt werden müssen.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
TSK_BKKSPTAPP001_01
|
||||
|
||||
|
||||
|
||||
TSK Task User
|
||||
|
||||
BKKSP.. Servername
|
||||
|
||||
01 Nummer des Users
|
||||
|
||||
|
||||
|
||||
Soll genutzt werden für die Aufgabenplanung auf dem Server ( Log on as a batch job )
|
||||
|
||||
Kein Logon Localy
|
||||
|
||||
Nicht so gut als Beispiel :
|
||||
|
||||
|
||||
|
||||
\_sptScservice So soll es sein. 13 Buchstaben
|
||||
|
||||
|
||||
|
||||
Ich finde besser :
|
||||
|
||||
|
||||
|
||||
SVC-SPT-SearchCron 18 Buchstaben oder
|
||||
|
||||
SVCsptSearchcron 16 Buchstaben
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,55 @@
|
||||
Firefox BKK Interne Zertifizierungsstelle
|
||||
|
||||
Mittwoch, 20. Juni 2018
|
||||
|
||||
14:23
|
||||
|
||||
|
||||
|
||||
Hallo,
|
||||
|
||||
|
||||
|
||||
zum Import der internen CA-Zertifikate die untenstehende Pfade jeweils in die Adresszeile des Firefox' kopieren und aufrufen:
|
||||
|
||||
|
||||
|
||||
[file://F:/IT-Service/CMDB/SW/Zertifizierungsstelle/Konfiguration/BKKROOTCA_BKKROOTCAv2.crt](file:///F:/IT-Service/CMDB/SW/Zertifizierungsstelle/Konfiguration/BKKROOTCA_BKKROOTCAv2.crt)
|
||||
|
||||
|
||||
|
||||
[file://F:\\IT-Service\\CMDB\\SW\\Zertifizierungsstelle\\Konfiguration\\BKKCA001.bkk-mobiloil.de_BKKCAv2.crt](file:///F:/IT-Service/CMDB/SW/Zertifizierungsstelle/Konfiguration/BKKCA001.bkk-mobiloil.de_BKKCAv2.crt)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Mit freundlichen Grüßen
|
||||
|
||||
|
||||
|
||||
Ihre BKK Mobil Oil
|
||||
|
||||
|
||||
|
||||
Mattias Pehlke
|
||||
|
||||
|
||||
|
||||
Firefox im Intranet mit Sharepoint :
|
||||
|
||||
|
||||
|
||||
1\. Im firefox about:config in die Adresszeile eingeben.
|
||||
|
||||
2\. Die Warnung bestätigen
|
||||
|
||||
3\. Im Filterfenster ntlm eingeben.
|
||||
|
||||
4\. Bei \"network.automatic-ntlm-auth.trusted-uris\" die Domains des internen Netzen(Intranet) eingeben. z.b. spiegel.de
|
||||
|
||||
5\. Fertig.
|
||||
|
||||
|
||||
|
||||
Aus \<<https://www.beisammen.de/index.php?thread/102833-firefox-im-intranet-immer-authentifizierung-erforderlich/>\>
|
@ -0,0 +1,8 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../06_CI-Pflege%20ohne%20SIM%20Karten.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="image002.png"/>
|
||||
<o:File HRef="image003.png"/>
|
||||
<o:File HRef="image004.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
After ![]() (image error) Size: 89 KiB |
After ![]() (image error) Size: 21 KiB |
After ![]() (image error) Size: 71 KiB |
After ![]() (image error) Size: 43 KiB |
@ -0,0 +1,77 @@
|
||||
CI-Pflege ohne SIM Karten
|
||||
|
||||
Donnerstag, 21. Juni 2018
|
||||
|
||||
08:18
|
||||
|
||||
|
||||
|
||||
{width="12.90625in" height="6.510416666666667in"}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
21.06.2018 08:18 - Bildschirmausschnitt
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
21.06.2018 08:20 - Bildschirmausschnitt
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
21.06.2018 08:21 - Bildschirmausschnitt
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
21.06.2018 08:23 - Bildschirmausschnitt
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{width="12.21875in" height="6.385416666666667in"}
|
||||
|
||||
|
||||
|
||||
{width="14.552083333333334in" height="6.302083333333333in"}
|
||||
|
||||
{width="10.833333333333334in" height="6.25in"}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
02.07.2018 07:47 - Bildschirmausschnitt
|
||||
|
||||
|
@ -0,0 +1,43 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../07_Monitoring%20USV%20Sensoren%20usw.htm"/>
|
||||
<o:File HRef="image001.png"/>
|
||||
<o:File HRef="image002.png"/>
|
||||
<o:File HRef="image003.png"/>
|
||||
<o:File HRef="image004.png"/>
|
||||
<o:File HRef="image005.png"/>
|
||||
<o:File HRef="image006.png"/>
|
||||
<o:File HRef="image007.png"/>
|
||||
<o:File HRef="image008.png"/>
|
||||
<o:File HRef="image009.png"/>
|
||||
<o:File HRef="image010.png"/>
|
||||
<o:File HRef="image011.png"/>
|
||||
<o:File HRef="image012.png"/>
|
||||
<o:File HRef="image013.png"/>
|
||||
<o:File HRef="image014.png"/>
|
||||
<o:File HRef="image015.png"/>
|
||||
<o:File HRef="image016.png"/>
|
||||
<o:File HRef="image017.png"/>
|
||||
<o:File HRef="image018.png"/>
|
||||
<o:File HRef="image019.png"/>
|
||||
<o:File HRef="image020.png"/>
|
||||
<o:File HRef="image021.png"/>
|
||||
<o:File HRef="image022.png"/>
|
||||
<o:File HRef="image023.png"/>
|
||||
<o:File HRef="image024.png"/>
|
||||
<o:File HRef="image025.png"/>
|
||||
<o:File HRef="image026.png"/>
|
||||
<o:File HRef="image027.png"/>
|
||||
<o:File HRef="image028.png"/>
|
||||
<o:File HRef="image029.png"/>
|
||||
<o:File HRef="image030.png"/>
|
||||
<o:File HRef="image031.png"/>
|
||||
<o:File HRef="image032.png"/>
|
||||
<o:File HRef="image033.png"/>
|
||||
<o:File HRef="image034.png"/>
|
||||
<o:File HRef="image035.png"/>
|
||||
<o:File HRef="image036.png"/>
|
||||
<o:File HRef="image037.png"/>
|
||||
<o:File HRef="image038.png"/>
|
||||
<o:File HRef="image039.png"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
After ![]() (image error) Size: 2.7 KiB |
After ![]() (image error) Size: 4.0 KiB |
After ![]() (image error) Size: 4.8 KiB |
After ![]() (image error) Size: 4.0 KiB |
After ![]() (image error) Size: 4.1 KiB |
After ![]() (image error) Size: 10 KiB |
After ![]() (image error) Size: 9.0 KiB |
After ![]() (image error) Size: 8.7 KiB |
After ![]() (image error) Size: 8.9 KiB |
After ![]() (image error) Size: 62 KiB |
After ![]() (image error) Size: 103 KiB |
After ![]() (image error) Size: 41 KiB |
After ![]() (image error) Size: 15 KiB |
After ![]() (image error) Size: 14 KiB |