diff options
author | Nicolas Fort <nicolasfort1988@gmail.com> | 2023-11-16 15:37:56 +0000 |
---|---|---|
committer | Nicolas Fort <nicolasfort1988@gmail.com> | 2023-11-16 21:14:55 +0000 |
commit | 2dc2df575bc4de60759a272f5e6880326501a7ef (patch) | |
tree | bddfd01ad32d64a00af56ee1b77799ee38494ec1 /data/templates/firewall/nftables-policy.j2 | |
parent | c1754c4c0610824d54d03b5408ade26112bd643f (diff) | |
download | vyos-1x-2dc2df575bc4de60759a272f5e6880326501a7ef.tar.gz vyos-1x-2dc2df575bc4de60759a272f5e6880326501a7ef.zip |
T4072: firewall: backport bridge firewall to sagitta
Diffstat (limited to 'data/templates/firewall/nftables-policy.j2')
-rw-r--r-- | data/templates/firewall/nftables-policy.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/firewall/nftables-policy.j2 b/data/templates/firewall/nftables-policy.j2 index 699349e2b..d77e3f6e9 100644 --- a/data/templates/firewall/nftables-policy.j2 +++ b/data/templates/firewall/nftables-policy.j2 @@ -32,7 +32,7 @@ table ip vyos_mangle { {% endfor %} {% endif %} -{{ group_tmpl.groups(firewall_group, False) }} +{{ group_tmpl.groups(firewall_group, False, True) }} } table ip6 vyos_mangle { @@ -61,5 +61,5 @@ table ip6 vyos_mangle { {% endfor %} {% endif %} -{{ group_tmpl.groups(firewall_group, True) }} +{{ group_tmpl.groups(firewall_group, True, True) }} } |