summaryrefslogtreecommitdiffstats
path: root/acl/acl-impl/src/test/resources/rules/tcp-rule-no-flags.json
blob: 2130f4a32d2ebe0de3a8a6a8bc5785f65d5c8221 (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
{
  "acls": {
    "acl": [
      {
        "name": "standard-acl",
        "type": "vpp-acl:vpp-acl",
        "aces": {
          "ace": [
            {
              "name": "tcp-no-flags-rule",
              "matches": {
                "ipv4": {
                  "destination-ipv4-network": "192.168.2.1/32",
                  "source-ipv4-network": "192.168.2.2/32"
                },
                "tcp": {
                  "source-port": {
                    "lower-port": "123"
                  },
                  "destination-port": {
                    "lower-port": "65000"
                  }
                }
              }
            }
          ]
        }
      }
    ]
  }
}