summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/packetpath/dumps/policy.nft
blob: e625ea6c82be5c38cd4b2cab4ca40c268f3ccb46 (plain)
1
2
3
4
5
6
7
8
9
10
11
table inet filter {
	chain underflow {
	}

	chain input {
		type filter hook input priority filter; policy drop;
		icmp type echo-reply accept
		ip saddr 127.0.0.1 ip daddr 127.0.0.2 counter packets 3 bytes 252 accept
		goto underflow
	}
}