summaryrefslogtreecommitdiffstats
path: root/tests/py/ip/snat.t.json.output
blob: 1365316c1b18d0df18976effc2ee658bcda3aee9 (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
# iifname "eth0" tcp dport {80, 90, 23} snat to 192.168.3.2
[
    {
        "match": {
            "left": {
                "meta": { "key": "iifname" }
            },
	    "op": "==",
            "right": "eth0"
        }
    },
    {
        "match": {
            "left": {
                "payload": {
                    "field": "dport",
                    "protocol": "tcp"
                }
            },
	    "op": "==",
            "right": {
                "set": [
                    23,
                    80,
                    90
                ]
            }
        }
    },
    {
        "snat": {
            "addr": "192.168.3.2"
        }
    }
]

# iifname "eth0" tcp dport != {80, 90, 23} snat to 192.168.3.2
[
    {
        "match": {
            "left": {
                "meta": { "key": "iifname" }
            },
	    "op": "==",
            "right": "eth0"
        }
    },
    {
        "match": {
            "left": {
                "payload": {
                    "field": "dport",
                    "protocol": "tcp"
                }
            },
            "op": "!=",
            "right": {
                "set": [
                    23,
                    80,
                    90
                ]
            }
        }
    },
    {
        "snat": {
            "addr": "192.168.3.2"
        }
    }
]