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

RULESET='add table ip filter
add chain ip filter group_7933
add map ip filter group_7933 { type ipv4_addr : classid; flags interval; }
add rule ip filter group_7933 meta priority 0 meta priority set ip saddr map @group_7933 counter
add element ip filter group_7933 { 10.4.22.0/24 : "1:0xc7cb" }
'

set -e
$NFT -f - <<< "$RULESET"

RULESET='delete element ip filter group_7933 { 10.4.22.0/24 }
flush chain ip filter group_7933
delete chain ip filter group_7933
delete map ip filter group_7933'

$NFT -f - <<< "$RULESET"