aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/make-dhcpd6.pl
diff options
context:
space:
mode:
authorKristian Lyngstol <kristian@bohemians.org>2015-04-20 12:29:32 +0200
committerKristian Lyngstol <kristian@bohemians.org>2015-04-20 12:29:32 +0200
commite22ca8f424d0c728b53ba7ce6536ca7ec0ef4620 (patch)
tree5d18e4f47fb96c3a18d4c4d6a70f4ba7248cd55e /bootstrap/make-dhcpd6.pl
parent05d76e9ff287710aea72b6afcd61dc15589aeacf (diff)
parentc9c065a9ee373de78a8051324e56eb061585b004 (diff)
Merge branch 'master' of github.com:tech-server/tgmanage
Diffstat (limited to 'bootstrap/make-dhcpd6.pl')
-rwxr-xr-xbootstrap/make-dhcpd6.pl10
1 files changed, 4 insertions, 6 deletions
diff --git a/bootstrap/make-dhcpd6.pl b/bootstrap/make-dhcpd6.pl
index 51d93c4..f678c14 100755
--- a/bootstrap/make-dhcpd6.pl
+++ b/bootstrap/make-dhcpd6.pl
@@ -34,23 +34,21 @@ if ( not -f $dhcpd_conf )
# IPv6 address valid lifetime
# (at the end the address is no longer usable by the client)
-# (set to 30 days, the usual IPv6 default)
+# (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)
-# (set to 7 days, the usual IPv6 default)
+# (usual IPv6 default is 7 days)
preferred-lifetime 3600;
# T1, the delay before Renew
# (default is 1/2 preferred lifetime)
-# (set to 1 hour)
option dhcp-renewal-time 1800;
# T2, the delay before Rebind (if Renews failed)
# (default is 3/4 preferred lifetime)
-# (set to 2 hours)
option dhcp-rebinding-time 1800;
# Enable RFC 5007 support
@@ -58,10 +56,10 @@ allow leasequery;
# Set preference to 255 (maximum) in order to avoid waiting for
# additional servers when there is only one
-#option dhcp6.preference 255;
+option dhcp6.preference 255;
# Server side command to enable rapid-commit (2 packet exchange)
-#option dhcp6.rapid-commit;
+option dhcp6.rapid-commit;
# The delay before information-request refresh
# (minimum is 10 minutes, maximum one day, default is to not refresh)