Add Kea config
This commit is contained in:
parent
cb20a164d3
commit
14bc795039
1 changed files with 68 additions and 0 deletions
68
misc/kea-dhcp4.conf
Normal file
68
misc/kea-dhcp4.conf
Normal file
|
@ -0,0 +1,68 @@
|
|||
# VPN360 DHCP Configuration
|
||||
# (c) 2018 Kumi Systems e.U.
|
||||
# https://kumi.systems
|
||||
|
||||
{
|
||||
"Dhcp4":
|
||||
{
|
||||
"interfaces-config": {
|
||||
"interfaces": [ "br0", "br1", "br2", "br3", "br4", "br5", "br6", "br7", "br8", "br9", "br10", "br11", "br12" ]
|
||||
},
|
||||
"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": 4000,
|
||||
"subnet4": [
|
||||
{ "subnet": "10.8.0.0/24",
|
||||
"pools": [ { "pool": "10.8.0.10 - 10.8.0.200" } ] },
|
||||
{ "subnet": "10.9.0.0/24",
|
||||
"pools": [ { "pool": "10.9.0.10 - 10.9.0.200" } ] },
|
||||
{ "subnet": "10.10.0.0/24",
|
||||
"pools": [ { "pool": "10.10.0.10 - 10.10.0.200" } ] },
|
||||
{ "subnet": "10.11.0.0/24",
|
||||
"pools": [ { "pool": "10.11.0.10 - 10.11.0.200" } ] },
|
||||
{ "subnet": "10.12.0.0/24",
|
||||
"pools": [ { "pool": "10.12.0.10 - 10.12.0.200" } ] },
|
||||
{ "subnet": "10.13.0.0/24",
|
||||
"pools": [ { "pool": "10.13.0.10 - 10.13.0.200" } ] },
|
||||
{ "subnet": "10.14.0.0/24",
|
||||
"pools": [ { "pool": "10.14.0.10 - 10.14.0.200" } ] },
|
||||
{ "subnet": "10.15.0.0/24",
|
||||
"pools": [ { "pool": "10.15.0.10 - 10.15.0.200" } ] },
|
||||
{ "subnet": "10.16.0.0/24",
|
||||
"pools": [ { "pool": "10.16.0.10 - 10.16.0.200" } ] },
|
||||
{ "subnet": "10.17.0.0/24",
|
||||
"pools": [ { "pool": "10.17.0.10 - 10.17.0.200" } ] },
|
||||
{ "subnet": "10.18.0.0/24",
|
||||
"pools": [ { "pool": "10.18.0.10 - 10.18.0.200" } ] },
|
||||
{ "subnet": "10.19.0.0/24",
|
||||
"pools": [ { "pool": "10.19.0.10 - 10.19.0.200" } ] },
|
||||
{ "subnet": "10.20.0.0/24",
|
||||
"pools": [ { "pool": "10.20.0.10 - 10.20.0.200" } ] }
|
||||
]
|
||||
},
|
||||
"Logging":
|
||||
{
|
||||
"loggers": [
|
||||
{
|
||||
"name": "kea-dhcp4",
|
||||
"output_options": [
|
||||
{
|
||||
"output": "/var/log/kea-dhcp4.log"
|
||||
}
|
||||
],
|
||||
"severity": "INFO",
|
||||
"debuglevel": 0
|
||||
},
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue