diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-10-08 21:39:45 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-10-09 17:19:04 +0200 |
commit | 2d3539f9dec19c0d5cec5bd962aaf9640a8cec23 (patch) | |
tree | e367413c11d8f522454352712a9446fe258adc84 /python/vyos/ifconfig.py | |
parent | afc82770cce851da31267829f1726f85093d9d76 (diff) | |
download | vyos-1x-2d3539f9dec19c0d5cec5bd962aaf9640a8cec23.tar.gz vyos-1x-2d3539f9dec19c0d5cec5bd962aaf9640a8cec23.zip |
T1430: add dhcp vendor-class-id client option
Diffstat (limited to 'python/vyos/ifconfig.py')
-rw-r--r-- | python/vyos/ifconfig.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/vyos/ifconfig.py b/python/vyos/ifconfig.py index 0f80f4cea..23e66c089 100644 --- a/python/vyos/ifconfig.py +++ b/python/vyos/ifconfig.py @@ -35,6 +35,9 @@ interface "{{ intf }}" { {% if client_id -%} send dhcp-client-identifier "{{ client_id }}"; {% endif -%} + {% if vendor_class_id -%} + send vendor-class-identifier "{{ vendor_class_id }}"; + {% endif -%} request subnet-mask, broadcast-address, routers, domain-name-servers, rfc3442-classless-static-routes, domain-name, interface-mtu; require subnet-mask; @@ -91,6 +94,7 @@ class Interface: 'intf' : self._ifname, 'hostname' : '', 'client_id' : '', + 'vendor_class_id' : '' } def _debug_msg(self, msg): |