debian-galaxy-a20e/rootfs/etc/nftables.conf

16 lines
243 B
Plaintext
Raw Permalink Normal View History

2026-08-27 13:48:54 +00:00
#!/usr/sbin/nft -f
flush ruleset
table inet filter {
chain input {
type filter hook input priority filter;
}
chain forward {
type filter hook forward priority filter;
}
chain output {
type filter hook output priority filter;
}
}