-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkea-dhcp4.conf
More file actions
58 lines (57 loc) · 1.63 KB
/
kea-dhcp4.conf
File metadata and controls
58 lines (57 loc) · 1.63 KB
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
{
"Dhcp4": {
"interfaces-config": {
"interfaces": [ "*" ],
"dhcp-socket-type": "raw"
},
"control-socket": {
"socket-type": "unix",
"socket-name": "/kea/sockets/dhcp4.socket"
},
"lease-database": {
"type": "memfile",
"name": "/kea/leases/dhcp4.csv",
"lfc-interval": 3600
},
"multi-threading": {
"enable-multi-threading": true,
"thread-pool-size": 4,
"packet-queue-size": 28
},
"hooks-libraries": [
{
"library": "libdhcp_host_cmds.so"
},
{
"library": "libdhcp_subnet_cmds.so"
},
{
"library": "libdhcp_lease_cmds.so"
}
],
"parked-packet-limit": 128,
"valid-lifetime": 6000,
"renew-timer": 900,
"rebind-timer": 1800,
"loggers": [
{
"name": "kea-dhcp4",
"output_options": [
{
"output": "stdout",
"pattern": "%D{%Y-%m-%d %H:%M:%S.%q} %-5p [%c/%i.%t] %m\n"
},
{
"output": "/kea/logs/dhcp4.log",
"flush": true,
"maxsize": 1048576,
"maxver": 8,
"pattern": "%D{%Y-%m-%d %H:%M:%S.%q} %-5p [%c/%i.%t] %m\n"
}
],
"severity": "INFO",
"debuglevel": 0
}
]
}
}