]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - config/dhcpc/dhcpcd.conf
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / config / dhcpc / dhcpcd.conf
1 # A sample configuration for dhcpcd.
2 # See dhcpcd.conf(5) for details.
3
4 # Only obtain an IP address for IPv4
5 ipv4only
6
7 # Allow users of this group to interact with dhcpcd via the control socket.
8 #controlgroup wheel
9
10 # Inform the DHCP server of our hostname for DDNS.
11 hostname
12
13 # Use the hardware address of the interface for the Client ID.
14 #clientid
15 # or
16 # Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
17 # Some non-RFC compliant DHCP servers do not reply with this set.
18 # In this case, comment out duid and enable clientid above.
19 duid
20
21 # Persist interface configuration when dhcpcd exits.
22 persistent
23
24 # vendorclassid is set to blank to avoid sending the default of
25 # dhcpcd-<version>:<os>:<machine>:<platform>
26 vendorclassid
27
28 # A list of options to request from the DHCP server.
29 option domain_name_servers, domain_name, domain_search
30 option classless_static_routes
31 # Respect the network MTU. This is applied to DHCP routes.
32 option interface_mtu
33
34 # Request a hostname from the network
35 option host_name
36
37 # Most distributions have NTP support.
38 option ntp_servers
39
40 # Rapid commit support.
41 # Safe to enable by default because it requires the equivalent option set
42 # on the server to actually work.
43 option rapid_commit
44
45 # A ServerID is required by RFC2131.
46 require dhcp_server_identifier
47
48 # Generate SLAAC address using the Hardware Address of the interface
49 slaac hwaddr
50 # OR generate Stable Private IPv6 Addresses based from the DUID
51 #slaac private
52
53 # A hook script is provided to lookup the hostname if not set by the DHCP
54 # server, but it should not be run by default.
55 nohook lookup-hostname
56
57 # disable ipv4ll (IPv4 local link/apipa) ip's
58 noipv4ll
59
60 # Increase timeout to 60s
61 timeout 60