summaryrefslogtreecommitdiff
path: root/data/templates/firewall/nftables-vrf-zones.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-05-01 19:21:35 +0200
committerChristian Poessinger <christian@poessinger.com>2022-05-01 19:21:35 +0200
commit992c847493665fd2119636d81582aa80e99e388a (patch)
treeaab41f44ee6f04579f4a8686cdacebdc26b2c82b /data/templates/firewall/nftables-vrf-zones.tmpl
parent3f657383cdd96b984c594bb8323a714d7a692f11 (diff)
downloadvyos-1x-992c847493665fd2119636d81582aa80e99e388a.tar.gz
vyos-1x-992c847493665fd2119636d81582aa80e99e388a.zip
vrf: T4353: fix Jinja2 linting errors
Diffstat (limited to 'data/templates/firewall/nftables-vrf-zones.tmpl')
-rw-r--r--data/templates/firewall/nftables-vrf-zones.tmpl17
1 files changed, 0 insertions, 17 deletions
diff --git a/data/templates/firewall/nftables-vrf-zones.tmpl b/data/templates/firewall/nftables-vrf-zones.tmpl
deleted file mode 100644
index eecf47b78..000000000
--- a/data/templates/firewall/nftables-vrf-zones.tmpl
+++ /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 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 zone set oifname map @ct_iface_map
- }
-}