summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/maps/dumps/typeof_maps_concat.nft
blob: 1ca98d811f7d32e68d7e885bc77023214a961dea (plain)
1
2
3
4
5
6
7
8
9
10
11
table netdev t {
	map m {
		typeof ether saddr . vlan id : meta mark
		size 1234
		flags dynamic,timeout
	}

	chain c {
		ether type != 8021q update @m { ether daddr . 123 timeout 1m : 0x0000002a } counter packets 0 bytes 0 return
	}
}