ansible.nftables/templates/etc/nftables.conf.j2

15 lines
203 B
Django/Jinja
Executable File

#!/usr/sbin/nft -f
# {{ ansible_managed }}
# clean
flush ruleset
table inet firewall {
chain input {
type filter hook input priority 0;
}
chain output {
type filter hook output priority 0;
}
}