From: Jóhann B. Guðmundsson Date: Tue, 27 Apr 2021 14:16:42 +0000 (+0000) Subject: fix(network-legacy): add missing options to dhclient.conf X-Git-Tag: 054~71 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=abfd547a85230a4520df65280aaf195f319df464;p=thirdparty%2Fdracut.git fix(network-legacy): add missing options to dhclient.conf Adding the following commonly used options to dhclient.conf - netbios-name-servers - netbios-scope - ntp-servers - dhcp6.domain-search - dhcp6.fqdn - dhcp6.name-servers - dhcp6.sntp-servers --- diff --git a/modules.d/35network-legacy/dhclient.conf b/modules.d/35network-legacy/dhclient.conf index 2118ef47b..ffd24ef67 100644 --- a/modules.d/35network-legacy/dhclient.conf +++ b/modules.d/35network-legacy/dhclient.conf @@ -5,4 +5,7 @@ send dhcp-client-identifier = hardware; request subnet-mask, broadcast-address, time-offset, routers, domain-name, domain-name-servers, domain-search, host-name, - root-path, interface-mtu, classless-static-routes; + root-path, interface-mtu, classless-static-routes, + netbios-name-servers, netbios-scope, ntp-servers, + dhcp6.domain-search, dhcp6.fqdn, + dhcp6.name-servers, dhcp6.sntp-servers;