You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/assets/css/custom.css
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
2
-
/* unsure if these role classes will be able to be recreated in mkdocs material, or rather if they even need to be as other methods of coloring text are provided, commenting them out for now*/
2
+
/* these color classes can be added to markdown in mkdocs material by adding the class after bold or italic texts i.e. __Required__{ .red } will be bold and red, however this format is not supported in obsidian*/
3
3
/* Class for red role */
4
-
/* .red {
4
+
.red {
5
5
color: red;
6
-
} */
6
+
}
7
7
/* Class for orange role */
8
-
/* .orange {
8
+
.orange {
9
9
color: orange;
10
-
} */
11
-
/* Class for yeloowrole */
12
-
/* .yellow {
10
+
}
11
+
/* Class for yelowrole */
12
+
.yellow {
13
13
color: yellow;
14
-
} */
14
+
}
15
15
/* Override default theme max width of 800px so wide screens can view more content responsively
A host consists of the following [Required]{.red} Fields:
111
+
A host consists of the following __Required__{ .red} Fields:
112
112
113
113
##### Hostname
114
114
@@ -121,6 +121,38 @@ A host consists of the following [Required]{.red} Fields:
121
121
> string must be separated by `:` (colon), in the format of
122
122
> `00:11:22:33:44:55`.
123
123
124
+
> [!NOTE]
125
+
> The MAC Address has a description field. This can currently only be set via the api and can be whatever you want it to be.
126
+
> For example you could use the [FOGApi powershell module](https://github.com/darksidemilk/FogApi) to set the mac descriptions to the make/model of the adapter like so
This does a POST to `{fogurl}/fog/macaddressassociation/{macID}/edit` with a json formatted like the following for each mac address on a windows machine that already exists in FOG.
142
+
143
+
```
144
+
{
145
+
"id": 6355,
146
+
"hostID": 1847,
147
+
"mac": "f4:a4:75:ab:93:d4",
148
+
"description": "Wi-Fi - Intel(R) Wi-Fi 6E AX210 160MHz",
0 commit comments