From 4ab749cbe15a70fbc93f0a8f9f8cc28b7b17bec2 Mon Sep 17 00:00:00 2001 From: Harsha Sharma Date: Sat, 14 Oct 2017 16:16:03 +0530 Subject: tests: shell: add testcases for named limits Add testcases for creating named limits and referencing them from rule Signed-off-by: Harsha Sharma Signed-off-by: Pablo Neira Ayuso --- tests/shell/testcases/sets/0025named_limit_0 | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 tests/shell/testcases/sets/0025named_limit_0 (limited to 'tests/shell/testcases/sets') diff --git a/tests/shell/testcases/sets/0025named_limit_0 b/tests/shell/testcases/sets/0025named_limit_0 new file mode 100755 index 00000000..91553f34 --- /dev/null +++ b/tests/shell/testcases/sets/0025named_limit_0 @@ -0,0 +1,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 -- cgit v1.2.3