]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1405] fixed documentation
authorRazvan Becheriu <razvan@isc.org>
Thu, 8 Oct 2020 19:19:03 +0000 (22:19 +0300)
committerRazvan Becheriu <razvan@isc.org>
Wed, 18 Nov 2020 13:55:22 +0000 (15:55 +0200)
doc/sphinx/arm/dhcp4-srv.rst
doc/sphinx/arm/dhcp6-srv.rst

index fde29ba960235fcae1001cc5991f18d3c37ede7b..1b8b8d7315bcbb7a6d6fb32cfea9eb64a2cb3399 100644 (file)
@@ -4594,6 +4594,7 @@ An example configuration that disables reservation looks as follows:
        ]
    }
 
+
 An example configuration using global reservations is shown below:
 
 ::
@@ -4631,43 +4632,68 @@ The correspondence of old values are:
 
 ``disabled``:
 
+::
+
+   "Dhcp4": {
+
    "reservation-modes": {
        "global": False,
        "in-subnet": False,
        "out-of-pool": False
-   },
+   }
+   }
 
 ``global``:
 
+::
+
+   "Dhcp4": {
+
    "reservation-modes": {
        "global": True,
        "in-subnet": False,
        "out-of-pool": False
-   },
+   }
+   }
 
 ``out-of-pool``:
 
+::
+
+   "Dhcp4": {
+
    "reservation-modes": {
        "global": False,
        "in-subnet": False,
        "out-of-pool": True
-   },
+   }
+   }
 
 ``all``:
 
+::
+
+   "Dhcp4": {
+
    "reservation-modes": {
        "global": False,
        "in-subnet": True,
        "out-of-pool": True
-   },
+   }
+   }
 
 To activate both ``global`` and ``all``, the following combination can be used:
 
+::
+
+   "Dhcp4": {
+
    "reservation-modes": {
        "global": True,
        "in-subnet": True,
        "out-of-pool": True
-   },
+   }
+   }
 
 The parameter can be specified at global, subnet, and shared-network
 levels.
@@ -4690,6 +4716,7 @@ An example configuration that disables reservation looks as follows:
        ]
    }
 
+
 An example configuration using global reservations is shown below:
 
 ::
index a9500e47b9cd5c96153e6d16b102ad99058065fd..a8c0ca577c41d6113eca406281688634832dad42 100644 (file)
@@ -4077,43 +4077,68 @@ The correspondence of old values are:
 
 ``disabled``:
 
+::
+
+   "Dhcp6": {
+
    "reservation-modes": {
        "global": False,
        "in-subnet": False,
        "out-of-pool": False
-   },
+   }
+   }
 
 ``global``:
 
+::
+
+   "Dhcp6": {
+
    "reservation-modes": {
        "global": True,
        "in-subnet": False,
        "out-of-pool": False
-   },
+   }
+   }
 
 ``out-of-pool``:
 
+::
+
+   "Dhcp6": {
+
    "reservation-modes": {
        "global": False,
        "in-subnet": False,
        "out-of-pool": True
-   },
+   }
+   }
 
 ``all``:
 
+::
+
+   "Dhcp6": {
+
    "reservation-modes": {
        "global": False,
        "in-subnet": True,
        "out-of-pool": True
-   },
+   }
+   }
 
 To activate both ``global`` and ``all``, the following combination can be used:
 
+::
+
+   "Dhcp6": {
+
    "reservation-modes": {
        "global": True,
        "in-subnet": True,
        "out-of-pool": True
-   },
+   }
+   }
 
 The parameter can be specified at global, subnet, and shared-network
 levels.