From: Tomek Mrugalski Date: Thu, 26 Apr 2018 21:58:06 +0000 (+0100) Subject: [5538] The hosts-databases entries are not needed. X-Git-Tag: trac5549_base~7^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ef6c2324b43aec03c1f71ba31ca5a4403fa2b8a;p=thirdparty%2Fkea.git [5538] The hosts-databases entries are not needed. --- diff --git a/doc/guide/hooks-radius.xml b/doc/guide/hooks-radius.xml index 69bd57e7b8..595d95db78 100644 --- a/doc/guide/hooks-radius.xml +++ b/doc/guide/hooks-radius.xml @@ -510,35 +510,6 @@ server. In other words, the host-cache mechanism is mandatory, unless you don't want the RADIUS communication for messages other than Discover and the first Request from each client. -Furthermore, the Kea allocation engine must be informed that RADIUS is -to be used as a source of information about hosts. To do so, radius must be -configured as a hosts-database. This example configuration snippet shows how to -do it: - -"Dhcp4": { - // Other DHCPv4 parameters here - ... - - // One new feature of Kea 1.4 is the ability to use multiple backends. - // Earlier versions allowed only hosts-database (single), which is still - // supported. However, a new format for hosts-databases is now also - // supported. - "hosts-databases": [ - // This tells the Kea engine that the first host backend to - // look at for hosts is the host cache. - { - "type": "host-cache" - }, - - // If host is not found in the first backend, the second backend - // should be used instead. - { - "type": "radius" - } - ] -} - -