summaryrefslogtreecommitdiffstats
path: root/tests/py/ip/icmp.t.json.output
blob: e8045bb8182e0177b882c38d762ffe203eb593ac (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# icmp type {echo-reply, destination-unreachable, source-quench, redirect, echo-request, time-exceeded, parameter-problem, timestamp-request, timestamp-reply, info-request, info-reply, address-mask-request, address-mask-reply, router-advertisement, router-solicitation} accept
[
    {
        "match": {
            "left": {
                "payload": {
                    "field": "type",
                    "protocol": "icmp"
                }
            },
	    "op": "==",
            "right": {
                "set": [
                    "echo-reply",
                    "destination-unreachable",
                    "source-quench",
                    "redirect",
                    "echo-request",
                    "router-advertisement",
                    "router-solicitation",
                    "time-exceeded",
                    "parameter-problem",
                    "timestamp-request",
                    "timestamp-reply",
                    "info-request",
                    "info-reply",
                    "address-mask-request",
                    "address-mask-reply"
                ]
            }
        }
    },
    {
        "accept": null
    }
]

# icmp code { 2, 4, 54, 33, 56}
[
    {
        "match": {
            "left": {
                "payload": {
                    "field": "code",
                    "protocol": "icmp"
                }
            },
            "op": "==",
            "right": {
                "set": [
                    "prot-unreachable",
                    4,
                    33,
                    54,
                    56
                ]
            }
        }
    }
]

# icmp checksum { 1111, 222, 343} accept
[
    {
        "match": {
            "left": {
                "payload": {
                    "field": "checksum",
                    "protocol": "icmp"
                }
            },
	    "op": "==",
            "right": {
                "set": [
                    222,
                    343,
                    1111
                ]
            }
        }
    },
    {
        "accept": null
    }
]

# icmp checksum != { 1111, 222, 343} accept
[
    {
        "match": {
            "left": {
                "payload": {
                    "field": "checksum",
                    "protocol": "icmp"
                }
            },
            "op": "!=",
            "right": {
                "set": [
                    222,
                    343,
                    1111
                ]
            }
        }
    },
    {
        "accept": null
    }
]