summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/maps/dumps/delete_element.nft
blob: 5275b4dc2a68b663b2ba7f5e44c2fcd7d4eade98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
table ip x {
	map m {
		typeof ct bytes : meta priority
		flags interval
		elements = { 2048001-4000000 : 1:2 }
	}

	chain y {
		type filter hook output priority filter; policy accept;
		meta priority set ct bytes map @m
	}
}