diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-19 22:09:45 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2023-11-19 22:09:45 +0100 |
commit | bf74eda74f3251dcd51f4caa65cb4d2b4c1b51b8 (patch) | |
tree | a18c802c642c83c749d901fb790459ef792b4b13 /docs/_include | |
parent | 1cd1f7ac6f056d9dafb8fe15ebe19ad4b9020110 (diff) | |
download | vyos-documentation-bf74eda74f3251dcd51f4caa65cb4d2b4c1b51b8.tar.gz vyos-documentation-bf74eda74f3251dcd51f4caa65cb4d2b4c1b51b8.zip |
dhcp-client: T5760: add CLI option to pass user-class parameter
Diffstat (limited to 'docs/_include')
-rw-r--r-- | docs/_include/interface-dhcp-options.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/_include/interface-dhcp-options.txt b/docs/_include/interface-dhcp-options.txt index 27a80acd..c5683ca3 100644 --- a/docs/_include/interface-dhcp-options.txt +++ b/docs/_include/interface-dhcp-options.txt @@ -28,6 +28,11 @@ .. cfgcmd:: set interfaces {{ var0 }} <interface> {{ var2 }} {{ var3 }} {{ var5 }} {{ var6 }} dhcp-options vendor-class-id <vendor-id> + This option is used by some DHCP clients to identify the vendor type and + possibly the configuration of a DHCP client. The information is a string of + bytes whose contents are specific to the vendor and are not specified in a + standard. + The vendor-class-id option can be used to request a specific class of vendor options from the server. @@ -74,3 +79,17 @@ .. code-block:: none set interfaces {{ var0 }} {{ var1 }} {{ var2 }} {{ var4 }} {{ var5 }} {{ var7 }} dhcp-options reject 192.168.100.0/24 + +.. cfgcmd:: set interfaces {{ var0 }} <interface> {{ var2 }} {{ var3 }} + {{ var5 }} {{ var6 }} dhcp-options user-class <string> + + This option is used by some DHCP clients as a way for users to specify + identifying information to the client. This can be used in a similar way to + the vendor-class-identifier option, but the value of the option is specified + by the user, not the vendor. + + Example: + + .. code-block:: none + + set interfaces {{ var0 }} {{ var1 }} {{ var2 }} {{ var4 }} {{ var5 }} {{ var7 }} dhcp-options user-class VyOS |