summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/dumps/0022type_selective_flush_0.nft
blob: 38987ded39e0d3699bb2d94047c594d523b641e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
table ip t {
	set s {
		type ipv4_addr
	}

	map m {
		type ipv4_addr : inet_service
	}

	set f {
		type ipv4_addr
		size 1024
		flags dynamic
	}

	chain c {
		tcp dport 80 add @f { ip saddr limit rate 10/second burst 5 packets }
	}
}