diff options
author | Brandon Stepler <brandon@stepler.net> | 2021-06-30 13:10:00 -0400 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-30 20:10:30 +0200 |
commit | 85c219b710f0535be5fd4a48c81c50e5b770013b (patch) | |
tree | 05d857299e403ca5a733f5b1dddea8c1f12f040a /docs/configuration | |
parent | 9b0a9c1f74cb151566d94c4efe94c209562e9ad0 (diff) | |
download | vyos-documentation-85c219b710f0535be5fd4a48c81c50e5b770013b.tar.gz vyos-documentation-85c219b710f0535be5fd4a48c81c50e5b770013b.zip |
dhcpdv6: T3658: add support for dhcpdv6 fixed-prefix6
(cherry picked from commit 38d726f47e9b9154fad8f6a33a18b99e15f8f535)
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/service/dhcp-server.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/configuration/service/dhcp-server.rst b/docs/configuration/service/dhcp-server.rst index 3f435605..21275b20 100644 --- a/docs/configuration/service/dhcp-server.rst +++ b/docs/configuration/service/dhcp-server.rst @@ -566,6 +566,7 @@ be created. The following example explains the process. **Example:** * IPv6 address ``2001:db8::101`` shall be statically mapped +* IPv6 prefix ``2001:db8:0:101::/64`` shall be statically mapped * Host specific mapping shall be named ``client1`` .. hint:: The identifier is the device's DUID: colon-separated hex list (as @@ -577,6 +578,7 @@ be created. The following example explains the process. .. code-block:: none set service dhcpv6-server shared-network-name 'NET1' subnet 2001:db8::/64 static-mapping client1 ipv6-address 2001:db8::101 + set service dhcpv6-server shared-network-name 'NET1' subnet 2001:db8::/64 static-mapping client1 ipv6-prefix 2001:db8:0:101::/64 set service dhcpv6-server shared-network-name 'NET1' subnet 2001:db8::/64 static-mapping client1 identifier 00:01:00:01:12:34:56:78:aa:bb:cc:dd:ee:ff The configuration will look as follows: |