summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/maps/dumps/0009vmap_0.nft
blob: c556feceb1aae71171824907dd12b6e7bcfb6efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
table inet filter {
	chain ssh_input {
	}

	chain wan_input {
		tcp dport vmap { 22 : jump ssh_input }
	}

	chain prerouting {
		type filter hook prerouting priority raw; policy accept;
		iif vmap { "lo" : jump wan_input }
	}
}