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

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