summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-01-27 21:18:15 +0100
committerGitHub <noreply@github.com>2021-01-27 21:18:15 +0100
commite44167387cf3c313a395fb60404b29e5a637da67 (patch)
tree5baedf658f9a2a3eecec62b5c8d97be7732e8411
parent1b607b956b62e2a005077e9a103546423b87da49 (diff)
parente41857b6e179a7df20d15486847663be9676e376 (diff)
downloadvyos-1x-e44167387cf3c313a395fb60404b29e5a637da67.tar.gz
vyos-1x-e44167387cf3c313a395fb60404b29e5a637da67.zip
Merge pull request #704 from bstepler/T3240
dhcpv6: T3240: send DUID when only DHCPv6 PD is configured
-rw-r--r--data/templates/dhcp-client/ipv6.tmpl6
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 %}