summaryrefslogtreecommitdiffstats
path: root/tests/py/ip/tcp.t.json
blob: 33172f608171c6ed44180538599f16aa3d1aba88 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# ip protocol tcp tcp dport ssh accept
[
    {
        "match": {
            "left": {
                "payload": {
                    "field": "protocol",
                    "protocol": "ip"
                }
            },
            "right": "tcp"
        }
    },
    {
        "match": {
            "left": {
                "payload": {
                    "field": "dport",
                    "protocol": "tcp"
                }
            },
            "right": "ssh"
        }
    },
    {
        "accept": null
    }
]

# ip protocol ne tcp udp dport ssh accept
[
    {
        "match": {
            "left": {
                "payload": {
                    "field": "protocol",
                    "protocol": "ip"
                }
            },
            "op": "!=",
            "right": "tcp"
        }
    },
    {
        "match": {
            "left": {
                "payload": {
                    "field": "dport",
                    "protocol": "udp"
                }
            },
            "right": "ssh"
        }
    },
    {
        "accept": null
    }
]