summaryrefslogtreecommitdiff
path: root/data/templates
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-05-26 21:42:25 +0200
committerChristian Poessinger <christian@poessinger.com>2020-05-26 21:42:25 +0200
commit8cf62f494c9b743b95892c03fb3ec180aa4c7026 (patch)
tree01f4634af6a050716407ef3b2b41947ae9a03bc0 /data/templates
parent4519918bb9bf65f042e280281692e816e4566ef4 (diff)
downloadvyos-1x-8cf62f494c9b743b95892c03fb3ec180aa4c7026.tar.gz
vyos-1x-8cf62f494c9b743b95892c03fb3ec180aa4c7026.zip
pppoe: T2219: fix proper RA autoconf file name
Commit 8dcf042a7f5 ("pppoe: T2219: move adding of default route to ip-(up|down) script") wrongly tried to open a file called autoconfigure which infact should be autoconf
Diffstat (limited to 'data/templates')
-rw-r--r--data/templates/pppoe/ipv6-up.script.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/pppoe/ipv6-up.script.tmpl b/data/templates/pppoe/ipv6-up.script.tmpl
index e795d5b0c..9bf6db5cc 100644
--- a/data/templates/pppoe/ipv6-up.script.tmpl
+++ b/data/templates/pppoe/ipv6-up.script.tmpl
@@ -37,7 +37,7 @@ echo 1 > /proc/sys/net/ipv6/conf/{{ intf }}/forwarding
echo 2 > /proc/sys/net/ipv6/conf/{{ intf }}/accept_ra
# Autoconfigure addresses using Prefix Information in Router Advertisements.
-echo 1 > /proc/sys/net/ipv6/conf/{{ intf }}/autoconfigure
+echo 1 > /proc/sys/net/ipv6/conf/{{ intf }}/autoconf
{% endif %}
{% if dhcpv6_pd_interfaces %}