summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/dumps/0026named_limit_0.nft
blob: 0d1f125467470cf2a757ad4172c57d5d88923fb9 (plain)
1
2
3
4
5
6
7
8
9
10
table ip filter {
	limit http-traffic {
		rate 1/second
	}

	chain input {
		type filter hook input priority 0; policy accept;
		limit name tcp dport map { http : "http-traffic", https : "http-traffic" }
	}
}