File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ NetworkServer - network configuration
12
12
13
13
The Network configuration is loaded by NetworkServer service on startup. It consists of a list of interfaces, with adapter names as groups.
14
14
15
- The interface that is not listed in this config file is not set up and disabled by default.
15
+ The interface that is not listed in this config file has DHCP enabled by default.
16
16
17
17
## Options
18
18
19
19
* ` Enabled ` (default: ` true ` ) - Whether the interface is enabled.
20
- * ` DHCP ` (default: ` false ` ) - Whether the DHCP client should be run on this interface.
20
+ * ` DHCP ` (default: ` false ` ) - Whether the DHCP client should be run on this interface. This overrides static IP settings.
21
21
* ` IPv4Address ` (default: ` 0.0.0.0 ` ) - The static IPv4 address for the interface. Used only when ` DHCP ` is ` false ` .
22
22
* ` IPv4Netmask ` (default: ` 0.0.0.0 ` ) - The static IPv4 netmask for the interface. Used only when ` DHCP ` is ` false ` .
23
23
* ` IPv4Gateway ` (default: ` 0.0.0.0 ` ) - The static IPv4 default gateway for the interface. Used only when ` DHCP ` is ` false ` .
@@ -31,11 +31,11 @@ IPv4Address=10.0.0.5
31
31
IPv4Netmask =255.0.0.0
32
32
IPv4Gateway =10.0.0.1
33
33
34
- # Try to run DHCP discovery on ep0s8.
34
+ # Try to run DHCP discovery on ep0s8. It is equivalent to not adding this entry at all.
35
35
[ep0s8]
36
36
DHCP =true
37
37
38
- # Disable interface ep1s1 entirely. It is equivalent to not adding this entry at all.
38
+ # Disable interface ep1s1 entirely.
39
39
[ep1s1]
40
40
Enabled =false
41
41
```
You can’t perform that action at this time.
0 commit comments