From 14bc79503959eac4f12d64ff7832710046b48d13 Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Thu, 7 Feb 2019 16:55:11 +0000 Subject: [PATCH] Add Kea config --- misc/kea-dhcp4.conf | 68 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 misc/kea-dhcp4.conf diff --git a/misc/kea-dhcp4.conf b/misc/kea-dhcp4.conf new file mode 100644 index 0000000..304f963 --- /dev/null +++ b/misc/kea-dhcp4.conf @@ -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 + }, + ] +} +} +