summaryrefslogtreecommitdiffstats
path: root/tests/shell/features/prerouting_reject.nft
blob: 3dcfb40e0cbbf7eb21f6ba4012f890a3b4cc41f5 (plain)
1
2
3
4
5
6
7
8
# f53b9b0bdc59 netfilter: introduce support for reject at prerouting stage
# v5.9-rc1~133^2~302^2~11
table inet t {
	chain nat_filter {
		type filter hook prerouting priority 0; policy accept;
		reject with icmpx type host-unreachable
	}
}