summaryrefslogtreecommitdiff
path: root/data/templates/router-advert/radvd.conf.j2
diff options
context:
space:
mode:
authorHikari Kongou <hikari@iloli.bid>2024-08-27 21:55:51 +0800
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-09-02 11:01:01 +0000
commit1eeb48741ff93e7f09a3c8bd34a278ae789715da (patch)
tree22150f40100f2f2e369c825e6fd147a2f7a671ce /data/templates/router-advert/radvd.conf.j2
parentfcee3f6578806d03d5107d5cc1dac4ca873a4de2 (diff)
downloadvyos-1x-1eeb48741ff93e7f09a3c8bd34a278ae789715da.tar.gz
vyos-1x-1eeb48741ff93e7f09a3c8bd34a278ae789715da.zip
T6681: Add option for SLAAC to support suppress Interval Advertisement in RAs
(cherry picked from commit eec95109981140f1b4323bcf4526c10c6364d9ae)
Diffstat (limited to 'data/templates/router-advert/radvd.conf.j2')
-rw-r--r--data/templates/router-advert/radvd.conf.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/router-advert/radvd.conf.j2 b/data/templates/router-advert/radvd.conf.j2
index 97180d164..a83bd03ac 100644
--- a/data/templates/router-advert/radvd.conf.j2
+++ b/data/templates/router-advert/radvd.conf.j2
@@ -19,7 +19,7 @@ interface {{ iface }} {
{% if iface_config.reachable_time is vyos_defined %}
AdvReachableTime {{ iface_config.reachable_time }};
{% endif %}
- AdvIntervalOpt {{ 'off' if iface_config.no_send_advert is vyos_defined else 'on' }};
+ AdvIntervalOpt {{ 'off' if iface_config.no_send_interval is vyos_defined else 'on' }};
AdvSendAdvert {{ 'off' if iface_config.no_send_advert is vyos_defined else 'on' }};
{% if iface_config.default_lifetime is vyos_defined %}
AdvDefaultLifetime {{ iface_config.default_lifetime }};