summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHikari Kongou <hikari@iloli.bid>2024-08-27 21:55:51 +0800
committerHikari Kongou <hikari@iloli.bid>2024-08-27 22:59:24 +0800
commiteec95109981140f1b4323bcf4526c10c6364d9ae (patch)
tree9a60427341be690e2cf4e6f5bda13e6092fd32d4
parent2feed8f99c6056ea8f6fd1da88ab14fa17a0a84e (diff)
downloadvyos-1x-eec95109981140f1b4323bcf4526c10c6364d9ae.tar.gz
vyos-1x-eec95109981140f1b4323bcf4526c10c6364d9ae.zip
T6681: Add option for SLAAC to support suppress Interval Advertisement in RAs
-rw-r--r--data/templates/router-advert/radvd.conf.j22
-rw-r--r--interface-definitions/service_router-advert.xml.in6
2 files changed, 7 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 }};
diff --git a/interface-definitions/service_router-advert.xml.in b/interface-definitions/service_router-advert.xml.in
index 166a4a0cf..3fd33540a 100644
--- a/interface-definitions/service_router-advert.xml.in
+++ b/interface-definitions/service_router-advert.xml.in
@@ -390,6 +390,12 @@
<valueless/>
</properties>
</leafNode>
+ <leafNode name="no-send-interval">
+ <properties>
+ <help>Do not send Advertisement Interval option in RAs</help>
+ <valueless/>
+ </properties>
+ </leafNode>
</children>
</tagNode>
</children>