diff options
| author | Roy Marples <roy@marples.name> | 2009-01-29 11:21:16 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2009-01-29 11:21:16 +0000 |
| commit | ed913a59775402a9ce66067858d7280fe4506176 (patch) | |
| tree | 622bc27dd349878a48255b2102e881cedda64401 /dhcpcd.conf | |
| parent | f2151f9eafc673071c14667f0f334c3288f74a65 (diff) | |
| download | dhcpcd-ed913a59775402a9ce66067858d7280fe4506176.tar.xz | |
dhcpcd should not send hostname by default.
However, the default config file we ship enables the sending of the hostname
by default.
This makes things more explicit I think, and also allows the FQDN to be sent
but not the hostname if someone ever needs this.
Diffstat (limited to 'dhcpcd.conf')
| -rw-r--r-- | dhcpcd.conf | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dhcpcd.conf b/dhcpcd.conf index cce1795c..78e55fcb 100644 --- a/dhcpcd.conf +++ b/dhcpcd.conf @@ -1,9 +1,11 @@ # A sample configuration for dhcpcd. # See dhcpcd.conf(5) for details. -# dhcpcd-run-hooks uses these options. -option domain_name_servers, domain_name, domain_search, host_name +# We normally want to inform the DHCP server of our hostname for DDNS. +hostname +# A list of options we should request from the DHCP server. +option domain_name_servers, domain_name, domain_search, host_name # Most distros have ntp support. option ntp_servers |
