1#	$NetBSD: dhcpcd.conf,v 1.5 2009/10/25 23:35:41 roy Exp $
2#
3# A sample configuration for dhcpcd.
4# See dhcpcd.conf(5) for details.
5
6# Inform the DHCP server of our hostname for DDNS.
7hostname
8# To share the DHCP lease across OSX and Windows a ClientID is needed.
9# Enabling this may get a different lease than the kernel DHCP client.
10# Some upstream DHCP servers may also require a ClientID, such as FRITZ!Box.
11#clientid
12
13# A list of options to request from the DHCP server.
14option domain_name_servers, domain_name, domain_search, host_name
15option classless_static_routes
16# Most distributions have NTP support.
17option ntp_servers
18# Respect the network MTU.
19option interface_mtu
20# A ServerID is required by RFC2131.
21require dhcp_server_identifier
22
23# A hook script is provided to lookup the hostname if not set by the DHCP
24# server, but it should not be run by default.
25nohook lookup-hostname
26