summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/maps/0017_map_variable_0
blob: 70cea88de23812b0ae4500c4e0f42bde2eda4d9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

set -e

RULESET="define x = {
        1.1.1.1 : 2,
        * : 3,
}

table ip x {
        map y {
                typeof ip saddr : mark
                elements = \$x
        }
        map z {
                typeof ip saddr : mark
                elements = \$x
        }
}"

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