source: rtems-libbsd/dhcpcd/dhcpcd.conf @ 2017a6d

55-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since 2017a6d was f2ed769, checked in by Sebastian Huber <sebastian.huber@…>, on 01/30/14 at 12:29:46

DHCPCD(8): Import

Import DHCPCD(8) from:

http://roy.marples.name/projects/dhcpcd/

The upstream sources can be obtained via:

fossil clone http://roy.marples.name/projects/dhcpcd

The imported version is 2014-01-29 19:46:44 [6b209507bb].

  • Property mode set to 100644
File size: 1.0 KB
Line 
1# A sample configuration for dhcpcd.
2# See dhcpcd.conf(5) for details.
3
4# Inform the DHCP server of our hostname for DDNS.
5hostname
6
7# Use the hardware address of the interface for the Client ID.
8#clientid
9# or
10# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
11duid
12
13# Persist interface configuration when dhcpcd exits.
14persistent
15
16# Rapid commit support.
17# Safe to enable by default because it requires the equivalent option set
18# on the server to actually work.
19option rapid_commit
20
21# A list of options to request from the DHCP server.
22option domain_name_servers, domain_name, domain_search, host_name
23option classless_static_routes
24# Most distributions have NTP support.
25option ntp_servers
26# Respect the network MTU.
27# Some interface drivers reset when changing the MTU so disabled by default.
28#option interface_mtu
29
30# A ServerID is required by RFC2131.
31require dhcp_server_identifier
32
33# A hook script is provided to lookup the hostname if not set by the DHCP
34# server, but it should not be run by default.
35nohook lookup-hostname
Note: See TracBrowser for help on using the repository browser.