summaryrefslogtreecommitdiff
path: root/data/templates
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-04-18 21:46:22 +0200
committerChristian Poessinger <christian@poessinger.com>2020-04-18 21:46:22 +0200
commitefa172449e05328f8bea8d6879d5d38386b72e95 (patch)
tree23ab9751c97cf0b3611075e1ad93711172e80d56 /data/templates
parent0ffdf24983507bb8140e6d30343993059abfc4dd (diff)
downloadvyos-1x-efa172449e05328f8bea8d6879d5d38386b72e95.tar.gz
vyos-1x-efa172449e05328f8bea8d6879d5d38386b72e95.zip
ipoe-server: T2324: migrate IPv6 client IP pool to common CLI nodes
Diffstat (limited to 'data/templates')
-rw-r--r--data/templates/ipoe-server/ipoe.config.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/data/templates/ipoe-server/ipoe.config.tmpl b/data/templates/ipoe-server/ipoe.config.tmpl
index 1f34b67c8..19d8b199d 100644
--- a/data/templates/ipoe-server/ipoe.config.tmpl
+++ b/data/templates/ipoe-server/ipoe.config.tmpl
@@ -63,10 +63,10 @@ verbose=1
{% if client_ipv6_pool %}
[ipv6-pool]
{% for p in client_ipv6_pool %}
-{{ p }}
+{{ p.prefix }},{{ p.mask }}
{% endfor %}
-{% for pd in client_ipv6_delegate_prefix %}
-delegate={{ pd }}
+{% for p in client_ipv6_delegate_prefix %}
+delegate={{ p.prefix }},{{ p.mask }}
{% endfor %}
{% endif %}