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