diff options
Diffstat (limited to 'examples/tg16/dhcp/dhcpd6.conf')
-rw-r--r-- | examples/tg16/dhcp/dhcpd6.conf | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/examples/tg16/dhcp/dhcpd6.conf b/examples/tg16/dhcp/dhcpd6.conf new file mode 100644 index 0000000..1ca21a2 --- /dev/null +++ b/examples/tg16/dhcp/dhcpd6.conf @@ -0,0 +1,64 @@ +# GENERATED BY make-dhcpd6.pl + +# IPv6 address valid lifetime +# (at the end the address is no longer usable by the client) +# (usual IPv6 default is 30 days) +default-lease-time 3600; + +# IPv6 address preferred lifetime +# (at the end the address is deprecated, i.e., the client should use +# other addresses for new connections) +# (usual IPv6 default is 7 days) +preferred-lifetime 3600; + +# T1, the delay before Renew +# (default is 1/2 preferred lifetime) +option dhcp-renewal-time 1800; + +# T2, the delay before Rebind (if Renews failed) +# (default is 3/4 preferred lifetime) +option dhcp-rebinding-time 1800; + +# Enable RFC 5007 support +allow leasequery; + +# Set preference to 255 (maximum) in order to avoid waiting for +# additional servers when there is only one +option dhcp6.preference 255; + +# Server side command to enable rapid-commit (2 packet exchange) +option dhcp6.rapid-commit; + +# The delay before information-request refresh +# (minimum is 10 minutes, maximum one day, default is to not refresh) +# (set to 6 hours) +option dhcp6.info-refresh-time 21600; + +# Don't let clients set their own FQDN +ignore client-updates; + +# disable ddns +ddns-update-style none; + +# make server authorative +authoritative; + +# Global definitions for name server address(es) and domain search list +option domain-name "tg16.gathering.org"; +option dhcp6.name-servers 2a06:5841:149a::2, 2a06:5841:1337::2; + +key DHCP_UPDATER { + algorithm HMAC-MD5.SIG-ALG.REG.INT; + secret <removed>; +} + +subnet6 2a06:5841:149a::/64 {} +subnet6 2a06:5841:1337::/64 { + range6 2a06:5841:1337::8000 2a06:5841:1337::9999; +} + +include "/etc/dhcp/v6-generated-include.conf"; +include "/etc/dhcp/v6-pxe-boot.conf"; +#include "/etc/dhcp/v6-wlc.conf"; +#include "/etc/dhcp/v6-voip.conf"; + |