-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkea.conf
147 lines (147 loc) · 3.32 KB
/
kea.conf
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"DhcpDdns": {
"ip-address": "::1",
"forward-ddns": {
"ddns-domains": [
{
"name": "x.forgue.io.",
"key-name": "dhcp-update",
"dns-servers": [
{
"ip-address": "fd15:bc0a:cd5:d18b::53",
"port": 1053
}
]
}
]
},
"tsig-keys": [
{
"name": "dhcp-update",
"algorithm": "HMAC-SHA256",
"secret": "OaMUNif6I/ziBB9tltvapgWotXvEU8KaJOwA7RA75l4="
}
]
},
"Dhcp4": {
"interfaces-config": {
"interfaces": [ "em0/172.16.0.1" ]
},
"control-socket": {
"socket-type": "unix",
"socket-name": "/tmp/kea-dhcp4-ctrl.sock"
},
"lease-database": {
"type": "memfile"
},
"expired-leases-processing": {
"reclaim-timer-wait-time": 10,
"flush-reclaimed-timer-wait-time": 25,
"hold-reclaimed-time": 3600,
"max-reclaim-leases": 100,
"max-reclaim-time": 250,
"unwarned-reclaim-cycles": 5
},
"valid-lifetime": 604800,
"option-data": [
{
"name": "domain-name-servers",
"data": "172.16.0.1"
},
{
"name": "domain-name",
"data": "forgue.io"
}
],
"subnet4": [
{
"subnet": "172.16.0.0/24",
"pools": [ { "pool": "172.16.0.10 - 172.16.0.254" } ],
"option-data": [
{
"name": "routers",
"data": "172.16.0.1"
}
],
"reservations": [
]
}
]
},
"Dhcp6": {
"interfaces-config": {
"interfaces": [ "em0/2601:647:5680:661::1" ]
},
"control-socket": {
"socket-type": "unix",
"socket-name": "/tmp/kea-dhcp6-ctrl.sock"
},
"lease-database": {
"type": "memfile"
},
"expired-leases-processing": {
"reclaim-timer-wait-time": 10,
"flush-reclaimed-timer-wait-time": 25,
"hold-reclaimed-time": 3600,
"max-reclaim-leases": 100,
"max-reclaim-time": 250,
"unwarned-reclaim-cycles": 5
},
"preferred-lifetime": 604800,
"valid-lifetime": 604800,
"option-data": [
{
"name": "dns-servers",
"data": "fd15:bc0a:cd5:d18b::53"
}
],
"dhcp-ddns": {
"enable-updates": true,
"server-ip": "::1",
"qualifying-suffix": "x.forgue.io",
"override-no-update": true,
"replace-client-name": "when-not-present"
},
"subnet6": [
{
"subnet": "2601:647:5680:661::/64",
"pools": [ { "pool": "2601:647:5680:661::/64" } ],
"interface": "em0"
}
]
},
"Logging": {
"loggers": [
{
"name": "kea-dhcp4",
"output_options": [
{
"output": "/var/log/kea-dhcp4.log"
}
],
"severity": "INFO",
"debuglevel": 0
},
{
"name": "kea-dhcp6",
"output_options": [
{
"output": "/var/log/kea-dhcp6.log"
}
],
"severity": "DEBUG",
"debuglevel": 0
},
{
"name": "kea-dhcp-ddns",
"output_options": [
{
"output": "/var/log/kea-ddns.log"
}
],
"severity": "DEBUG",
"debuglevel": 10
}
]
}
}