summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-05-17 17:34:21 +0200
committerChristian Poessinger <christian@poessinger.com>2020-05-17 20:15:56 +0200
commit46d92ac80bdaa23d11b10b9261aa12a24c5cc5a1 (patch)
treeaecb9b5953a12a620db1c4ccc8e3899366e1b4ec /data
parentca2f7e5e62efa163843b45a4f89c1e66d40a9a4a (diff)
downloadvyos-1x-46d92ac80bdaa23d11b10b9261aa12a24c5cc5a1.tar.gz
vyos-1x-46d92ac80bdaa23d11b10b9261aa12a24c5cc5a1.zip
dhcpv6-pd: T421: migrate from ISC dhclient to wide-dhcpv6-client
ISC does not support running the client on PPP(oE) interfaces which makes it unusable for DHCPv6 Prefix Delegation tasks. Internet Systems Consortium DHCP Client 4.4.1 Copyright 2004-2018 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Unsupported device type 512 for "pppoe0"
Diffstat (limited to 'data')
-rw-r--r--data/templates/dhcp-client/ipv6.tmpl12
1 files changed, 9 insertions, 3 deletions
diff --git a/data/templates/dhcp-client/ipv6.tmpl b/data/templates/dhcp-client/ipv6.tmpl
index be0235add..8485c9d78 100644
--- a/data/templates/dhcp-client/ipv6.tmpl
+++ b/data/templates/dhcp-client/ipv6.tmpl
@@ -1,4 +1,10 @@
# generated by dhcp.py
-interface "{{ ifname }}" {
- request routers, domain-name-servers, domain-name;
-}
+interface {{ ifname }} {
+ request domain-name-servers,domain-name;
+{% if dhcpv6_prm_only %}
+ information-only;
+{% endif %}
+{% if not dhcpv6_temporary %}
+ send ia-na 0;
+{% endif %}
+};