summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/dumps/typeof_sets_0.nft
blob: 44e11202d299b55254490a8dca754da9fe78fa6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
table inet t {
	set s1 {
		typeof osf name
		elements = { "Linux" }
	}

	set s2 {
		typeof vlan id
		elements = { 2, 3, 103 }
	}

	chain c1 {
		osf name @s1 accept
	}

	chain c2 {
		vlan id @s2 accept
	}
}