]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
fix(network-legacy): add missing options to dhclient.conf
authorJóhann B. Guðmundsson <johannbg@gmail.com>
Tue, 27 Apr 2021 14:16:42 +0000 (14:16 +0000)
committerHarald Hoyer <harald@hoyer.xyz>
Wed, 28 Apr 2021 07:03:48 +0000 (09:03 +0200)
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

modules.d/35network-legacy/dhclient.conf

index 2118ef47b6ad1f3f9c194d35954e244354ca9bb9..ffd24ef6701b302b96ed4053224ac596dcf62bf2 100644 (file)
@@ -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;