From: Marcin Siodelski Date: Tue, 9 Jun 2015 10:18:44 +0000 (+0200) Subject: [3070] Added section about Rapid Commit to the User Guide. X-Git-Tag: trac3732a_base~15^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5a126efb66c6a2fc4457b28f8a0c42a9eda6afd;p=thirdparty%2Fkea.git [3070] Added section about Rapid Commit to the User Guide. --- diff --git a/doc/guide/dhcp6-srv.xml b/doc/guide/dhcp6-srv.xml index 9c4496a3c1..2ba177d9c4 100644 --- a/doc/guide/dhcp6-srv.xml +++ b/doc/guide/dhcp6-srv.xml @@ -1304,6 +1304,40 @@ should include options from the isc option space: +
+ Rapid Commit + The Rapid Commit option, described in + RFC 3315, is supported + by the Kea DHCPv6 server. However, support is disabled by default for + all subnets. It can be enabled for a particular subnet using the + rapid-commit parameter as shown below: + +"Dhcp6": { + "subnet6": [ + { + "subnet": "2001:db8:beef::/48", + "rapid-commit": true, + "pools": [ + { + "pool": "2001:db8:beef::1-2001:db8:beef::10" + } + ], + } + ], + ... +} + + + + This setting is solely effective for a subnet for which the + rapid-commit is set to true. + For clients connected to other subnets, the server will ignore the + Rapid Commit option sent by the client and will follow the 4-way + exchange procedure, i.e. respond with the Advertise for the Solicit + containing Rapid Commit option. + +
+
DHCPv6 Relays