diff options
author | Francis Dupont <fdupont@isc.org> | 2023-02-07 12:58:55 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2023-02-07 13:02:24 +0100 |
commit | 7b8ed297d994fa1d1351f7011c6092d3ec94f26d (patch) | |
tree | b9077eeaeb1a414757ebae3adb1bf93aed87db2f /doc/sphinx/arm | |
parent | [#2723] Added new HR as BAC sections (diff) | |
download | kea-7b8ed297d994fa1d1351f7011c6092d3ec94f26d.tar.xz kea-7b8ed297d994fa1d1351f7011c6092d3ec94f26d.zip |
[#2723] Changed to DUID in v6 examples
Diffstat (limited to 'doc/sphinx/arm')
-rw-r--r-- | doc/sphinx/arm/dhcp6-srv.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/sphinx/arm/dhcp6-srv.rst b/doc/sphinx/arm/dhcp6-srv.rst index 0129d29fd9..7c55f4fdea 100644 --- a/doc/sphinx/arm/dhcp6-srv.rst +++ b/doc/sphinx/arm/dhcp6-srv.rst @@ -4909,8 +4909,8 @@ have reservations) will get their default DNS server configured. ], "reservations": [ // Clients on this list will be added to the KNOWN class. - { "hw-address": "aa:bb:cc:dd:ee:fe" }, - { "hw-address": "11:22:33:44:55:66" } + { "duid": "01:02:03:04:05:0A:0B:0C:0D:0E" }, + { "duid": "02:03:04:05:0A:0B:0C:0D:0E:0F" } ], "reservations-in-subnet": true, @@ -4949,9 +4949,9 @@ their bills. "reservations": [ // Clients on this list will be added to the KNOWN class. Some // will also be added to the blocked class. - { "hw-address": "aa:bb:cc:dd:ee:fe", + { "duid": "01:02:03:04:05:0A:0B:0C:0D:0E", "client-classes": [ "blocked" ] }, - { "hw-address": "11:22:33:44:55:66" } + { "duid": "02:03:04:05:0A:0B:0C:0D:0E:0F" } ], "reservations-in-subnet": true, |