diff options
author | Nicolas Fort <nicolasfort1988@gmail.com> | 2023-07-03 16:32:37 -0300 |
---|---|---|
committer | Nicolas Fort <nicolasfort1988@gmail.com> | 2023-08-11 11:50:00 -0300 |
commit | 0300bf433d9aaff81fdecf9eeaabba8d06c1999f (patch) | |
tree | 31e3f9fb52dc9fd9c9ab7046a1c1904b2eb04f83 /data/templates/firewall/nftables.j2 | |
parent | dbb069151f372ea521fad2edcd83f2d33631e6c7 (diff) | |
download | vyos-1x-0300bf433d9aaff81fdecf9eeaabba8d06c1999f.tar.gz vyos-1x-0300bf433d9aaff81fdecf9eeaabba8d06c1999f.zip |
T5160: firewall refactor: move <set firewall ipv6 ipv6-name ...> to <set firewall ipv6 name ...> . Also fix some unexpected behaviour with geoip.
Diffstat (limited to 'data/templates/firewall/nftables.j2')
-rw-r--r-- | data/templates/firewall/nftables.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/firewall/nftables.j2 b/data/templates/firewall/nftables.j2 index 1c70a6b77..10cbc68cb 100644 --- a/data/templates/firewall/nftables.j2 +++ b/data/templates/firewall/nftables.j2 @@ -183,8 +183,8 @@ table ip6 vyos_filter { exthdr frag exists meta mark set 0xffff1 return } -{% if ipv6.ipv6_name is vyos_defined %} -{% for name_text, conf in ipv6.ipv6_name.items() %} +{% if ipv6.name is vyos_defined %} +{% for name_text, conf in ipv6.name.items() %} chain NAME6_{{ name_text }} { {% if conf.rule is vyos_defined %} {% for rule_id, rule_conf in conf.rule.items() if rule_conf.disable is not vyos_defined %} |