diff options
author | Razvan Becheriu <razvan@isc.org> | 2020-10-27 18:49:22 +0100 |
---|---|---|
committer | Razvan Becheriu <razvan@isc.org> | 2020-11-18 14:55:23 +0100 |
commit | 21f9a8f82ca5c6fa66ae97cbb9de8678052cb7e6 (patch) | |
tree | 3adc57116fec31dc82e0a733c19fbd21ad974f62 /doc/sphinx | |
parent | [#1405] addressed comments (diff) | |
download | kea-21f9a8f82ca5c6fa66ae97cbb9de8678052cb7e6.tar.xz kea-21f9a8f82ca5c6fa66ae97cbb9de8678052cb7e6.zip |
[#1405] in-subnet is equivalent to all
Diffstat (limited to 'doc/sphinx')
-rw-r--r-- | doc/sphinx/arm/dhcp4-srv.rst | 6 | ||||
-rw-r--r-- | doc/sphinx/arm/dhcp6-srv.rst | 6 | ||||
-rw-r--r-- | doc/sphinx/arm/hooks.rst | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/doc/sphinx/arm/dhcp4-srv.rst b/doc/sphinx/arm/dhcp4-srv.rst index 4bf6bd1c98..d4a6456dc6 100644 --- a/doc/sphinx/arm/dhcp4-srv.rst +++ b/doc/sphinx/arm/dhcp4-srv.rst @@ -4661,7 +4661,7 @@ The correspondence of old values are: "Dhcp4": { "reservations-global": false, - "reservations-in-subnet": false, + "reservations-in-subnet": true, "reservations-out-of-pool": true, ... } @@ -4674,7 +4674,7 @@ The correspondence of old values are: "reservations-global": false, "reservations-in-subnet": true, - "reservations-out-of-pool": true, + "reservations-out-of-pool": false, ... } @@ -4686,7 +4686,7 @@ To activate both ``global`` and ``all``, the following combination can be used: "reservations-global": true, "reservations-in-subnet": true, - "reservations-out-of-pool": true, + "reservations-out-of-pool": false, ... } diff --git a/doc/sphinx/arm/dhcp6-srv.rst b/doc/sphinx/arm/dhcp6-srv.rst index c5f7f3db5e..5c277fa612 100644 --- a/doc/sphinx/arm/dhcp6-srv.rst +++ b/doc/sphinx/arm/dhcp6-srv.rst @@ -4106,7 +4106,7 @@ The correspondence of old values are: "Dhcp6": { "reservations-global": false, - "reservations-in-subnet": false, + "reservations-in-subnet": true, "reservations-out-of-pool": true, ... } @@ -4119,7 +4119,7 @@ The correspondence of old values are: "reservations-global": false, "reservations-in-subnet": true, - "reservations-out-of-pool": true, + "reservations-out-of-pool": false, ... } @@ -4131,7 +4131,7 @@ To activate both ``global`` and ``all``, the following combination can be used: "reservations-global": true, "reservations-in-subnet": true, - "reservations-out-of-pool": true, + "reservations-out-of-pool": false, ... } diff --git a/doc/sphinx/arm/hooks.rst b/doc/sphinx/arm/hooks.rst index c2130c4a6b..95fceffe81 100644 --- a/doc/sphinx/arm/hooks.rst +++ b/doc/sphinx/arm/hooks.rst @@ -2663,7 +2663,7 @@ An example response could look as follows: # Specify if server should lookup in-subnet reservations. "reservations-in-subnet": true, # Specify if server should lookup out-of-pool reservations. - "reservations-out-of-pool": true, + "reservations-out-of-pool": false, "subnet4": [ { "subnet": "192.0.2.0/24", |