summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/optimizations/dumps/merge_vmaps.nft
blob: c1c9743b9f8c41ddd5b7f9cb475f07fa8153fb2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
table ip x {
	chain filter_in_tcp {
	}

	chain filter_in_udp {
	}

	chain y {
		tcp dport vmap { 80 : accept, 81 : accept, 443 : accept, 8000-8100 : accept, 24000-25000 : accept }
		meta l4proto vmap { tcp : goto filter_in_tcp, udp : goto filter_in_udp }
	}
}