summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-01-25 15:31:26 +0100
committerGitHub <noreply@github.com>2021-01-25 15:31:26 +0100
commit5fc79c9f5f224ccb32308c1fe0f2f1e4822d4c8a (patch)
treeccdc47a44e59918e3be703caddfe68d0ab9e87ba /data
parentd9615227855991202e26f1bf6d8f77232da9fb85 (diff)
parentb23323922939a9ac3b43e0761b0af84dc9e3b47e (diff)
downloadvyos-1x-5fc79c9f5f224ccb32308c1fe0f2f1e4822d4c8a.tar.gz
vyos-1x-5fc79c9f5f224ccb32308c1fe0f2f1e4822d4c8a.zip
Merge pull request #693 from bstepler/T3240
dhcpv6: T3240: support per-interface client DUIDs
Diffstat (limited to 'data')
-rw-r--r--data/templates/dhcp-client/ipv6.tmpl3
1 files changed, 3 insertions, 0 deletions
diff --git a/data/templates/dhcp-client/ipv6.tmpl b/data/templates/dhcp-client/ipv6.tmpl
index 68f668117..49d0d8c88 100644
--- a/data/templates/dhcp-client/ipv6.tmpl
+++ b/data/templates/dhcp-client/ipv6.tmpl
@@ -3,6 +3,9 @@
# 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 %}
+ send client-id {{ dhcpv6_options.duid }};
+{% endif %}
request domain-name-servers;
request domain-name;
{% if dhcpv6_options is defined and dhcpv6_options.parameters_only is defined %}