diff options
author | Thomas Markwalder <tmark@isc.org> | 2024-12-06 18:45:49 +0100 |
---|---|---|
committer | Thomas Markwalder <tmark@isc.org> | 2024-12-06 18:46:55 +0100 |
commit | 9480b1ac76560c8c5d6434027cdc834a09454282 (patch) | |
tree | 04b8de3214b5a2d8801c73a269132debf54eadd9 | |
parent | [#3348] Update docs about subnet/pool selection (diff) | |
download | kea-9480b1ac76560c8c5d6434027cdc834a09454282.tar.xz kea-9480b1ac76560c8c5d6434027cdc834a09454282.zip |
[#3348] Minor fixes after review
Changes to be committed:
modified: doc/sphinx/arm/dhcp4-srv.rst
modified: doc/sphinx/arm/dhcp6-srv.rst
-rw-r--r-- | doc/sphinx/arm/dhcp4-srv.rst | 6 | ||||
-rw-r--r-- | doc/sphinx/arm/dhcp6-srv.rst | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/sphinx/arm/dhcp4-srv.rst b/doc/sphinx/arm/dhcp4-srv.rst index ba03f0a973..3a7788544b 100644 --- a/doc/sphinx/arm/dhcp4-srv.rst +++ b/doc/sphinx/arm/dhcp4-srv.rst @@ -5961,7 +5961,7 @@ within the subnet as follows: "pools": [ { "pool": "192.0.2.10 - 192.0.2.20", - "client-classes": [ "reserved_class" ] + "client-classes": [ "unreserved_class" ] }, { "pool": "192.0.2.30 - 192.0.2.40", @@ -5979,9 +5979,9 @@ within the subnet as follows: ``reserved_class`` is declared without the ``test`` parameter because it may only be assigned to a client via the host reservation mechanism. The second class, ``unreserved_class``, is assigned to clients which do not -belong to the ``reserved_class``. +belong to ``reserved_class``. -The first pool with the subnet is used for clients not having such a reservation. +The first pool in the subnet is used for clients not having such a reservation. The second pool is only used for clients having a reservation for ``reserved_class``. The third pool is an unrestricted pool for any clients, comprising of both ``reserved_class`` clients and ``unreserved_class``. diff --git a/doc/sphinx/arm/dhcp6-srv.rst b/doc/sphinx/arm/dhcp6-srv.rst index d601d3286b..53b390d018 100644 --- a/doc/sphinx/arm/dhcp6-srv.rst +++ b/doc/sphinx/arm/dhcp6-srv.rst @@ -5249,7 +5249,7 @@ within the subnet as follows: ``reserved_class`` is declared without the ``test`` parameter because it may be only assigned to a client via host reservation mechanism. The second class, ``unreserved_class``, is assigned to clients which do not -belong to the ``reserved_class``. +belong to ``reserved_class``. The first pool with the subnet is used for clients not having such a reservation. The second pool is only used for clients having a reservation for ``reserved_class``. |