Home | History | Annotate | Line # | Download | only in tests
      1 {
      2   # DHCPv6 pool 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         /// 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": "dhcp6",
     19                 "name": "domain-search",
     20                 "code": 24,
     21 //              "original-data": "\"example.com\", \"example.org\"",
     22                 "data": "example.com, example.org"
     23               }
     24             ],
     25             "pool": "2001::100 - 2001::200"
     26           }
     27         ]
     28       }
     29     ]
     30   }
     31 }
     32