summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/sets/0036add_set_element_expiration_0
blob: 8dfed6c1a6446cd1a0be3405f146a2c819d8eaa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

set -e

RULESET="add table ip x
add set ip x y { type ipv4_addr; flags dynamic,timeout; } 
add element ip x y { 1.1.1.1 timeout 30s expires 15s }"

test_output=$($NFT -e -f - <<< "$RULESET" 2>&1)

diff -u <(echo "$test_output") <(echo "$RULESET")

$NFT "add chain ip x c; add rule ip x c ip saddr @y"