diff options
author | Brandon Stepler <brandon@stepler.net> | 2021-01-27 14:00:00 -0500 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-30 09:54:35 +0100 |
commit | e2599181251a9b7b5223a159c17ea40cb9068ef7 (patch) | |
tree | 08792aa582acd14b97a6035a6cf67aaa922a4054 /data | |
parent | edf1a261e154091908ca29afbc948cee6ee053bd (diff) | |
download | vyos-1x-e2599181251a9b7b5223a159c17ea40cb9068ef7.tar.gz vyos-1x-e2599181251a9b7b5223a159c17ea40cb9068ef7.zip |
dhcpv6: T3240: send DUID when only DHCPv6 PD is configured
(cherry picked from commit e41857b6e179a7df20d15486847663be9676e376)
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/dhcp-client/ipv6.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/templates/dhcp-client/ipv6.tmpl b/data/templates/dhcp-client/ipv6.tmpl index 49d0d8c88..c292664e9 100644 --- a/data/templates/dhcp-client/ipv6.tmpl +++ b/data/templates/dhcp-client/ipv6.tmpl @@ -2,10 +2,10 @@ # man https://www.unix.com/man-page/debian/5/dhcp6c.conf/ interface {{ ifname }} { -{% if address is defined and 'dhcpv6' in address %} -{% if dhcpv6_options is defined and dhcpv6_options.duid is defined and dhcpv6_options.duid is not none %} +{% if dhcpv6_options is defined and dhcpv6_options.duid is defined and dhcpv6_options.duid is not none %} send client-id {{ dhcpv6_options.duid }}; -{% endif %} +{% endif %} +{% if address is defined and 'dhcpv6' in address %} request domain-name-servers; request domain-name; {% if dhcpv6_options is defined and dhcpv6_options.parameters_only is defined %} |