OLD | NEW |
1 # A sample configuration for dhcpcd. | 1 # A sample configuration for dhcpcd. |
2 # See dhcpcd.conf(5) for details. | 2 # See dhcpcd.conf(5) for details. |
3 | 3 |
4 # disable ARP checking | 4 # disable ARP checking |
5 noarp | 5 noarp |
| 6 # no link state monitoring |
| 7 nolink |
6 | 8 |
7 # Inform the DHCP server of our hostname for DDNS. | 9 # Inform the DHCP server of our hostname for DDNS. |
8 hostname | 10 hostname |
9 # To share the DHCP lease across OSX and Windows a ClientID is needed. | 11 # To share the DHCP lease across OSX and Windows a ClientID is needed. |
10 # Enabling this may get a different lease than the kernel DHCP client. | 12 # Enabling this may get a different lease than the kernel DHCP client. |
11 # Some upstream DHCP servers may also require a ClientID, such as FRITZ!Box. | 13 # Some upstream DHCP servers may also require a ClientID, such as FRITZ!Box. |
12 clientid | 14 clientid |
13 | 15 |
14 # A list of options to request from the DHCP server. | 16 # A list of options to request from the DHCP server. |
15 option domain_name_servers, domain_name, domain_search, host_name | 17 option domain_name_servers, domain_name, domain_search, host_name |
16 option classless_static_routes | 18 option classless_static_routes |
17 # Most distributions have NTP support. | 19 # Most distributions have NTP support. |
18 #option ntp_servers | 20 #option ntp_servers |
19 # Respect the network MTU. | 21 # Respect the network MTU. |
20 option interface_mtu | 22 option interface_mtu |
21 # A ServerID is required by RFC2131. | 23 # A ServerID is required by RFC2131. |
22 require dhcp_server_identifier | 24 require dhcp_server_identifier |
OLD | NEW |