summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/nftables.conf
blob: 2c09327d7f53baaded4f6e50ca79453d7a7cdf04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/sbin/nft -f

flush ruleset

table 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;
	}
}