1{ 2 # DHCPv4 pool config 3 # subnet declaration 4 /// This configuration declares some subnets but has no interfaces-config 5 /// Reference Kea #245 6 "Dhcp4": { 7 "subnet4": [ 8 { 9 "id": 1, 10 "subnet": "10.5.5.0/27", 11 /// default-valid-lifetime moved from an internal pool scope 12 "valid-lifetime": 1800, 13 "pools": [ 14 # pool declaration 15 { 16 "option-data": [ 17 { 18 "space": "dhcp4", 19 "name": "domain-search", 20 "code": 119, 21// "original-data": "\"example.com\", \"example.org\"", 22 "data": "example.com, example.org" 23 } 24 ], 25 "pool": "10.5.5.5 - 10.5.5.10" 26 } 27 ] 28 } 29 ] 30 } 31} 32