diff options
author | Kristian Lyngstol <kristian@bohemians.org> | 2016-04-01 19:14:20 +0200 |
---|---|---|
committer | Kristian Lyngstol <kristian@bohemians.org> | 2016-04-01 19:14:20 +0200 |
commit | bc83b07e4aa4c68f63f4e1b9f6f00757388ea13c (patch) | |
tree | ccb9a45430645ea80bca1b3717e453e254229a0e /examples/tg16/dhcp/dhcpd6.conf | |
parent | 1d2470a411e5eaac7e5a1c5d5b6b81e92c92f4a8 (diff) | |
parent | 3dc8afb739a03459393d3cda79bd16cefff15cae (diff) |
Merge branch 'master' of github.com:tech-server/tgmanage
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"; + |