summaryrefslogtreecommitdiff
path: root/data/templates
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-01-30 11:24:28 +0000
committerGitHub <noreply@github.com>2024-01-30 11:24:28 +0000
commit02f7f91e3937f1622ba055847aa96b207d5ba754 (patch)
tree3765cb9f5359186791a772d294dbc12cef4edcca /data/templates
parent29045dff3845dbc26d8a0e16f44dcabc4a96bc53 (diff)
parent9eb129400dd57fc6c41c810fa5aa2c455b908322 (diff)
downloadvyos-1x-02f7f91e3937f1622ba055847aa96b207d5ba754.tar.gz
vyos-1x-02f7f91e3937f1622ba055847aa96b207d5ba754.zip
Merge pull request #2905 from vyos/mergify/bp/sagitta/pr-2877
vrf: T5973: multiple bugfixes and improvements (backport #2877)
Diffstat (limited to 'data/templates')
-rw-r--r--data/templates/firewall/nftables-vrf-zones.j217
1 files changed, 0 insertions, 17 deletions
diff --git a/data/templates/firewall/nftables-vrf-zones.j2 b/data/templates/firewall/nftables-vrf-zones.j2
deleted file mode 100644
index 3bce7312d..000000000
--- a/data/templates/firewall/nftables-vrf-zones.j2
+++ /dev/null
@@ -1,17 +0,0 @@
-table inet vrf_zones {
- # Map of interfaces and connections tracking zones
- map ct_iface_map {
- typeof iifname : ct zone
- }
- # Assign unique zones for each VRF
- # Chain for inbound traffic
- chain vrf_zones_ct_in {
- type filter hook prerouting priority raw; policy accept;
- counter ct original zone set iifname map @ct_iface_map
- }
- # Chain for locally-generated traffic
- chain vrf_zones_ct_out {
- type filter hook output priority raw; policy accept;
- counter ct original zone set oifname map @ct_iface_map
- }
-}