summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/transactions/0040set_0
blob: 468816b03b504d2b65bed4e5fc8dd5163a9c5c1a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash

set -e

RULESET="table ip filter {
	map client_to_any {
		type ipv4_addr : verdict
		elements = { 1.2.3.4 : goto CIn_1 }
	}

	chain FORWARD {
		type filter hook forward priority filter; policy accept;
		goto client_to_any
	}

	chain client_to_any {
		ip saddr vmap @client_to_any
	}

	chain CIn_1 {
	}
}"
$NFT -f - <<< "$RULESET"
if [ $? -ne 0 ] ; then
        echo "E: unable to load good ruleset" >&2
        exit 1
fi

GET="$($NFT list ruleset)"

if [ "$RULESET" != "$GET" ] ; then
	$DIFF -u <(echo "$RULESET") <(echo "$GET")
	exit 1
fi

RULESET="delete element ip filter client_to_any { 1.2.3.4 : goto CIn_1 }
delete chain ip filter CIn_1"
$NFT -f - <<< "$RULESET"
if [ $? -ne 0 ] ; then
        echo "E: unable to load good ruleset" >&2
        exit 1
fi