diff options
author | Razvan Becheriu <razvan@isc.org> | 2020-10-09 12:12:28 +0200 |
---|---|---|
committer | Razvan Becheriu <razvan@isc.org> | 2020-11-18 14:55:22 +0100 |
commit | 02ac4594517129336986bc4dc5dad43e46b92d4e (patch) | |
tree | 1b829f493eace0aa9f2f71fed350e02840d7035d /doc/sphinx/arm/dhcp6-srv.rst | |
parent | [#1405] fixed documentation (diff) | |
download | kea-02ac4594517129336986bc4dc5dad43e46b92d4e.tar.xz kea-02ac4594517129336986bc4dc5dad43e46b92d4e.zip |
[#1405] added parser class
Diffstat (limited to 'doc/sphinx/arm/dhcp6-srv.rst')
-rw-r--r-- | doc/sphinx/arm/dhcp6-srv.rst | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/doc/sphinx/arm/dhcp6-srv.rst b/doc/sphinx/arm/dhcp6-srv.rst index a8c0ca577c..269c9ca5e3 100644 --- a/doc/sphinx/arm/dhcp6-srv.rst +++ b/doc/sphinx/arm/dhcp6-srv.rst @@ -4294,7 +4294,15 @@ following can be used: "valid-lifetime": 600, "subnet4": [ { "subnet": "2001:db8:1::/64", - "reservation-mode": "global", + # It is deprecated by the "reservation-modes" map. + # "reservation-mode": "global", + # Reservation modes specifying server's mode of operation when it + # fetches host reservations. + "reservation-modes": { + "global": True, + "in-subnet": False, + "out-of-pool": False + }, "pools": [ { "pool": "2001:db8:1::-2001:db8:1::100" } ] } ] } @@ -4397,7 +4405,15 @@ following example: "hw-address": "aa:bb:cc:dd:ee:fe", "client-classes": [ "reserved_class" ] }], - "reservation-mode": "global", + # It is deprecated by the "reservation-modes" map. + # "reservation-mode": "global", + # Reservation modes specifying server's mode of operation when it + # fetches host reservations. + "reservation-modes": { + "global": True, + "in-subnet": False, + "out-of-pool": False + }, "shared-networks": [{ "subnet6": [ { |