summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/dumps/0008split_tables_0.nft
blob: 1ab6e8643b2722bce8ed2309b0f133862dd92427 (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 22 accept
	}

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