-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkea-config.json
60 lines (60 loc) · 1.51 KB
/
kea-config.json
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
{
"Dhcp4": {
"valid-lifetime": 4000,
"renew-timer": 1000,
"rebind-timer": 2000,
"interfaces-config": {
"interfaces": [
"*"
]
},
"subnet4": [
{
"subnet": "192.168.0.0/24",
"pools": [
{
"pool": "192.168.0.10 - 192.168.0.200"
}
],
"option-data": [
{
"name": "domain-name-servers",
"data": "8.8.8.8"
},
{
"name": "routers",
"data": "192.168.0.254"
}
]
}
],
"next-server": "192.168.0.254",
"boot-file-name": "pxelinux.0"
},
"Logging": {
"loggers": [
{
"name": "kea-dhcp4",
"output_options": [
{
"output": "stdout"
}
],
"severity": "DEBUG"
},
{
"name": "kea-dhcp4",
"output_options": [
{
"output": "/var/log/kea-debug.log",
"maxver": 1,
"maxsize": 2048000,
"flush": true
}
],
"severity": "DEBUG",
"debuglevel": 99
}
]
}
}