summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/0025named_limit_0
blob: 91553f34088b802a39007b85081f4f83475c52c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash

# This is the testscase:
# * creating valid named limits
# * referencing them from a valid rule

tmpfile=$(mktemp)
if [ ! -w $tmpfile ] ; then
	echo "Failed to create tmp file" >&2
	exit 0
fi

trap "rm -rf $tmpfile" EXIT # cleanup if aborted

echo "
table ip filter {
	limit http-traffic {
		rate 1/second
	}
	chain input {
		type filter hook input priority 0; policy accept;
		limit name tcp dport map { 80 : "http-traffic", 443 : "http-traffic"}
	}
}" > $tmpfile

set -e
$NFT -f $tmpfile