diff options
| author | Roy Marples <roy@marples.name> | 2009-07-03 09:55:16 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2009-07-03 09:55:16 +0000 |
| commit | 070d1bdcf50fdedd229abcbde3a32e75e119ab8f (patch) | |
| tree | a712cbdba4aaf5ff1521ce4a78b73acc0b7501c0 | |
| parent | 6411bb4624c88a1ec140259f346c66dfbfe0fd10 (diff) | |
| download | dhcpcd-070d1bdcf50fdedd229abcbde3a32e75e119ab8f.tar.xz | |
Respect the MTU by default.
If people have broken DHCP servers, or use an ISP with one they can
always change the setting.
| -rw-r--r-- | dhcpcd.conf | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/dhcpcd.conf b/dhcpcd.conf index 9c273af4..667f935c 100644 --- a/dhcpcd.conf +++ b/dhcpcd.conf @@ -8,16 +8,13 @@ hostname option domain_name_servers, domain_name, domain_search, host_name # Most distributions have NTP support. option ntp_servers - -# Behave nicely on networks and respect their MTU. -# However, a lot of buggy DHCP servers set invalid MTUs so this is not -# enabled by default. -#option interface_mtu +# Respect the network MTU. +option interface_mtu # A ServerID is required by RFC2131. # Some broken DHCP servers do not send one and dhcpcd can work without it. -# Some broken DHCP servers NAK incorrectly and do not include a ServerID either so -# the default is to require a ServerID. +# Some broken DHCP servers NAK incorrectly and do not include a ServerID +# either so the default is to require a ServerID. require dhcp_server_identifier # A hook script is provided to lookup the hostname if not set by the DHCP |
