aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tg15/dhcp/dhcpd6.conf
blob: eecc0ace34bf9f5f11d887e571236f5f33e0612c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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 "tg15.gathering.org";
option dhcp6.name-servers 2a02:ed02:1ee7::66, 2a02:ed02:1337::2;

key DHCP_UPDATER {
        algorithm HMAC-MD5.SIG-ALG.REG.INT;
        secret <removed>;
}

subnet6 2a02:ed02:1ee7::/64 {}
subnet6 2a02:ed02:1337::/64 {
	range6 2a02:ed02:1337::8000 2a02:ed02: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";