853382bddd
- fixed a typo in nis-servers option name breaking the config file introduced in previous change to workaround issues in NetworkManager parser. - Update to dhcp-4.3.5 - Corrected a bug which could cause the server to sporadically crash while loading lease files with the lease-id-format is set to "hex". Our thanks to Jay Ford, University of Iowa for reporting the issue. [ISC-Bugs #43185] - Eliminated a noisy, but otherwise harmless debug log statment that may appear during server startup when building with --enable-binary-leases and configuring multiple pools in a shared network. Thanks to Fernando Soto from BlueCat Networks for reporting the issue and supplying a patch. [ISC-Bugs #43262] - Fixed util/bindvar.sh error handling. [ISC-Bugs #41973] - Correct error message in relay to use remote id length instead of circuit id length. [ISC-Bugs #42556] - Add logic to test directory Makefiles to avoid copying Attfile(s) when building within the source tree. This eliminates a noisy but otherwise harmless error message when running "make check". [ISC-Bugs #41883] - Leases are now scrubbed of certain prior use information when pool re-balancing reassigns them from one FO peer to the other. This corrects an issue where leases that were offered but not used by the client retained the client hostname from the original client. Thanks to Pavel Polacek, Jan Evangelista Purkyne University for reporting the issue. [ISC-Bugs #42008] - In the LDAP code and schema add some missing '6' characters to use the v6 instead of the v4 versions. Thanks to Denis Taranushin for OBS-URL: https://build.opensuse.org/request/show/508601 OBS-URL: https://build.opensuse.org/package/show/network:dhcp/dhcp?expand=0&rev=174
59 lines
1.9 KiB
Plaintext
59 lines
1.9 KiB
Plaintext
#
|
|
# /etc/dhclient.conf -- dhclient configuration file
|
|
# See "man dhclient.conf" for further details
|
|
#
|
|
|
|
######################################################
|
|
# Sometimes, a special configuration is required for
|
|
# e.g. Cable Modem providers (@Home -- TCI).
|
|
# For example, it may be required to send out a special
|
|
# dhcp-client-identifier or to override some settings.
|
|
#
|
|
# Uncomment and fill in the appropriate settings:
|
|
#
|
|
#send dhcp-client-identifier "c32423-a"
|
|
# or as hex octets
|
|
#send dhcp-client-identifier 1:0:a0:24:ab:fb:9c;
|
|
#
|
|
# Note, that hostname is usually send using -H option.
|
|
#send host-name "andare.fugue.com";
|
|
#
|
|
#supersede domain-name "fugue.com home.vix.com";
|
|
#prepend domain-name-servers 127.0.0.1;
|
|
#
|
|
#####################################################
|
|
|
|
# uncomment to request a specific lease time, otherwise
|
|
# the dhcp server will provide its default lease time:
|
|
#send dhcp-lease-time 3600;
|
|
|
|
#
|
|
# Define RFC 3442 classless static route option
|
|
#
|
|
option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;
|
|
|
|
#
|
|
# Define RFC 4833 timezone options
|
|
#
|
|
option rfc4833-tz-posix-string code 100 = string;
|
|
option rfc4833-tz-name code 101 = string;
|
|
|
|
# Request several well known/usefull dhcp options.
|
|
request subnet-mask, broadcast-address, routers, rfc3442-classless-static-routes, interface-mtu, host-name, domain-name, domain-search, domain-name-servers, nis-domain, nis-servers, nds-context, nds-servers, nds-tree-name, netbios-name-servers, netbios-dd-server, netbios-node-type, netbios-scope, ntp-servers;
|
|
# rfc4833-tz-posix-string, rfc4833-tz-name;
|
|
|
|
# We request above options, require only the IP configuration:
|
|
require subnet-mask;
|
|
# All another options (DNS, NTP, NIS, ...) are applied using
|
|
# netconfig(8) modules.
|
|
|
|
# To enforce the availability of the dns server list, set to:
|
|
#require subnet-mask, domain-name-servers;
|
|
|
|
timeout 60;
|
|
retry 60;
|
|
reboot 10;
|
|
select-timeout 5;
|
|
initial-interval 2;
|
|
|