34 lines
983 B
Text
34 lines
983 B
Text
|
# dhcpd.conf
|
||
|
# {{ ansible_managed }}
|
||
|
|
||
|
# option definitions common to all supported networks...
|
||
|
#option domain-name "example.org";
|
||
|
#option domain-name-servers ns1.example.org, ns2.example.org;
|
||
|
|
||
|
# We have tagged network so use last 4 bytes for tag (1500 max)
|
||
|
option interface-mtu 1496;
|
||
|
|
||
|
default-lease-time 600;
|
||
|
max-lease-time 7200;
|
||
|
|
||
|
# The ddns-updates-style parameter controls whether or not the server will
|
||
|
# attempt to do a DNS update when a lease is confirmed. We default to the
|
||
|
# behavior of the version 2 packages ('none', since DHCP v2 didn't
|
||
|
# have support for DDNS.)
|
||
|
ddns-update-style none;
|
||
|
|
||
|
# If this DHCP server is the official DHCP server for the local
|
||
|
# network, the authoritative directive should be uncommented.
|
||
|
{% if dhcp.authoritative %}
|
||
|
authoritative;
|
||
|
{% else %}
|
||
|
#authoritative;
|
||
|
{% endif %}
|
||
|
|
||
|
# Use this to send dhcp log messages to a different log file (you also
|
||
|
# have to hack syslog.conf to complete the redirection).
|
||
|
#log-facility local7;
|
||
|
|
||
|
# Aurore topology
|
||
|
# TODO
|