summaryrefslogtreecommitdiff
path: root/data/templates
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2023-11-01 12:07:16 +0000
committerGitHub <noreply@github.com>2023-11-01 12:07:16 +0000
commitf3808b28ebf22e289cac5e54080f3d2656645a01 (patch)
tree095864603743dc97eac8b401832dbe299df2cdd0 /data/templates
parent03e5ab66610770cb58e24aa6e1309264a091d812 (diff)
parent2b38b45e219e363955b850d90a40564eb4b375c0 (diff)
downloadvyos-1x-f3808b28ebf22e289cac5e54080f3d2656645a01.tar.gz
vyos-1x-f3808b28ebf22e289cac5e54080f3d2656645a01.zip
Merge pull request #2421 from sever-sever/T5681-sagitta
T5681: Firewall,Nat and Nat66: simplified and standarize interface ma…
Diffstat (limited to 'data/templates')
-rw-r--r--data/templates/ndppd/ndppd.conf.j28
1 files changed, 4 insertions, 4 deletions
diff --git a/data/templates/ndppd/ndppd.conf.j2 b/data/templates/ndppd/ndppd.conf.j2
index 120fa0a64..1297f36be 100644
--- a/data/templates/ndppd/ndppd.conf.j2
+++ b/data/templates/ndppd/ndppd.conf.j2
@@ -17,12 +17,12 @@
{% set global = namespace(ndppd_interfaces = [],ndppd_prefixs = []) %}
{% if source.rule is vyos_defined %}
{% for rule, config in source.rule.items() if config.disable is not defined %}
-{% if config.outbound_interface is vyos_defined %}
-{% if config.outbound_interface not in global.ndppd_interfaces %}
-{% set global.ndppd_interfaces = global.ndppd_interfaces + [config.outbound_interface] %}
+{% if config.outbound_interface.name is vyos_defined %}
+{% if config.outbound_interface.name not in global.ndppd_interfaces %}
+{% set global.ndppd_interfaces = global.ndppd_interfaces + [config.outbound_interface.name] %}
{% endif %}
{% if config.translation.address is vyos_defined and config.translation.address | is_ip_network %}
-{% set global.ndppd_prefixs = global.ndppd_prefixs + [{'interface':config.outbound_interface,'rule':config.translation.address}] %}
+{% set global.ndppd_prefixs = global.ndppd_prefixs + [{'interface':config.outbound_interface.name,'rule':config.translation.address}] %}
{% endif %}
{% endif %}
{% endfor %}