]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
- s/pool/pools/ in docs 1/head
authorAdam Osuchowski <adwol@pld-linux.org>
Thu, 18 Sep 2014 12:49:23 +0000 (14:49 +0200)
committerAdam Osuchowski <adwol@pld-linux.org>
Thu, 18 Sep 2014 12:49:23 +0000 (14:49 +0200)
- add brackets and braces in pools

doc/guide/config.xml
doc/guide/dhcp4-srv.xml

index a2217f796a844ee19c41e30baf2703526f6815ac..463855cd464e05275c3f58a9463a2811acdef656 100644 (file)
@@ -61,7 +61,7 @@
     "renew-timer": 1000,
     "rebind-timer": 2000,
     "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"
     }],
     ...
@@ -76,7 +76,7 @@
     "renew-timer": 1000,
     "rebind-timer": 2000,
     "subnet6": [{
-       "pool": "2001:db8::/80",
+       "pools": [ { "pool": "2001:db8::/80" } ],
        "subnet": "2001:db8::/64"
     }],
     ...
index 7e4ae71c4aea2fd23b62a332a55e979b14c3c41c..aed6589afaca87b47e9f87c27e96113917a42b2f 100644 (file)
@@ -218,7 +218,7 @@ syntax would be used:
         "subnet": "192.0.3.0/24"
     },
     {
-        "pool": [ { "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"
     }
 ]