summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/maps/dumps/0009vmap_0.nft
blob: c37574ad5fad18fbb29fdd00771d9b8dad0e015b (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" counter packets 0 bytes 0 : jump wan_input }
	}
}