diff options
author | David Kaspar [Dee'Kej] <dkaspar@redhat.com> | 2017-05-02 23:17:19 +0200 |
---|---|---|
committer | Dee'Kej <deekej@linuxmail.org> | 2017-05-03 11:53:09 +0200 |
commit | c087ea1d7d0e21865a763b0d7e0bc8d3557d1830 (patch) | |
tree | b2c060e23952be86de2ffb07fc71ad4e66bee7d3 /sysconfig.txt | |
parent | e37d6b2c4dc1db8e31d9c230fab929cbc83648b6 (diff) | |
download | initscripts-c087ea1d7d0e21865a763b0d7e0bc8d3557d1830.tar initscripts-c087ea1d7d0e21865a763b0d7e0bc8d3557d1830.tar.gz initscripts-c087ea1d7d0e21865a763b0d7e0bc8d3557d1830.tar.bz2 initscripts-c087ea1d7d0e21865a763b0d7e0bc8d3557d1830.tar.xz initscripts-c087ea1d7d0e21865a763b0d7e0bc8d3557d1830.zip |
DHCP_FQDN and DHCP_SEND_HOSTNAME introduced
The way DHCP_HOSTNAME is being sent to DHCP server has been completely
reworked...
DHCP_FQDN now allows user to specify fully qualified domain name to be
sent to DHCP server instead of just using simple hostname. This option
takes precedence before DHCP_HOSTNAME variable.
DHCP_SEND_HOSTNAME can be used to tell initscripts to not send either
DHCP_HOSTNAME or DHCP_FQDN to DHCP server.
Both of these options should behave same as they do in NetworkManager.
Diffstat (limited to 'sysconfig.txt')
-rw-r--r-- | sysconfig.txt | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/sysconfig.txt b/sysconfig.txt index 08243f11..f09c6d8b 100644 --- a/sysconfig.txt +++ b/sysconfig.txt @@ -550,8 +550,18 @@ Files in /etc/sysconfig/network-scripts/ With this option set to 'yes' (1), when a dhcp configured interface is brought down with 'ifdown', the lease will be released. Otherwise, leases are not released. - DHCP_HOSTNAME=<name> + + DHCP_SEND_HOSTNAME=yes|no|1|0 + Tells initscripts whether the DHCP_HOSTNAME or DHCP_FQDN options (below) + should be sent to DHCP server. + DHCP_HOSTNAME=<hostname> Sends the specified hostname to the DHCP server. + DHCP_FQDN=<fully.qualified.domain.name> + Sends the specified FQDN to the DHCP server. + + Please note when both DHCP_HOSTNAME and DHCP_FQDN are specified, + only DHCP_FQDN will be used. (Same behaviour as with NetworkManager.) + DHCLIENT_IGNORE_GATEWAY=yes|no|1|0 If set to 'yes', it will cause dhclient-script to ignore any $GATEWAY setting that may be in the ifcfg file for this interface. |