{ # Group with DHCPv6 subnet declaration config # authoritative is mandatory "Dhcp6": { "valid-lifetime": 1200, "interfaces-config": { "interfaces": [ "bar" ] }, "subnet6": [ # DHCPv4 subnet declaration { "subnet": "2001::/64", "pools": [ # at least one pool is required { "pool": "2001::100 - 2001::200" } ], "interface": "bar", "valid-lifetime": 1800, "option-data": [ { "space": "dhcp6", "name": "lq-relay-data", "code": 47, // "original-data": "2001::1, \"foobar\"", "data": "2001::1, foobar" }, # option { "space": "dhcp6", "name": "domain-search", "code": 24, "data": "example.com, example.org" } ] } ] } }