From: Marcin Siodelski Date: Wed, 26 Mar 2014 12:55:51 +0000 (+0100) Subject: [3281] Updated bind10-guide with the description of subnet identifiers. X-Git-Tag: bind10-1.2.0rc1-release~25^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a5a96b356fb3e7aae62209d8b28b4d026a79c62;p=thirdparty%2Fkea.git [3281] Updated bind10-guide with the description of subnet identifiers. --- diff --git a/doc/guide/bind10-guide.xml b/doc/guide/bind10-guide.xml index 932ccd52a1..39c62d7e67 100644 --- a/doc/guide/bind10-guide.xml +++ b/doc/guide/bind10-guide.xml @@ -3848,6 +3848,42 @@ Dhcp4/dhcp-ddns/qualifying-suffix "example.com" string +
+ IPv4 Subnet Identifier + + Subnet identifier is a unique number associated with a particular subnet. + In principle, it is used to associate clients' leases with respective subnets. + When subnet identifier is not specified for a subnet being configured, it will + be automatically assigned by the configuration mechanism. The identifiers + are assigned from 1 and are monotonically increased for each subsequent + subnet: 1, 2, 3 .... + + + If there are multiple subnets configured with auto-generated identifiers and + one of them is removed, the subnet identifiers may be renumbered. For example: + if there are 4 subnets and 3rd is removed the last subnet will be assigned + identifier that the 3rd subnet had before removal. As a result, the leases + stored in the lease database for subnet 3 are now associated with the + subnet 4, which may have unexpected consequences. In the future it is planned + to implement the mechanism to preserve auto-generated subnet ids upon removal + of one of the subnets. Currently, the only remedy for this issue is to + manually specify the unique subnet identifier for each subnet. + + + The following configuration: + +> config add Dhcp4/subnet4 +> config set Dhcp4/subnet4[0]/subnet "192.0.2.0/24" +> config set Dhcp4/subnet4[0]/id 1024 +> config commit + + will assign the arbitrary subnet identifier to the newly configured subnet. + This identifier will not change for this subnet until "id" parameter is + removed or set to 0. The value of 0 forces auto-generation of subnet + identifier. + +
+
Configuration of IPv4 Address Pools @@ -5302,6 +5338,42 @@ Dhcp6/dhcp-ddns/qualifying-suffix "example.com" string
+
+ IPv6 Subnet Identifier + + Subnet identifier is a unique number associated with a particular subnet. + In principle, it is used to associate clients' leases with respective subnets. + When subnet identifier is not specified for a subnet being configured, it will + be automatically assigned by the configuration mechanism. The identifiers + are assigned from 1 and are monotonically increased for each subsequent + subnet: 1, 2, 3 .... + + + If there are multiple subnets configured with auto-generated identifiers and + one of them is removed, the subnet identifiers may be renumbered. For example: + if there are 4 subnets and 3rd is removed the last subnet will be assigned + identifier that the 3rd subnet had before removal. As a result, the leases + stored in the lease database for subnet 3 are now associated with the + subnet 4, which may have unexpected consequences. In the future it is planned + to implement the mechanism to preserve auto-generated subnet ids upon removal + of one of the subnets. Currently, the only remedy for this issue is to + manually specify the unique subnet identifier for each subnet. + + + The following configuration: + +> config add Dhcp6/subnet6 +> config set Dhcp6/subnet6[0]/subnet "2001:db8:1::/64" +> config set Dhcp6/subnet6[0]/id 1024 +> config commit + + will assign the arbitrary subnet identifier to the newly configured subnet. + This identifier will not change for this subnet until "id" parameter is + removed or set to 0. The value of 0 forces auto-generation of subnet + identifier. + +
+
Unicast traffic support