1{ 2 # DHCPv6 prefix config 3 # subnet declaration 4 /// This configuration declares some subnets but has no interfaces-config 5 /// Reference Kea #245 6 "Dhcp6": { 7 "subnet6": [ 8 { 9 "id": 1, 10 "subnet": "2001::/64", 11 "option-data": [ 12 # range declaration 13 { 14 "space": "dhcp6", 15 "name": "domain-search", 16 "code": 24, 17// "original-data": "\"example.com\", \"example.org\"", 18 "data": "example.com, example.org" 19 } 20 ], 21 "valid-lifetime": 1800, 22 "pd-pools": [ 23 { 24 "prefix": "2001:0:0:10::", 25 "delegated-len": 64, 26 "prefix-len": 60 27 } 28 ] 29 } 30 ] 31 } 32} 33