From a012ca42dc0783ed23972bdb59d59aa6e7ad146d Mon Sep 17 00:00:00 2001 From: Tomek Mrugalski Date: Mon, 22 Jun 2015 16:17:54 +0200 Subject: [PATCH] [3917] Missing Management API section added in DHCPv6 chapter. --- doc/guide/dhcp6-srv.xml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/doc/guide/dhcp6-srv.xml b/doc/guide/dhcp6-srv.xml index 38a0fac357..d111006351 100644 --- a/doc/guide/dhcp6-srv.xml +++ b/doc/guide/dhcp6-srv.xml @@ -2839,6 +2839,45 @@ should include options from the isc option space: +
+ Management API for the DHCPv6 server + + Management API has been introduced in Kea 0.9.2. It allows issuing specific + management commands, like statistics retrieval, reconfiguration or shutdown. + For more details, see . Currently the only + supported communication channel type is UNIX stream socket. By default there + are no sockets open. To instruct Kea to open a socket, the following entry + in the configuration file can be used: + +"Dhcp6": { + "control-socket": { + "socket-type": "unix", + "socket-name": "/path/to/the/unix/socket" + }, + + "subnet6": [ + ... + ], + ... +} + + + + + Communication over control channel is conducted using JSON structures. + See the Control Channel section in the Kea Developer's Guide for more details. + + + DHCPv4 server supports statistic-get, + statistic-reset, statistic-remove, + statistic-get-all, statistic-reset-all + and statistic-remove-all, specified in + . It also supports + list-commands and shutdown, + specified in and + , respectively. +
+
Supported DHCPv6 Standards The following standards are currently -- 2.47.2