2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-04 16:05:17 +00:00

[#2645] Addressed some comments

This commit is contained in:
Francis Dupont
2022-11-22 17:13:27 +01:00
parent a3801216f7
commit 09367c7e39

View File

@@ -13,7 +13,8 @@ Leasequery (`RFC 5007 <https://tools.ietf.org/html/rfc5007>`__).
``kea-dhcp6`` process. ``kea-dhcp6`` process.
Kea version 2.3.4 added support for DHCPv6 Bulk Leasequery Kea version 2.3.4 added support for DHCPv6 Bulk Leasequery
(`RFC 5460 <https://tools.ietf.org/html/rfc5460>`__). (`RFC 5460 <https://tools.ietf.org/html/rfc5460>`__) using the memfile
lease backend.
The Leasequery library is only available to ISC customers with a paid support contract. The Leasequery library is only available to ISC customers with a paid support contract.
@@ -340,8 +341,7 @@ DHCPv6 Bulk Leasequery
DHCPv6 Bulk Leasequery gives a requester the ability to query for DHCPv6 Bulk Leasequery gives a requester the ability to query for
active lease information over a TCP connection. This allows the server active lease information over a TCP connection. This allows the server
to return all active leases matching a query instead of the most recent to return all active leases matching a query.
one with links where others belongs to.
New query types are available: ``query-by-relay-id`` (3), New query types are available: ``query-by-relay-id`` (3),
``query-by-link-address`` (4) and ``query-by-remote-id`` (5). ``query-by-link-address`` (4) and ``query-by-remote-id`` (5).
@@ -349,16 +349,6 @@ New query types are available: ``query-by-relay-id`` (3),
A new status code was defined: ``STATUS_QueryTerminated`` (11) but it is A new status code was defined: ``STATUS_QueryTerminated`` (11) but it is
not yet used by the hook library. not yet used by the hook library.
The active lease information returned by the hook library is similar to
the simple Leasequery but instead of using a ``lq-client-link`` option
for other leases one ``DHCPV6_LEASEQUERY_DATA`` message is sent.
The first lease (most recent for by client id, lowest address for new
query type) is sent in the ``DHCPV6_LEASEQUERY_REPLY`` in a
``client-data`` option (45).
When the ``DHCPV6_LEASEQUERY_REPLY` includes a ``client-data`` option (45)
a ``DHCPV6_LEASEQUERY_DONE`` message marks the end of retrieved leases.
.. note:: .. note::
New query types are supported only with the memfile lease backend. New query types are supported only with the memfile lease backend.
@@ -458,6 +448,5 @@ For instance:
.. note:: .. note::
Even the configuration syntax is not family dependent only DHCPv6 Bulk The configuration is same for either DHCPv4 and DHCPv6, although
Leasequery is supported. currently only the latter is supported.