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

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