summaryrefslogtreecommitdiffstats
path: root/tests/py/inet/sets.t.json
blob: 75881f7145ccd4420392231e8e481686096cb5a4 (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
# ip saddr @set1 drop
[
    {
        "match": {
            "left": {
                "payload": {
                    "field": "saddr",
                    "name": "ip"
                }
            },
            "right": "@set1"
        }
    },
    {
        "drop": null
    }
]

# ip6 daddr != @set2 accept
[
    {
        "match": {
            "left": {
                "payload": {
                    "field": "daddr",
                    "name": "ip6"
                }
            },
            "op": "!=",
            "right": "@set2"
        }
    },
    {
        "accept": null
    }
]