summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/dumps/0008split_tables_0.nft
blob: 1211411f1f2cf9b4e82390ee0d4b453b1213b55b (plain)
1
2
3
4
5
6
7
8
9
10
table inet filter {
	chain ssh {
		type filter hook input priority 0; policy accept;
		tcp dport ssh accept
	}

	chain input {
		type filter hook input priority 1; policy accept;
	}
}