summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/optimizations/dumps/merge_vmaps.nft
blob: 05b9e575c272aa41f763a6ffe7d968fa72e79543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 }
		log
	}
}