# The following list defines subnets. Each subnet consists of at
# least subnet and pool entries.
"subnet4": [
- { "pool": [ "192.0.2.1 - 192.0.2.200" ],
+ { "pools": [ { "pool": "192.0.2.1 - 192.0.2.200" } ],
"subnet": "192.0.2.0/24" },
- { "pool": [ "192.0.3.100 - 192.0.3.200" ],
+ { "pools": [ { "pool": "192.0.3.100 - 192.0.3.200" } ],
"subnet": "192.0.3.0/24" },
- { "pool": [ "192.0.4.1 - 192.0.4.254" ],
+ { "pools": [ { "pool": "192.0.4.1 - 192.0.4.254" } ],
"subnet": "192.0.4.0/24" } ]
}
{ "Dhcp4":
-{
+{
# Kea is told to listen on eth0 interface only.
"interfaces": [ "eth0" ],
# The following list defines subnets. We have only one subnet
# here.
- "subnet4": [
- { "pool": [ "192.0.2.1 - 192.0.2.200" ],
- "subnet": "192.0.2.0/24" } ]
+ "subnet4": [
+ {
+ "pools": [ { "pool": "192.0.2.1 - 192.0.2.200" } ],
+ "subnet": "192.0.2.0/24"
+ }
+ ]
}
}
# The following list defines subnets. Each subnet consists of at
# least subnet and pool entries.
"subnet6": [
- { "pool": [ "2001:db8:1::/80" ],
+ { "pools": [ { "pool": "2001:db8:1::/80" } ],
"subnet": "2001:db8:1::/64" },
- { "pool": [ "2001:db8:2::/80" ],
+ { "pools": [ { "pool": "2001:db8:2::/80" } ],
"subnet": "2001:db8:2::/64" },
- { "pool": [ "2001:db8:3::/80" ],
+ { "pools": [ { "pool": "2001:db8:3::/80" } ],
"subnet": "2001:db8:3::/64" },
- { "pool": [ "2001:db8:4::/80" ],
+ { "pools": [ { "pool": "2001:db8:4::/80" } ],
"subnet": "2001:db8:4::/64" } ]
}