1{ 2 # DHCPv4 subnet declaration config 3 # parameter which will be changed in subnet 4 /// This configuration declares some subnets but has no interfaces-config 5 /// Reference Kea #245 6 "Dhcp4": { 7 "valid-lifetime": 1800, 8 "subnet4": [ 9 # DHCPv4 subnet declaration 10 { 11 "id": 1, 12 "subnet": "10.5.5.0/27", 13 "pools": [ 14 # at least one pool is required 15 { 16 "pool": "10.5.5.5 - 10.5.5.10" 17 } 18 ], 19 "option-data": [ 20 { 21 "space": "dhcp4", 22 "name": "domain-search", 23 "code": 119, 24// "original-data": "\"example.com\", \"example.org\"", 25 "data": "example.com, example.org" 26 } 27 ], 28 "valid-lifetime": 3600, 29 "match-client-id": true 30 } 31 ] 32 } 33} 34