summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/transactions/0038set_0
blob: fc9f1ca4dcd841d6d3214b6d71dfa1929b0db9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -e

RULESET="add table x
add set x y { type ipv4_addr; flags interval;}
add element x y { 192.168.0.0/24, 192.168.2.0/24 }
delete element x y { 192.168.0.0/24 }
delete element x y { 192.168.2.0/24 }
add element x y { 192.168.4.0/24 }"

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