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

15 lines
203 B
Plaintext
Raw Normal View History

2017-08-07 13:48:54 +02:00
#!/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;
}
}