Default nftables configuration

This commit is contained in:
Wojciech Kozlowski 2022-08-30 15:25:28 +02:00
parent 4d02108cfb
commit bc2bf5ca27

15
root/etc/nftables.conf.j2 Executable file
View File

@ -0,0 +1,15 @@
#!/usr/sbin/nft -f
flush ruleset
table inet filter {
chain input {
type filter hook input priority 0;
}
chain forward {
type filter hook forward priority 0;
}
chain output {
type filter hook output priority 0;
}
}