From 97e512005a1d12aa76b8eb09d168ef9c03cd0a0e Mon Sep 17 00:00:00 2001 From: Mircea Dan Date: Mon, 8 Aug 2022 08:49:14 -0700 Subject: [PATCH 1/4] dash hero test config generator --- test/README.md | 1 + test/confgen/.gitignore | 8 + test/confgen/README.md | 76 + test/confgen/dashgen/__init__.py | 8 + test/confgen/dashgen/aclgroups.py | 82 + test/confgen/dashgen/enis.py | 46 + test/confgen/dashgen/prefixtags.py | 34 + test/confgen/dashgen/routetables.py | 65 + test/confgen/dashgen/routingappliances.py | 37 + test/confgen/dashgen/variables.py | 37 + test/confgen/dashgen/vpc.py | 35 + test/confgen/dashgen/vpcmappings.py | 80 + test/confgen/dashgen/vpcmappingtypes.py | 12 + test/confgen/generate.d.py | 29 + test/confgen/requirments.txt | 3 + test/confgen/sample_dash_conf.json | 22463 ++++++++++++++++++ test/environments/keysight/requirements.txt | 5 + 17 files changed, 23021 insertions(+) create mode 100644 test/confgen/.gitignore create mode 100644 test/confgen/README.md create mode 100644 test/confgen/dashgen/__init__.py create mode 100644 test/confgen/dashgen/aclgroups.py create mode 100644 test/confgen/dashgen/enis.py create mode 100644 test/confgen/dashgen/prefixtags.py create mode 100644 test/confgen/dashgen/routetables.py create mode 100644 test/confgen/dashgen/routingappliances.py create mode 100644 test/confgen/dashgen/variables.py create mode 100644 test/confgen/dashgen/vpc.py create mode 100644 test/confgen/dashgen/vpcmappings.py create mode 100644 test/confgen/dashgen/vpcmappingtypes.py create mode 100644 test/confgen/generate.d.py create mode 100644 test/confgen/requirments.txt create mode 100644 test/confgen/sample_dash_conf.json diff --git a/test/README.md b/test/README.md index ca2929702..f9abbf374 100644 --- a/test/README.md +++ b/test/README.md @@ -7,6 +7,7 @@ You can start with the [High-Level Description (HLD) Test Specification](docs/da ## Organization Please see the structure below: +* [confgen/](confgen) - Dash config generator for Hero test * [docs/](docs/README.md) - Test documentation * [environments/](environments) - container definition for running the test cases * [images/](images) - graphic assets diff --git a/test/confgen/.gitignore b/test/confgen/.gitignore new file mode 100644 index 000000000..1412a404a --- /dev/null +++ b/test/confgen/.gitignore @@ -0,0 +1,8 @@ +*.bkp +*.log +__pycache__/ +*.pyc +*.json + + +!sample_dash_conf.json \ No newline at end of file diff --git a/test/confgen/README.md b/test/confgen/README.md new file mode 100644 index 000000000..7015a6701 --- /dev/null +++ b/test/confgen/README.md @@ -0,0 +1,76 @@ +# Objectives: +The intention of the dash config generator is to provide a way to build a large scale dash config. and to answer today the question `what is the "ip"?` + +the dash config format is close to [dash-reference-config-example.md](../../../documentation/gnmi/design/dash-reference-config-example.md) with small changes. + +this is not yet a config that can be deployed, but intends to be morphed into one as DASH standards get ratified and implemented + +# Usage: +to generate a dash config simply run `python generate.d.py` in the current directory + +each section of the config file has it's own generator for example `enis` block is generated by `dashgen/enis.py` and `generate.d.py` brings all the blocks together and writes them into the json file + +`variables.py` contains the parameters used by the generator +``` +#for baby hero test: +IP_MAPPED_PER_ACL_RULE = 1 +IP_PER_ACL_RULE = 1 + +#for hero test: +IP_MAPPED_PER_ACL_RULE = 40 +IP_PER_ACL_RULE = 200 +``` + +# Logic: +ACLs and Routes should not be summarized. + +``` +we start with the `ENI_COUNT` +for each eni we allocate a `MAC_L_START` and `IP_L_START` + when moving to next ENI we increment the mac by `ENI_MAC_STEP` and the ip by `IP_STEP4` + each eni has `ACL_TABLE_COUNT` inbound and `ACL_TABLE_COUNT` outbound NSGs + + ACLs: + each NSG has `ACL_RULES_NSG` acl rules + each acl rule has `IP_PER_ACL_RULE` ip prefixes + the acl rules priorities are alternating allow and deny + odd/even ip's are allocated to allow/deny rules + no ips from inbound are repeated in outbound rules or other way around except a last rule in the last table of each direction that will allow the traffic to flow + + Static VxLAN map: + not all ips will have a map entry only the first `IP_MAPPED_PER_ACL_RULE` ips from each acl rule will have a ip/mac map entry. + + Routing: + all allow ips will have a route as well as some deny ips. + route allocation is controlled by `IP_ROUTE_DIVIDER_PER_ACL_RULE` + the ips of each acl will be divided in groups of `IP_ROUTE_DIVIDER_PER_ACL_RULE` + there will be routes for all but one ip in each group in such a way to prevent route summarization. + + lets say `IP_ROUTE_DIVIDER_PER_ACL_RULE` is 8 + we will have a route for: + 1.128.0.0/30 + 1.128.0.4/31 + 1.128.0.7/32 + and then it repeats + 1.128.0.8/30...... + this way there is no route for 1.128.0.6 +``` + +# Scale: + + +| 8 ENI Scenario | required | generated config number | +| ----------------| --------- |---------------------------| +| ENI's/VPorts | 8 | ENI_COUNT | +| NSGs | 48 | ENI_COUNT * 2[^1] * ACL_TABLE_COUNT | +| ACL rules | 48000 | NSG * ACL_RULES_NSG | +| Prefixes | 9.6M | ACL * IP_PER_ACL_RULE | +| Mapping Table | 2M | ACL * IP_MAPPED_PER_ACL_RULE | +| Routes | 1.6M | ACL * (IP_PER_ACL_RULE / IP_ROUTE_DIVIDER_PER_ACL_RULE) * log(IP_ROUTE_DIVIDER_PER_ACL_RULE, 2) | + +# Sample (low scale): +[sample_dash_conf.json](sample_dash_conf.json) + + +[^1]: we multiply by 2 because we have inbound and outbound + diff --git a/test/confgen/dashgen/__init__.py b/test/confgen/dashgen/__init__.py new file mode 100644 index 000000000..e0f078382 --- /dev/null +++ b/test/confgen/dashgen/__init__.py @@ -0,0 +1,8 @@ +import dashgen.enis +import dashgen.aclgroups +import dashgen.prefixtags +import dashgen.vpc +import dashgen.vpcmappings +import dashgen.vpcmappingtypes +import dashgen.routetables +import dashgen.routingappliances diff --git a/test/confgen/dashgen/aclgroups.py b/test/confgen/dashgen/aclgroups.py new file mode 100644 index 000000000..e41c3194f --- /dev/null +++ b/test/confgen/dashgen/aclgroups.py @@ -0,0 +1,82 @@ +from copy import deepcopy +from dashgen.variables import * + + +def generate(): + print(' ' + os.path.basename(__file__)) + acl_groups = [] + for eni_index in range(1, ENI_COUNT + 1): + local_ip = IP_L_START + (eni_index - 1) * IP_STEP4 + l_ip_ac = deepcopy(str(local_ip)+"/32") + + for table_index in range(1, (ACL_TABLE_COUNT*2+1)): + table_id = eni_index * 1000 + table_index + + rules = [] + rappend = rules.append + for ip_index in range(1, (ACL_RULES_NSG+1), 2): + rule_id_a = table_id * 10 * ACL_RULES_NSG + ip_index + remote_ip_a = IP_R_START + (eni_index - 1) * IP_STEP4 + ( + table_index - 1) * 4 * IP_STEP3 + (ip_index - 1) * IP_STEP2 + + ip_list_a = [str(remote_ip_a + expanded_index * IP_STEPE)+"/32" for expanded_index in range(0, IP_PER_ACL_RULE)] + ip_list_a.append(l_ip_ac) + + rule_a = { + "priority": ip_index, + "action": "allow", + "terminating": False, + "src_addrs": ip_list_a[:], + "dst_addrs": ip_list_a[:], + } + rappend(rule_a) + rule_id_d = rule_id_a + 1 + remote_ip_d = remote_ip_a + IP_STEP1 + + ip_list_d = [str(remote_ip_d + expanded_index * IP_STEPE)+"/32" for expanded_index in range(0, IP_PER_ACL_RULE)] + ip_list_d.append(l_ip_ac) + + rule_d = { + "priority": ip_index+1, + "action": "deny", + "terminating": True, + "src_addrs": ip_list_d[:], + "dst_addrs": ip_list_d[:], + } + rappend(rule_d) + + # add as last rule in last table from ingress and egress an allow rule for all the ip's from egress and ingress + if ((table_index - 1) % 3) == 2: + rule_id_a = table_id * 10 * ACL_RULES_NSG + ip_index + all_ipsA = IP_R_START + (eni_index - 1) * IP_STEP4 + (table_index % 6) * 4 * IP_STEP3 + all_ipsB = all_ipsA + 1 * 4 * IP_STEP3 + all_ipsC = all_ipsA + 2 * 4 * IP_STEP3 + + ip_list_all = [ + l_ip_ac, + str(all_ipsA)+"/14", + str(all_ipsB)+"/14", + str(all_ipsC)+"/14", + ] + + rule_allow_all = { + "priority": ip_index+2, + "action": "allow", + "terminating": "true", + "src_addrs": ip_list_all[:], + "dst_addrs": ip_list_all[:], + } + rappend(rule_allow_all) + + acl_group = deepcopy( + { + "ACL-GROUP:ENI:%d:TABLE:%d" % (eni_index, table_id): { + "acl-group-id": "acl-group-%d" % table_id, + "ip_version": "IPv4", + "rules": rules + } + } + ) + acl_groups.append(acl_group) + + return {"acl-groups": acl_groups} diff --git a/test/confgen/dashgen/enis.py b/test/confgen/dashgen/enis.py new file mode 100644 index 000000000..ed68fdbc0 --- /dev/null +++ b/test/confgen/dashgen/enis.py @@ -0,0 +1,46 @@ +from dashgen.variables import * + + +def generate(): + print(' ' + os.path.basename(__file__)) + enis = [] + for eni_index in range(1, ENI_COUNT+1): + local_mac = str(macaddress.MAC(int(MAC_L_START)+(eni_index - 1)*int(macaddress.MAC(ENI_MAC_STEP)))).replace('-', ':') + + acl_tables_in = [] + acl_tables_out = [] + + for table_index in range(1, (ACL_TABLE_COUNT*2+1)): + table_id = eni_index * 1000 + table_index + + stage = (table_index - 1) % 3 + 1 + if table_index < 4: + acl_tables_in.append( + { + "acl-group-id": "acl-group-%d" % table_id, + "stage": stage + } + ) + else: + acl_tables_out.append( + { + "acl-group-id": "acl-group-%d" % table_id, + "stage": stage + } + ) + + enis.append( + { + 'ENI:%d' % eni_index: { + 'eni-id': 'eni-%d' % eni_index, + 'mac': local_mac, + 'vpcs': [ + eni_index + ], + "acls-v4-in": acl_tables_in, + "acls-v4-out": acl_tables_out, + "route-table-v4": "route-table-%d" % eni_index + }, + } + ) + return {"enis": enis} diff --git a/test/confgen/dashgen/prefixtags.py b/test/confgen/dashgen/prefixtags.py new file mode 100644 index 000000000..1bb1bd4f3 --- /dev/null +++ b/test/confgen/dashgen/prefixtags.py @@ -0,0 +1,34 @@ +import ipaddress +from dashgen.variables import * + + +def generate(): + print(' ' + os.path.basename(__file__)) + prefixtag = [] + for eni_index in range(1, ENI_COUNT+1): + IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 + r_vpc = eni_index + ENI_L2R_STEP + IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 + prefixtag.append( + { + "PREFIX-TAG:VPC:%d" % eni_index: { + "prefix-tag-id": "%d" % eni_index, + "prefix-tag-number": eni_index, + "ip-prefixes-ipv4": [ + "%s/32" % IP_L + ] + }, + } + ) + prefixtag.append( + { + "PREFIX-TAG:VPC:%d" % r_vpc: { + "prefix-tag-id": "%d" % r_vpc, + "prefix-tag-number": r_vpc, + "ip-prefixes-ipv4": [ + "%s/9" % IP_R + ] + }, + } + ) + return {"prefix-tags": prefixtag} diff --git a/test/confgen/dashgen/routetables.py b/test/confgen/dashgen/routetables.py new file mode 100644 index 000000000..896bd044d --- /dev/null +++ b/test/confgen/dashgen/routetables.py @@ -0,0 +1,65 @@ +import ipaddress +import math +from dashgen.variables import * + + +def generate(): + print(' ' + os.path.basename(__file__)) + routetable = [] + + for eni_index in range(1, ENI_COUNT+1): + routes = [] + ip_prefixes = [] + ip_prefixes_append = ip_prefixes.append + + IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 + r_vpc = eni_index + ENI_L2R_STEP + IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 + routes.append( + { + "ip-prefixes": ["%s/32" % IP_L], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-%d" % eni_index + } + } + ) + + for table_index in range(1, (ACL_TABLE_COUNT*2+1)): + #table_id = eni_index * 1000 + table_index + + for acl_index in range(1, (ACL_RULES_NSG+1)): + remote_ip = IP_R_START + (eni_index - 1) * IP_STEP4 + (table_index - 1) * 4 * IP_STEP3 + (acl_index - 1) * IP_STEP2 + no_of_route_groups = IP_PER_ACL_RULE // IP_ROUTE_DIVIDER_PER_ACL_RULE + for ip_index in range(0, no_of_route_groups): + nr_of_routes_prefixes = int(math.log(IP_ROUTE_DIVIDER_PER_ACL_RULE, 2)) + ip_prefix = remote_ip - 1 + ip_index * IP_ROUTE_DIVIDER_PER_ACL_RULE * IP_STEP1 + for prefix_index in range(nr_of_routes_prefixes, 0, -1): + nr_of_ips = int(math.pow(2, prefix_index-1)) + mask = 32 - prefix_index + 1 + if mask == 32: + ip_prefix = ip_prefix + 1 + ip_prefixes_append("%s/%d" % (ip_prefix, mask)) + ip_prefix = ip_prefix + IP_STEP1 * nr_of_ips + + routes.append( + { + "ip-prefixes": ip_prefixes, + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-%d" % r_vpc + } + } + ) + + routetable.append( + { + "ROUTE-TABLE:%d" % eni_index: { + "route-table-id": "route-table-%d" % eni_index, + "ip-version": "IPv4", + "routes": routes + } + } + ) + + return {"route-tables": routetable} diff --git a/test/confgen/dashgen/routingappliances.py b/test/confgen/dashgen/routingappliances.py new file mode 100644 index 000000000..cbbe973e0 --- /dev/null +++ b/test/confgen/dashgen/routingappliances.py @@ -0,0 +1,37 @@ +from dashgen.variables import * + + +def generate(): + print(' ' + os.path.basename(__file__)) + routing_appliances = [] + for eni_index in range(1, ENI_COUNT+1): + IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 + r_vpc = eni_index + ENI_L2R_STEP + IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 + routing_appliances.append( + { + "ROUTING-APPLIANCE:%d" % eni_index: { + "appliance-id": "appliance-%d" % eni_index, + "routing-appliance-id": eni_index, + "routing-appliance-addresses": [ + "%s/32" % IP_L + ], + "encap-type": "vxlan", + "vni-key": eni_index + }, + } + ) + routing_appliances.append( + { + "ROUTING-APPLIANCE:%d" % r_vpc: { + "appliance-id": "appliance-%d" % r_vpc, + "routing-appliance-id": r_vpc, + "routing-appliance-addresses": [ + "%s/9" % IP_R + ], + "encap-type": "vxlan", + "vni-key": r_vpc + }, + } + ) + return {"routing-appliances": routing_appliances} diff --git a/test/confgen/dashgen/variables.py b/test/confgen/dashgen/variables.py new file mode 100644 index 000000000..0065f9c96 --- /dev/null +++ b/test/confgen/dashgen/variables.py @@ -0,0 +1,37 @@ +import ipaddress +import macaddress +import os +ipp = ipaddress.ip_address + + +ENI_COUNT = 8 # 8 +ENI_MAC_STEP = '00:00:00:18:00:00' +ENI_STEP = 1 +ENI_L2R_STEP = 100 + + +ACL_TABLE_MAC_STEP = '00:00:00:04:00:00' +ACL_POLICY_MAC_STEP = '00:00:00:00:01:00' + +ACL_RULES_NSG = 1000 # 1000 +ACL_TABLE_COUNT = 3 + + +IP_MAPPED_PER_ACL_RULE = 40 # 40 +IP_PER_ACL_RULE = 255 # 255 +IP_ROUTE_DIVIDER_PER_ACL_RULE = 8 # 8, must be a power of 2 number + + +IP_STEP1 = int(ipp('0.0.0.1')) +IP_STEP2 = int(ipp('0.0.1.0')) +IP_STEP3 = int(ipp('0.1.0.0')) +IP_STEP4 = int(ipp('1.0.0.0')) +IP_STEPE = int(ipp('0.0.0.2')) + + +IP_L_START = ipaddress.ip_address('1.1.0.1') +IP_R_START = ipaddress.ip_address('1.128.0.1') + + +MAC_L_START = macaddress.MAC('00:1A:C5:00:00:01') +MAC_R_START = macaddress.MAC('00:1B:6E:00:00:01') diff --git a/test/confgen/dashgen/vpc.py b/test/confgen/dashgen/vpc.py new file mode 100644 index 000000000..74bdba5ad --- /dev/null +++ b/test/confgen/dashgen/vpc.py @@ -0,0 +1,35 @@ +from dashgen.variables import * + + +def generate(): + print(' ' + os.path.basename(__file__)) + vpcs = [] + for eni_index in range(1, ENI_COUNT+1): + IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 + r_vpc = eni_index + ENI_L2R_STEP + IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 + vpcs.append( + { + "VPC:%d" % eni_index: { + "vpc-id": "vpc-%d" % eni_index, + "vni-key": eni_index, + "encap": "vxlan", + "address_spaces": [ + "%s/32" % IP_L + ] + }, + } + ) + vpcs.append( + { + "VPC:%d" % r_vpc: { + "vpc-id": "vpc-%d" % r_vpc, + "vni-key": r_vpc, + "encap": "vxlan", + "address_spaces": [ + "%s/9" % IP_R + ] + }, + } + ) + return {"vpc": vpcs} diff --git a/test/confgen/dashgen/vpcmappings.py b/test/confgen/dashgen/vpcmappings.py new file mode 100644 index 000000000..0c351f932 --- /dev/null +++ b/test/confgen/dashgen/vpcmappings.py @@ -0,0 +1,80 @@ +from dashgen.variables import * +from copy import deepcopy + + +def generate(): + print(' ' + os.path.basename(__file__)) + vpc_mappings = [] + PAL = ipp("221.0.1.0") + PAR = ipp("221.0.2.100") + for eni_index in range(1, ENI_COUNT + 1): + PAL = PAL + IP_STEP1 + PAR = PAR + IP_STEP1 + + local_ip = IP_L_START + (eni_index - 1) * IP_STEP4 + local_mac = str( + macaddress.MAC( + int(MAC_L_START) + + (eni_index - 1) * int(macaddress.MAC(ENI_MAC_STEP)) + ) + ).replace('-', ':') + + l_vpc_mapping = deepcopy( + { + "MAPPINGS:VPC:%d" % eni_index: { + "vpc-id": "vpc-%d" % eni_index, + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "%s" % local_ip, + "underlay-ip-address": "%s" % PAL, + "mac": local_mac + } + ] + }, + } + ) + vpc_mappings.append(l_vpc_mapping) + + r_mappings = [] + r_mappings_append = r_mappings.append + r_vpc = eni_index + ENI_L2R_STEP + for table_index in range(1, (ACL_TABLE_COUNT*2+1)): + for ip_index in range(1, (ACL_RULES_NSG+1)): + remote_ip = IP_R_START + (eni_index - 1) * IP_STEP4 + (table_index - 1) * 4 * IP_STEP3 + (ip_index - 1) * IP_STEP2 + remote_mac = str( + macaddress.MAC( + int(macaddress.MAC('00:1B:6E:80:00:01')) + + (eni_index - 1) * int(macaddress.MAC(ENI_MAC_STEP)) + + (table_index - 1) * int(macaddress.MAC(ACL_TABLE_MAC_STEP)) + + (ip_index - 1) * int(macaddress.MAC(ACL_POLICY_MAC_STEP)) + ) + ).replace('-', ':') + + for i in range(IP_MAPPED_PER_ACL_RULE): + remote_expanded_ip = remote_ip + i + remote_expanded_mac = str( + macaddress.MAC( + int(macaddress.MAC(remote_mac)) + i + ) + ).replace('-', ':') + r_mappings_append( + { + "routing-type": "vpc-direct", + "overlay-ip-address": "%s" % remote_expanded_ip, + "underlay-ip-address": "%s" % PAR, + "mac": remote_expanded_mac + } + ) + + r_vpc_mapping = deepcopy( + { + "MAPPINGS:VPC:%d" % r_vpc: { + "vpc-id": "vpc-%d" % r_vpc, + "mappings": r_mappings + }, + } + ) + + vpc_mappings.append(r_vpc_mapping) + return {'vpc-mappings': vpc_mappings} diff --git a/test/confgen/dashgen/vpcmappingtypes.py b/test/confgen/dashgen/vpcmappingtypes.py new file mode 100644 index 000000000..dc9b61a8d --- /dev/null +++ b/test/confgen/dashgen/vpcmappingtypes.py @@ -0,0 +1,12 @@ +from dashgen.variables import * + + +def generate(): + print(' ' + os.path.basename(__file__)) + vpcmappingtypes = [ + "vpc", + "privatelink", + "privatelinknsg" + ], + + return {"vpc-mappings-routing-types": vpcmappingtypes} diff --git a/test/confgen/generate.d.py b/test/confgen/generate.d.py new file mode 100644 index 000000000..01be6e598 --- /dev/null +++ b/test/confgen/generate.d.py @@ -0,0 +1,29 @@ +import io +import orjson +import dashgen + + +print('generating config') +enis = dashgen.enis.generate() +aclgroups = dashgen.aclgroups.generate() +vpc = dashgen.vpc.generate() +vpcmappingtypes = dashgen.vpcmappingtypes.generate() +vpcmappings = dashgen.vpcmappings.generate() +routingappliances = dashgen.routingappliances.generate() +routetables = dashgen.routetables.generate() +prefixtags = dashgen.prefixtags.generate() +config = {} +config.update(enis) +config.update(aclgroups) +config.update(vpc) +config.update(vpcmappingtypes) +config.update(vpcmappings) +config.update(routingappliances) +config.update(routetables) +config.update(prefixtags) + +print('writing the config to file') +with io.open(r'dash_conf.json', 'wb') as jsonfile: + jsonfile.write(orjson.dumps(config, option=orjson.OPT_INDENT_2)) + +print('done') diff --git a/test/confgen/requirments.txt b/test/confgen/requirments.txt new file mode 100644 index 000000000..73b529fd6 --- /dev/null +++ b/test/confgen/requirments.txt @@ -0,0 +1,3 @@ +orjson +ipaddress +macaddress \ No newline at end of file diff --git a/test/confgen/sample_dash_conf.json b/test/confgen/sample_dash_conf.json new file mode 100644 index 000000000..7e6ef1c66 --- /dev/null +++ b/test/confgen/sample_dash_conf.json @@ -0,0 +1,22463 @@ +{ + "enis": [ + { + "ENI:1": { + "eni-id": "eni-1", + "mac": "00:1A:C5:00:00:01", + "vpcs": [ + 1 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-1001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-1002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-1003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-1004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-1005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-1006", + "stage": 3 + } + ], + "route-table-v4": "route-table-1" + } + }, + { + "ENI:2": { + "eni-id": "eni-2", + "mac": "00:1A:C5:18:00:01", + "vpcs": [ + 2 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-2001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-2002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-2003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-2004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-2005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-2006", + "stage": 3 + } + ], + "route-table-v4": "route-table-2" + } + }, + { + "ENI:3": { + "eni-id": "eni-3", + "mac": "00:1A:C5:30:00:01", + "vpcs": [ + 3 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-3001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-3002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-3003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-3004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-3005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-3006", + "stage": 3 + } + ], + "route-table-v4": "route-table-3" + } + }, + { + "ENI:4": { + "eni-id": "eni-4", + "mac": "00:1A:C5:48:00:01", + "vpcs": [ + 4 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-4001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-4002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-4003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-4004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-4005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-4006", + "stage": 3 + } + ], + "route-table-v4": "route-table-4" + } + }, + { + "ENI:5": { + "eni-id": "eni-5", + "mac": "00:1A:C5:60:00:01", + "vpcs": [ + 5 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-5001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-5002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-5003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-5004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-5005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-5006", + "stage": 3 + } + ], + "route-table-v4": "route-table-5" + } + }, + { + "ENI:6": { + "eni-id": "eni-6", + "mac": "00:1A:C5:78:00:01", + "vpcs": [ + 6 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-6001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-6002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-6003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-6004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-6005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-6006", + "stage": 3 + } + ], + "route-table-v4": "route-table-6" + } + }, + { + "ENI:7": { + "eni-id": "eni-7", + "mac": "00:1A:C5:90:00:01", + "vpcs": [ + 7 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-7001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-7002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-7003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-7004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-7005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-7006", + "stage": 3 + } + ], + "route-table-v4": "route-table-7" + } + }, + { + "ENI:8": { + "eni-id": "eni-8", + "mac": "00:1A:C5:A8:00:01", + "vpcs": [ + 8 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-8001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-8002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-8003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-8004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-8005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-8006", + "stage": 3 + } + ], + "route-table-v4": "route-table-8" + } + } + ], + "acl-groups": [ + { + "ACL-GROUP:ENI:1:TABLE:1001": { + "acl-group-id": "acl-group-1001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.128.0.1/32", + "1.128.0.3/32", + "1.128.0.5/32", + "1.128.0.7/32", + "1.128.0.9/32", + "1.128.0.11/32", + "1.128.0.13/32", + "1.128.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.0.1/32", + "1.128.0.3/32", + "1.128.0.5/32", + "1.128.0.7/32", + "1.128.0.9/32", + "1.128.0.11/32", + "1.128.0.13/32", + "1.128.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.128.0.2/32", + "1.128.0.4/32", + "1.128.0.6/32", + "1.128.0.8/32", + "1.128.0.10/32", + "1.128.0.12/32", + "1.128.0.14/32", + "1.128.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.0.2/32", + "1.128.0.4/32", + "1.128.0.6/32", + "1.128.0.8/32", + "1.128.0.10/32", + "1.128.0.12/32", + "1.128.0.14/32", + "1.128.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.128.2.1/32", + "1.128.2.3/32", + "1.128.2.5/32", + "1.128.2.7/32", + "1.128.2.9/32", + "1.128.2.11/32", + "1.128.2.13/32", + "1.128.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.2.1/32", + "1.128.2.3/32", + "1.128.2.5/32", + "1.128.2.7/32", + "1.128.2.9/32", + "1.128.2.11/32", + "1.128.2.13/32", + "1.128.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.128.2.2/32", + "1.128.2.4/32", + "1.128.2.6/32", + "1.128.2.8/32", + "1.128.2.10/32", + "1.128.2.12/32", + "1.128.2.14/32", + "1.128.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.2.2/32", + "1.128.2.4/32", + "1.128.2.6/32", + "1.128.2.8/32", + "1.128.2.10/32", + "1.128.2.12/32", + "1.128.2.14/32", + "1.128.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.128.4.1/32", + "1.128.4.3/32", + "1.128.4.5/32", + "1.128.4.7/32", + "1.128.4.9/32", + "1.128.4.11/32", + "1.128.4.13/32", + "1.128.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.4.1/32", + "1.128.4.3/32", + "1.128.4.5/32", + "1.128.4.7/32", + "1.128.4.9/32", + "1.128.4.11/32", + "1.128.4.13/32", + "1.128.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.128.4.2/32", + "1.128.4.4/32", + "1.128.4.6/32", + "1.128.4.8/32", + "1.128.4.10/32", + "1.128.4.12/32", + "1.128.4.14/32", + "1.128.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.4.2/32", + "1.128.4.4/32", + "1.128.4.6/32", + "1.128.4.8/32", + "1.128.4.10/32", + "1.128.4.12/32", + "1.128.4.14/32", + "1.128.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.128.6.1/32", + "1.128.6.3/32", + "1.128.6.5/32", + "1.128.6.7/32", + "1.128.6.9/32", + "1.128.6.11/32", + "1.128.6.13/32", + "1.128.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.6.1/32", + "1.128.6.3/32", + "1.128.6.5/32", + "1.128.6.7/32", + "1.128.6.9/32", + "1.128.6.11/32", + "1.128.6.13/32", + "1.128.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.128.6.2/32", + "1.128.6.4/32", + "1.128.6.6/32", + "1.128.6.8/32", + "1.128.6.10/32", + "1.128.6.12/32", + "1.128.6.14/32", + "1.128.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.6.2/32", + "1.128.6.4/32", + "1.128.6.6/32", + "1.128.6.8/32", + "1.128.6.10/32", + "1.128.6.12/32", + "1.128.6.14/32", + "1.128.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.128.8.1/32", + "1.128.8.3/32", + "1.128.8.5/32", + "1.128.8.7/32", + "1.128.8.9/32", + "1.128.8.11/32", + "1.128.8.13/32", + "1.128.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.8.1/32", + "1.128.8.3/32", + "1.128.8.5/32", + "1.128.8.7/32", + "1.128.8.9/32", + "1.128.8.11/32", + "1.128.8.13/32", + "1.128.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.128.8.2/32", + "1.128.8.4/32", + "1.128.8.6/32", + "1.128.8.8/32", + "1.128.8.10/32", + "1.128.8.12/32", + "1.128.8.14/32", + "1.128.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.8.2/32", + "1.128.8.4/32", + "1.128.8.6/32", + "1.128.8.8/32", + "1.128.8.10/32", + "1.128.8.12/32", + "1.128.8.14/32", + "1.128.8.16/32", + "1.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:1:TABLE:1002": { + "acl-group-id": "acl-group-1002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.132.0.1/32", + "1.132.0.3/32", + "1.132.0.5/32", + "1.132.0.7/32", + "1.132.0.9/32", + "1.132.0.11/32", + "1.132.0.13/32", + "1.132.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.0.1/32", + "1.132.0.3/32", + "1.132.0.5/32", + "1.132.0.7/32", + "1.132.0.9/32", + "1.132.0.11/32", + "1.132.0.13/32", + "1.132.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.132.0.2/32", + "1.132.0.4/32", + "1.132.0.6/32", + "1.132.0.8/32", + "1.132.0.10/32", + "1.132.0.12/32", + "1.132.0.14/32", + "1.132.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.0.2/32", + "1.132.0.4/32", + "1.132.0.6/32", + "1.132.0.8/32", + "1.132.0.10/32", + "1.132.0.12/32", + "1.132.0.14/32", + "1.132.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.132.2.1/32", + "1.132.2.3/32", + "1.132.2.5/32", + "1.132.2.7/32", + "1.132.2.9/32", + "1.132.2.11/32", + "1.132.2.13/32", + "1.132.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.2.1/32", + "1.132.2.3/32", + "1.132.2.5/32", + "1.132.2.7/32", + "1.132.2.9/32", + "1.132.2.11/32", + "1.132.2.13/32", + "1.132.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.132.2.2/32", + "1.132.2.4/32", + "1.132.2.6/32", + "1.132.2.8/32", + "1.132.2.10/32", + "1.132.2.12/32", + "1.132.2.14/32", + "1.132.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.2.2/32", + "1.132.2.4/32", + "1.132.2.6/32", + "1.132.2.8/32", + "1.132.2.10/32", + "1.132.2.12/32", + "1.132.2.14/32", + "1.132.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.132.4.1/32", + "1.132.4.3/32", + "1.132.4.5/32", + "1.132.4.7/32", + "1.132.4.9/32", + "1.132.4.11/32", + "1.132.4.13/32", + "1.132.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.4.1/32", + "1.132.4.3/32", + "1.132.4.5/32", + "1.132.4.7/32", + "1.132.4.9/32", + "1.132.4.11/32", + "1.132.4.13/32", + "1.132.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.132.4.2/32", + "1.132.4.4/32", + "1.132.4.6/32", + "1.132.4.8/32", + "1.132.4.10/32", + "1.132.4.12/32", + "1.132.4.14/32", + "1.132.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.4.2/32", + "1.132.4.4/32", + "1.132.4.6/32", + "1.132.4.8/32", + "1.132.4.10/32", + "1.132.4.12/32", + "1.132.4.14/32", + "1.132.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.132.6.1/32", + "1.132.6.3/32", + "1.132.6.5/32", + "1.132.6.7/32", + "1.132.6.9/32", + "1.132.6.11/32", + "1.132.6.13/32", + "1.132.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.6.1/32", + "1.132.6.3/32", + "1.132.6.5/32", + "1.132.6.7/32", + "1.132.6.9/32", + "1.132.6.11/32", + "1.132.6.13/32", + "1.132.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.132.6.2/32", + "1.132.6.4/32", + "1.132.6.6/32", + "1.132.6.8/32", + "1.132.6.10/32", + "1.132.6.12/32", + "1.132.6.14/32", + "1.132.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.6.2/32", + "1.132.6.4/32", + "1.132.6.6/32", + "1.132.6.8/32", + "1.132.6.10/32", + "1.132.6.12/32", + "1.132.6.14/32", + "1.132.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.132.8.1/32", + "1.132.8.3/32", + "1.132.8.5/32", + "1.132.8.7/32", + "1.132.8.9/32", + "1.132.8.11/32", + "1.132.8.13/32", + "1.132.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.8.1/32", + "1.132.8.3/32", + "1.132.8.5/32", + "1.132.8.7/32", + "1.132.8.9/32", + "1.132.8.11/32", + "1.132.8.13/32", + "1.132.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.132.8.2/32", + "1.132.8.4/32", + "1.132.8.6/32", + "1.132.8.8/32", + "1.132.8.10/32", + "1.132.8.12/32", + "1.132.8.14/32", + "1.132.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.8.2/32", + "1.132.8.4/32", + "1.132.8.6/32", + "1.132.8.8/32", + "1.132.8.10/32", + "1.132.8.12/32", + "1.132.8.14/32", + "1.132.8.16/32", + "1.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:1:TABLE:1003": { + "acl-group-id": "acl-group-1003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.136.0.1/32", + "1.136.0.3/32", + "1.136.0.5/32", + "1.136.0.7/32", + "1.136.0.9/32", + "1.136.0.11/32", + "1.136.0.13/32", + "1.136.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.0.1/32", + "1.136.0.3/32", + "1.136.0.5/32", + "1.136.0.7/32", + "1.136.0.9/32", + "1.136.0.11/32", + "1.136.0.13/32", + "1.136.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.136.0.2/32", + "1.136.0.4/32", + "1.136.0.6/32", + "1.136.0.8/32", + "1.136.0.10/32", + "1.136.0.12/32", + "1.136.0.14/32", + "1.136.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.0.2/32", + "1.136.0.4/32", + "1.136.0.6/32", + "1.136.0.8/32", + "1.136.0.10/32", + "1.136.0.12/32", + "1.136.0.14/32", + "1.136.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.136.2.1/32", + "1.136.2.3/32", + "1.136.2.5/32", + "1.136.2.7/32", + "1.136.2.9/32", + "1.136.2.11/32", + "1.136.2.13/32", + "1.136.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.2.1/32", + "1.136.2.3/32", + "1.136.2.5/32", + "1.136.2.7/32", + "1.136.2.9/32", + "1.136.2.11/32", + "1.136.2.13/32", + "1.136.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.136.2.2/32", + "1.136.2.4/32", + "1.136.2.6/32", + "1.136.2.8/32", + "1.136.2.10/32", + "1.136.2.12/32", + "1.136.2.14/32", + "1.136.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.2.2/32", + "1.136.2.4/32", + "1.136.2.6/32", + "1.136.2.8/32", + "1.136.2.10/32", + "1.136.2.12/32", + "1.136.2.14/32", + "1.136.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.136.4.1/32", + "1.136.4.3/32", + "1.136.4.5/32", + "1.136.4.7/32", + "1.136.4.9/32", + "1.136.4.11/32", + "1.136.4.13/32", + "1.136.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.4.1/32", + "1.136.4.3/32", + "1.136.4.5/32", + "1.136.4.7/32", + "1.136.4.9/32", + "1.136.4.11/32", + "1.136.4.13/32", + "1.136.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.136.4.2/32", + "1.136.4.4/32", + "1.136.4.6/32", + "1.136.4.8/32", + "1.136.4.10/32", + "1.136.4.12/32", + "1.136.4.14/32", + "1.136.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.4.2/32", + "1.136.4.4/32", + "1.136.4.6/32", + "1.136.4.8/32", + "1.136.4.10/32", + "1.136.4.12/32", + "1.136.4.14/32", + "1.136.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.136.6.1/32", + "1.136.6.3/32", + "1.136.6.5/32", + "1.136.6.7/32", + "1.136.6.9/32", + "1.136.6.11/32", + "1.136.6.13/32", + "1.136.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.6.1/32", + "1.136.6.3/32", + "1.136.6.5/32", + "1.136.6.7/32", + "1.136.6.9/32", + "1.136.6.11/32", + "1.136.6.13/32", + "1.136.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.136.6.2/32", + "1.136.6.4/32", + "1.136.6.6/32", + "1.136.6.8/32", + "1.136.6.10/32", + "1.136.6.12/32", + "1.136.6.14/32", + "1.136.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.6.2/32", + "1.136.6.4/32", + "1.136.6.6/32", + "1.136.6.8/32", + "1.136.6.10/32", + "1.136.6.12/32", + "1.136.6.14/32", + "1.136.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.136.8.1/32", + "1.136.8.3/32", + "1.136.8.5/32", + "1.136.8.7/32", + "1.136.8.9/32", + "1.136.8.11/32", + "1.136.8.13/32", + "1.136.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.8.1/32", + "1.136.8.3/32", + "1.136.8.5/32", + "1.136.8.7/32", + "1.136.8.9/32", + "1.136.8.11/32", + "1.136.8.13/32", + "1.136.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.136.8.2/32", + "1.136.8.4/32", + "1.136.8.6/32", + "1.136.8.8/32", + "1.136.8.10/32", + "1.136.8.12/32", + "1.136.8.14/32", + "1.136.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.8.2/32", + "1.136.8.4/32", + "1.136.8.6/32", + "1.136.8.8/32", + "1.136.8.10/32", + "1.136.8.12/32", + "1.136.8.14/32", + "1.136.8.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "1.1.0.1/32", + "1.140.0.1/14", + "1.144.0.1/14", + "1.148.0.1/14" + ], + "dst_addrs": [ + "1.1.0.1/32", + "1.140.0.1/14", + "1.144.0.1/14", + "1.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:1:TABLE:1004": { + "acl-group-id": "acl-group-1004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.140.0.1/32", + "1.140.0.3/32", + "1.140.0.5/32", + "1.140.0.7/32", + "1.140.0.9/32", + "1.140.0.11/32", + "1.140.0.13/32", + "1.140.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.0.1/32", + "1.140.0.3/32", + "1.140.0.5/32", + "1.140.0.7/32", + "1.140.0.9/32", + "1.140.0.11/32", + "1.140.0.13/32", + "1.140.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.140.0.2/32", + "1.140.0.4/32", + "1.140.0.6/32", + "1.140.0.8/32", + "1.140.0.10/32", + "1.140.0.12/32", + "1.140.0.14/32", + "1.140.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.0.2/32", + "1.140.0.4/32", + "1.140.0.6/32", + "1.140.0.8/32", + "1.140.0.10/32", + "1.140.0.12/32", + "1.140.0.14/32", + "1.140.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.140.2.1/32", + "1.140.2.3/32", + "1.140.2.5/32", + "1.140.2.7/32", + "1.140.2.9/32", + "1.140.2.11/32", + "1.140.2.13/32", + "1.140.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.2.1/32", + "1.140.2.3/32", + "1.140.2.5/32", + "1.140.2.7/32", + "1.140.2.9/32", + "1.140.2.11/32", + "1.140.2.13/32", + "1.140.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.140.2.2/32", + "1.140.2.4/32", + "1.140.2.6/32", + "1.140.2.8/32", + "1.140.2.10/32", + "1.140.2.12/32", + "1.140.2.14/32", + "1.140.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.2.2/32", + "1.140.2.4/32", + "1.140.2.6/32", + "1.140.2.8/32", + "1.140.2.10/32", + "1.140.2.12/32", + "1.140.2.14/32", + "1.140.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.140.4.1/32", + "1.140.4.3/32", + "1.140.4.5/32", + "1.140.4.7/32", + "1.140.4.9/32", + "1.140.4.11/32", + "1.140.4.13/32", + "1.140.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.4.1/32", + "1.140.4.3/32", + "1.140.4.5/32", + "1.140.4.7/32", + "1.140.4.9/32", + "1.140.4.11/32", + "1.140.4.13/32", + "1.140.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.140.4.2/32", + "1.140.4.4/32", + "1.140.4.6/32", + "1.140.4.8/32", + "1.140.4.10/32", + "1.140.4.12/32", + "1.140.4.14/32", + "1.140.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.4.2/32", + "1.140.4.4/32", + "1.140.4.6/32", + "1.140.4.8/32", + "1.140.4.10/32", + "1.140.4.12/32", + "1.140.4.14/32", + "1.140.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.140.6.1/32", + "1.140.6.3/32", + "1.140.6.5/32", + "1.140.6.7/32", + "1.140.6.9/32", + "1.140.6.11/32", + "1.140.6.13/32", + "1.140.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.6.1/32", + "1.140.6.3/32", + "1.140.6.5/32", + "1.140.6.7/32", + "1.140.6.9/32", + "1.140.6.11/32", + "1.140.6.13/32", + "1.140.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.140.6.2/32", + "1.140.6.4/32", + "1.140.6.6/32", + "1.140.6.8/32", + "1.140.6.10/32", + "1.140.6.12/32", + "1.140.6.14/32", + "1.140.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.6.2/32", + "1.140.6.4/32", + "1.140.6.6/32", + "1.140.6.8/32", + "1.140.6.10/32", + "1.140.6.12/32", + "1.140.6.14/32", + "1.140.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.140.8.1/32", + "1.140.8.3/32", + "1.140.8.5/32", + "1.140.8.7/32", + "1.140.8.9/32", + "1.140.8.11/32", + "1.140.8.13/32", + "1.140.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.8.1/32", + "1.140.8.3/32", + "1.140.8.5/32", + "1.140.8.7/32", + "1.140.8.9/32", + "1.140.8.11/32", + "1.140.8.13/32", + "1.140.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.140.8.2/32", + "1.140.8.4/32", + "1.140.8.6/32", + "1.140.8.8/32", + "1.140.8.10/32", + "1.140.8.12/32", + "1.140.8.14/32", + "1.140.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.8.2/32", + "1.140.8.4/32", + "1.140.8.6/32", + "1.140.8.8/32", + "1.140.8.10/32", + "1.140.8.12/32", + "1.140.8.14/32", + "1.140.8.16/32", + "1.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:1:TABLE:1005": { + "acl-group-id": "acl-group-1005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.144.0.1/32", + "1.144.0.3/32", + "1.144.0.5/32", + "1.144.0.7/32", + "1.144.0.9/32", + "1.144.0.11/32", + "1.144.0.13/32", + "1.144.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.0.1/32", + "1.144.0.3/32", + "1.144.0.5/32", + "1.144.0.7/32", + "1.144.0.9/32", + "1.144.0.11/32", + "1.144.0.13/32", + "1.144.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.144.0.2/32", + "1.144.0.4/32", + "1.144.0.6/32", + "1.144.0.8/32", + "1.144.0.10/32", + "1.144.0.12/32", + "1.144.0.14/32", + "1.144.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.0.2/32", + "1.144.0.4/32", + "1.144.0.6/32", + "1.144.0.8/32", + "1.144.0.10/32", + "1.144.0.12/32", + "1.144.0.14/32", + "1.144.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.144.2.1/32", + "1.144.2.3/32", + "1.144.2.5/32", + "1.144.2.7/32", + "1.144.2.9/32", + "1.144.2.11/32", + "1.144.2.13/32", + "1.144.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.2.1/32", + "1.144.2.3/32", + "1.144.2.5/32", + "1.144.2.7/32", + "1.144.2.9/32", + "1.144.2.11/32", + "1.144.2.13/32", + "1.144.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.144.2.2/32", + "1.144.2.4/32", + "1.144.2.6/32", + "1.144.2.8/32", + "1.144.2.10/32", + "1.144.2.12/32", + "1.144.2.14/32", + "1.144.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.2.2/32", + "1.144.2.4/32", + "1.144.2.6/32", + "1.144.2.8/32", + "1.144.2.10/32", + "1.144.2.12/32", + "1.144.2.14/32", + "1.144.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.144.4.1/32", + "1.144.4.3/32", + "1.144.4.5/32", + "1.144.4.7/32", + "1.144.4.9/32", + "1.144.4.11/32", + "1.144.4.13/32", + "1.144.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.4.1/32", + "1.144.4.3/32", + "1.144.4.5/32", + "1.144.4.7/32", + "1.144.4.9/32", + "1.144.4.11/32", + "1.144.4.13/32", + "1.144.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.144.4.2/32", + "1.144.4.4/32", + "1.144.4.6/32", + "1.144.4.8/32", + "1.144.4.10/32", + "1.144.4.12/32", + "1.144.4.14/32", + "1.144.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.4.2/32", + "1.144.4.4/32", + "1.144.4.6/32", + "1.144.4.8/32", + "1.144.4.10/32", + "1.144.4.12/32", + "1.144.4.14/32", + "1.144.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.144.6.1/32", + "1.144.6.3/32", + "1.144.6.5/32", + "1.144.6.7/32", + "1.144.6.9/32", + "1.144.6.11/32", + "1.144.6.13/32", + "1.144.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.6.1/32", + "1.144.6.3/32", + "1.144.6.5/32", + "1.144.6.7/32", + "1.144.6.9/32", + "1.144.6.11/32", + "1.144.6.13/32", + "1.144.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.144.6.2/32", + "1.144.6.4/32", + "1.144.6.6/32", + "1.144.6.8/32", + "1.144.6.10/32", + "1.144.6.12/32", + "1.144.6.14/32", + "1.144.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.6.2/32", + "1.144.6.4/32", + "1.144.6.6/32", + "1.144.6.8/32", + "1.144.6.10/32", + "1.144.6.12/32", + "1.144.6.14/32", + "1.144.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.144.8.1/32", + "1.144.8.3/32", + "1.144.8.5/32", + "1.144.8.7/32", + "1.144.8.9/32", + "1.144.8.11/32", + "1.144.8.13/32", + "1.144.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.8.1/32", + "1.144.8.3/32", + "1.144.8.5/32", + "1.144.8.7/32", + "1.144.8.9/32", + "1.144.8.11/32", + "1.144.8.13/32", + "1.144.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.144.8.2/32", + "1.144.8.4/32", + "1.144.8.6/32", + "1.144.8.8/32", + "1.144.8.10/32", + "1.144.8.12/32", + "1.144.8.14/32", + "1.144.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.8.2/32", + "1.144.8.4/32", + "1.144.8.6/32", + "1.144.8.8/32", + "1.144.8.10/32", + "1.144.8.12/32", + "1.144.8.14/32", + "1.144.8.16/32", + "1.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:1:TABLE:1006": { + "acl-group-id": "acl-group-1006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.148.0.1/32", + "1.148.0.3/32", + "1.148.0.5/32", + "1.148.0.7/32", + "1.148.0.9/32", + "1.148.0.11/32", + "1.148.0.13/32", + "1.148.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.0.1/32", + "1.148.0.3/32", + "1.148.0.5/32", + "1.148.0.7/32", + "1.148.0.9/32", + "1.148.0.11/32", + "1.148.0.13/32", + "1.148.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.148.0.2/32", + "1.148.0.4/32", + "1.148.0.6/32", + "1.148.0.8/32", + "1.148.0.10/32", + "1.148.0.12/32", + "1.148.0.14/32", + "1.148.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.0.2/32", + "1.148.0.4/32", + "1.148.0.6/32", + "1.148.0.8/32", + "1.148.0.10/32", + "1.148.0.12/32", + "1.148.0.14/32", + "1.148.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.148.2.1/32", + "1.148.2.3/32", + "1.148.2.5/32", + "1.148.2.7/32", + "1.148.2.9/32", + "1.148.2.11/32", + "1.148.2.13/32", + "1.148.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.2.1/32", + "1.148.2.3/32", + "1.148.2.5/32", + "1.148.2.7/32", + "1.148.2.9/32", + "1.148.2.11/32", + "1.148.2.13/32", + "1.148.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.148.2.2/32", + "1.148.2.4/32", + "1.148.2.6/32", + "1.148.2.8/32", + "1.148.2.10/32", + "1.148.2.12/32", + "1.148.2.14/32", + "1.148.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.2.2/32", + "1.148.2.4/32", + "1.148.2.6/32", + "1.148.2.8/32", + "1.148.2.10/32", + "1.148.2.12/32", + "1.148.2.14/32", + "1.148.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.148.4.1/32", + "1.148.4.3/32", + "1.148.4.5/32", + "1.148.4.7/32", + "1.148.4.9/32", + "1.148.4.11/32", + "1.148.4.13/32", + "1.148.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.4.1/32", + "1.148.4.3/32", + "1.148.4.5/32", + "1.148.4.7/32", + "1.148.4.9/32", + "1.148.4.11/32", + "1.148.4.13/32", + "1.148.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.148.4.2/32", + "1.148.4.4/32", + "1.148.4.6/32", + "1.148.4.8/32", + "1.148.4.10/32", + "1.148.4.12/32", + "1.148.4.14/32", + "1.148.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.4.2/32", + "1.148.4.4/32", + "1.148.4.6/32", + "1.148.4.8/32", + "1.148.4.10/32", + "1.148.4.12/32", + "1.148.4.14/32", + "1.148.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.148.6.1/32", + "1.148.6.3/32", + "1.148.6.5/32", + "1.148.6.7/32", + "1.148.6.9/32", + "1.148.6.11/32", + "1.148.6.13/32", + "1.148.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.6.1/32", + "1.148.6.3/32", + "1.148.6.5/32", + "1.148.6.7/32", + "1.148.6.9/32", + "1.148.6.11/32", + "1.148.6.13/32", + "1.148.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.148.6.2/32", + "1.148.6.4/32", + "1.148.6.6/32", + "1.148.6.8/32", + "1.148.6.10/32", + "1.148.6.12/32", + "1.148.6.14/32", + "1.148.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.6.2/32", + "1.148.6.4/32", + "1.148.6.6/32", + "1.148.6.8/32", + "1.148.6.10/32", + "1.148.6.12/32", + "1.148.6.14/32", + "1.148.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.148.8.1/32", + "1.148.8.3/32", + "1.148.8.5/32", + "1.148.8.7/32", + "1.148.8.9/32", + "1.148.8.11/32", + "1.148.8.13/32", + "1.148.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.8.1/32", + "1.148.8.3/32", + "1.148.8.5/32", + "1.148.8.7/32", + "1.148.8.9/32", + "1.148.8.11/32", + "1.148.8.13/32", + "1.148.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.148.8.2/32", + "1.148.8.4/32", + "1.148.8.6/32", + "1.148.8.8/32", + "1.148.8.10/32", + "1.148.8.12/32", + "1.148.8.14/32", + "1.148.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.8.2/32", + "1.148.8.4/32", + "1.148.8.6/32", + "1.148.8.8/32", + "1.148.8.10/32", + "1.148.8.12/32", + "1.148.8.14/32", + "1.148.8.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "1.1.0.1/32", + "1.128.0.1/14", + "1.132.0.1/14", + "1.136.0.1/14" + ], + "dst_addrs": [ + "1.1.0.1/32", + "1.128.0.1/14", + "1.132.0.1/14", + "1.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2001": { + "acl-group-id": "acl-group-2001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.128.0.1/32", + "2.128.0.3/32", + "2.128.0.5/32", + "2.128.0.7/32", + "2.128.0.9/32", + "2.128.0.11/32", + "2.128.0.13/32", + "2.128.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.0.1/32", + "2.128.0.3/32", + "2.128.0.5/32", + "2.128.0.7/32", + "2.128.0.9/32", + "2.128.0.11/32", + "2.128.0.13/32", + "2.128.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.128.0.2/32", + "2.128.0.4/32", + "2.128.0.6/32", + "2.128.0.8/32", + "2.128.0.10/32", + "2.128.0.12/32", + "2.128.0.14/32", + "2.128.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.0.2/32", + "2.128.0.4/32", + "2.128.0.6/32", + "2.128.0.8/32", + "2.128.0.10/32", + "2.128.0.12/32", + "2.128.0.14/32", + "2.128.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.128.2.1/32", + "2.128.2.3/32", + "2.128.2.5/32", + "2.128.2.7/32", + "2.128.2.9/32", + "2.128.2.11/32", + "2.128.2.13/32", + "2.128.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.2.1/32", + "2.128.2.3/32", + "2.128.2.5/32", + "2.128.2.7/32", + "2.128.2.9/32", + "2.128.2.11/32", + "2.128.2.13/32", + "2.128.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.128.2.2/32", + "2.128.2.4/32", + "2.128.2.6/32", + "2.128.2.8/32", + "2.128.2.10/32", + "2.128.2.12/32", + "2.128.2.14/32", + "2.128.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.2.2/32", + "2.128.2.4/32", + "2.128.2.6/32", + "2.128.2.8/32", + "2.128.2.10/32", + "2.128.2.12/32", + "2.128.2.14/32", + "2.128.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.128.4.1/32", + "2.128.4.3/32", + "2.128.4.5/32", + "2.128.4.7/32", + "2.128.4.9/32", + "2.128.4.11/32", + "2.128.4.13/32", + "2.128.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.4.1/32", + "2.128.4.3/32", + "2.128.4.5/32", + "2.128.4.7/32", + "2.128.4.9/32", + "2.128.4.11/32", + "2.128.4.13/32", + "2.128.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.128.4.2/32", + "2.128.4.4/32", + "2.128.4.6/32", + "2.128.4.8/32", + "2.128.4.10/32", + "2.128.4.12/32", + "2.128.4.14/32", + "2.128.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.4.2/32", + "2.128.4.4/32", + "2.128.4.6/32", + "2.128.4.8/32", + "2.128.4.10/32", + "2.128.4.12/32", + "2.128.4.14/32", + "2.128.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.128.6.1/32", + "2.128.6.3/32", + "2.128.6.5/32", + "2.128.6.7/32", + "2.128.6.9/32", + "2.128.6.11/32", + "2.128.6.13/32", + "2.128.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.6.1/32", + "2.128.6.3/32", + "2.128.6.5/32", + "2.128.6.7/32", + "2.128.6.9/32", + "2.128.6.11/32", + "2.128.6.13/32", + "2.128.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.128.6.2/32", + "2.128.6.4/32", + "2.128.6.6/32", + "2.128.6.8/32", + "2.128.6.10/32", + "2.128.6.12/32", + "2.128.6.14/32", + "2.128.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.6.2/32", + "2.128.6.4/32", + "2.128.6.6/32", + "2.128.6.8/32", + "2.128.6.10/32", + "2.128.6.12/32", + "2.128.6.14/32", + "2.128.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.128.8.1/32", + "2.128.8.3/32", + "2.128.8.5/32", + "2.128.8.7/32", + "2.128.8.9/32", + "2.128.8.11/32", + "2.128.8.13/32", + "2.128.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.8.1/32", + "2.128.8.3/32", + "2.128.8.5/32", + "2.128.8.7/32", + "2.128.8.9/32", + "2.128.8.11/32", + "2.128.8.13/32", + "2.128.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.128.8.2/32", + "2.128.8.4/32", + "2.128.8.6/32", + "2.128.8.8/32", + "2.128.8.10/32", + "2.128.8.12/32", + "2.128.8.14/32", + "2.128.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.8.2/32", + "2.128.8.4/32", + "2.128.8.6/32", + "2.128.8.8/32", + "2.128.8.10/32", + "2.128.8.12/32", + "2.128.8.14/32", + "2.128.8.16/32", + "2.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2002": { + "acl-group-id": "acl-group-2002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.132.0.1/32", + "2.132.0.3/32", + "2.132.0.5/32", + "2.132.0.7/32", + "2.132.0.9/32", + "2.132.0.11/32", + "2.132.0.13/32", + "2.132.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.0.1/32", + "2.132.0.3/32", + "2.132.0.5/32", + "2.132.0.7/32", + "2.132.0.9/32", + "2.132.0.11/32", + "2.132.0.13/32", + "2.132.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.132.0.2/32", + "2.132.0.4/32", + "2.132.0.6/32", + "2.132.0.8/32", + "2.132.0.10/32", + "2.132.0.12/32", + "2.132.0.14/32", + "2.132.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.0.2/32", + "2.132.0.4/32", + "2.132.0.6/32", + "2.132.0.8/32", + "2.132.0.10/32", + "2.132.0.12/32", + "2.132.0.14/32", + "2.132.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.132.2.1/32", + "2.132.2.3/32", + "2.132.2.5/32", + "2.132.2.7/32", + "2.132.2.9/32", + "2.132.2.11/32", + "2.132.2.13/32", + "2.132.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.2.1/32", + "2.132.2.3/32", + "2.132.2.5/32", + "2.132.2.7/32", + "2.132.2.9/32", + "2.132.2.11/32", + "2.132.2.13/32", + "2.132.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.132.2.2/32", + "2.132.2.4/32", + "2.132.2.6/32", + "2.132.2.8/32", + "2.132.2.10/32", + "2.132.2.12/32", + "2.132.2.14/32", + "2.132.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.2.2/32", + "2.132.2.4/32", + "2.132.2.6/32", + "2.132.2.8/32", + "2.132.2.10/32", + "2.132.2.12/32", + "2.132.2.14/32", + "2.132.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.132.4.1/32", + "2.132.4.3/32", + "2.132.4.5/32", + "2.132.4.7/32", + "2.132.4.9/32", + "2.132.4.11/32", + "2.132.4.13/32", + "2.132.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.4.1/32", + "2.132.4.3/32", + "2.132.4.5/32", + "2.132.4.7/32", + "2.132.4.9/32", + "2.132.4.11/32", + "2.132.4.13/32", + "2.132.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.132.4.2/32", + "2.132.4.4/32", + "2.132.4.6/32", + "2.132.4.8/32", + "2.132.4.10/32", + "2.132.4.12/32", + "2.132.4.14/32", + "2.132.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.4.2/32", + "2.132.4.4/32", + "2.132.4.6/32", + "2.132.4.8/32", + "2.132.4.10/32", + "2.132.4.12/32", + "2.132.4.14/32", + "2.132.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.132.6.1/32", + "2.132.6.3/32", + "2.132.6.5/32", + "2.132.6.7/32", + "2.132.6.9/32", + "2.132.6.11/32", + "2.132.6.13/32", + "2.132.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.6.1/32", + "2.132.6.3/32", + "2.132.6.5/32", + "2.132.6.7/32", + "2.132.6.9/32", + "2.132.6.11/32", + "2.132.6.13/32", + "2.132.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.132.6.2/32", + "2.132.6.4/32", + "2.132.6.6/32", + "2.132.6.8/32", + "2.132.6.10/32", + "2.132.6.12/32", + "2.132.6.14/32", + "2.132.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.6.2/32", + "2.132.6.4/32", + "2.132.6.6/32", + "2.132.6.8/32", + "2.132.6.10/32", + "2.132.6.12/32", + "2.132.6.14/32", + "2.132.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.132.8.1/32", + "2.132.8.3/32", + "2.132.8.5/32", + "2.132.8.7/32", + "2.132.8.9/32", + "2.132.8.11/32", + "2.132.8.13/32", + "2.132.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.8.1/32", + "2.132.8.3/32", + "2.132.8.5/32", + "2.132.8.7/32", + "2.132.8.9/32", + "2.132.8.11/32", + "2.132.8.13/32", + "2.132.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.132.8.2/32", + "2.132.8.4/32", + "2.132.8.6/32", + "2.132.8.8/32", + "2.132.8.10/32", + "2.132.8.12/32", + "2.132.8.14/32", + "2.132.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.8.2/32", + "2.132.8.4/32", + "2.132.8.6/32", + "2.132.8.8/32", + "2.132.8.10/32", + "2.132.8.12/32", + "2.132.8.14/32", + "2.132.8.16/32", + "2.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2003": { + "acl-group-id": "acl-group-2003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.136.0.1/32", + "2.136.0.3/32", + "2.136.0.5/32", + "2.136.0.7/32", + "2.136.0.9/32", + "2.136.0.11/32", + "2.136.0.13/32", + "2.136.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.0.1/32", + "2.136.0.3/32", + "2.136.0.5/32", + "2.136.0.7/32", + "2.136.0.9/32", + "2.136.0.11/32", + "2.136.0.13/32", + "2.136.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.136.0.2/32", + "2.136.0.4/32", + "2.136.0.6/32", + "2.136.0.8/32", + "2.136.0.10/32", + "2.136.0.12/32", + "2.136.0.14/32", + "2.136.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.0.2/32", + "2.136.0.4/32", + "2.136.0.6/32", + "2.136.0.8/32", + "2.136.0.10/32", + "2.136.0.12/32", + "2.136.0.14/32", + "2.136.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.136.2.1/32", + "2.136.2.3/32", + "2.136.2.5/32", + "2.136.2.7/32", + "2.136.2.9/32", + "2.136.2.11/32", + "2.136.2.13/32", + "2.136.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.2.1/32", + "2.136.2.3/32", + "2.136.2.5/32", + "2.136.2.7/32", + "2.136.2.9/32", + "2.136.2.11/32", + "2.136.2.13/32", + "2.136.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.136.2.2/32", + "2.136.2.4/32", + "2.136.2.6/32", + "2.136.2.8/32", + "2.136.2.10/32", + "2.136.2.12/32", + "2.136.2.14/32", + "2.136.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.2.2/32", + "2.136.2.4/32", + "2.136.2.6/32", + "2.136.2.8/32", + "2.136.2.10/32", + "2.136.2.12/32", + "2.136.2.14/32", + "2.136.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.136.4.1/32", + "2.136.4.3/32", + "2.136.4.5/32", + "2.136.4.7/32", + "2.136.4.9/32", + "2.136.4.11/32", + "2.136.4.13/32", + "2.136.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.4.1/32", + "2.136.4.3/32", + "2.136.4.5/32", + "2.136.4.7/32", + "2.136.4.9/32", + "2.136.4.11/32", + "2.136.4.13/32", + "2.136.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.136.4.2/32", + "2.136.4.4/32", + "2.136.4.6/32", + "2.136.4.8/32", + "2.136.4.10/32", + "2.136.4.12/32", + "2.136.4.14/32", + "2.136.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.4.2/32", + "2.136.4.4/32", + "2.136.4.6/32", + "2.136.4.8/32", + "2.136.4.10/32", + "2.136.4.12/32", + "2.136.4.14/32", + "2.136.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.136.6.1/32", + "2.136.6.3/32", + "2.136.6.5/32", + "2.136.6.7/32", + "2.136.6.9/32", + "2.136.6.11/32", + "2.136.6.13/32", + "2.136.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.6.1/32", + "2.136.6.3/32", + "2.136.6.5/32", + "2.136.6.7/32", + "2.136.6.9/32", + "2.136.6.11/32", + "2.136.6.13/32", + "2.136.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.136.6.2/32", + "2.136.6.4/32", + "2.136.6.6/32", + "2.136.6.8/32", + "2.136.6.10/32", + "2.136.6.12/32", + "2.136.6.14/32", + "2.136.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.6.2/32", + "2.136.6.4/32", + "2.136.6.6/32", + "2.136.6.8/32", + "2.136.6.10/32", + "2.136.6.12/32", + "2.136.6.14/32", + "2.136.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.136.8.1/32", + "2.136.8.3/32", + "2.136.8.5/32", + "2.136.8.7/32", + "2.136.8.9/32", + "2.136.8.11/32", + "2.136.8.13/32", + "2.136.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.8.1/32", + "2.136.8.3/32", + "2.136.8.5/32", + "2.136.8.7/32", + "2.136.8.9/32", + "2.136.8.11/32", + "2.136.8.13/32", + "2.136.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.136.8.2/32", + "2.136.8.4/32", + "2.136.8.6/32", + "2.136.8.8/32", + "2.136.8.10/32", + "2.136.8.12/32", + "2.136.8.14/32", + "2.136.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.8.2/32", + "2.136.8.4/32", + "2.136.8.6/32", + "2.136.8.8/32", + "2.136.8.10/32", + "2.136.8.12/32", + "2.136.8.14/32", + "2.136.8.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "2.1.0.1/32", + "2.140.0.1/14", + "2.144.0.1/14", + "2.148.0.1/14" + ], + "dst_addrs": [ + "2.1.0.1/32", + "2.140.0.1/14", + "2.144.0.1/14", + "2.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2004": { + "acl-group-id": "acl-group-2004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.140.0.1/32", + "2.140.0.3/32", + "2.140.0.5/32", + "2.140.0.7/32", + "2.140.0.9/32", + "2.140.0.11/32", + "2.140.0.13/32", + "2.140.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.0.1/32", + "2.140.0.3/32", + "2.140.0.5/32", + "2.140.0.7/32", + "2.140.0.9/32", + "2.140.0.11/32", + "2.140.0.13/32", + "2.140.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.140.0.2/32", + "2.140.0.4/32", + "2.140.0.6/32", + "2.140.0.8/32", + "2.140.0.10/32", + "2.140.0.12/32", + "2.140.0.14/32", + "2.140.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.0.2/32", + "2.140.0.4/32", + "2.140.0.6/32", + "2.140.0.8/32", + "2.140.0.10/32", + "2.140.0.12/32", + "2.140.0.14/32", + "2.140.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.140.2.1/32", + "2.140.2.3/32", + "2.140.2.5/32", + "2.140.2.7/32", + "2.140.2.9/32", + "2.140.2.11/32", + "2.140.2.13/32", + "2.140.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.2.1/32", + "2.140.2.3/32", + "2.140.2.5/32", + "2.140.2.7/32", + "2.140.2.9/32", + "2.140.2.11/32", + "2.140.2.13/32", + "2.140.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.140.2.2/32", + "2.140.2.4/32", + "2.140.2.6/32", + "2.140.2.8/32", + "2.140.2.10/32", + "2.140.2.12/32", + "2.140.2.14/32", + "2.140.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.2.2/32", + "2.140.2.4/32", + "2.140.2.6/32", + "2.140.2.8/32", + "2.140.2.10/32", + "2.140.2.12/32", + "2.140.2.14/32", + "2.140.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.140.4.1/32", + "2.140.4.3/32", + "2.140.4.5/32", + "2.140.4.7/32", + "2.140.4.9/32", + "2.140.4.11/32", + "2.140.4.13/32", + "2.140.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.4.1/32", + "2.140.4.3/32", + "2.140.4.5/32", + "2.140.4.7/32", + "2.140.4.9/32", + "2.140.4.11/32", + "2.140.4.13/32", + "2.140.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.140.4.2/32", + "2.140.4.4/32", + "2.140.4.6/32", + "2.140.4.8/32", + "2.140.4.10/32", + "2.140.4.12/32", + "2.140.4.14/32", + "2.140.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.4.2/32", + "2.140.4.4/32", + "2.140.4.6/32", + "2.140.4.8/32", + "2.140.4.10/32", + "2.140.4.12/32", + "2.140.4.14/32", + "2.140.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.140.6.1/32", + "2.140.6.3/32", + "2.140.6.5/32", + "2.140.6.7/32", + "2.140.6.9/32", + "2.140.6.11/32", + "2.140.6.13/32", + "2.140.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.6.1/32", + "2.140.6.3/32", + "2.140.6.5/32", + "2.140.6.7/32", + "2.140.6.9/32", + "2.140.6.11/32", + "2.140.6.13/32", + "2.140.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.140.6.2/32", + "2.140.6.4/32", + "2.140.6.6/32", + "2.140.6.8/32", + "2.140.6.10/32", + "2.140.6.12/32", + "2.140.6.14/32", + "2.140.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.6.2/32", + "2.140.6.4/32", + "2.140.6.6/32", + "2.140.6.8/32", + "2.140.6.10/32", + "2.140.6.12/32", + "2.140.6.14/32", + "2.140.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.140.8.1/32", + "2.140.8.3/32", + "2.140.8.5/32", + "2.140.8.7/32", + "2.140.8.9/32", + "2.140.8.11/32", + "2.140.8.13/32", + "2.140.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.8.1/32", + "2.140.8.3/32", + "2.140.8.5/32", + "2.140.8.7/32", + "2.140.8.9/32", + "2.140.8.11/32", + "2.140.8.13/32", + "2.140.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.140.8.2/32", + "2.140.8.4/32", + "2.140.8.6/32", + "2.140.8.8/32", + "2.140.8.10/32", + "2.140.8.12/32", + "2.140.8.14/32", + "2.140.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.8.2/32", + "2.140.8.4/32", + "2.140.8.6/32", + "2.140.8.8/32", + "2.140.8.10/32", + "2.140.8.12/32", + "2.140.8.14/32", + "2.140.8.16/32", + "2.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2005": { + "acl-group-id": "acl-group-2005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.144.0.1/32", + "2.144.0.3/32", + "2.144.0.5/32", + "2.144.0.7/32", + "2.144.0.9/32", + "2.144.0.11/32", + "2.144.0.13/32", + "2.144.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.0.1/32", + "2.144.0.3/32", + "2.144.0.5/32", + "2.144.0.7/32", + "2.144.0.9/32", + "2.144.0.11/32", + "2.144.0.13/32", + "2.144.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.144.0.2/32", + "2.144.0.4/32", + "2.144.0.6/32", + "2.144.0.8/32", + "2.144.0.10/32", + "2.144.0.12/32", + "2.144.0.14/32", + "2.144.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.0.2/32", + "2.144.0.4/32", + "2.144.0.6/32", + "2.144.0.8/32", + "2.144.0.10/32", + "2.144.0.12/32", + "2.144.0.14/32", + "2.144.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.144.2.1/32", + "2.144.2.3/32", + "2.144.2.5/32", + "2.144.2.7/32", + "2.144.2.9/32", + "2.144.2.11/32", + "2.144.2.13/32", + "2.144.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.2.1/32", + "2.144.2.3/32", + "2.144.2.5/32", + "2.144.2.7/32", + "2.144.2.9/32", + "2.144.2.11/32", + "2.144.2.13/32", + "2.144.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.144.2.2/32", + "2.144.2.4/32", + "2.144.2.6/32", + "2.144.2.8/32", + "2.144.2.10/32", + "2.144.2.12/32", + "2.144.2.14/32", + "2.144.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.2.2/32", + "2.144.2.4/32", + "2.144.2.6/32", + "2.144.2.8/32", + "2.144.2.10/32", + "2.144.2.12/32", + "2.144.2.14/32", + "2.144.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.144.4.1/32", + "2.144.4.3/32", + "2.144.4.5/32", + "2.144.4.7/32", + "2.144.4.9/32", + "2.144.4.11/32", + "2.144.4.13/32", + "2.144.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.4.1/32", + "2.144.4.3/32", + "2.144.4.5/32", + "2.144.4.7/32", + "2.144.4.9/32", + "2.144.4.11/32", + "2.144.4.13/32", + "2.144.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.144.4.2/32", + "2.144.4.4/32", + "2.144.4.6/32", + "2.144.4.8/32", + "2.144.4.10/32", + "2.144.4.12/32", + "2.144.4.14/32", + "2.144.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.4.2/32", + "2.144.4.4/32", + "2.144.4.6/32", + "2.144.4.8/32", + "2.144.4.10/32", + "2.144.4.12/32", + "2.144.4.14/32", + "2.144.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.144.6.1/32", + "2.144.6.3/32", + "2.144.6.5/32", + "2.144.6.7/32", + "2.144.6.9/32", + "2.144.6.11/32", + "2.144.6.13/32", + "2.144.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.6.1/32", + "2.144.6.3/32", + "2.144.6.5/32", + "2.144.6.7/32", + "2.144.6.9/32", + "2.144.6.11/32", + "2.144.6.13/32", + "2.144.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.144.6.2/32", + "2.144.6.4/32", + "2.144.6.6/32", + "2.144.6.8/32", + "2.144.6.10/32", + "2.144.6.12/32", + "2.144.6.14/32", + "2.144.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.6.2/32", + "2.144.6.4/32", + "2.144.6.6/32", + "2.144.6.8/32", + "2.144.6.10/32", + "2.144.6.12/32", + "2.144.6.14/32", + "2.144.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.144.8.1/32", + "2.144.8.3/32", + "2.144.8.5/32", + "2.144.8.7/32", + "2.144.8.9/32", + "2.144.8.11/32", + "2.144.8.13/32", + "2.144.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.8.1/32", + "2.144.8.3/32", + "2.144.8.5/32", + "2.144.8.7/32", + "2.144.8.9/32", + "2.144.8.11/32", + "2.144.8.13/32", + "2.144.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.144.8.2/32", + "2.144.8.4/32", + "2.144.8.6/32", + "2.144.8.8/32", + "2.144.8.10/32", + "2.144.8.12/32", + "2.144.8.14/32", + "2.144.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.8.2/32", + "2.144.8.4/32", + "2.144.8.6/32", + "2.144.8.8/32", + "2.144.8.10/32", + "2.144.8.12/32", + "2.144.8.14/32", + "2.144.8.16/32", + "2.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2006": { + "acl-group-id": "acl-group-2006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.148.0.1/32", + "2.148.0.3/32", + "2.148.0.5/32", + "2.148.0.7/32", + "2.148.0.9/32", + "2.148.0.11/32", + "2.148.0.13/32", + "2.148.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.0.1/32", + "2.148.0.3/32", + "2.148.0.5/32", + "2.148.0.7/32", + "2.148.0.9/32", + "2.148.0.11/32", + "2.148.0.13/32", + "2.148.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.148.0.2/32", + "2.148.0.4/32", + "2.148.0.6/32", + "2.148.0.8/32", + "2.148.0.10/32", + "2.148.0.12/32", + "2.148.0.14/32", + "2.148.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.0.2/32", + "2.148.0.4/32", + "2.148.0.6/32", + "2.148.0.8/32", + "2.148.0.10/32", + "2.148.0.12/32", + "2.148.0.14/32", + "2.148.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.148.2.1/32", + "2.148.2.3/32", + "2.148.2.5/32", + "2.148.2.7/32", + "2.148.2.9/32", + "2.148.2.11/32", + "2.148.2.13/32", + "2.148.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.2.1/32", + "2.148.2.3/32", + "2.148.2.5/32", + "2.148.2.7/32", + "2.148.2.9/32", + "2.148.2.11/32", + "2.148.2.13/32", + "2.148.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.148.2.2/32", + "2.148.2.4/32", + "2.148.2.6/32", + "2.148.2.8/32", + "2.148.2.10/32", + "2.148.2.12/32", + "2.148.2.14/32", + "2.148.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.2.2/32", + "2.148.2.4/32", + "2.148.2.6/32", + "2.148.2.8/32", + "2.148.2.10/32", + "2.148.2.12/32", + "2.148.2.14/32", + "2.148.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.148.4.1/32", + "2.148.4.3/32", + "2.148.4.5/32", + "2.148.4.7/32", + "2.148.4.9/32", + "2.148.4.11/32", + "2.148.4.13/32", + "2.148.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.4.1/32", + "2.148.4.3/32", + "2.148.4.5/32", + "2.148.4.7/32", + "2.148.4.9/32", + "2.148.4.11/32", + "2.148.4.13/32", + "2.148.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.148.4.2/32", + "2.148.4.4/32", + "2.148.4.6/32", + "2.148.4.8/32", + "2.148.4.10/32", + "2.148.4.12/32", + "2.148.4.14/32", + "2.148.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.4.2/32", + "2.148.4.4/32", + "2.148.4.6/32", + "2.148.4.8/32", + "2.148.4.10/32", + "2.148.4.12/32", + "2.148.4.14/32", + "2.148.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.148.6.1/32", + "2.148.6.3/32", + "2.148.6.5/32", + "2.148.6.7/32", + "2.148.6.9/32", + "2.148.6.11/32", + "2.148.6.13/32", + "2.148.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.6.1/32", + "2.148.6.3/32", + "2.148.6.5/32", + "2.148.6.7/32", + "2.148.6.9/32", + "2.148.6.11/32", + "2.148.6.13/32", + "2.148.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.148.6.2/32", + "2.148.6.4/32", + "2.148.6.6/32", + "2.148.6.8/32", + "2.148.6.10/32", + "2.148.6.12/32", + "2.148.6.14/32", + "2.148.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.6.2/32", + "2.148.6.4/32", + "2.148.6.6/32", + "2.148.6.8/32", + "2.148.6.10/32", + "2.148.6.12/32", + "2.148.6.14/32", + "2.148.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.148.8.1/32", + "2.148.8.3/32", + "2.148.8.5/32", + "2.148.8.7/32", + "2.148.8.9/32", + "2.148.8.11/32", + "2.148.8.13/32", + "2.148.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.8.1/32", + "2.148.8.3/32", + "2.148.8.5/32", + "2.148.8.7/32", + "2.148.8.9/32", + "2.148.8.11/32", + "2.148.8.13/32", + "2.148.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.148.8.2/32", + "2.148.8.4/32", + "2.148.8.6/32", + "2.148.8.8/32", + "2.148.8.10/32", + "2.148.8.12/32", + "2.148.8.14/32", + "2.148.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.8.2/32", + "2.148.8.4/32", + "2.148.8.6/32", + "2.148.8.8/32", + "2.148.8.10/32", + "2.148.8.12/32", + "2.148.8.14/32", + "2.148.8.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "2.1.0.1/32", + "2.128.0.1/14", + "2.132.0.1/14", + "2.136.0.1/14" + ], + "dst_addrs": [ + "2.1.0.1/32", + "2.128.0.1/14", + "2.132.0.1/14", + "2.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3001": { + "acl-group-id": "acl-group-3001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.128.0.1/32", + "3.128.0.3/32", + "3.128.0.5/32", + "3.128.0.7/32", + "3.128.0.9/32", + "3.128.0.11/32", + "3.128.0.13/32", + "3.128.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.0.1/32", + "3.128.0.3/32", + "3.128.0.5/32", + "3.128.0.7/32", + "3.128.0.9/32", + "3.128.0.11/32", + "3.128.0.13/32", + "3.128.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.128.0.2/32", + "3.128.0.4/32", + "3.128.0.6/32", + "3.128.0.8/32", + "3.128.0.10/32", + "3.128.0.12/32", + "3.128.0.14/32", + "3.128.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.0.2/32", + "3.128.0.4/32", + "3.128.0.6/32", + "3.128.0.8/32", + "3.128.0.10/32", + "3.128.0.12/32", + "3.128.0.14/32", + "3.128.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.128.2.1/32", + "3.128.2.3/32", + "3.128.2.5/32", + "3.128.2.7/32", + "3.128.2.9/32", + "3.128.2.11/32", + "3.128.2.13/32", + "3.128.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.2.1/32", + "3.128.2.3/32", + "3.128.2.5/32", + "3.128.2.7/32", + "3.128.2.9/32", + "3.128.2.11/32", + "3.128.2.13/32", + "3.128.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.128.2.2/32", + "3.128.2.4/32", + "3.128.2.6/32", + "3.128.2.8/32", + "3.128.2.10/32", + "3.128.2.12/32", + "3.128.2.14/32", + "3.128.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.2.2/32", + "3.128.2.4/32", + "3.128.2.6/32", + "3.128.2.8/32", + "3.128.2.10/32", + "3.128.2.12/32", + "3.128.2.14/32", + "3.128.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.128.4.1/32", + "3.128.4.3/32", + "3.128.4.5/32", + "3.128.4.7/32", + "3.128.4.9/32", + "3.128.4.11/32", + "3.128.4.13/32", + "3.128.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.4.1/32", + "3.128.4.3/32", + "3.128.4.5/32", + "3.128.4.7/32", + "3.128.4.9/32", + "3.128.4.11/32", + "3.128.4.13/32", + "3.128.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.128.4.2/32", + "3.128.4.4/32", + "3.128.4.6/32", + "3.128.4.8/32", + "3.128.4.10/32", + "3.128.4.12/32", + "3.128.4.14/32", + "3.128.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.4.2/32", + "3.128.4.4/32", + "3.128.4.6/32", + "3.128.4.8/32", + "3.128.4.10/32", + "3.128.4.12/32", + "3.128.4.14/32", + "3.128.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.128.6.1/32", + "3.128.6.3/32", + "3.128.6.5/32", + "3.128.6.7/32", + "3.128.6.9/32", + "3.128.6.11/32", + "3.128.6.13/32", + "3.128.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.6.1/32", + "3.128.6.3/32", + "3.128.6.5/32", + "3.128.6.7/32", + "3.128.6.9/32", + "3.128.6.11/32", + "3.128.6.13/32", + "3.128.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.128.6.2/32", + "3.128.6.4/32", + "3.128.6.6/32", + "3.128.6.8/32", + "3.128.6.10/32", + "3.128.6.12/32", + "3.128.6.14/32", + "3.128.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.6.2/32", + "3.128.6.4/32", + "3.128.6.6/32", + "3.128.6.8/32", + "3.128.6.10/32", + "3.128.6.12/32", + "3.128.6.14/32", + "3.128.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.128.8.1/32", + "3.128.8.3/32", + "3.128.8.5/32", + "3.128.8.7/32", + "3.128.8.9/32", + "3.128.8.11/32", + "3.128.8.13/32", + "3.128.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.8.1/32", + "3.128.8.3/32", + "3.128.8.5/32", + "3.128.8.7/32", + "3.128.8.9/32", + "3.128.8.11/32", + "3.128.8.13/32", + "3.128.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.128.8.2/32", + "3.128.8.4/32", + "3.128.8.6/32", + "3.128.8.8/32", + "3.128.8.10/32", + "3.128.8.12/32", + "3.128.8.14/32", + "3.128.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.8.2/32", + "3.128.8.4/32", + "3.128.8.6/32", + "3.128.8.8/32", + "3.128.8.10/32", + "3.128.8.12/32", + "3.128.8.14/32", + "3.128.8.16/32", + "3.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3002": { + "acl-group-id": "acl-group-3002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.132.0.1/32", + "3.132.0.3/32", + "3.132.0.5/32", + "3.132.0.7/32", + "3.132.0.9/32", + "3.132.0.11/32", + "3.132.0.13/32", + "3.132.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.0.1/32", + "3.132.0.3/32", + "3.132.0.5/32", + "3.132.0.7/32", + "3.132.0.9/32", + "3.132.0.11/32", + "3.132.0.13/32", + "3.132.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.132.0.2/32", + "3.132.0.4/32", + "3.132.0.6/32", + "3.132.0.8/32", + "3.132.0.10/32", + "3.132.0.12/32", + "3.132.0.14/32", + "3.132.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.0.2/32", + "3.132.0.4/32", + "3.132.0.6/32", + "3.132.0.8/32", + "3.132.0.10/32", + "3.132.0.12/32", + "3.132.0.14/32", + "3.132.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.132.2.1/32", + "3.132.2.3/32", + "3.132.2.5/32", + "3.132.2.7/32", + "3.132.2.9/32", + "3.132.2.11/32", + "3.132.2.13/32", + "3.132.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.2.1/32", + "3.132.2.3/32", + "3.132.2.5/32", + "3.132.2.7/32", + "3.132.2.9/32", + "3.132.2.11/32", + "3.132.2.13/32", + "3.132.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.132.2.2/32", + "3.132.2.4/32", + "3.132.2.6/32", + "3.132.2.8/32", + "3.132.2.10/32", + "3.132.2.12/32", + "3.132.2.14/32", + "3.132.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.2.2/32", + "3.132.2.4/32", + "3.132.2.6/32", + "3.132.2.8/32", + "3.132.2.10/32", + "3.132.2.12/32", + "3.132.2.14/32", + "3.132.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.132.4.1/32", + "3.132.4.3/32", + "3.132.4.5/32", + "3.132.4.7/32", + "3.132.4.9/32", + "3.132.4.11/32", + "3.132.4.13/32", + "3.132.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.4.1/32", + "3.132.4.3/32", + "3.132.4.5/32", + "3.132.4.7/32", + "3.132.4.9/32", + "3.132.4.11/32", + "3.132.4.13/32", + "3.132.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.132.4.2/32", + "3.132.4.4/32", + "3.132.4.6/32", + "3.132.4.8/32", + "3.132.4.10/32", + "3.132.4.12/32", + "3.132.4.14/32", + "3.132.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.4.2/32", + "3.132.4.4/32", + "3.132.4.6/32", + "3.132.4.8/32", + "3.132.4.10/32", + "3.132.4.12/32", + "3.132.4.14/32", + "3.132.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.132.6.1/32", + "3.132.6.3/32", + "3.132.6.5/32", + "3.132.6.7/32", + "3.132.6.9/32", + "3.132.6.11/32", + "3.132.6.13/32", + "3.132.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.6.1/32", + "3.132.6.3/32", + "3.132.6.5/32", + "3.132.6.7/32", + "3.132.6.9/32", + "3.132.6.11/32", + "3.132.6.13/32", + "3.132.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.132.6.2/32", + "3.132.6.4/32", + "3.132.6.6/32", + "3.132.6.8/32", + "3.132.6.10/32", + "3.132.6.12/32", + "3.132.6.14/32", + "3.132.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.6.2/32", + "3.132.6.4/32", + "3.132.6.6/32", + "3.132.6.8/32", + "3.132.6.10/32", + "3.132.6.12/32", + "3.132.6.14/32", + "3.132.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.132.8.1/32", + "3.132.8.3/32", + "3.132.8.5/32", + "3.132.8.7/32", + "3.132.8.9/32", + "3.132.8.11/32", + "3.132.8.13/32", + "3.132.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.8.1/32", + "3.132.8.3/32", + "3.132.8.5/32", + "3.132.8.7/32", + "3.132.8.9/32", + "3.132.8.11/32", + "3.132.8.13/32", + "3.132.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.132.8.2/32", + "3.132.8.4/32", + "3.132.8.6/32", + "3.132.8.8/32", + "3.132.8.10/32", + "3.132.8.12/32", + "3.132.8.14/32", + "3.132.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.8.2/32", + "3.132.8.4/32", + "3.132.8.6/32", + "3.132.8.8/32", + "3.132.8.10/32", + "3.132.8.12/32", + "3.132.8.14/32", + "3.132.8.16/32", + "3.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3003": { + "acl-group-id": "acl-group-3003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.136.0.1/32", + "3.136.0.3/32", + "3.136.0.5/32", + "3.136.0.7/32", + "3.136.0.9/32", + "3.136.0.11/32", + "3.136.0.13/32", + "3.136.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.0.1/32", + "3.136.0.3/32", + "3.136.0.5/32", + "3.136.0.7/32", + "3.136.0.9/32", + "3.136.0.11/32", + "3.136.0.13/32", + "3.136.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.136.0.2/32", + "3.136.0.4/32", + "3.136.0.6/32", + "3.136.0.8/32", + "3.136.0.10/32", + "3.136.0.12/32", + "3.136.0.14/32", + "3.136.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.0.2/32", + "3.136.0.4/32", + "3.136.0.6/32", + "3.136.0.8/32", + "3.136.0.10/32", + "3.136.0.12/32", + "3.136.0.14/32", + "3.136.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.136.2.1/32", + "3.136.2.3/32", + "3.136.2.5/32", + "3.136.2.7/32", + "3.136.2.9/32", + "3.136.2.11/32", + "3.136.2.13/32", + "3.136.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.2.1/32", + "3.136.2.3/32", + "3.136.2.5/32", + "3.136.2.7/32", + "3.136.2.9/32", + "3.136.2.11/32", + "3.136.2.13/32", + "3.136.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.136.2.2/32", + "3.136.2.4/32", + "3.136.2.6/32", + "3.136.2.8/32", + "3.136.2.10/32", + "3.136.2.12/32", + "3.136.2.14/32", + "3.136.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.2.2/32", + "3.136.2.4/32", + "3.136.2.6/32", + "3.136.2.8/32", + "3.136.2.10/32", + "3.136.2.12/32", + "3.136.2.14/32", + "3.136.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.136.4.1/32", + "3.136.4.3/32", + "3.136.4.5/32", + "3.136.4.7/32", + "3.136.4.9/32", + "3.136.4.11/32", + "3.136.4.13/32", + "3.136.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.4.1/32", + "3.136.4.3/32", + "3.136.4.5/32", + "3.136.4.7/32", + "3.136.4.9/32", + "3.136.4.11/32", + "3.136.4.13/32", + "3.136.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.136.4.2/32", + "3.136.4.4/32", + "3.136.4.6/32", + "3.136.4.8/32", + "3.136.4.10/32", + "3.136.4.12/32", + "3.136.4.14/32", + "3.136.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.4.2/32", + "3.136.4.4/32", + "3.136.4.6/32", + "3.136.4.8/32", + "3.136.4.10/32", + "3.136.4.12/32", + "3.136.4.14/32", + "3.136.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.136.6.1/32", + "3.136.6.3/32", + "3.136.6.5/32", + "3.136.6.7/32", + "3.136.6.9/32", + "3.136.6.11/32", + "3.136.6.13/32", + "3.136.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.6.1/32", + "3.136.6.3/32", + "3.136.6.5/32", + "3.136.6.7/32", + "3.136.6.9/32", + "3.136.6.11/32", + "3.136.6.13/32", + "3.136.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.136.6.2/32", + "3.136.6.4/32", + "3.136.6.6/32", + "3.136.6.8/32", + "3.136.6.10/32", + "3.136.6.12/32", + "3.136.6.14/32", + "3.136.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.6.2/32", + "3.136.6.4/32", + "3.136.6.6/32", + "3.136.6.8/32", + "3.136.6.10/32", + "3.136.6.12/32", + "3.136.6.14/32", + "3.136.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.136.8.1/32", + "3.136.8.3/32", + "3.136.8.5/32", + "3.136.8.7/32", + "3.136.8.9/32", + "3.136.8.11/32", + "3.136.8.13/32", + "3.136.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.8.1/32", + "3.136.8.3/32", + "3.136.8.5/32", + "3.136.8.7/32", + "3.136.8.9/32", + "3.136.8.11/32", + "3.136.8.13/32", + "3.136.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.136.8.2/32", + "3.136.8.4/32", + "3.136.8.6/32", + "3.136.8.8/32", + "3.136.8.10/32", + "3.136.8.12/32", + "3.136.8.14/32", + "3.136.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.8.2/32", + "3.136.8.4/32", + "3.136.8.6/32", + "3.136.8.8/32", + "3.136.8.10/32", + "3.136.8.12/32", + "3.136.8.14/32", + "3.136.8.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "3.1.0.1/32", + "3.140.0.1/14", + "3.144.0.1/14", + "3.148.0.1/14" + ], + "dst_addrs": [ + "3.1.0.1/32", + "3.140.0.1/14", + "3.144.0.1/14", + "3.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3004": { + "acl-group-id": "acl-group-3004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.140.0.1/32", + "3.140.0.3/32", + "3.140.0.5/32", + "3.140.0.7/32", + "3.140.0.9/32", + "3.140.0.11/32", + "3.140.0.13/32", + "3.140.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.0.1/32", + "3.140.0.3/32", + "3.140.0.5/32", + "3.140.0.7/32", + "3.140.0.9/32", + "3.140.0.11/32", + "3.140.0.13/32", + "3.140.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.140.0.2/32", + "3.140.0.4/32", + "3.140.0.6/32", + "3.140.0.8/32", + "3.140.0.10/32", + "3.140.0.12/32", + "3.140.0.14/32", + "3.140.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.0.2/32", + "3.140.0.4/32", + "3.140.0.6/32", + "3.140.0.8/32", + "3.140.0.10/32", + "3.140.0.12/32", + "3.140.0.14/32", + "3.140.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.140.2.1/32", + "3.140.2.3/32", + "3.140.2.5/32", + "3.140.2.7/32", + "3.140.2.9/32", + "3.140.2.11/32", + "3.140.2.13/32", + "3.140.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.2.1/32", + "3.140.2.3/32", + "3.140.2.5/32", + "3.140.2.7/32", + "3.140.2.9/32", + "3.140.2.11/32", + "3.140.2.13/32", + "3.140.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.140.2.2/32", + "3.140.2.4/32", + "3.140.2.6/32", + "3.140.2.8/32", + "3.140.2.10/32", + "3.140.2.12/32", + "3.140.2.14/32", + "3.140.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.2.2/32", + "3.140.2.4/32", + "3.140.2.6/32", + "3.140.2.8/32", + "3.140.2.10/32", + "3.140.2.12/32", + "3.140.2.14/32", + "3.140.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.140.4.1/32", + "3.140.4.3/32", + "3.140.4.5/32", + "3.140.4.7/32", + "3.140.4.9/32", + "3.140.4.11/32", + "3.140.4.13/32", + "3.140.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.4.1/32", + "3.140.4.3/32", + "3.140.4.5/32", + "3.140.4.7/32", + "3.140.4.9/32", + "3.140.4.11/32", + "3.140.4.13/32", + "3.140.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.140.4.2/32", + "3.140.4.4/32", + "3.140.4.6/32", + "3.140.4.8/32", + "3.140.4.10/32", + "3.140.4.12/32", + "3.140.4.14/32", + "3.140.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.4.2/32", + "3.140.4.4/32", + "3.140.4.6/32", + "3.140.4.8/32", + "3.140.4.10/32", + "3.140.4.12/32", + "3.140.4.14/32", + "3.140.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.140.6.1/32", + "3.140.6.3/32", + "3.140.6.5/32", + "3.140.6.7/32", + "3.140.6.9/32", + "3.140.6.11/32", + "3.140.6.13/32", + "3.140.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.6.1/32", + "3.140.6.3/32", + "3.140.6.5/32", + "3.140.6.7/32", + "3.140.6.9/32", + "3.140.6.11/32", + "3.140.6.13/32", + "3.140.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.140.6.2/32", + "3.140.6.4/32", + "3.140.6.6/32", + "3.140.6.8/32", + "3.140.6.10/32", + "3.140.6.12/32", + "3.140.6.14/32", + "3.140.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.6.2/32", + "3.140.6.4/32", + "3.140.6.6/32", + "3.140.6.8/32", + "3.140.6.10/32", + "3.140.6.12/32", + "3.140.6.14/32", + "3.140.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.140.8.1/32", + "3.140.8.3/32", + "3.140.8.5/32", + "3.140.8.7/32", + "3.140.8.9/32", + "3.140.8.11/32", + "3.140.8.13/32", + "3.140.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.8.1/32", + "3.140.8.3/32", + "3.140.8.5/32", + "3.140.8.7/32", + "3.140.8.9/32", + "3.140.8.11/32", + "3.140.8.13/32", + "3.140.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.140.8.2/32", + "3.140.8.4/32", + "3.140.8.6/32", + "3.140.8.8/32", + "3.140.8.10/32", + "3.140.8.12/32", + "3.140.8.14/32", + "3.140.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.8.2/32", + "3.140.8.4/32", + "3.140.8.6/32", + "3.140.8.8/32", + "3.140.8.10/32", + "3.140.8.12/32", + "3.140.8.14/32", + "3.140.8.16/32", + "3.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3005": { + "acl-group-id": "acl-group-3005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.144.0.1/32", + "3.144.0.3/32", + "3.144.0.5/32", + "3.144.0.7/32", + "3.144.0.9/32", + "3.144.0.11/32", + "3.144.0.13/32", + "3.144.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.0.1/32", + "3.144.0.3/32", + "3.144.0.5/32", + "3.144.0.7/32", + "3.144.0.9/32", + "3.144.0.11/32", + "3.144.0.13/32", + "3.144.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.144.0.2/32", + "3.144.0.4/32", + "3.144.0.6/32", + "3.144.0.8/32", + "3.144.0.10/32", + "3.144.0.12/32", + "3.144.0.14/32", + "3.144.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.0.2/32", + "3.144.0.4/32", + "3.144.0.6/32", + "3.144.0.8/32", + "3.144.0.10/32", + "3.144.0.12/32", + "3.144.0.14/32", + "3.144.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.144.2.1/32", + "3.144.2.3/32", + "3.144.2.5/32", + "3.144.2.7/32", + "3.144.2.9/32", + "3.144.2.11/32", + "3.144.2.13/32", + "3.144.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.2.1/32", + "3.144.2.3/32", + "3.144.2.5/32", + "3.144.2.7/32", + "3.144.2.9/32", + "3.144.2.11/32", + "3.144.2.13/32", + "3.144.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.144.2.2/32", + "3.144.2.4/32", + "3.144.2.6/32", + "3.144.2.8/32", + "3.144.2.10/32", + "3.144.2.12/32", + "3.144.2.14/32", + "3.144.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.2.2/32", + "3.144.2.4/32", + "3.144.2.6/32", + "3.144.2.8/32", + "3.144.2.10/32", + "3.144.2.12/32", + "3.144.2.14/32", + "3.144.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.144.4.1/32", + "3.144.4.3/32", + "3.144.4.5/32", + "3.144.4.7/32", + "3.144.4.9/32", + "3.144.4.11/32", + "3.144.4.13/32", + "3.144.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.4.1/32", + "3.144.4.3/32", + "3.144.4.5/32", + "3.144.4.7/32", + "3.144.4.9/32", + "3.144.4.11/32", + "3.144.4.13/32", + "3.144.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.144.4.2/32", + "3.144.4.4/32", + "3.144.4.6/32", + "3.144.4.8/32", + "3.144.4.10/32", + "3.144.4.12/32", + "3.144.4.14/32", + "3.144.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.4.2/32", + "3.144.4.4/32", + "3.144.4.6/32", + "3.144.4.8/32", + "3.144.4.10/32", + "3.144.4.12/32", + "3.144.4.14/32", + "3.144.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.144.6.1/32", + "3.144.6.3/32", + "3.144.6.5/32", + "3.144.6.7/32", + "3.144.6.9/32", + "3.144.6.11/32", + "3.144.6.13/32", + "3.144.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.6.1/32", + "3.144.6.3/32", + "3.144.6.5/32", + "3.144.6.7/32", + "3.144.6.9/32", + "3.144.6.11/32", + "3.144.6.13/32", + "3.144.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.144.6.2/32", + "3.144.6.4/32", + "3.144.6.6/32", + "3.144.6.8/32", + "3.144.6.10/32", + "3.144.6.12/32", + "3.144.6.14/32", + "3.144.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.6.2/32", + "3.144.6.4/32", + "3.144.6.6/32", + "3.144.6.8/32", + "3.144.6.10/32", + "3.144.6.12/32", + "3.144.6.14/32", + "3.144.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.144.8.1/32", + "3.144.8.3/32", + "3.144.8.5/32", + "3.144.8.7/32", + "3.144.8.9/32", + "3.144.8.11/32", + "3.144.8.13/32", + "3.144.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.8.1/32", + "3.144.8.3/32", + "3.144.8.5/32", + "3.144.8.7/32", + "3.144.8.9/32", + "3.144.8.11/32", + "3.144.8.13/32", + "3.144.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.144.8.2/32", + "3.144.8.4/32", + "3.144.8.6/32", + "3.144.8.8/32", + "3.144.8.10/32", + "3.144.8.12/32", + "3.144.8.14/32", + "3.144.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.8.2/32", + "3.144.8.4/32", + "3.144.8.6/32", + "3.144.8.8/32", + "3.144.8.10/32", + "3.144.8.12/32", + "3.144.8.14/32", + "3.144.8.16/32", + "3.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3006": { + "acl-group-id": "acl-group-3006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.148.0.1/32", + "3.148.0.3/32", + "3.148.0.5/32", + "3.148.0.7/32", + "3.148.0.9/32", + "3.148.0.11/32", + "3.148.0.13/32", + "3.148.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.0.1/32", + "3.148.0.3/32", + "3.148.0.5/32", + "3.148.0.7/32", + "3.148.0.9/32", + "3.148.0.11/32", + "3.148.0.13/32", + "3.148.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.148.0.2/32", + "3.148.0.4/32", + "3.148.0.6/32", + "3.148.0.8/32", + "3.148.0.10/32", + "3.148.0.12/32", + "3.148.0.14/32", + "3.148.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.0.2/32", + "3.148.0.4/32", + "3.148.0.6/32", + "3.148.0.8/32", + "3.148.0.10/32", + "3.148.0.12/32", + "3.148.0.14/32", + "3.148.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.148.2.1/32", + "3.148.2.3/32", + "3.148.2.5/32", + "3.148.2.7/32", + "3.148.2.9/32", + "3.148.2.11/32", + "3.148.2.13/32", + "3.148.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.2.1/32", + "3.148.2.3/32", + "3.148.2.5/32", + "3.148.2.7/32", + "3.148.2.9/32", + "3.148.2.11/32", + "3.148.2.13/32", + "3.148.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.148.2.2/32", + "3.148.2.4/32", + "3.148.2.6/32", + "3.148.2.8/32", + "3.148.2.10/32", + "3.148.2.12/32", + "3.148.2.14/32", + "3.148.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.2.2/32", + "3.148.2.4/32", + "3.148.2.6/32", + "3.148.2.8/32", + "3.148.2.10/32", + "3.148.2.12/32", + "3.148.2.14/32", + "3.148.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.148.4.1/32", + "3.148.4.3/32", + "3.148.4.5/32", + "3.148.4.7/32", + "3.148.4.9/32", + "3.148.4.11/32", + "3.148.4.13/32", + "3.148.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.4.1/32", + "3.148.4.3/32", + "3.148.4.5/32", + "3.148.4.7/32", + "3.148.4.9/32", + "3.148.4.11/32", + "3.148.4.13/32", + "3.148.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.148.4.2/32", + "3.148.4.4/32", + "3.148.4.6/32", + "3.148.4.8/32", + "3.148.4.10/32", + "3.148.4.12/32", + "3.148.4.14/32", + "3.148.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.4.2/32", + "3.148.4.4/32", + "3.148.4.6/32", + "3.148.4.8/32", + "3.148.4.10/32", + "3.148.4.12/32", + "3.148.4.14/32", + "3.148.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.148.6.1/32", + "3.148.6.3/32", + "3.148.6.5/32", + "3.148.6.7/32", + "3.148.6.9/32", + "3.148.6.11/32", + "3.148.6.13/32", + "3.148.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.6.1/32", + "3.148.6.3/32", + "3.148.6.5/32", + "3.148.6.7/32", + "3.148.6.9/32", + "3.148.6.11/32", + "3.148.6.13/32", + "3.148.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.148.6.2/32", + "3.148.6.4/32", + "3.148.6.6/32", + "3.148.6.8/32", + "3.148.6.10/32", + "3.148.6.12/32", + "3.148.6.14/32", + "3.148.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.6.2/32", + "3.148.6.4/32", + "3.148.6.6/32", + "3.148.6.8/32", + "3.148.6.10/32", + "3.148.6.12/32", + "3.148.6.14/32", + "3.148.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.148.8.1/32", + "3.148.8.3/32", + "3.148.8.5/32", + "3.148.8.7/32", + "3.148.8.9/32", + "3.148.8.11/32", + "3.148.8.13/32", + "3.148.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.8.1/32", + "3.148.8.3/32", + "3.148.8.5/32", + "3.148.8.7/32", + "3.148.8.9/32", + "3.148.8.11/32", + "3.148.8.13/32", + "3.148.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.148.8.2/32", + "3.148.8.4/32", + "3.148.8.6/32", + "3.148.8.8/32", + "3.148.8.10/32", + "3.148.8.12/32", + "3.148.8.14/32", + "3.148.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.8.2/32", + "3.148.8.4/32", + "3.148.8.6/32", + "3.148.8.8/32", + "3.148.8.10/32", + "3.148.8.12/32", + "3.148.8.14/32", + "3.148.8.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "3.1.0.1/32", + "3.128.0.1/14", + "3.132.0.1/14", + "3.136.0.1/14" + ], + "dst_addrs": [ + "3.1.0.1/32", + "3.128.0.1/14", + "3.132.0.1/14", + "3.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4001": { + "acl-group-id": "acl-group-4001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.128.0.1/32", + "4.128.0.3/32", + "4.128.0.5/32", + "4.128.0.7/32", + "4.128.0.9/32", + "4.128.0.11/32", + "4.128.0.13/32", + "4.128.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.0.1/32", + "4.128.0.3/32", + "4.128.0.5/32", + "4.128.0.7/32", + "4.128.0.9/32", + "4.128.0.11/32", + "4.128.0.13/32", + "4.128.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.128.0.2/32", + "4.128.0.4/32", + "4.128.0.6/32", + "4.128.0.8/32", + "4.128.0.10/32", + "4.128.0.12/32", + "4.128.0.14/32", + "4.128.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.0.2/32", + "4.128.0.4/32", + "4.128.0.6/32", + "4.128.0.8/32", + "4.128.0.10/32", + "4.128.0.12/32", + "4.128.0.14/32", + "4.128.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.128.2.1/32", + "4.128.2.3/32", + "4.128.2.5/32", + "4.128.2.7/32", + "4.128.2.9/32", + "4.128.2.11/32", + "4.128.2.13/32", + "4.128.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.2.1/32", + "4.128.2.3/32", + "4.128.2.5/32", + "4.128.2.7/32", + "4.128.2.9/32", + "4.128.2.11/32", + "4.128.2.13/32", + "4.128.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.128.2.2/32", + "4.128.2.4/32", + "4.128.2.6/32", + "4.128.2.8/32", + "4.128.2.10/32", + "4.128.2.12/32", + "4.128.2.14/32", + "4.128.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.2.2/32", + "4.128.2.4/32", + "4.128.2.6/32", + "4.128.2.8/32", + "4.128.2.10/32", + "4.128.2.12/32", + "4.128.2.14/32", + "4.128.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.128.4.1/32", + "4.128.4.3/32", + "4.128.4.5/32", + "4.128.4.7/32", + "4.128.4.9/32", + "4.128.4.11/32", + "4.128.4.13/32", + "4.128.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.4.1/32", + "4.128.4.3/32", + "4.128.4.5/32", + "4.128.4.7/32", + "4.128.4.9/32", + "4.128.4.11/32", + "4.128.4.13/32", + "4.128.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.128.4.2/32", + "4.128.4.4/32", + "4.128.4.6/32", + "4.128.4.8/32", + "4.128.4.10/32", + "4.128.4.12/32", + "4.128.4.14/32", + "4.128.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.4.2/32", + "4.128.4.4/32", + "4.128.4.6/32", + "4.128.4.8/32", + "4.128.4.10/32", + "4.128.4.12/32", + "4.128.4.14/32", + "4.128.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.128.6.1/32", + "4.128.6.3/32", + "4.128.6.5/32", + "4.128.6.7/32", + "4.128.6.9/32", + "4.128.6.11/32", + "4.128.6.13/32", + "4.128.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.6.1/32", + "4.128.6.3/32", + "4.128.6.5/32", + "4.128.6.7/32", + "4.128.6.9/32", + "4.128.6.11/32", + "4.128.6.13/32", + "4.128.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.128.6.2/32", + "4.128.6.4/32", + "4.128.6.6/32", + "4.128.6.8/32", + "4.128.6.10/32", + "4.128.6.12/32", + "4.128.6.14/32", + "4.128.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.6.2/32", + "4.128.6.4/32", + "4.128.6.6/32", + "4.128.6.8/32", + "4.128.6.10/32", + "4.128.6.12/32", + "4.128.6.14/32", + "4.128.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.128.8.1/32", + "4.128.8.3/32", + "4.128.8.5/32", + "4.128.8.7/32", + "4.128.8.9/32", + "4.128.8.11/32", + "4.128.8.13/32", + "4.128.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.8.1/32", + "4.128.8.3/32", + "4.128.8.5/32", + "4.128.8.7/32", + "4.128.8.9/32", + "4.128.8.11/32", + "4.128.8.13/32", + "4.128.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.128.8.2/32", + "4.128.8.4/32", + "4.128.8.6/32", + "4.128.8.8/32", + "4.128.8.10/32", + "4.128.8.12/32", + "4.128.8.14/32", + "4.128.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.8.2/32", + "4.128.8.4/32", + "4.128.8.6/32", + "4.128.8.8/32", + "4.128.8.10/32", + "4.128.8.12/32", + "4.128.8.14/32", + "4.128.8.16/32", + "4.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4002": { + "acl-group-id": "acl-group-4002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.132.0.1/32", + "4.132.0.3/32", + "4.132.0.5/32", + "4.132.0.7/32", + "4.132.0.9/32", + "4.132.0.11/32", + "4.132.0.13/32", + "4.132.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.0.1/32", + "4.132.0.3/32", + "4.132.0.5/32", + "4.132.0.7/32", + "4.132.0.9/32", + "4.132.0.11/32", + "4.132.0.13/32", + "4.132.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.132.0.2/32", + "4.132.0.4/32", + "4.132.0.6/32", + "4.132.0.8/32", + "4.132.0.10/32", + "4.132.0.12/32", + "4.132.0.14/32", + "4.132.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.0.2/32", + "4.132.0.4/32", + "4.132.0.6/32", + "4.132.0.8/32", + "4.132.0.10/32", + "4.132.0.12/32", + "4.132.0.14/32", + "4.132.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.132.2.1/32", + "4.132.2.3/32", + "4.132.2.5/32", + "4.132.2.7/32", + "4.132.2.9/32", + "4.132.2.11/32", + "4.132.2.13/32", + "4.132.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.2.1/32", + "4.132.2.3/32", + "4.132.2.5/32", + "4.132.2.7/32", + "4.132.2.9/32", + "4.132.2.11/32", + "4.132.2.13/32", + "4.132.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.132.2.2/32", + "4.132.2.4/32", + "4.132.2.6/32", + "4.132.2.8/32", + "4.132.2.10/32", + "4.132.2.12/32", + "4.132.2.14/32", + "4.132.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.2.2/32", + "4.132.2.4/32", + "4.132.2.6/32", + "4.132.2.8/32", + "4.132.2.10/32", + "4.132.2.12/32", + "4.132.2.14/32", + "4.132.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.132.4.1/32", + "4.132.4.3/32", + "4.132.4.5/32", + "4.132.4.7/32", + "4.132.4.9/32", + "4.132.4.11/32", + "4.132.4.13/32", + "4.132.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.4.1/32", + "4.132.4.3/32", + "4.132.4.5/32", + "4.132.4.7/32", + "4.132.4.9/32", + "4.132.4.11/32", + "4.132.4.13/32", + "4.132.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.132.4.2/32", + "4.132.4.4/32", + "4.132.4.6/32", + "4.132.4.8/32", + "4.132.4.10/32", + "4.132.4.12/32", + "4.132.4.14/32", + "4.132.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.4.2/32", + "4.132.4.4/32", + "4.132.4.6/32", + "4.132.4.8/32", + "4.132.4.10/32", + "4.132.4.12/32", + "4.132.4.14/32", + "4.132.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.132.6.1/32", + "4.132.6.3/32", + "4.132.6.5/32", + "4.132.6.7/32", + "4.132.6.9/32", + "4.132.6.11/32", + "4.132.6.13/32", + "4.132.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.6.1/32", + "4.132.6.3/32", + "4.132.6.5/32", + "4.132.6.7/32", + "4.132.6.9/32", + "4.132.6.11/32", + "4.132.6.13/32", + "4.132.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.132.6.2/32", + "4.132.6.4/32", + "4.132.6.6/32", + "4.132.6.8/32", + "4.132.6.10/32", + "4.132.6.12/32", + "4.132.6.14/32", + "4.132.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.6.2/32", + "4.132.6.4/32", + "4.132.6.6/32", + "4.132.6.8/32", + "4.132.6.10/32", + "4.132.6.12/32", + "4.132.6.14/32", + "4.132.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.132.8.1/32", + "4.132.8.3/32", + "4.132.8.5/32", + "4.132.8.7/32", + "4.132.8.9/32", + "4.132.8.11/32", + "4.132.8.13/32", + "4.132.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.8.1/32", + "4.132.8.3/32", + "4.132.8.5/32", + "4.132.8.7/32", + "4.132.8.9/32", + "4.132.8.11/32", + "4.132.8.13/32", + "4.132.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.132.8.2/32", + "4.132.8.4/32", + "4.132.8.6/32", + "4.132.8.8/32", + "4.132.8.10/32", + "4.132.8.12/32", + "4.132.8.14/32", + "4.132.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.8.2/32", + "4.132.8.4/32", + "4.132.8.6/32", + "4.132.8.8/32", + "4.132.8.10/32", + "4.132.8.12/32", + "4.132.8.14/32", + "4.132.8.16/32", + "4.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4003": { + "acl-group-id": "acl-group-4003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.136.0.1/32", + "4.136.0.3/32", + "4.136.0.5/32", + "4.136.0.7/32", + "4.136.0.9/32", + "4.136.0.11/32", + "4.136.0.13/32", + "4.136.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.0.1/32", + "4.136.0.3/32", + "4.136.0.5/32", + "4.136.0.7/32", + "4.136.0.9/32", + "4.136.0.11/32", + "4.136.0.13/32", + "4.136.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.136.0.2/32", + "4.136.0.4/32", + "4.136.0.6/32", + "4.136.0.8/32", + "4.136.0.10/32", + "4.136.0.12/32", + "4.136.0.14/32", + "4.136.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.0.2/32", + "4.136.0.4/32", + "4.136.0.6/32", + "4.136.0.8/32", + "4.136.0.10/32", + "4.136.0.12/32", + "4.136.0.14/32", + "4.136.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.136.2.1/32", + "4.136.2.3/32", + "4.136.2.5/32", + "4.136.2.7/32", + "4.136.2.9/32", + "4.136.2.11/32", + "4.136.2.13/32", + "4.136.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.2.1/32", + "4.136.2.3/32", + "4.136.2.5/32", + "4.136.2.7/32", + "4.136.2.9/32", + "4.136.2.11/32", + "4.136.2.13/32", + "4.136.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.136.2.2/32", + "4.136.2.4/32", + "4.136.2.6/32", + "4.136.2.8/32", + "4.136.2.10/32", + "4.136.2.12/32", + "4.136.2.14/32", + "4.136.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.2.2/32", + "4.136.2.4/32", + "4.136.2.6/32", + "4.136.2.8/32", + "4.136.2.10/32", + "4.136.2.12/32", + "4.136.2.14/32", + "4.136.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.136.4.1/32", + "4.136.4.3/32", + "4.136.4.5/32", + "4.136.4.7/32", + "4.136.4.9/32", + "4.136.4.11/32", + "4.136.4.13/32", + "4.136.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.4.1/32", + "4.136.4.3/32", + "4.136.4.5/32", + "4.136.4.7/32", + "4.136.4.9/32", + "4.136.4.11/32", + "4.136.4.13/32", + "4.136.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.136.4.2/32", + "4.136.4.4/32", + "4.136.4.6/32", + "4.136.4.8/32", + "4.136.4.10/32", + "4.136.4.12/32", + "4.136.4.14/32", + "4.136.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.4.2/32", + "4.136.4.4/32", + "4.136.4.6/32", + "4.136.4.8/32", + "4.136.4.10/32", + "4.136.4.12/32", + "4.136.4.14/32", + "4.136.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.136.6.1/32", + "4.136.6.3/32", + "4.136.6.5/32", + "4.136.6.7/32", + "4.136.6.9/32", + "4.136.6.11/32", + "4.136.6.13/32", + "4.136.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.6.1/32", + "4.136.6.3/32", + "4.136.6.5/32", + "4.136.6.7/32", + "4.136.6.9/32", + "4.136.6.11/32", + "4.136.6.13/32", + "4.136.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.136.6.2/32", + "4.136.6.4/32", + "4.136.6.6/32", + "4.136.6.8/32", + "4.136.6.10/32", + "4.136.6.12/32", + "4.136.6.14/32", + "4.136.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.6.2/32", + "4.136.6.4/32", + "4.136.6.6/32", + "4.136.6.8/32", + "4.136.6.10/32", + "4.136.6.12/32", + "4.136.6.14/32", + "4.136.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.136.8.1/32", + "4.136.8.3/32", + "4.136.8.5/32", + "4.136.8.7/32", + "4.136.8.9/32", + "4.136.8.11/32", + "4.136.8.13/32", + "4.136.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.8.1/32", + "4.136.8.3/32", + "4.136.8.5/32", + "4.136.8.7/32", + "4.136.8.9/32", + "4.136.8.11/32", + "4.136.8.13/32", + "4.136.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.136.8.2/32", + "4.136.8.4/32", + "4.136.8.6/32", + "4.136.8.8/32", + "4.136.8.10/32", + "4.136.8.12/32", + "4.136.8.14/32", + "4.136.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.8.2/32", + "4.136.8.4/32", + "4.136.8.6/32", + "4.136.8.8/32", + "4.136.8.10/32", + "4.136.8.12/32", + "4.136.8.14/32", + "4.136.8.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "4.1.0.1/32", + "4.140.0.1/14", + "4.144.0.1/14", + "4.148.0.1/14" + ], + "dst_addrs": [ + "4.1.0.1/32", + "4.140.0.1/14", + "4.144.0.1/14", + "4.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4004": { + "acl-group-id": "acl-group-4004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.140.0.1/32", + "4.140.0.3/32", + "4.140.0.5/32", + "4.140.0.7/32", + "4.140.0.9/32", + "4.140.0.11/32", + "4.140.0.13/32", + "4.140.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.0.1/32", + "4.140.0.3/32", + "4.140.0.5/32", + "4.140.0.7/32", + "4.140.0.9/32", + "4.140.0.11/32", + "4.140.0.13/32", + "4.140.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.140.0.2/32", + "4.140.0.4/32", + "4.140.0.6/32", + "4.140.0.8/32", + "4.140.0.10/32", + "4.140.0.12/32", + "4.140.0.14/32", + "4.140.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.0.2/32", + "4.140.0.4/32", + "4.140.0.6/32", + "4.140.0.8/32", + "4.140.0.10/32", + "4.140.0.12/32", + "4.140.0.14/32", + "4.140.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.140.2.1/32", + "4.140.2.3/32", + "4.140.2.5/32", + "4.140.2.7/32", + "4.140.2.9/32", + "4.140.2.11/32", + "4.140.2.13/32", + "4.140.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.2.1/32", + "4.140.2.3/32", + "4.140.2.5/32", + "4.140.2.7/32", + "4.140.2.9/32", + "4.140.2.11/32", + "4.140.2.13/32", + "4.140.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.140.2.2/32", + "4.140.2.4/32", + "4.140.2.6/32", + "4.140.2.8/32", + "4.140.2.10/32", + "4.140.2.12/32", + "4.140.2.14/32", + "4.140.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.2.2/32", + "4.140.2.4/32", + "4.140.2.6/32", + "4.140.2.8/32", + "4.140.2.10/32", + "4.140.2.12/32", + "4.140.2.14/32", + "4.140.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.140.4.1/32", + "4.140.4.3/32", + "4.140.4.5/32", + "4.140.4.7/32", + "4.140.4.9/32", + "4.140.4.11/32", + "4.140.4.13/32", + "4.140.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.4.1/32", + "4.140.4.3/32", + "4.140.4.5/32", + "4.140.4.7/32", + "4.140.4.9/32", + "4.140.4.11/32", + "4.140.4.13/32", + "4.140.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.140.4.2/32", + "4.140.4.4/32", + "4.140.4.6/32", + "4.140.4.8/32", + "4.140.4.10/32", + "4.140.4.12/32", + "4.140.4.14/32", + "4.140.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.4.2/32", + "4.140.4.4/32", + "4.140.4.6/32", + "4.140.4.8/32", + "4.140.4.10/32", + "4.140.4.12/32", + "4.140.4.14/32", + "4.140.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.140.6.1/32", + "4.140.6.3/32", + "4.140.6.5/32", + "4.140.6.7/32", + "4.140.6.9/32", + "4.140.6.11/32", + "4.140.6.13/32", + "4.140.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.6.1/32", + "4.140.6.3/32", + "4.140.6.5/32", + "4.140.6.7/32", + "4.140.6.9/32", + "4.140.6.11/32", + "4.140.6.13/32", + "4.140.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.140.6.2/32", + "4.140.6.4/32", + "4.140.6.6/32", + "4.140.6.8/32", + "4.140.6.10/32", + "4.140.6.12/32", + "4.140.6.14/32", + "4.140.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.6.2/32", + "4.140.6.4/32", + "4.140.6.6/32", + "4.140.6.8/32", + "4.140.6.10/32", + "4.140.6.12/32", + "4.140.6.14/32", + "4.140.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.140.8.1/32", + "4.140.8.3/32", + "4.140.8.5/32", + "4.140.8.7/32", + "4.140.8.9/32", + "4.140.8.11/32", + "4.140.8.13/32", + "4.140.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.8.1/32", + "4.140.8.3/32", + "4.140.8.5/32", + "4.140.8.7/32", + "4.140.8.9/32", + "4.140.8.11/32", + "4.140.8.13/32", + "4.140.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.140.8.2/32", + "4.140.8.4/32", + "4.140.8.6/32", + "4.140.8.8/32", + "4.140.8.10/32", + "4.140.8.12/32", + "4.140.8.14/32", + "4.140.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.8.2/32", + "4.140.8.4/32", + "4.140.8.6/32", + "4.140.8.8/32", + "4.140.8.10/32", + "4.140.8.12/32", + "4.140.8.14/32", + "4.140.8.16/32", + "4.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4005": { + "acl-group-id": "acl-group-4005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.144.0.1/32", + "4.144.0.3/32", + "4.144.0.5/32", + "4.144.0.7/32", + "4.144.0.9/32", + "4.144.0.11/32", + "4.144.0.13/32", + "4.144.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.0.1/32", + "4.144.0.3/32", + "4.144.0.5/32", + "4.144.0.7/32", + "4.144.0.9/32", + "4.144.0.11/32", + "4.144.0.13/32", + "4.144.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.144.0.2/32", + "4.144.0.4/32", + "4.144.0.6/32", + "4.144.0.8/32", + "4.144.0.10/32", + "4.144.0.12/32", + "4.144.0.14/32", + "4.144.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.0.2/32", + "4.144.0.4/32", + "4.144.0.6/32", + "4.144.0.8/32", + "4.144.0.10/32", + "4.144.0.12/32", + "4.144.0.14/32", + "4.144.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.144.2.1/32", + "4.144.2.3/32", + "4.144.2.5/32", + "4.144.2.7/32", + "4.144.2.9/32", + "4.144.2.11/32", + "4.144.2.13/32", + "4.144.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.2.1/32", + "4.144.2.3/32", + "4.144.2.5/32", + "4.144.2.7/32", + "4.144.2.9/32", + "4.144.2.11/32", + "4.144.2.13/32", + "4.144.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.144.2.2/32", + "4.144.2.4/32", + "4.144.2.6/32", + "4.144.2.8/32", + "4.144.2.10/32", + "4.144.2.12/32", + "4.144.2.14/32", + "4.144.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.2.2/32", + "4.144.2.4/32", + "4.144.2.6/32", + "4.144.2.8/32", + "4.144.2.10/32", + "4.144.2.12/32", + "4.144.2.14/32", + "4.144.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.144.4.1/32", + "4.144.4.3/32", + "4.144.4.5/32", + "4.144.4.7/32", + "4.144.4.9/32", + "4.144.4.11/32", + "4.144.4.13/32", + "4.144.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.4.1/32", + "4.144.4.3/32", + "4.144.4.5/32", + "4.144.4.7/32", + "4.144.4.9/32", + "4.144.4.11/32", + "4.144.4.13/32", + "4.144.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.144.4.2/32", + "4.144.4.4/32", + "4.144.4.6/32", + "4.144.4.8/32", + "4.144.4.10/32", + "4.144.4.12/32", + "4.144.4.14/32", + "4.144.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.4.2/32", + "4.144.4.4/32", + "4.144.4.6/32", + "4.144.4.8/32", + "4.144.4.10/32", + "4.144.4.12/32", + "4.144.4.14/32", + "4.144.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.144.6.1/32", + "4.144.6.3/32", + "4.144.6.5/32", + "4.144.6.7/32", + "4.144.6.9/32", + "4.144.6.11/32", + "4.144.6.13/32", + "4.144.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.6.1/32", + "4.144.6.3/32", + "4.144.6.5/32", + "4.144.6.7/32", + "4.144.6.9/32", + "4.144.6.11/32", + "4.144.6.13/32", + "4.144.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.144.6.2/32", + "4.144.6.4/32", + "4.144.6.6/32", + "4.144.6.8/32", + "4.144.6.10/32", + "4.144.6.12/32", + "4.144.6.14/32", + "4.144.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.6.2/32", + "4.144.6.4/32", + "4.144.6.6/32", + "4.144.6.8/32", + "4.144.6.10/32", + "4.144.6.12/32", + "4.144.6.14/32", + "4.144.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.144.8.1/32", + "4.144.8.3/32", + "4.144.8.5/32", + "4.144.8.7/32", + "4.144.8.9/32", + "4.144.8.11/32", + "4.144.8.13/32", + "4.144.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.8.1/32", + "4.144.8.3/32", + "4.144.8.5/32", + "4.144.8.7/32", + "4.144.8.9/32", + "4.144.8.11/32", + "4.144.8.13/32", + "4.144.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.144.8.2/32", + "4.144.8.4/32", + "4.144.8.6/32", + "4.144.8.8/32", + "4.144.8.10/32", + "4.144.8.12/32", + "4.144.8.14/32", + "4.144.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.8.2/32", + "4.144.8.4/32", + "4.144.8.6/32", + "4.144.8.8/32", + "4.144.8.10/32", + "4.144.8.12/32", + "4.144.8.14/32", + "4.144.8.16/32", + "4.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4006": { + "acl-group-id": "acl-group-4006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.148.0.1/32", + "4.148.0.3/32", + "4.148.0.5/32", + "4.148.0.7/32", + "4.148.0.9/32", + "4.148.0.11/32", + "4.148.0.13/32", + "4.148.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.0.1/32", + "4.148.0.3/32", + "4.148.0.5/32", + "4.148.0.7/32", + "4.148.0.9/32", + "4.148.0.11/32", + "4.148.0.13/32", + "4.148.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.148.0.2/32", + "4.148.0.4/32", + "4.148.0.6/32", + "4.148.0.8/32", + "4.148.0.10/32", + "4.148.0.12/32", + "4.148.0.14/32", + "4.148.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.0.2/32", + "4.148.0.4/32", + "4.148.0.6/32", + "4.148.0.8/32", + "4.148.0.10/32", + "4.148.0.12/32", + "4.148.0.14/32", + "4.148.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.148.2.1/32", + "4.148.2.3/32", + "4.148.2.5/32", + "4.148.2.7/32", + "4.148.2.9/32", + "4.148.2.11/32", + "4.148.2.13/32", + "4.148.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.2.1/32", + "4.148.2.3/32", + "4.148.2.5/32", + "4.148.2.7/32", + "4.148.2.9/32", + "4.148.2.11/32", + "4.148.2.13/32", + "4.148.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.148.2.2/32", + "4.148.2.4/32", + "4.148.2.6/32", + "4.148.2.8/32", + "4.148.2.10/32", + "4.148.2.12/32", + "4.148.2.14/32", + "4.148.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.2.2/32", + "4.148.2.4/32", + "4.148.2.6/32", + "4.148.2.8/32", + "4.148.2.10/32", + "4.148.2.12/32", + "4.148.2.14/32", + "4.148.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.148.4.1/32", + "4.148.4.3/32", + "4.148.4.5/32", + "4.148.4.7/32", + "4.148.4.9/32", + "4.148.4.11/32", + "4.148.4.13/32", + "4.148.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.4.1/32", + "4.148.4.3/32", + "4.148.4.5/32", + "4.148.4.7/32", + "4.148.4.9/32", + "4.148.4.11/32", + "4.148.4.13/32", + "4.148.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.148.4.2/32", + "4.148.4.4/32", + "4.148.4.6/32", + "4.148.4.8/32", + "4.148.4.10/32", + "4.148.4.12/32", + "4.148.4.14/32", + "4.148.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.4.2/32", + "4.148.4.4/32", + "4.148.4.6/32", + "4.148.4.8/32", + "4.148.4.10/32", + "4.148.4.12/32", + "4.148.4.14/32", + "4.148.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.148.6.1/32", + "4.148.6.3/32", + "4.148.6.5/32", + "4.148.6.7/32", + "4.148.6.9/32", + "4.148.6.11/32", + "4.148.6.13/32", + "4.148.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.6.1/32", + "4.148.6.3/32", + "4.148.6.5/32", + "4.148.6.7/32", + "4.148.6.9/32", + "4.148.6.11/32", + "4.148.6.13/32", + "4.148.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.148.6.2/32", + "4.148.6.4/32", + "4.148.6.6/32", + "4.148.6.8/32", + "4.148.6.10/32", + "4.148.6.12/32", + "4.148.6.14/32", + "4.148.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.6.2/32", + "4.148.6.4/32", + "4.148.6.6/32", + "4.148.6.8/32", + "4.148.6.10/32", + "4.148.6.12/32", + "4.148.6.14/32", + "4.148.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.148.8.1/32", + "4.148.8.3/32", + "4.148.8.5/32", + "4.148.8.7/32", + "4.148.8.9/32", + "4.148.8.11/32", + "4.148.8.13/32", + "4.148.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.8.1/32", + "4.148.8.3/32", + "4.148.8.5/32", + "4.148.8.7/32", + "4.148.8.9/32", + "4.148.8.11/32", + "4.148.8.13/32", + "4.148.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.148.8.2/32", + "4.148.8.4/32", + "4.148.8.6/32", + "4.148.8.8/32", + "4.148.8.10/32", + "4.148.8.12/32", + "4.148.8.14/32", + "4.148.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.8.2/32", + "4.148.8.4/32", + "4.148.8.6/32", + "4.148.8.8/32", + "4.148.8.10/32", + "4.148.8.12/32", + "4.148.8.14/32", + "4.148.8.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "4.1.0.1/32", + "4.128.0.1/14", + "4.132.0.1/14", + "4.136.0.1/14" + ], + "dst_addrs": [ + "4.1.0.1/32", + "4.128.0.1/14", + "4.132.0.1/14", + "4.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:5:TABLE:5001": { + "acl-group-id": "acl-group-5001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.128.0.1/32", + "5.128.0.3/32", + "5.128.0.5/32", + "5.128.0.7/32", + "5.128.0.9/32", + "5.128.0.11/32", + "5.128.0.13/32", + "5.128.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.0.1/32", + "5.128.0.3/32", + "5.128.0.5/32", + "5.128.0.7/32", + "5.128.0.9/32", + "5.128.0.11/32", + "5.128.0.13/32", + "5.128.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.128.0.2/32", + "5.128.0.4/32", + "5.128.0.6/32", + "5.128.0.8/32", + "5.128.0.10/32", + "5.128.0.12/32", + "5.128.0.14/32", + "5.128.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.0.2/32", + "5.128.0.4/32", + "5.128.0.6/32", + "5.128.0.8/32", + "5.128.0.10/32", + "5.128.0.12/32", + "5.128.0.14/32", + "5.128.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.128.2.1/32", + "5.128.2.3/32", + "5.128.2.5/32", + "5.128.2.7/32", + "5.128.2.9/32", + "5.128.2.11/32", + "5.128.2.13/32", + "5.128.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.2.1/32", + "5.128.2.3/32", + "5.128.2.5/32", + "5.128.2.7/32", + "5.128.2.9/32", + "5.128.2.11/32", + "5.128.2.13/32", + "5.128.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.128.2.2/32", + "5.128.2.4/32", + "5.128.2.6/32", + "5.128.2.8/32", + "5.128.2.10/32", + "5.128.2.12/32", + "5.128.2.14/32", + "5.128.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.2.2/32", + "5.128.2.4/32", + "5.128.2.6/32", + "5.128.2.8/32", + "5.128.2.10/32", + "5.128.2.12/32", + "5.128.2.14/32", + "5.128.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.128.4.1/32", + "5.128.4.3/32", + "5.128.4.5/32", + "5.128.4.7/32", + "5.128.4.9/32", + "5.128.4.11/32", + "5.128.4.13/32", + "5.128.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.4.1/32", + "5.128.4.3/32", + "5.128.4.5/32", + "5.128.4.7/32", + "5.128.4.9/32", + "5.128.4.11/32", + "5.128.4.13/32", + "5.128.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.128.4.2/32", + "5.128.4.4/32", + "5.128.4.6/32", + "5.128.4.8/32", + "5.128.4.10/32", + "5.128.4.12/32", + "5.128.4.14/32", + "5.128.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.4.2/32", + "5.128.4.4/32", + "5.128.4.6/32", + "5.128.4.8/32", + "5.128.4.10/32", + "5.128.4.12/32", + "5.128.4.14/32", + "5.128.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.128.6.1/32", + "5.128.6.3/32", + "5.128.6.5/32", + "5.128.6.7/32", + "5.128.6.9/32", + "5.128.6.11/32", + "5.128.6.13/32", + "5.128.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.6.1/32", + "5.128.6.3/32", + "5.128.6.5/32", + "5.128.6.7/32", + "5.128.6.9/32", + "5.128.6.11/32", + "5.128.6.13/32", + "5.128.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.128.6.2/32", + "5.128.6.4/32", + "5.128.6.6/32", + "5.128.6.8/32", + "5.128.6.10/32", + "5.128.6.12/32", + "5.128.6.14/32", + "5.128.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.6.2/32", + "5.128.6.4/32", + "5.128.6.6/32", + "5.128.6.8/32", + "5.128.6.10/32", + "5.128.6.12/32", + "5.128.6.14/32", + "5.128.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.128.8.1/32", + "5.128.8.3/32", + "5.128.8.5/32", + "5.128.8.7/32", + "5.128.8.9/32", + "5.128.8.11/32", + "5.128.8.13/32", + "5.128.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.8.1/32", + "5.128.8.3/32", + "5.128.8.5/32", + "5.128.8.7/32", + "5.128.8.9/32", + "5.128.8.11/32", + "5.128.8.13/32", + "5.128.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.128.8.2/32", + "5.128.8.4/32", + "5.128.8.6/32", + "5.128.8.8/32", + "5.128.8.10/32", + "5.128.8.12/32", + "5.128.8.14/32", + "5.128.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.8.2/32", + "5.128.8.4/32", + "5.128.8.6/32", + "5.128.8.8/32", + "5.128.8.10/32", + "5.128.8.12/32", + "5.128.8.14/32", + "5.128.8.16/32", + "5.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:5:TABLE:5002": { + "acl-group-id": "acl-group-5002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.132.0.1/32", + "5.132.0.3/32", + "5.132.0.5/32", + "5.132.0.7/32", + "5.132.0.9/32", + "5.132.0.11/32", + "5.132.0.13/32", + "5.132.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.0.1/32", + "5.132.0.3/32", + "5.132.0.5/32", + "5.132.0.7/32", + "5.132.0.9/32", + "5.132.0.11/32", + "5.132.0.13/32", + "5.132.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.132.0.2/32", + "5.132.0.4/32", + "5.132.0.6/32", + "5.132.0.8/32", + "5.132.0.10/32", + "5.132.0.12/32", + "5.132.0.14/32", + "5.132.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.0.2/32", + "5.132.0.4/32", + "5.132.0.6/32", + "5.132.0.8/32", + "5.132.0.10/32", + "5.132.0.12/32", + "5.132.0.14/32", + "5.132.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.132.2.1/32", + "5.132.2.3/32", + "5.132.2.5/32", + "5.132.2.7/32", + "5.132.2.9/32", + "5.132.2.11/32", + "5.132.2.13/32", + "5.132.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.2.1/32", + "5.132.2.3/32", + "5.132.2.5/32", + "5.132.2.7/32", + "5.132.2.9/32", + "5.132.2.11/32", + "5.132.2.13/32", + "5.132.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.132.2.2/32", + "5.132.2.4/32", + "5.132.2.6/32", + "5.132.2.8/32", + "5.132.2.10/32", + "5.132.2.12/32", + "5.132.2.14/32", + "5.132.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.2.2/32", + "5.132.2.4/32", + "5.132.2.6/32", + "5.132.2.8/32", + "5.132.2.10/32", + "5.132.2.12/32", + "5.132.2.14/32", + "5.132.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.132.4.1/32", + "5.132.4.3/32", + "5.132.4.5/32", + "5.132.4.7/32", + "5.132.4.9/32", + "5.132.4.11/32", + "5.132.4.13/32", + "5.132.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.4.1/32", + "5.132.4.3/32", + "5.132.4.5/32", + "5.132.4.7/32", + "5.132.4.9/32", + "5.132.4.11/32", + "5.132.4.13/32", + "5.132.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.132.4.2/32", + "5.132.4.4/32", + "5.132.4.6/32", + "5.132.4.8/32", + "5.132.4.10/32", + "5.132.4.12/32", + "5.132.4.14/32", + "5.132.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.4.2/32", + "5.132.4.4/32", + "5.132.4.6/32", + "5.132.4.8/32", + "5.132.4.10/32", + "5.132.4.12/32", + "5.132.4.14/32", + "5.132.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.132.6.1/32", + "5.132.6.3/32", + "5.132.6.5/32", + "5.132.6.7/32", + "5.132.6.9/32", + "5.132.6.11/32", + "5.132.6.13/32", + "5.132.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.6.1/32", + "5.132.6.3/32", + "5.132.6.5/32", + "5.132.6.7/32", + "5.132.6.9/32", + "5.132.6.11/32", + "5.132.6.13/32", + "5.132.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.132.6.2/32", + "5.132.6.4/32", + "5.132.6.6/32", + "5.132.6.8/32", + "5.132.6.10/32", + "5.132.6.12/32", + "5.132.6.14/32", + "5.132.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.6.2/32", + "5.132.6.4/32", + "5.132.6.6/32", + "5.132.6.8/32", + "5.132.6.10/32", + "5.132.6.12/32", + "5.132.6.14/32", + "5.132.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.132.8.1/32", + "5.132.8.3/32", + "5.132.8.5/32", + "5.132.8.7/32", + "5.132.8.9/32", + "5.132.8.11/32", + "5.132.8.13/32", + "5.132.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.8.1/32", + "5.132.8.3/32", + "5.132.8.5/32", + "5.132.8.7/32", + "5.132.8.9/32", + "5.132.8.11/32", + "5.132.8.13/32", + "5.132.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.132.8.2/32", + "5.132.8.4/32", + "5.132.8.6/32", + "5.132.8.8/32", + "5.132.8.10/32", + "5.132.8.12/32", + "5.132.8.14/32", + "5.132.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.8.2/32", + "5.132.8.4/32", + "5.132.8.6/32", + "5.132.8.8/32", + "5.132.8.10/32", + "5.132.8.12/32", + "5.132.8.14/32", + "5.132.8.16/32", + "5.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:5:TABLE:5003": { + "acl-group-id": "acl-group-5003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.136.0.1/32", + "5.136.0.3/32", + "5.136.0.5/32", + "5.136.0.7/32", + "5.136.0.9/32", + "5.136.0.11/32", + "5.136.0.13/32", + "5.136.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.0.1/32", + "5.136.0.3/32", + "5.136.0.5/32", + "5.136.0.7/32", + "5.136.0.9/32", + "5.136.0.11/32", + "5.136.0.13/32", + "5.136.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.136.0.2/32", + "5.136.0.4/32", + "5.136.0.6/32", + "5.136.0.8/32", + "5.136.0.10/32", + "5.136.0.12/32", + "5.136.0.14/32", + "5.136.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.0.2/32", + "5.136.0.4/32", + "5.136.0.6/32", + "5.136.0.8/32", + "5.136.0.10/32", + "5.136.0.12/32", + "5.136.0.14/32", + "5.136.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.136.2.1/32", + "5.136.2.3/32", + "5.136.2.5/32", + "5.136.2.7/32", + "5.136.2.9/32", + "5.136.2.11/32", + "5.136.2.13/32", + "5.136.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.2.1/32", + "5.136.2.3/32", + "5.136.2.5/32", + "5.136.2.7/32", + "5.136.2.9/32", + "5.136.2.11/32", + "5.136.2.13/32", + "5.136.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.136.2.2/32", + "5.136.2.4/32", + "5.136.2.6/32", + "5.136.2.8/32", + "5.136.2.10/32", + "5.136.2.12/32", + "5.136.2.14/32", + "5.136.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.2.2/32", + "5.136.2.4/32", + "5.136.2.6/32", + "5.136.2.8/32", + "5.136.2.10/32", + "5.136.2.12/32", + "5.136.2.14/32", + "5.136.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.136.4.1/32", + "5.136.4.3/32", + "5.136.4.5/32", + "5.136.4.7/32", + "5.136.4.9/32", + "5.136.4.11/32", + "5.136.4.13/32", + "5.136.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.4.1/32", + "5.136.4.3/32", + "5.136.4.5/32", + "5.136.4.7/32", + "5.136.4.9/32", + "5.136.4.11/32", + "5.136.4.13/32", + "5.136.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.136.4.2/32", + "5.136.4.4/32", + "5.136.4.6/32", + "5.136.4.8/32", + "5.136.4.10/32", + "5.136.4.12/32", + "5.136.4.14/32", + "5.136.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.4.2/32", + "5.136.4.4/32", + "5.136.4.6/32", + "5.136.4.8/32", + "5.136.4.10/32", + "5.136.4.12/32", + "5.136.4.14/32", + "5.136.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.136.6.1/32", + "5.136.6.3/32", + "5.136.6.5/32", + "5.136.6.7/32", + "5.136.6.9/32", + "5.136.6.11/32", + "5.136.6.13/32", + "5.136.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.6.1/32", + "5.136.6.3/32", + "5.136.6.5/32", + "5.136.6.7/32", + "5.136.6.9/32", + "5.136.6.11/32", + "5.136.6.13/32", + "5.136.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.136.6.2/32", + "5.136.6.4/32", + "5.136.6.6/32", + "5.136.6.8/32", + "5.136.6.10/32", + "5.136.6.12/32", + "5.136.6.14/32", + "5.136.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.6.2/32", + "5.136.6.4/32", + "5.136.6.6/32", + "5.136.6.8/32", + "5.136.6.10/32", + "5.136.6.12/32", + "5.136.6.14/32", + "5.136.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.136.8.1/32", + "5.136.8.3/32", + "5.136.8.5/32", + "5.136.8.7/32", + "5.136.8.9/32", + "5.136.8.11/32", + "5.136.8.13/32", + "5.136.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.8.1/32", + "5.136.8.3/32", + "5.136.8.5/32", + "5.136.8.7/32", + "5.136.8.9/32", + "5.136.8.11/32", + "5.136.8.13/32", + "5.136.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.136.8.2/32", + "5.136.8.4/32", + "5.136.8.6/32", + "5.136.8.8/32", + "5.136.8.10/32", + "5.136.8.12/32", + "5.136.8.14/32", + "5.136.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.8.2/32", + "5.136.8.4/32", + "5.136.8.6/32", + "5.136.8.8/32", + "5.136.8.10/32", + "5.136.8.12/32", + "5.136.8.14/32", + "5.136.8.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "5.1.0.1/32", + "5.140.0.1/14", + "5.144.0.1/14", + "5.148.0.1/14" + ], + "dst_addrs": [ + "5.1.0.1/32", + "5.140.0.1/14", + "5.144.0.1/14", + "5.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:5:TABLE:5004": { + "acl-group-id": "acl-group-5004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.140.0.1/32", + "5.140.0.3/32", + "5.140.0.5/32", + "5.140.0.7/32", + "5.140.0.9/32", + "5.140.0.11/32", + "5.140.0.13/32", + "5.140.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.0.1/32", + "5.140.0.3/32", + "5.140.0.5/32", + "5.140.0.7/32", + "5.140.0.9/32", + "5.140.0.11/32", + "5.140.0.13/32", + "5.140.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.140.0.2/32", + "5.140.0.4/32", + "5.140.0.6/32", + "5.140.0.8/32", + "5.140.0.10/32", + "5.140.0.12/32", + "5.140.0.14/32", + "5.140.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.0.2/32", + "5.140.0.4/32", + "5.140.0.6/32", + "5.140.0.8/32", + "5.140.0.10/32", + "5.140.0.12/32", + "5.140.0.14/32", + "5.140.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.140.2.1/32", + "5.140.2.3/32", + "5.140.2.5/32", + "5.140.2.7/32", + "5.140.2.9/32", + "5.140.2.11/32", + "5.140.2.13/32", + "5.140.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.2.1/32", + "5.140.2.3/32", + "5.140.2.5/32", + "5.140.2.7/32", + "5.140.2.9/32", + "5.140.2.11/32", + "5.140.2.13/32", + "5.140.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.140.2.2/32", + "5.140.2.4/32", + "5.140.2.6/32", + "5.140.2.8/32", + "5.140.2.10/32", + "5.140.2.12/32", + "5.140.2.14/32", + "5.140.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.2.2/32", + "5.140.2.4/32", + "5.140.2.6/32", + "5.140.2.8/32", + "5.140.2.10/32", + "5.140.2.12/32", + "5.140.2.14/32", + "5.140.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.140.4.1/32", + "5.140.4.3/32", + "5.140.4.5/32", + "5.140.4.7/32", + "5.140.4.9/32", + "5.140.4.11/32", + "5.140.4.13/32", + "5.140.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.4.1/32", + "5.140.4.3/32", + "5.140.4.5/32", + "5.140.4.7/32", + "5.140.4.9/32", + "5.140.4.11/32", + "5.140.4.13/32", + "5.140.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.140.4.2/32", + "5.140.4.4/32", + "5.140.4.6/32", + "5.140.4.8/32", + "5.140.4.10/32", + "5.140.4.12/32", + "5.140.4.14/32", + "5.140.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.4.2/32", + "5.140.4.4/32", + "5.140.4.6/32", + "5.140.4.8/32", + "5.140.4.10/32", + "5.140.4.12/32", + "5.140.4.14/32", + "5.140.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.140.6.1/32", + "5.140.6.3/32", + "5.140.6.5/32", + "5.140.6.7/32", + "5.140.6.9/32", + "5.140.6.11/32", + "5.140.6.13/32", + "5.140.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.6.1/32", + "5.140.6.3/32", + "5.140.6.5/32", + "5.140.6.7/32", + "5.140.6.9/32", + "5.140.6.11/32", + "5.140.6.13/32", + "5.140.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.140.6.2/32", + "5.140.6.4/32", + "5.140.6.6/32", + "5.140.6.8/32", + "5.140.6.10/32", + "5.140.6.12/32", + "5.140.6.14/32", + "5.140.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.6.2/32", + "5.140.6.4/32", + "5.140.6.6/32", + "5.140.6.8/32", + "5.140.6.10/32", + "5.140.6.12/32", + "5.140.6.14/32", + "5.140.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.140.8.1/32", + "5.140.8.3/32", + "5.140.8.5/32", + "5.140.8.7/32", + "5.140.8.9/32", + "5.140.8.11/32", + "5.140.8.13/32", + "5.140.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.8.1/32", + "5.140.8.3/32", + "5.140.8.5/32", + "5.140.8.7/32", + "5.140.8.9/32", + "5.140.8.11/32", + "5.140.8.13/32", + "5.140.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.140.8.2/32", + "5.140.8.4/32", + "5.140.8.6/32", + "5.140.8.8/32", + "5.140.8.10/32", + "5.140.8.12/32", + "5.140.8.14/32", + "5.140.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.8.2/32", + "5.140.8.4/32", + "5.140.8.6/32", + "5.140.8.8/32", + "5.140.8.10/32", + "5.140.8.12/32", + "5.140.8.14/32", + "5.140.8.16/32", + "5.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:5:TABLE:5005": { + "acl-group-id": "acl-group-5005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.144.0.1/32", + "5.144.0.3/32", + "5.144.0.5/32", + "5.144.0.7/32", + "5.144.0.9/32", + "5.144.0.11/32", + "5.144.0.13/32", + "5.144.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.0.1/32", + "5.144.0.3/32", + "5.144.0.5/32", + "5.144.0.7/32", + "5.144.0.9/32", + "5.144.0.11/32", + "5.144.0.13/32", + "5.144.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.144.0.2/32", + "5.144.0.4/32", + "5.144.0.6/32", + "5.144.0.8/32", + "5.144.0.10/32", + "5.144.0.12/32", + "5.144.0.14/32", + "5.144.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.0.2/32", + "5.144.0.4/32", + "5.144.0.6/32", + "5.144.0.8/32", + "5.144.0.10/32", + "5.144.0.12/32", + "5.144.0.14/32", + "5.144.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.144.2.1/32", + "5.144.2.3/32", + "5.144.2.5/32", + "5.144.2.7/32", + "5.144.2.9/32", + "5.144.2.11/32", + "5.144.2.13/32", + "5.144.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.2.1/32", + "5.144.2.3/32", + "5.144.2.5/32", + "5.144.2.7/32", + "5.144.2.9/32", + "5.144.2.11/32", + "5.144.2.13/32", + "5.144.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.144.2.2/32", + "5.144.2.4/32", + "5.144.2.6/32", + "5.144.2.8/32", + "5.144.2.10/32", + "5.144.2.12/32", + "5.144.2.14/32", + "5.144.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.2.2/32", + "5.144.2.4/32", + "5.144.2.6/32", + "5.144.2.8/32", + "5.144.2.10/32", + "5.144.2.12/32", + "5.144.2.14/32", + "5.144.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.144.4.1/32", + "5.144.4.3/32", + "5.144.4.5/32", + "5.144.4.7/32", + "5.144.4.9/32", + "5.144.4.11/32", + "5.144.4.13/32", + "5.144.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.4.1/32", + "5.144.4.3/32", + "5.144.4.5/32", + "5.144.4.7/32", + "5.144.4.9/32", + "5.144.4.11/32", + "5.144.4.13/32", + "5.144.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.144.4.2/32", + "5.144.4.4/32", + "5.144.4.6/32", + "5.144.4.8/32", + "5.144.4.10/32", + "5.144.4.12/32", + "5.144.4.14/32", + "5.144.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.4.2/32", + "5.144.4.4/32", + "5.144.4.6/32", + "5.144.4.8/32", + "5.144.4.10/32", + "5.144.4.12/32", + "5.144.4.14/32", + "5.144.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.144.6.1/32", + "5.144.6.3/32", + "5.144.6.5/32", + "5.144.6.7/32", + "5.144.6.9/32", + "5.144.6.11/32", + "5.144.6.13/32", + "5.144.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.6.1/32", + "5.144.6.3/32", + "5.144.6.5/32", + "5.144.6.7/32", + "5.144.6.9/32", + "5.144.6.11/32", + "5.144.6.13/32", + "5.144.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.144.6.2/32", + "5.144.6.4/32", + "5.144.6.6/32", + "5.144.6.8/32", + "5.144.6.10/32", + "5.144.6.12/32", + "5.144.6.14/32", + "5.144.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.6.2/32", + "5.144.6.4/32", + "5.144.6.6/32", + "5.144.6.8/32", + "5.144.6.10/32", + "5.144.6.12/32", + "5.144.6.14/32", + "5.144.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.144.8.1/32", + "5.144.8.3/32", + "5.144.8.5/32", + "5.144.8.7/32", + "5.144.8.9/32", + "5.144.8.11/32", + "5.144.8.13/32", + "5.144.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.8.1/32", + "5.144.8.3/32", + "5.144.8.5/32", + "5.144.8.7/32", + "5.144.8.9/32", + "5.144.8.11/32", + "5.144.8.13/32", + "5.144.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.144.8.2/32", + "5.144.8.4/32", + "5.144.8.6/32", + "5.144.8.8/32", + "5.144.8.10/32", + "5.144.8.12/32", + "5.144.8.14/32", + "5.144.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.8.2/32", + "5.144.8.4/32", + "5.144.8.6/32", + "5.144.8.8/32", + "5.144.8.10/32", + "5.144.8.12/32", + "5.144.8.14/32", + "5.144.8.16/32", + "5.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:5:TABLE:5006": { + "acl-group-id": "acl-group-5006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.148.0.1/32", + "5.148.0.3/32", + "5.148.0.5/32", + "5.148.0.7/32", + "5.148.0.9/32", + "5.148.0.11/32", + "5.148.0.13/32", + "5.148.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.0.1/32", + "5.148.0.3/32", + "5.148.0.5/32", + "5.148.0.7/32", + "5.148.0.9/32", + "5.148.0.11/32", + "5.148.0.13/32", + "5.148.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.148.0.2/32", + "5.148.0.4/32", + "5.148.0.6/32", + "5.148.0.8/32", + "5.148.0.10/32", + "5.148.0.12/32", + "5.148.0.14/32", + "5.148.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.0.2/32", + "5.148.0.4/32", + "5.148.0.6/32", + "5.148.0.8/32", + "5.148.0.10/32", + "5.148.0.12/32", + "5.148.0.14/32", + "5.148.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.148.2.1/32", + "5.148.2.3/32", + "5.148.2.5/32", + "5.148.2.7/32", + "5.148.2.9/32", + "5.148.2.11/32", + "5.148.2.13/32", + "5.148.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.2.1/32", + "5.148.2.3/32", + "5.148.2.5/32", + "5.148.2.7/32", + "5.148.2.9/32", + "5.148.2.11/32", + "5.148.2.13/32", + "5.148.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.148.2.2/32", + "5.148.2.4/32", + "5.148.2.6/32", + "5.148.2.8/32", + "5.148.2.10/32", + "5.148.2.12/32", + "5.148.2.14/32", + "5.148.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.2.2/32", + "5.148.2.4/32", + "5.148.2.6/32", + "5.148.2.8/32", + "5.148.2.10/32", + "5.148.2.12/32", + "5.148.2.14/32", + "5.148.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.148.4.1/32", + "5.148.4.3/32", + "5.148.4.5/32", + "5.148.4.7/32", + "5.148.4.9/32", + "5.148.4.11/32", + "5.148.4.13/32", + "5.148.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.4.1/32", + "5.148.4.3/32", + "5.148.4.5/32", + "5.148.4.7/32", + "5.148.4.9/32", + "5.148.4.11/32", + "5.148.4.13/32", + "5.148.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.148.4.2/32", + "5.148.4.4/32", + "5.148.4.6/32", + "5.148.4.8/32", + "5.148.4.10/32", + "5.148.4.12/32", + "5.148.4.14/32", + "5.148.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.4.2/32", + "5.148.4.4/32", + "5.148.4.6/32", + "5.148.4.8/32", + "5.148.4.10/32", + "5.148.4.12/32", + "5.148.4.14/32", + "5.148.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.148.6.1/32", + "5.148.6.3/32", + "5.148.6.5/32", + "5.148.6.7/32", + "5.148.6.9/32", + "5.148.6.11/32", + "5.148.6.13/32", + "5.148.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.6.1/32", + "5.148.6.3/32", + "5.148.6.5/32", + "5.148.6.7/32", + "5.148.6.9/32", + "5.148.6.11/32", + "5.148.6.13/32", + "5.148.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.148.6.2/32", + "5.148.6.4/32", + "5.148.6.6/32", + "5.148.6.8/32", + "5.148.6.10/32", + "5.148.6.12/32", + "5.148.6.14/32", + "5.148.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.6.2/32", + "5.148.6.4/32", + "5.148.6.6/32", + "5.148.6.8/32", + "5.148.6.10/32", + "5.148.6.12/32", + "5.148.6.14/32", + "5.148.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.148.8.1/32", + "5.148.8.3/32", + "5.148.8.5/32", + "5.148.8.7/32", + "5.148.8.9/32", + "5.148.8.11/32", + "5.148.8.13/32", + "5.148.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.8.1/32", + "5.148.8.3/32", + "5.148.8.5/32", + "5.148.8.7/32", + "5.148.8.9/32", + "5.148.8.11/32", + "5.148.8.13/32", + "5.148.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.148.8.2/32", + "5.148.8.4/32", + "5.148.8.6/32", + "5.148.8.8/32", + "5.148.8.10/32", + "5.148.8.12/32", + "5.148.8.14/32", + "5.148.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.8.2/32", + "5.148.8.4/32", + "5.148.8.6/32", + "5.148.8.8/32", + "5.148.8.10/32", + "5.148.8.12/32", + "5.148.8.14/32", + "5.148.8.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "5.1.0.1/32", + "5.128.0.1/14", + "5.132.0.1/14", + "5.136.0.1/14" + ], + "dst_addrs": [ + "5.1.0.1/32", + "5.128.0.1/14", + "5.132.0.1/14", + "5.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6001": { + "acl-group-id": "acl-group-6001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.128.0.1/32", + "6.128.0.3/32", + "6.128.0.5/32", + "6.128.0.7/32", + "6.128.0.9/32", + "6.128.0.11/32", + "6.128.0.13/32", + "6.128.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.0.1/32", + "6.128.0.3/32", + "6.128.0.5/32", + "6.128.0.7/32", + "6.128.0.9/32", + "6.128.0.11/32", + "6.128.0.13/32", + "6.128.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.128.0.2/32", + "6.128.0.4/32", + "6.128.0.6/32", + "6.128.0.8/32", + "6.128.0.10/32", + "6.128.0.12/32", + "6.128.0.14/32", + "6.128.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.0.2/32", + "6.128.0.4/32", + "6.128.0.6/32", + "6.128.0.8/32", + "6.128.0.10/32", + "6.128.0.12/32", + "6.128.0.14/32", + "6.128.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.128.2.1/32", + "6.128.2.3/32", + "6.128.2.5/32", + "6.128.2.7/32", + "6.128.2.9/32", + "6.128.2.11/32", + "6.128.2.13/32", + "6.128.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.2.1/32", + "6.128.2.3/32", + "6.128.2.5/32", + "6.128.2.7/32", + "6.128.2.9/32", + "6.128.2.11/32", + "6.128.2.13/32", + "6.128.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.128.2.2/32", + "6.128.2.4/32", + "6.128.2.6/32", + "6.128.2.8/32", + "6.128.2.10/32", + "6.128.2.12/32", + "6.128.2.14/32", + "6.128.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.2.2/32", + "6.128.2.4/32", + "6.128.2.6/32", + "6.128.2.8/32", + "6.128.2.10/32", + "6.128.2.12/32", + "6.128.2.14/32", + "6.128.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.128.4.1/32", + "6.128.4.3/32", + "6.128.4.5/32", + "6.128.4.7/32", + "6.128.4.9/32", + "6.128.4.11/32", + "6.128.4.13/32", + "6.128.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.4.1/32", + "6.128.4.3/32", + "6.128.4.5/32", + "6.128.4.7/32", + "6.128.4.9/32", + "6.128.4.11/32", + "6.128.4.13/32", + "6.128.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.128.4.2/32", + "6.128.4.4/32", + "6.128.4.6/32", + "6.128.4.8/32", + "6.128.4.10/32", + "6.128.4.12/32", + "6.128.4.14/32", + "6.128.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.4.2/32", + "6.128.4.4/32", + "6.128.4.6/32", + "6.128.4.8/32", + "6.128.4.10/32", + "6.128.4.12/32", + "6.128.4.14/32", + "6.128.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.128.6.1/32", + "6.128.6.3/32", + "6.128.6.5/32", + "6.128.6.7/32", + "6.128.6.9/32", + "6.128.6.11/32", + "6.128.6.13/32", + "6.128.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.6.1/32", + "6.128.6.3/32", + "6.128.6.5/32", + "6.128.6.7/32", + "6.128.6.9/32", + "6.128.6.11/32", + "6.128.6.13/32", + "6.128.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.128.6.2/32", + "6.128.6.4/32", + "6.128.6.6/32", + "6.128.6.8/32", + "6.128.6.10/32", + "6.128.6.12/32", + "6.128.6.14/32", + "6.128.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.6.2/32", + "6.128.6.4/32", + "6.128.6.6/32", + "6.128.6.8/32", + "6.128.6.10/32", + "6.128.6.12/32", + "6.128.6.14/32", + "6.128.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.128.8.1/32", + "6.128.8.3/32", + "6.128.8.5/32", + "6.128.8.7/32", + "6.128.8.9/32", + "6.128.8.11/32", + "6.128.8.13/32", + "6.128.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.8.1/32", + "6.128.8.3/32", + "6.128.8.5/32", + "6.128.8.7/32", + "6.128.8.9/32", + "6.128.8.11/32", + "6.128.8.13/32", + "6.128.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.128.8.2/32", + "6.128.8.4/32", + "6.128.8.6/32", + "6.128.8.8/32", + "6.128.8.10/32", + "6.128.8.12/32", + "6.128.8.14/32", + "6.128.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.8.2/32", + "6.128.8.4/32", + "6.128.8.6/32", + "6.128.8.8/32", + "6.128.8.10/32", + "6.128.8.12/32", + "6.128.8.14/32", + "6.128.8.16/32", + "6.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6002": { + "acl-group-id": "acl-group-6002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.132.0.1/32", + "6.132.0.3/32", + "6.132.0.5/32", + "6.132.0.7/32", + "6.132.0.9/32", + "6.132.0.11/32", + "6.132.0.13/32", + "6.132.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.0.1/32", + "6.132.0.3/32", + "6.132.0.5/32", + "6.132.0.7/32", + "6.132.0.9/32", + "6.132.0.11/32", + "6.132.0.13/32", + "6.132.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.132.0.2/32", + "6.132.0.4/32", + "6.132.0.6/32", + "6.132.0.8/32", + "6.132.0.10/32", + "6.132.0.12/32", + "6.132.0.14/32", + "6.132.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.0.2/32", + "6.132.0.4/32", + "6.132.0.6/32", + "6.132.0.8/32", + "6.132.0.10/32", + "6.132.0.12/32", + "6.132.0.14/32", + "6.132.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.132.2.1/32", + "6.132.2.3/32", + "6.132.2.5/32", + "6.132.2.7/32", + "6.132.2.9/32", + "6.132.2.11/32", + "6.132.2.13/32", + "6.132.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.2.1/32", + "6.132.2.3/32", + "6.132.2.5/32", + "6.132.2.7/32", + "6.132.2.9/32", + "6.132.2.11/32", + "6.132.2.13/32", + "6.132.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.132.2.2/32", + "6.132.2.4/32", + "6.132.2.6/32", + "6.132.2.8/32", + "6.132.2.10/32", + "6.132.2.12/32", + "6.132.2.14/32", + "6.132.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.2.2/32", + "6.132.2.4/32", + "6.132.2.6/32", + "6.132.2.8/32", + "6.132.2.10/32", + "6.132.2.12/32", + "6.132.2.14/32", + "6.132.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.132.4.1/32", + "6.132.4.3/32", + "6.132.4.5/32", + "6.132.4.7/32", + "6.132.4.9/32", + "6.132.4.11/32", + "6.132.4.13/32", + "6.132.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.4.1/32", + "6.132.4.3/32", + "6.132.4.5/32", + "6.132.4.7/32", + "6.132.4.9/32", + "6.132.4.11/32", + "6.132.4.13/32", + "6.132.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.132.4.2/32", + "6.132.4.4/32", + "6.132.4.6/32", + "6.132.4.8/32", + "6.132.4.10/32", + "6.132.4.12/32", + "6.132.4.14/32", + "6.132.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.4.2/32", + "6.132.4.4/32", + "6.132.4.6/32", + "6.132.4.8/32", + "6.132.4.10/32", + "6.132.4.12/32", + "6.132.4.14/32", + "6.132.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.132.6.1/32", + "6.132.6.3/32", + "6.132.6.5/32", + "6.132.6.7/32", + "6.132.6.9/32", + "6.132.6.11/32", + "6.132.6.13/32", + "6.132.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.6.1/32", + "6.132.6.3/32", + "6.132.6.5/32", + "6.132.6.7/32", + "6.132.6.9/32", + "6.132.6.11/32", + "6.132.6.13/32", + "6.132.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.132.6.2/32", + "6.132.6.4/32", + "6.132.6.6/32", + "6.132.6.8/32", + "6.132.6.10/32", + "6.132.6.12/32", + "6.132.6.14/32", + "6.132.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.6.2/32", + "6.132.6.4/32", + "6.132.6.6/32", + "6.132.6.8/32", + "6.132.6.10/32", + "6.132.6.12/32", + "6.132.6.14/32", + "6.132.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.132.8.1/32", + "6.132.8.3/32", + "6.132.8.5/32", + "6.132.8.7/32", + "6.132.8.9/32", + "6.132.8.11/32", + "6.132.8.13/32", + "6.132.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.8.1/32", + "6.132.8.3/32", + "6.132.8.5/32", + "6.132.8.7/32", + "6.132.8.9/32", + "6.132.8.11/32", + "6.132.8.13/32", + "6.132.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.132.8.2/32", + "6.132.8.4/32", + "6.132.8.6/32", + "6.132.8.8/32", + "6.132.8.10/32", + "6.132.8.12/32", + "6.132.8.14/32", + "6.132.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.8.2/32", + "6.132.8.4/32", + "6.132.8.6/32", + "6.132.8.8/32", + "6.132.8.10/32", + "6.132.8.12/32", + "6.132.8.14/32", + "6.132.8.16/32", + "6.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6003": { + "acl-group-id": "acl-group-6003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.136.0.1/32", + "6.136.0.3/32", + "6.136.0.5/32", + "6.136.0.7/32", + "6.136.0.9/32", + "6.136.0.11/32", + "6.136.0.13/32", + "6.136.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.0.1/32", + "6.136.0.3/32", + "6.136.0.5/32", + "6.136.0.7/32", + "6.136.0.9/32", + "6.136.0.11/32", + "6.136.0.13/32", + "6.136.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.136.0.2/32", + "6.136.0.4/32", + "6.136.0.6/32", + "6.136.0.8/32", + "6.136.0.10/32", + "6.136.0.12/32", + "6.136.0.14/32", + "6.136.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.0.2/32", + "6.136.0.4/32", + "6.136.0.6/32", + "6.136.0.8/32", + "6.136.0.10/32", + "6.136.0.12/32", + "6.136.0.14/32", + "6.136.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.136.2.1/32", + "6.136.2.3/32", + "6.136.2.5/32", + "6.136.2.7/32", + "6.136.2.9/32", + "6.136.2.11/32", + "6.136.2.13/32", + "6.136.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.2.1/32", + "6.136.2.3/32", + "6.136.2.5/32", + "6.136.2.7/32", + "6.136.2.9/32", + "6.136.2.11/32", + "6.136.2.13/32", + "6.136.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.136.2.2/32", + "6.136.2.4/32", + "6.136.2.6/32", + "6.136.2.8/32", + "6.136.2.10/32", + "6.136.2.12/32", + "6.136.2.14/32", + "6.136.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.2.2/32", + "6.136.2.4/32", + "6.136.2.6/32", + "6.136.2.8/32", + "6.136.2.10/32", + "6.136.2.12/32", + "6.136.2.14/32", + "6.136.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.136.4.1/32", + "6.136.4.3/32", + "6.136.4.5/32", + "6.136.4.7/32", + "6.136.4.9/32", + "6.136.4.11/32", + "6.136.4.13/32", + "6.136.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.4.1/32", + "6.136.4.3/32", + "6.136.4.5/32", + "6.136.4.7/32", + "6.136.4.9/32", + "6.136.4.11/32", + "6.136.4.13/32", + "6.136.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.136.4.2/32", + "6.136.4.4/32", + "6.136.4.6/32", + "6.136.4.8/32", + "6.136.4.10/32", + "6.136.4.12/32", + "6.136.4.14/32", + "6.136.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.4.2/32", + "6.136.4.4/32", + "6.136.4.6/32", + "6.136.4.8/32", + "6.136.4.10/32", + "6.136.4.12/32", + "6.136.4.14/32", + "6.136.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.136.6.1/32", + "6.136.6.3/32", + "6.136.6.5/32", + "6.136.6.7/32", + "6.136.6.9/32", + "6.136.6.11/32", + "6.136.6.13/32", + "6.136.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.6.1/32", + "6.136.6.3/32", + "6.136.6.5/32", + "6.136.6.7/32", + "6.136.6.9/32", + "6.136.6.11/32", + "6.136.6.13/32", + "6.136.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.136.6.2/32", + "6.136.6.4/32", + "6.136.6.6/32", + "6.136.6.8/32", + "6.136.6.10/32", + "6.136.6.12/32", + "6.136.6.14/32", + "6.136.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.6.2/32", + "6.136.6.4/32", + "6.136.6.6/32", + "6.136.6.8/32", + "6.136.6.10/32", + "6.136.6.12/32", + "6.136.6.14/32", + "6.136.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.136.8.1/32", + "6.136.8.3/32", + "6.136.8.5/32", + "6.136.8.7/32", + "6.136.8.9/32", + "6.136.8.11/32", + "6.136.8.13/32", + "6.136.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.8.1/32", + "6.136.8.3/32", + "6.136.8.5/32", + "6.136.8.7/32", + "6.136.8.9/32", + "6.136.8.11/32", + "6.136.8.13/32", + "6.136.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.136.8.2/32", + "6.136.8.4/32", + "6.136.8.6/32", + "6.136.8.8/32", + "6.136.8.10/32", + "6.136.8.12/32", + "6.136.8.14/32", + "6.136.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.8.2/32", + "6.136.8.4/32", + "6.136.8.6/32", + "6.136.8.8/32", + "6.136.8.10/32", + "6.136.8.12/32", + "6.136.8.14/32", + "6.136.8.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "6.1.0.1/32", + "6.140.0.1/14", + "6.144.0.1/14", + "6.148.0.1/14" + ], + "dst_addrs": [ + "6.1.0.1/32", + "6.140.0.1/14", + "6.144.0.1/14", + "6.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6004": { + "acl-group-id": "acl-group-6004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.140.0.1/32", + "6.140.0.3/32", + "6.140.0.5/32", + "6.140.0.7/32", + "6.140.0.9/32", + "6.140.0.11/32", + "6.140.0.13/32", + "6.140.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.0.1/32", + "6.140.0.3/32", + "6.140.0.5/32", + "6.140.0.7/32", + "6.140.0.9/32", + "6.140.0.11/32", + "6.140.0.13/32", + "6.140.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.140.0.2/32", + "6.140.0.4/32", + "6.140.0.6/32", + "6.140.0.8/32", + "6.140.0.10/32", + "6.140.0.12/32", + "6.140.0.14/32", + "6.140.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.0.2/32", + "6.140.0.4/32", + "6.140.0.6/32", + "6.140.0.8/32", + "6.140.0.10/32", + "6.140.0.12/32", + "6.140.0.14/32", + "6.140.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.140.2.1/32", + "6.140.2.3/32", + "6.140.2.5/32", + "6.140.2.7/32", + "6.140.2.9/32", + "6.140.2.11/32", + "6.140.2.13/32", + "6.140.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.2.1/32", + "6.140.2.3/32", + "6.140.2.5/32", + "6.140.2.7/32", + "6.140.2.9/32", + "6.140.2.11/32", + "6.140.2.13/32", + "6.140.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.140.2.2/32", + "6.140.2.4/32", + "6.140.2.6/32", + "6.140.2.8/32", + "6.140.2.10/32", + "6.140.2.12/32", + "6.140.2.14/32", + "6.140.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.2.2/32", + "6.140.2.4/32", + "6.140.2.6/32", + "6.140.2.8/32", + "6.140.2.10/32", + "6.140.2.12/32", + "6.140.2.14/32", + "6.140.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.140.4.1/32", + "6.140.4.3/32", + "6.140.4.5/32", + "6.140.4.7/32", + "6.140.4.9/32", + "6.140.4.11/32", + "6.140.4.13/32", + "6.140.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.4.1/32", + "6.140.4.3/32", + "6.140.4.5/32", + "6.140.4.7/32", + "6.140.4.9/32", + "6.140.4.11/32", + "6.140.4.13/32", + "6.140.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.140.4.2/32", + "6.140.4.4/32", + "6.140.4.6/32", + "6.140.4.8/32", + "6.140.4.10/32", + "6.140.4.12/32", + "6.140.4.14/32", + "6.140.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.4.2/32", + "6.140.4.4/32", + "6.140.4.6/32", + "6.140.4.8/32", + "6.140.4.10/32", + "6.140.4.12/32", + "6.140.4.14/32", + "6.140.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.140.6.1/32", + "6.140.6.3/32", + "6.140.6.5/32", + "6.140.6.7/32", + "6.140.6.9/32", + "6.140.6.11/32", + "6.140.6.13/32", + "6.140.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.6.1/32", + "6.140.6.3/32", + "6.140.6.5/32", + "6.140.6.7/32", + "6.140.6.9/32", + "6.140.6.11/32", + "6.140.6.13/32", + "6.140.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.140.6.2/32", + "6.140.6.4/32", + "6.140.6.6/32", + "6.140.6.8/32", + "6.140.6.10/32", + "6.140.6.12/32", + "6.140.6.14/32", + "6.140.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.6.2/32", + "6.140.6.4/32", + "6.140.6.6/32", + "6.140.6.8/32", + "6.140.6.10/32", + "6.140.6.12/32", + "6.140.6.14/32", + "6.140.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.140.8.1/32", + "6.140.8.3/32", + "6.140.8.5/32", + "6.140.8.7/32", + "6.140.8.9/32", + "6.140.8.11/32", + "6.140.8.13/32", + "6.140.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.8.1/32", + "6.140.8.3/32", + "6.140.8.5/32", + "6.140.8.7/32", + "6.140.8.9/32", + "6.140.8.11/32", + "6.140.8.13/32", + "6.140.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.140.8.2/32", + "6.140.8.4/32", + "6.140.8.6/32", + "6.140.8.8/32", + "6.140.8.10/32", + "6.140.8.12/32", + "6.140.8.14/32", + "6.140.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.8.2/32", + "6.140.8.4/32", + "6.140.8.6/32", + "6.140.8.8/32", + "6.140.8.10/32", + "6.140.8.12/32", + "6.140.8.14/32", + "6.140.8.16/32", + "6.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6005": { + "acl-group-id": "acl-group-6005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.144.0.1/32", + "6.144.0.3/32", + "6.144.0.5/32", + "6.144.0.7/32", + "6.144.0.9/32", + "6.144.0.11/32", + "6.144.0.13/32", + "6.144.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.0.1/32", + "6.144.0.3/32", + "6.144.0.5/32", + "6.144.0.7/32", + "6.144.0.9/32", + "6.144.0.11/32", + "6.144.0.13/32", + "6.144.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.144.0.2/32", + "6.144.0.4/32", + "6.144.0.6/32", + "6.144.0.8/32", + "6.144.0.10/32", + "6.144.0.12/32", + "6.144.0.14/32", + "6.144.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.0.2/32", + "6.144.0.4/32", + "6.144.0.6/32", + "6.144.0.8/32", + "6.144.0.10/32", + "6.144.0.12/32", + "6.144.0.14/32", + "6.144.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.144.2.1/32", + "6.144.2.3/32", + "6.144.2.5/32", + "6.144.2.7/32", + "6.144.2.9/32", + "6.144.2.11/32", + "6.144.2.13/32", + "6.144.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.2.1/32", + "6.144.2.3/32", + "6.144.2.5/32", + "6.144.2.7/32", + "6.144.2.9/32", + "6.144.2.11/32", + "6.144.2.13/32", + "6.144.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.144.2.2/32", + "6.144.2.4/32", + "6.144.2.6/32", + "6.144.2.8/32", + "6.144.2.10/32", + "6.144.2.12/32", + "6.144.2.14/32", + "6.144.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.2.2/32", + "6.144.2.4/32", + "6.144.2.6/32", + "6.144.2.8/32", + "6.144.2.10/32", + "6.144.2.12/32", + "6.144.2.14/32", + "6.144.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.144.4.1/32", + "6.144.4.3/32", + "6.144.4.5/32", + "6.144.4.7/32", + "6.144.4.9/32", + "6.144.4.11/32", + "6.144.4.13/32", + "6.144.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.4.1/32", + "6.144.4.3/32", + "6.144.4.5/32", + "6.144.4.7/32", + "6.144.4.9/32", + "6.144.4.11/32", + "6.144.4.13/32", + "6.144.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.144.4.2/32", + "6.144.4.4/32", + "6.144.4.6/32", + "6.144.4.8/32", + "6.144.4.10/32", + "6.144.4.12/32", + "6.144.4.14/32", + "6.144.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.4.2/32", + "6.144.4.4/32", + "6.144.4.6/32", + "6.144.4.8/32", + "6.144.4.10/32", + "6.144.4.12/32", + "6.144.4.14/32", + "6.144.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.144.6.1/32", + "6.144.6.3/32", + "6.144.6.5/32", + "6.144.6.7/32", + "6.144.6.9/32", + "6.144.6.11/32", + "6.144.6.13/32", + "6.144.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.6.1/32", + "6.144.6.3/32", + "6.144.6.5/32", + "6.144.6.7/32", + "6.144.6.9/32", + "6.144.6.11/32", + "6.144.6.13/32", + "6.144.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.144.6.2/32", + "6.144.6.4/32", + "6.144.6.6/32", + "6.144.6.8/32", + "6.144.6.10/32", + "6.144.6.12/32", + "6.144.6.14/32", + "6.144.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.6.2/32", + "6.144.6.4/32", + "6.144.6.6/32", + "6.144.6.8/32", + "6.144.6.10/32", + "6.144.6.12/32", + "6.144.6.14/32", + "6.144.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.144.8.1/32", + "6.144.8.3/32", + "6.144.8.5/32", + "6.144.8.7/32", + "6.144.8.9/32", + "6.144.8.11/32", + "6.144.8.13/32", + "6.144.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.8.1/32", + "6.144.8.3/32", + "6.144.8.5/32", + "6.144.8.7/32", + "6.144.8.9/32", + "6.144.8.11/32", + "6.144.8.13/32", + "6.144.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.144.8.2/32", + "6.144.8.4/32", + "6.144.8.6/32", + "6.144.8.8/32", + "6.144.8.10/32", + "6.144.8.12/32", + "6.144.8.14/32", + "6.144.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.8.2/32", + "6.144.8.4/32", + "6.144.8.6/32", + "6.144.8.8/32", + "6.144.8.10/32", + "6.144.8.12/32", + "6.144.8.14/32", + "6.144.8.16/32", + "6.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6006": { + "acl-group-id": "acl-group-6006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.148.0.1/32", + "6.148.0.3/32", + "6.148.0.5/32", + "6.148.0.7/32", + "6.148.0.9/32", + "6.148.0.11/32", + "6.148.0.13/32", + "6.148.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.0.1/32", + "6.148.0.3/32", + "6.148.0.5/32", + "6.148.0.7/32", + "6.148.0.9/32", + "6.148.0.11/32", + "6.148.0.13/32", + "6.148.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.148.0.2/32", + "6.148.0.4/32", + "6.148.0.6/32", + "6.148.0.8/32", + "6.148.0.10/32", + "6.148.0.12/32", + "6.148.0.14/32", + "6.148.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.0.2/32", + "6.148.0.4/32", + "6.148.0.6/32", + "6.148.0.8/32", + "6.148.0.10/32", + "6.148.0.12/32", + "6.148.0.14/32", + "6.148.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.148.2.1/32", + "6.148.2.3/32", + "6.148.2.5/32", + "6.148.2.7/32", + "6.148.2.9/32", + "6.148.2.11/32", + "6.148.2.13/32", + "6.148.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.2.1/32", + "6.148.2.3/32", + "6.148.2.5/32", + "6.148.2.7/32", + "6.148.2.9/32", + "6.148.2.11/32", + "6.148.2.13/32", + "6.148.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.148.2.2/32", + "6.148.2.4/32", + "6.148.2.6/32", + "6.148.2.8/32", + "6.148.2.10/32", + "6.148.2.12/32", + "6.148.2.14/32", + "6.148.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.2.2/32", + "6.148.2.4/32", + "6.148.2.6/32", + "6.148.2.8/32", + "6.148.2.10/32", + "6.148.2.12/32", + "6.148.2.14/32", + "6.148.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.148.4.1/32", + "6.148.4.3/32", + "6.148.4.5/32", + "6.148.4.7/32", + "6.148.4.9/32", + "6.148.4.11/32", + "6.148.4.13/32", + "6.148.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.4.1/32", + "6.148.4.3/32", + "6.148.4.5/32", + "6.148.4.7/32", + "6.148.4.9/32", + "6.148.4.11/32", + "6.148.4.13/32", + "6.148.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.148.4.2/32", + "6.148.4.4/32", + "6.148.4.6/32", + "6.148.4.8/32", + "6.148.4.10/32", + "6.148.4.12/32", + "6.148.4.14/32", + "6.148.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.4.2/32", + "6.148.4.4/32", + "6.148.4.6/32", + "6.148.4.8/32", + "6.148.4.10/32", + "6.148.4.12/32", + "6.148.4.14/32", + "6.148.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.148.6.1/32", + "6.148.6.3/32", + "6.148.6.5/32", + "6.148.6.7/32", + "6.148.6.9/32", + "6.148.6.11/32", + "6.148.6.13/32", + "6.148.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.6.1/32", + "6.148.6.3/32", + "6.148.6.5/32", + "6.148.6.7/32", + "6.148.6.9/32", + "6.148.6.11/32", + "6.148.6.13/32", + "6.148.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.148.6.2/32", + "6.148.6.4/32", + "6.148.6.6/32", + "6.148.6.8/32", + "6.148.6.10/32", + "6.148.6.12/32", + "6.148.6.14/32", + "6.148.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.6.2/32", + "6.148.6.4/32", + "6.148.6.6/32", + "6.148.6.8/32", + "6.148.6.10/32", + "6.148.6.12/32", + "6.148.6.14/32", + "6.148.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.148.8.1/32", + "6.148.8.3/32", + "6.148.8.5/32", + "6.148.8.7/32", + "6.148.8.9/32", + "6.148.8.11/32", + "6.148.8.13/32", + "6.148.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.8.1/32", + "6.148.8.3/32", + "6.148.8.5/32", + "6.148.8.7/32", + "6.148.8.9/32", + "6.148.8.11/32", + "6.148.8.13/32", + "6.148.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.148.8.2/32", + "6.148.8.4/32", + "6.148.8.6/32", + "6.148.8.8/32", + "6.148.8.10/32", + "6.148.8.12/32", + "6.148.8.14/32", + "6.148.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.8.2/32", + "6.148.8.4/32", + "6.148.8.6/32", + "6.148.8.8/32", + "6.148.8.10/32", + "6.148.8.12/32", + "6.148.8.14/32", + "6.148.8.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "6.1.0.1/32", + "6.128.0.1/14", + "6.132.0.1/14", + "6.136.0.1/14" + ], + "dst_addrs": [ + "6.1.0.1/32", + "6.128.0.1/14", + "6.132.0.1/14", + "6.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7001": { + "acl-group-id": "acl-group-7001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.128.0.1/32", + "7.128.0.3/32", + "7.128.0.5/32", + "7.128.0.7/32", + "7.128.0.9/32", + "7.128.0.11/32", + "7.128.0.13/32", + "7.128.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.0.1/32", + "7.128.0.3/32", + "7.128.0.5/32", + "7.128.0.7/32", + "7.128.0.9/32", + "7.128.0.11/32", + "7.128.0.13/32", + "7.128.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.128.0.2/32", + "7.128.0.4/32", + "7.128.0.6/32", + "7.128.0.8/32", + "7.128.0.10/32", + "7.128.0.12/32", + "7.128.0.14/32", + "7.128.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.0.2/32", + "7.128.0.4/32", + "7.128.0.6/32", + "7.128.0.8/32", + "7.128.0.10/32", + "7.128.0.12/32", + "7.128.0.14/32", + "7.128.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.128.2.1/32", + "7.128.2.3/32", + "7.128.2.5/32", + "7.128.2.7/32", + "7.128.2.9/32", + "7.128.2.11/32", + "7.128.2.13/32", + "7.128.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.2.1/32", + "7.128.2.3/32", + "7.128.2.5/32", + "7.128.2.7/32", + "7.128.2.9/32", + "7.128.2.11/32", + "7.128.2.13/32", + "7.128.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.128.2.2/32", + "7.128.2.4/32", + "7.128.2.6/32", + "7.128.2.8/32", + "7.128.2.10/32", + "7.128.2.12/32", + "7.128.2.14/32", + "7.128.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.2.2/32", + "7.128.2.4/32", + "7.128.2.6/32", + "7.128.2.8/32", + "7.128.2.10/32", + "7.128.2.12/32", + "7.128.2.14/32", + "7.128.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.128.4.1/32", + "7.128.4.3/32", + "7.128.4.5/32", + "7.128.4.7/32", + "7.128.4.9/32", + "7.128.4.11/32", + "7.128.4.13/32", + "7.128.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.4.1/32", + "7.128.4.3/32", + "7.128.4.5/32", + "7.128.4.7/32", + "7.128.4.9/32", + "7.128.4.11/32", + "7.128.4.13/32", + "7.128.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.128.4.2/32", + "7.128.4.4/32", + "7.128.4.6/32", + "7.128.4.8/32", + "7.128.4.10/32", + "7.128.4.12/32", + "7.128.4.14/32", + "7.128.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.4.2/32", + "7.128.4.4/32", + "7.128.4.6/32", + "7.128.4.8/32", + "7.128.4.10/32", + "7.128.4.12/32", + "7.128.4.14/32", + "7.128.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.128.6.1/32", + "7.128.6.3/32", + "7.128.6.5/32", + "7.128.6.7/32", + "7.128.6.9/32", + "7.128.6.11/32", + "7.128.6.13/32", + "7.128.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.6.1/32", + "7.128.6.3/32", + "7.128.6.5/32", + "7.128.6.7/32", + "7.128.6.9/32", + "7.128.6.11/32", + "7.128.6.13/32", + "7.128.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.128.6.2/32", + "7.128.6.4/32", + "7.128.6.6/32", + "7.128.6.8/32", + "7.128.6.10/32", + "7.128.6.12/32", + "7.128.6.14/32", + "7.128.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.6.2/32", + "7.128.6.4/32", + "7.128.6.6/32", + "7.128.6.8/32", + "7.128.6.10/32", + "7.128.6.12/32", + "7.128.6.14/32", + "7.128.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.128.8.1/32", + "7.128.8.3/32", + "7.128.8.5/32", + "7.128.8.7/32", + "7.128.8.9/32", + "7.128.8.11/32", + "7.128.8.13/32", + "7.128.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.8.1/32", + "7.128.8.3/32", + "7.128.8.5/32", + "7.128.8.7/32", + "7.128.8.9/32", + "7.128.8.11/32", + "7.128.8.13/32", + "7.128.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.128.8.2/32", + "7.128.8.4/32", + "7.128.8.6/32", + "7.128.8.8/32", + "7.128.8.10/32", + "7.128.8.12/32", + "7.128.8.14/32", + "7.128.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.8.2/32", + "7.128.8.4/32", + "7.128.8.6/32", + "7.128.8.8/32", + "7.128.8.10/32", + "7.128.8.12/32", + "7.128.8.14/32", + "7.128.8.16/32", + "7.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7002": { + "acl-group-id": "acl-group-7002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.132.0.1/32", + "7.132.0.3/32", + "7.132.0.5/32", + "7.132.0.7/32", + "7.132.0.9/32", + "7.132.0.11/32", + "7.132.0.13/32", + "7.132.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.0.1/32", + "7.132.0.3/32", + "7.132.0.5/32", + "7.132.0.7/32", + "7.132.0.9/32", + "7.132.0.11/32", + "7.132.0.13/32", + "7.132.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.132.0.2/32", + "7.132.0.4/32", + "7.132.0.6/32", + "7.132.0.8/32", + "7.132.0.10/32", + "7.132.0.12/32", + "7.132.0.14/32", + "7.132.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.0.2/32", + "7.132.0.4/32", + "7.132.0.6/32", + "7.132.0.8/32", + "7.132.0.10/32", + "7.132.0.12/32", + "7.132.0.14/32", + "7.132.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.132.2.1/32", + "7.132.2.3/32", + "7.132.2.5/32", + "7.132.2.7/32", + "7.132.2.9/32", + "7.132.2.11/32", + "7.132.2.13/32", + "7.132.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.2.1/32", + "7.132.2.3/32", + "7.132.2.5/32", + "7.132.2.7/32", + "7.132.2.9/32", + "7.132.2.11/32", + "7.132.2.13/32", + "7.132.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.132.2.2/32", + "7.132.2.4/32", + "7.132.2.6/32", + "7.132.2.8/32", + "7.132.2.10/32", + "7.132.2.12/32", + "7.132.2.14/32", + "7.132.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.2.2/32", + "7.132.2.4/32", + "7.132.2.6/32", + "7.132.2.8/32", + "7.132.2.10/32", + "7.132.2.12/32", + "7.132.2.14/32", + "7.132.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.132.4.1/32", + "7.132.4.3/32", + "7.132.4.5/32", + "7.132.4.7/32", + "7.132.4.9/32", + "7.132.4.11/32", + "7.132.4.13/32", + "7.132.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.4.1/32", + "7.132.4.3/32", + "7.132.4.5/32", + "7.132.4.7/32", + "7.132.4.9/32", + "7.132.4.11/32", + "7.132.4.13/32", + "7.132.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.132.4.2/32", + "7.132.4.4/32", + "7.132.4.6/32", + "7.132.4.8/32", + "7.132.4.10/32", + "7.132.4.12/32", + "7.132.4.14/32", + "7.132.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.4.2/32", + "7.132.4.4/32", + "7.132.4.6/32", + "7.132.4.8/32", + "7.132.4.10/32", + "7.132.4.12/32", + "7.132.4.14/32", + "7.132.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.132.6.1/32", + "7.132.6.3/32", + "7.132.6.5/32", + "7.132.6.7/32", + "7.132.6.9/32", + "7.132.6.11/32", + "7.132.6.13/32", + "7.132.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.6.1/32", + "7.132.6.3/32", + "7.132.6.5/32", + "7.132.6.7/32", + "7.132.6.9/32", + "7.132.6.11/32", + "7.132.6.13/32", + "7.132.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.132.6.2/32", + "7.132.6.4/32", + "7.132.6.6/32", + "7.132.6.8/32", + "7.132.6.10/32", + "7.132.6.12/32", + "7.132.6.14/32", + "7.132.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.6.2/32", + "7.132.6.4/32", + "7.132.6.6/32", + "7.132.6.8/32", + "7.132.6.10/32", + "7.132.6.12/32", + "7.132.6.14/32", + "7.132.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.132.8.1/32", + "7.132.8.3/32", + "7.132.8.5/32", + "7.132.8.7/32", + "7.132.8.9/32", + "7.132.8.11/32", + "7.132.8.13/32", + "7.132.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.8.1/32", + "7.132.8.3/32", + "7.132.8.5/32", + "7.132.8.7/32", + "7.132.8.9/32", + "7.132.8.11/32", + "7.132.8.13/32", + "7.132.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.132.8.2/32", + "7.132.8.4/32", + "7.132.8.6/32", + "7.132.8.8/32", + "7.132.8.10/32", + "7.132.8.12/32", + "7.132.8.14/32", + "7.132.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.8.2/32", + "7.132.8.4/32", + "7.132.8.6/32", + "7.132.8.8/32", + "7.132.8.10/32", + "7.132.8.12/32", + "7.132.8.14/32", + "7.132.8.16/32", + "7.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7003": { + "acl-group-id": "acl-group-7003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.136.0.1/32", + "7.136.0.3/32", + "7.136.0.5/32", + "7.136.0.7/32", + "7.136.0.9/32", + "7.136.0.11/32", + "7.136.0.13/32", + "7.136.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.0.1/32", + "7.136.0.3/32", + "7.136.0.5/32", + "7.136.0.7/32", + "7.136.0.9/32", + "7.136.0.11/32", + "7.136.0.13/32", + "7.136.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.136.0.2/32", + "7.136.0.4/32", + "7.136.0.6/32", + "7.136.0.8/32", + "7.136.0.10/32", + "7.136.0.12/32", + "7.136.0.14/32", + "7.136.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.0.2/32", + "7.136.0.4/32", + "7.136.0.6/32", + "7.136.0.8/32", + "7.136.0.10/32", + "7.136.0.12/32", + "7.136.0.14/32", + "7.136.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.136.2.1/32", + "7.136.2.3/32", + "7.136.2.5/32", + "7.136.2.7/32", + "7.136.2.9/32", + "7.136.2.11/32", + "7.136.2.13/32", + "7.136.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.2.1/32", + "7.136.2.3/32", + "7.136.2.5/32", + "7.136.2.7/32", + "7.136.2.9/32", + "7.136.2.11/32", + "7.136.2.13/32", + "7.136.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.136.2.2/32", + "7.136.2.4/32", + "7.136.2.6/32", + "7.136.2.8/32", + "7.136.2.10/32", + "7.136.2.12/32", + "7.136.2.14/32", + "7.136.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.2.2/32", + "7.136.2.4/32", + "7.136.2.6/32", + "7.136.2.8/32", + "7.136.2.10/32", + "7.136.2.12/32", + "7.136.2.14/32", + "7.136.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.136.4.1/32", + "7.136.4.3/32", + "7.136.4.5/32", + "7.136.4.7/32", + "7.136.4.9/32", + "7.136.4.11/32", + "7.136.4.13/32", + "7.136.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.4.1/32", + "7.136.4.3/32", + "7.136.4.5/32", + "7.136.4.7/32", + "7.136.4.9/32", + "7.136.4.11/32", + "7.136.4.13/32", + "7.136.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.136.4.2/32", + "7.136.4.4/32", + "7.136.4.6/32", + "7.136.4.8/32", + "7.136.4.10/32", + "7.136.4.12/32", + "7.136.4.14/32", + "7.136.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.4.2/32", + "7.136.4.4/32", + "7.136.4.6/32", + "7.136.4.8/32", + "7.136.4.10/32", + "7.136.4.12/32", + "7.136.4.14/32", + "7.136.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.136.6.1/32", + "7.136.6.3/32", + "7.136.6.5/32", + "7.136.6.7/32", + "7.136.6.9/32", + "7.136.6.11/32", + "7.136.6.13/32", + "7.136.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.6.1/32", + "7.136.6.3/32", + "7.136.6.5/32", + "7.136.6.7/32", + "7.136.6.9/32", + "7.136.6.11/32", + "7.136.6.13/32", + "7.136.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.136.6.2/32", + "7.136.6.4/32", + "7.136.6.6/32", + "7.136.6.8/32", + "7.136.6.10/32", + "7.136.6.12/32", + "7.136.6.14/32", + "7.136.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.6.2/32", + "7.136.6.4/32", + "7.136.6.6/32", + "7.136.6.8/32", + "7.136.6.10/32", + "7.136.6.12/32", + "7.136.6.14/32", + "7.136.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.136.8.1/32", + "7.136.8.3/32", + "7.136.8.5/32", + "7.136.8.7/32", + "7.136.8.9/32", + "7.136.8.11/32", + "7.136.8.13/32", + "7.136.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.8.1/32", + "7.136.8.3/32", + "7.136.8.5/32", + "7.136.8.7/32", + "7.136.8.9/32", + "7.136.8.11/32", + "7.136.8.13/32", + "7.136.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.136.8.2/32", + "7.136.8.4/32", + "7.136.8.6/32", + "7.136.8.8/32", + "7.136.8.10/32", + "7.136.8.12/32", + "7.136.8.14/32", + "7.136.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.8.2/32", + "7.136.8.4/32", + "7.136.8.6/32", + "7.136.8.8/32", + "7.136.8.10/32", + "7.136.8.12/32", + "7.136.8.14/32", + "7.136.8.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "7.1.0.1/32", + "7.140.0.1/14", + "7.144.0.1/14", + "7.148.0.1/14" + ], + "dst_addrs": [ + "7.1.0.1/32", + "7.140.0.1/14", + "7.144.0.1/14", + "7.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7004": { + "acl-group-id": "acl-group-7004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.140.0.1/32", + "7.140.0.3/32", + "7.140.0.5/32", + "7.140.0.7/32", + "7.140.0.9/32", + "7.140.0.11/32", + "7.140.0.13/32", + "7.140.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.0.1/32", + "7.140.0.3/32", + "7.140.0.5/32", + "7.140.0.7/32", + "7.140.0.9/32", + "7.140.0.11/32", + "7.140.0.13/32", + "7.140.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.140.0.2/32", + "7.140.0.4/32", + "7.140.0.6/32", + "7.140.0.8/32", + "7.140.0.10/32", + "7.140.0.12/32", + "7.140.0.14/32", + "7.140.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.0.2/32", + "7.140.0.4/32", + "7.140.0.6/32", + "7.140.0.8/32", + "7.140.0.10/32", + "7.140.0.12/32", + "7.140.0.14/32", + "7.140.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.140.2.1/32", + "7.140.2.3/32", + "7.140.2.5/32", + "7.140.2.7/32", + "7.140.2.9/32", + "7.140.2.11/32", + "7.140.2.13/32", + "7.140.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.2.1/32", + "7.140.2.3/32", + "7.140.2.5/32", + "7.140.2.7/32", + "7.140.2.9/32", + "7.140.2.11/32", + "7.140.2.13/32", + "7.140.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.140.2.2/32", + "7.140.2.4/32", + "7.140.2.6/32", + "7.140.2.8/32", + "7.140.2.10/32", + "7.140.2.12/32", + "7.140.2.14/32", + "7.140.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.2.2/32", + "7.140.2.4/32", + "7.140.2.6/32", + "7.140.2.8/32", + "7.140.2.10/32", + "7.140.2.12/32", + "7.140.2.14/32", + "7.140.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.140.4.1/32", + "7.140.4.3/32", + "7.140.4.5/32", + "7.140.4.7/32", + "7.140.4.9/32", + "7.140.4.11/32", + "7.140.4.13/32", + "7.140.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.4.1/32", + "7.140.4.3/32", + "7.140.4.5/32", + "7.140.4.7/32", + "7.140.4.9/32", + "7.140.4.11/32", + "7.140.4.13/32", + "7.140.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.140.4.2/32", + "7.140.4.4/32", + "7.140.4.6/32", + "7.140.4.8/32", + "7.140.4.10/32", + "7.140.4.12/32", + "7.140.4.14/32", + "7.140.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.4.2/32", + "7.140.4.4/32", + "7.140.4.6/32", + "7.140.4.8/32", + "7.140.4.10/32", + "7.140.4.12/32", + "7.140.4.14/32", + "7.140.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.140.6.1/32", + "7.140.6.3/32", + "7.140.6.5/32", + "7.140.6.7/32", + "7.140.6.9/32", + "7.140.6.11/32", + "7.140.6.13/32", + "7.140.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.6.1/32", + "7.140.6.3/32", + "7.140.6.5/32", + "7.140.6.7/32", + "7.140.6.9/32", + "7.140.6.11/32", + "7.140.6.13/32", + "7.140.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.140.6.2/32", + "7.140.6.4/32", + "7.140.6.6/32", + "7.140.6.8/32", + "7.140.6.10/32", + "7.140.6.12/32", + "7.140.6.14/32", + "7.140.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.6.2/32", + "7.140.6.4/32", + "7.140.6.6/32", + "7.140.6.8/32", + "7.140.6.10/32", + "7.140.6.12/32", + "7.140.6.14/32", + "7.140.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.140.8.1/32", + "7.140.8.3/32", + "7.140.8.5/32", + "7.140.8.7/32", + "7.140.8.9/32", + "7.140.8.11/32", + "7.140.8.13/32", + "7.140.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.8.1/32", + "7.140.8.3/32", + "7.140.8.5/32", + "7.140.8.7/32", + "7.140.8.9/32", + "7.140.8.11/32", + "7.140.8.13/32", + "7.140.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.140.8.2/32", + "7.140.8.4/32", + "7.140.8.6/32", + "7.140.8.8/32", + "7.140.8.10/32", + "7.140.8.12/32", + "7.140.8.14/32", + "7.140.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.8.2/32", + "7.140.8.4/32", + "7.140.8.6/32", + "7.140.8.8/32", + "7.140.8.10/32", + "7.140.8.12/32", + "7.140.8.14/32", + "7.140.8.16/32", + "7.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7005": { + "acl-group-id": "acl-group-7005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.144.0.1/32", + "7.144.0.3/32", + "7.144.0.5/32", + "7.144.0.7/32", + "7.144.0.9/32", + "7.144.0.11/32", + "7.144.0.13/32", + "7.144.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.0.1/32", + "7.144.0.3/32", + "7.144.0.5/32", + "7.144.0.7/32", + "7.144.0.9/32", + "7.144.0.11/32", + "7.144.0.13/32", + "7.144.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.144.0.2/32", + "7.144.0.4/32", + "7.144.0.6/32", + "7.144.0.8/32", + "7.144.0.10/32", + "7.144.0.12/32", + "7.144.0.14/32", + "7.144.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.0.2/32", + "7.144.0.4/32", + "7.144.0.6/32", + "7.144.0.8/32", + "7.144.0.10/32", + "7.144.0.12/32", + "7.144.0.14/32", + "7.144.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.144.2.1/32", + "7.144.2.3/32", + "7.144.2.5/32", + "7.144.2.7/32", + "7.144.2.9/32", + "7.144.2.11/32", + "7.144.2.13/32", + "7.144.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.2.1/32", + "7.144.2.3/32", + "7.144.2.5/32", + "7.144.2.7/32", + "7.144.2.9/32", + "7.144.2.11/32", + "7.144.2.13/32", + "7.144.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.144.2.2/32", + "7.144.2.4/32", + "7.144.2.6/32", + "7.144.2.8/32", + "7.144.2.10/32", + "7.144.2.12/32", + "7.144.2.14/32", + "7.144.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.2.2/32", + "7.144.2.4/32", + "7.144.2.6/32", + "7.144.2.8/32", + "7.144.2.10/32", + "7.144.2.12/32", + "7.144.2.14/32", + "7.144.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.144.4.1/32", + "7.144.4.3/32", + "7.144.4.5/32", + "7.144.4.7/32", + "7.144.4.9/32", + "7.144.4.11/32", + "7.144.4.13/32", + "7.144.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.4.1/32", + "7.144.4.3/32", + "7.144.4.5/32", + "7.144.4.7/32", + "7.144.4.9/32", + "7.144.4.11/32", + "7.144.4.13/32", + "7.144.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.144.4.2/32", + "7.144.4.4/32", + "7.144.4.6/32", + "7.144.4.8/32", + "7.144.4.10/32", + "7.144.4.12/32", + "7.144.4.14/32", + "7.144.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.4.2/32", + "7.144.4.4/32", + "7.144.4.6/32", + "7.144.4.8/32", + "7.144.4.10/32", + "7.144.4.12/32", + "7.144.4.14/32", + "7.144.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.144.6.1/32", + "7.144.6.3/32", + "7.144.6.5/32", + "7.144.6.7/32", + "7.144.6.9/32", + "7.144.6.11/32", + "7.144.6.13/32", + "7.144.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.6.1/32", + "7.144.6.3/32", + "7.144.6.5/32", + "7.144.6.7/32", + "7.144.6.9/32", + "7.144.6.11/32", + "7.144.6.13/32", + "7.144.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.144.6.2/32", + "7.144.6.4/32", + "7.144.6.6/32", + "7.144.6.8/32", + "7.144.6.10/32", + "7.144.6.12/32", + "7.144.6.14/32", + "7.144.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.6.2/32", + "7.144.6.4/32", + "7.144.6.6/32", + "7.144.6.8/32", + "7.144.6.10/32", + "7.144.6.12/32", + "7.144.6.14/32", + "7.144.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.144.8.1/32", + "7.144.8.3/32", + "7.144.8.5/32", + "7.144.8.7/32", + "7.144.8.9/32", + "7.144.8.11/32", + "7.144.8.13/32", + "7.144.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.8.1/32", + "7.144.8.3/32", + "7.144.8.5/32", + "7.144.8.7/32", + "7.144.8.9/32", + "7.144.8.11/32", + "7.144.8.13/32", + "7.144.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.144.8.2/32", + "7.144.8.4/32", + "7.144.8.6/32", + "7.144.8.8/32", + "7.144.8.10/32", + "7.144.8.12/32", + "7.144.8.14/32", + "7.144.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.8.2/32", + "7.144.8.4/32", + "7.144.8.6/32", + "7.144.8.8/32", + "7.144.8.10/32", + "7.144.8.12/32", + "7.144.8.14/32", + "7.144.8.16/32", + "7.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7006": { + "acl-group-id": "acl-group-7006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.148.0.1/32", + "7.148.0.3/32", + "7.148.0.5/32", + "7.148.0.7/32", + "7.148.0.9/32", + "7.148.0.11/32", + "7.148.0.13/32", + "7.148.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.0.1/32", + "7.148.0.3/32", + "7.148.0.5/32", + "7.148.0.7/32", + "7.148.0.9/32", + "7.148.0.11/32", + "7.148.0.13/32", + "7.148.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.148.0.2/32", + "7.148.0.4/32", + "7.148.0.6/32", + "7.148.0.8/32", + "7.148.0.10/32", + "7.148.0.12/32", + "7.148.0.14/32", + "7.148.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.0.2/32", + "7.148.0.4/32", + "7.148.0.6/32", + "7.148.0.8/32", + "7.148.0.10/32", + "7.148.0.12/32", + "7.148.0.14/32", + "7.148.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.148.2.1/32", + "7.148.2.3/32", + "7.148.2.5/32", + "7.148.2.7/32", + "7.148.2.9/32", + "7.148.2.11/32", + "7.148.2.13/32", + "7.148.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.2.1/32", + "7.148.2.3/32", + "7.148.2.5/32", + "7.148.2.7/32", + "7.148.2.9/32", + "7.148.2.11/32", + "7.148.2.13/32", + "7.148.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.148.2.2/32", + "7.148.2.4/32", + "7.148.2.6/32", + "7.148.2.8/32", + "7.148.2.10/32", + "7.148.2.12/32", + "7.148.2.14/32", + "7.148.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.2.2/32", + "7.148.2.4/32", + "7.148.2.6/32", + "7.148.2.8/32", + "7.148.2.10/32", + "7.148.2.12/32", + "7.148.2.14/32", + "7.148.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.148.4.1/32", + "7.148.4.3/32", + "7.148.4.5/32", + "7.148.4.7/32", + "7.148.4.9/32", + "7.148.4.11/32", + "7.148.4.13/32", + "7.148.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.4.1/32", + "7.148.4.3/32", + "7.148.4.5/32", + "7.148.4.7/32", + "7.148.4.9/32", + "7.148.4.11/32", + "7.148.4.13/32", + "7.148.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.148.4.2/32", + "7.148.4.4/32", + "7.148.4.6/32", + "7.148.4.8/32", + "7.148.4.10/32", + "7.148.4.12/32", + "7.148.4.14/32", + "7.148.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.4.2/32", + "7.148.4.4/32", + "7.148.4.6/32", + "7.148.4.8/32", + "7.148.4.10/32", + "7.148.4.12/32", + "7.148.4.14/32", + "7.148.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.148.6.1/32", + "7.148.6.3/32", + "7.148.6.5/32", + "7.148.6.7/32", + "7.148.6.9/32", + "7.148.6.11/32", + "7.148.6.13/32", + "7.148.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.6.1/32", + "7.148.6.3/32", + "7.148.6.5/32", + "7.148.6.7/32", + "7.148.6.9/32", + "7.148.6.11/32", + "7.148.6.13/32", + "7.148.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.148.6.2/32", + "7.148.6.4/32", + "7.148.6.6/32", + "7.148.6.8/32", + "7.148.6.10/32", + "7.148.6.12/32", + "7.148.6.14/32", + "7.148.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.6.2/32", + "7.148.6.4/32", + "7.148.6.6/32", + "7.148.6.8/32", + "7.148.6.10/32", + "7.148.6.12/32", + "7.148.6.14/32", + "7.148.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.148.8.1/32", + "7.148.8.3/32", + "7.148.8.5/32", + "7.148.8.7/32", + "7.148.8.9/32", + "7.148.8.11/32", + "7.148.8.13/32", + "7.148.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.8.1/32", + "7.148.8.3/32", + "7.148.8.5/32", + "7.148.8.7/32", + "7.148.8.9/32", + "7.148.8.11/32", + "7.148.8.13/32", + "7.148.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.148.8.2/32", + "7.148.8.4/32", + "7.148.8.6/32", + "7.148.8.8/32", + "7.148.8.10/32", + "7.148.8.12/32", + "7.148.8.14/32", + "7.148.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.8.2/32", + "7.148.8.4/32", + "7.148.8.6/32", + "7.148.8.8/32", + "7.148.8.10/32", + "7.148.8.12/32", + "7.148.8.14/32", + "7.148.8.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "7.1.0.1/32", + "7.128.0.1/14", + "7.132.0.1/14", + "7.136.0.1/14" + ], + "dst_addrs": [ + "7.1.0.1/32", + "7.128.0.1/14", + "7.132.0.1/14", + "7.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8001": { + "acl-group-id": "acl-group-8001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.128.0.1/32", + "8.128.0.3/32", + "8.128.0.5/32", + "8.128.0.7/32", + "8.128.0.9/32", + "8.128.0.11/32", + "8.128.0.13/32", + "8.128.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.0.1/32", + "8.128.0.3/32", + "8.128.0.5/32", + "8.128.0.7/32", + "8.128.0.9/32", + "8.128.0.11/32", + "8.128.0.13/32", + "8.128.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.128.0.2/32", + "8.128.0.4/32", + "8.128.0.6/32", + "8.128.0.8/32", + "8.128.0.10/32", + "8.128.0.12/32", + "8.128.0.14/32", + "8.128.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.0.2/32", + "8.128.0.4/32", + "8.128.0.6/32", + "8.128.0.8/32", + "8.128.0.10/32", + "8.128.0.12/32", + "8.128.0.14/32", + "8.128.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.128.2.1/32", + "8.128.2.3/32", + "8.128.2.5/32", + "8.128.2.7/32", + "8.128.2.9/32", + "8.128.2.11/32", + "8.128.2.13/32", + "8.128.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.2.1/32", + "8.128.2.3/32", + "8.128.2.5/32", + "8.128.2.7/32", + "8.128.2.9/32", + "8.128.2.11/32", + "8.128.2.13/32", + "8.128.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.128.2.2/32", + "8.128.2.4/32", + "8.128.2.6/32", + "8.128.2.8/32", + "8.128.2.10/32", + "8.128.2.12/32", + "8.128.2.14/32", + "8.128.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.2.2/32", + "8.128.2.4/32", + "8.128.2.6/32", + "8.128.2.8/32", + "8.128.2.10/32", + "8.128.2.12/32", + "8.128.2.14/32", + "8.128.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.128.4.1/32", + "8.128.4.3/32", + "8.128.4.5/32", + "8.128.4.7/32", + "8.128.4.9/32", + "8.128.4.11/32", + "8.128.4.13/32", + "8.128.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.4.1/32", + "8.128.4.3/32", + "8.128.4.5/32", + "8.128.4.7/32", + "8.128.4.9/32", + "8.128.4.11/32", + "8.128.4.13/32", + "8.128.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.128.4.2/32", + "8.128.4.4/32", + "8.128.4.6/32", + "8.128.4.8/32", + "8.128.4.10/32", + "8.128.4.12/32", + "8.128.4.14/32", + "8.128.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.4.2/32", + "8.128.4.4/32", + "8.128.4.6/32", + "8.128.4.8/32", + "8.128.4.10/32", + "8.128.4.12/32", + "8.128.4.14/32", + "8.128.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.128.6.1/32", + "8.128.6.3/32", + "8.128.6.5/32", + "8.128.6.7/32", + "8.128.6.9/32", + "8.128.6.11/32", + "8.128.6.13/32", + "8.128.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.6.1/32", + "8.128.6.3/32", + "8.128.6.5/32", + "8.128.6.7/32", + "8.128.6.9/32", + "8.128.6.11/32", + "8.128.6.13/32", + "8.128.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.128.6.2/32", + "8.128.6.4/32", + "8.128.6.6/32", + "8.128.6.8/32", + "8.128.6.10/32", + "8.128.6.12/32", + "8.128.6.14/32", + "8.128.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.6.2/32", + "8.128.6.4/32", + "8.128.6.6/32", + "8.128.6.8/32", + "8.128.6.10/32", + "8.128.6.12/32", + "8.128.6.14/32", + "8.128.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.128.8.1/32", + "8.128.8.3/32", + "8.128.8.5/32", + "8.128.8.7/32", + "8.128.8.9/32", + "8.128.8.11/32", + "8.128.8.13/32", + "8.128.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.8.1/32", + "8.128.8.3/32", + "8.128.8.5/32", + "8.128.8.7/32", + "8.128.8.9/32", + "8.128.8.11/32", + "8.128.8.13/32", + "8.128.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.128.8.2/32", + "8.128.8.4/32", + "8.128.8.6/32", + "8.128.8.8/32", + "8.128.8.10/32", + "8.128.8.12/32", + "8.128.8.14/32", + "8.128.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.8.2/32", + "8.128.8.4/32", + "8.128.8.6/32", + "8.128.8.8/32", + "8.128.8.10/32", + "8.128.8.12/32", + "8.128.8.14/32", + "8.128.8.16/32", + "8.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8002": { + "acl-group-id": "acl-group-8002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.132.0.1/32", + "8.132.0.3/32", + "8.132.0.5/32", + "8.132.0.7/32", + "8.132.0.9/32", + "8.132.0.11/32", + "8.132.0.13/32", + "8.132.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.0.1/32", + "8.132.0.3/32", + "8.132.0.5/32", + "8.132.0.7/32", + "8.132.0.9/32", + "8.132.0.11/32", + "8.132.0.13/32", + "8.132.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.132.0.2/32", + "8.132.0.4/32", + "8.132.0.6/32", + "8.132.0.8/32", + "8.132.0.10/32", + "8.132.0.12/32", + "8.132.0.14/32", + "8.132.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.0.2/32", + "8.132.0.4/32", + "8.132.0.6/32", + "8.132.0.8/32", + "8.132.0.10/32", + "8.132.0.12/32", + "8.132.0.14/32", + "8.132.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.132.2.1/32", + "8.132.2.3/32", + "8.132.2.5/32", + "8.132.2.7/32", + "8.132.2.9/32", + "8.132.2.11/32", + "8.132.2.13/32", + "8.132.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.2.1/32", + "8.132.2.3/32", + "8.132.2.5/32", + "8.132.2.7/32", + "8.132.2.9/32", + "8.132.2.11/32", + "8.132.2.13/32", + "8.132.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.132.2.2/32", + "8.132.2.4/32", + "8.132.2.6/32", + "8.132.2.8/32", + "8.132.2.10/32", + "8.132.2.12/32", + "8.132.2.14/32", + "8.132.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.2.2/32", + "8.132.2.4/32", + "8.132.2.6/32", + "8.132.2.8/32", + "8.132.2.10/32", + "8.132.2.12/32", + "8.132.2.14/32", + "8.132.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.132.4.1/32", + "8.132.4.3/32", + "8.132.4.5/32", + "8.132.4.7/32", + "8.132.4.9/32", + "8.132.4.11/32", + "8.132.4.13/32", + "8.132.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.4.1/32", + "8.132.4.3/32", + "8.132.4.5/32", + "8.132.4.7/32", + "8.132.4.9/32", + "8.132.4.11/32", + "8.132.4.13/32", + "8.132.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.132.4.2/32", + "8.132.4.4/32", + "8.132.4.6/32", + "8.132.4.8/32", + "8.132.4.10/32", + "8.132.4.12/32", + "8.132.4.14/32", + "8.132.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.4.2/32", + "8.132.4.4/32", + "8.132.4.6/32", + "8.132.4.8/32", + "8.132.4.10/32", + "8.132.4.12/32", + "8.132.4.14/32", + "8.132.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.132.6.1/32", + "8.132.6.3/32", + "8.132.6.5/32", + "8.132.6.7/32", + "8.132.6.9/32", + "8.132.6.11/32", + "8.132.6.13/32", + "8.132.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.6.1/32", + "8.132.6.3/32", + "8.132.6.5/32", + "8.132.6.7/32", + "8.132.6.9/32", + "8.132.6.11/32", + "8.132.6.13/32", + "8.132.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.132.6.2/32", + "8.132.6.4/32", + "8.132.6.6/32", + "8.132.6.8/32", + "8.132.6.10/32", + "8.132.6.12/32", + "8.132.6.14/32", + "8.132.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.6.2/32", + "8.132.6.4/32", + "8.132.6.6/32", + "8.132.6.8/32", + "8.132.6.10/32", + "8.132.6.12/32", + "8.132.6.14/32", + "8.132.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.132.8.1/32", + "8.132.8.3/32", + "8.132.8.5/32", + "8.132.8.7/32", + "8.132.8.9/32", + "8.132.8.11/32", + "8.132.8.13/32", + "8.132.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.8.1/32", + "8.132.8.3/32", + "8.132.8.5/32", + "8.132.8.7/32", + "8.132.8.9/32", + "8.132.8.11/32", + "8.132.8.13/32", + "8.132.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.132.8.2/32", + "8.132.8.4/32", + "8.132.8.6/32", + "8.132.8.8/32", + "8.132.8.10/32", + "8.132.8.12/32", + "8.132.8.14/32", + "8.132.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.8.2/32", + "8.132.8.4/32", + "8.132.8.6/32", + "8.132.8.8/32", + "8.132.8.10/32", + "8.132.8.12/32", + "8.132.8.14/32", + "8.132.8.16/32", + "8.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8003": { + "acl-group-id": "acl-group-8003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.136.0.1/32", + "8.136.0.3/32", + "8.136.0.5/32", + "8.136.0.7/32", + "8.136.0.9/32", + "8.136.0.11/32", + "8.136.0.13/32", + "8.136.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.0.1/32", + "8.136.0.3/32", + "8.136.0.5/32", + "8.136.0.7/32", + "8.136.0.9/32", + "8.136.0.11/32", + "8.136.0.13/32", + "8.136.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.136.0.2/32", + "8.136.0.4/32", + "8.136.0.6/32", + "8.136.0.8/32", + "8.136.0.10/32", + "8.136.0.12/32", + "8.136.0.14/32", + "8.136.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.0.2/32", + "8.136.0.4/32", + "8.136.0.6/32", + "8.136.0.8/32", + "8.136.0.10/32", + "8.136.0.12/32", + "8.136.0.14/32", + "8.136.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.136.2.1/32", + "8.136.2.3/32", + "8.136.2.5/32", + "8.136.2.7/32", + "8.136.2.9/32", + "8.136.2.11/32", + "8.136.2.13/32", + "8.136.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.2.1/32", + "8.136.2.3/32", + "8.136.2.5/32", + "8.136.2.7/32", + "8.136.2.9/32", + "8.136.2.11/32", + "8.136.2.13/32", + "8.136.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.136.2.2/32", + "8.136.2.4/32", + "8.136.2.6/32", + "8.136.2.8/32", + "8.136.2.10/32", + "8.136.2.12/32", + "8.136.2.14/32", + "8.136.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.2.2/32", + "8.136.2.4/32", + "8.136.2.6/32", + "8.136.2.8/32", + "8.136.2.10/32", + "8.136.2.12/32", + "8.136.2.14/32", + "8.136.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.136.4.1/32", + "8.136.4.3/32", + "8.136.4.5/32", + "8.136.4.7/32", + "8.136.4.9/32", + "8.136.4.11/32", + "8.136.4.13/32", + "8.136.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.4.1/32", + "8.136.4.3/32", + "8.136.4.5/32", + "8.136.4.7/32", + "8.136.4.9/32", + "8.136.4.11/32", + "8.136.4.13/32", + "8.136.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.136.4.2/32", + "8.136.4.4/32", + "8.136.4.6/32", + "8.136.4.8/32", + "8.136.4.10/32", + "8.136.4.12/32", + "8.136.4.14/32", + "8.136.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.4.2/32", + "8.136.4.4/32", + "8.136.4.6/32", + "8.136.4.8/32", + "8.136.4.10/32", + "8.136.4.12/32", + "8.136.4.14/32", + "8.136.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.136.6.1/32", + "8.136.6.3/32", + "8.136.6.5/32", + "8.136.6.7/32", + "8.136.6.9/32", + "8.136.6.11/32", + "8.136.6.13/32", + "8.136.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.6.1/32", + "8.136.6.3/32", + "8.136.6.5/32", + "8.136.6.7/32", + "8.136.6.9/32", + "8.136.6.11/32", + "8.136.6.13/32", + "8.136.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.136.6.2/32", + "8.136.6.4/32", + "8.136.6.6/32", + "8.136.6.8/32", + "8.136.6.10/32", + "8.136.6.12/32", + "8.136.6.14/32", + "8.136.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.6.2/32", + "8.136.6.4/32", + "8.136.6.6/32", + "8.136.6.8/32", + "8.136.6.10/32", + "8.136.6.12/32", + "8.136.6.14/32", + "8.136.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.136.8.1/32", + "8.136.8.3/32", + "8.136.8.5/32", + "8.136.8.7/32", + "8.136.8.9/32", + "8.136.8.11/32", + "8.136.8.13/32", + "8.136.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.8.1/32", + "8.136.8.3/32", + "8.136.8.5/32", + "8.136.8.7/32", + "8.136.8.9/32", + "8.136.8.11/32", + "8.136.8.13/32", + "8.136.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.136.8.2/32", + "8.136.8.4/32", + "8.136.8.6/32", + "8.136.8.8/32", + "8.136.8.10/32", + "8.136.8.12/32", + "8.136.8.14/32", + "8.136.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.8.2/32", + "8.136.8.4/32", + "8.136.8.6/32", + "8.136.8.8/32", + "8.136.8.10/32", + "8.136.8.12/32", + "8.136.8.14/32", + "8.136.8.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "8.1.0.1/32", + "8.140.0.1/14", + "8.144.0.1/14", + "8.148.0.1/14" + ], + "dst_addrs": [ + "8.1.0.1/32", + "8.140.0.1/14", + "8.144.0.1/14", + "8.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8004": { + "acl-group-id": "acl-group-8004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.140.0.1/32", + "8.140.0.3/32", + "8.140.0.5/32", + "8.140.0.7/32", + "8.140.0.9/32", + "8.140.0.11/32", + "8.140.0.13/32", + "8.140.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.0.1/32", + "8.140.0.3/32", + "8.140.0.5/32", + "8.140.0.7/32", + "8.140.0.9/32", + "8.140.0.11/32", + "8.140.0.13/32", + "8.140.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.140.0.2/32", + "8.140.0.4/32", + "8.140.0.6/32", + "8.140.0.8/32", + "8.140.0.10/32", + "8.140.0.12/32", + "8.140.0.14/32", + "8.140.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.0.2/32", + "8.140.0.4/32", + "8.140.0.6/32", + "8.140.0.8/32", + "8.140.0.10/32", + "8.140.0.12/32", + "8.140.0.14/32", + "8.140.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.140.2.1/32", + "8.140.2.3/32", + "8.140.2.5/32", + "8.140.2.7/32", + "8.140.2.9/32", + "8.140.2.11/32", + "8.140.2.13/32", + "8.140.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.2.1/32", + "8.140.2.3/32", + "8.140.2.5/32", + "8.140.2.7/32", + "8.140.2.9/32", + "8.140.2.11/32", + "8.140.2.13/32", + "8.140.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.140.2.2/32", + "8.140.2.4/32", + "8.140.2.6/32", + "8.140.2.8/32", + "8.140.2.10/32", + "8.140.2.12/32", + "8.140.2.14/32", + "8.140.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.2.2/32", + "8.140.2.4/32", + "8.140.2.6/32", + "8.140.2.8/32", + "8.140.2.10/32", + "8.140.2.12/32", + "8.140.2.14/32", + "8.140.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.140.4.1/32", + "8.140.4.3/32", + "8.140.4.5/32", + "8.140.4.7/32", + "8.140.4.9/32", + "8.140.4.11/32", + "8.140.4.13/32", + "8.140.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.4.1/32", + "8.140.4.3/32", + "8.140.4.5/32", + "8.140.4.7/32", + "8.140.4.9/32", + "8.140.4.11/32", + "8.140.4.13/32", + "8.140.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.140.4.2/32", + "8.140.4.4/32", + "8.140.4.6/32", + "8.140.4.8/32", + "8.140.4.10/32", + "8.140.4.12/32", + "8.140.4.14/32", + "8.140.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.4.2/32", + "8.140.4.4/32", + "8.140.4.6/32", + "8.140.4.8/32", + "8.140.4.10/32", + "8.140.4.12/32", + "8.140.4.14/32", + "8.140.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.140.6.1/32", + "8.140.6.3/32", + "8.140.6.5/32", + "8.140.6.7/32", + "8.140.6.9/32", + "8.140.6.11/32", + "8.140.6.13/32", + "8.140.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.6.1/32", + "8.140.6.3/32", + "8.140.6.5/32", + "8.140.6.7/32", + "8.140.6.9/32", + "8.140.6.11/32", + "8.140.6.13/32", + "8.140.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.140.6.2/32", + "8.140.6.4/32", + "8.140.6.6/32", + "8.140.6.8/32", + "8.140.6.10/32", + "8.140.6.12/32", + "8.140.6.14/32", + "8.140.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.6.2/32", + "8.140.6.4/32", + "8.140.6.6/32", + "8.140.6.8/32", + "8.140.6.10/32", + "8.140.6.12/32", + "8.140.6.14/32", + "8.140.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.140.8.1/32", + "8.140.8.3/32", + "8.140.8.5/32", + "8.140.8.7/32", + "8.140.8.9/32", + "8.140.8.11/32", + "8.140.8.13/32", + "8.140.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.8.1/32", + "8.140.8.3/32", + "8.140.8.5/32", + "8.140.8.7/32", + "8.140.8.9/32", + "8.140.8.11/32", + "8.140.8.13/32", + "8.140.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.140.8.2/32", + "8.140.8.4/32", + "8.140.8.6/32", + "8.140.8.8/32", + "8.140.8.10/32", + "8.140.8.12/32", + "8.140.8.14/32", + "8.140.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.8.2/32", + "8.140.8.4/32", + "8.140.8.6/32", + "8.140.8.8/32", + "8.140.8.10/32", + "8.140.8.12/32", + "8.140.8.14/32", + "8.140.8.16/32", + "8.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8005": { + "acl-group-id": "acl-group-8005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.144.0.1/32", + "8.144.0.3/32", + "8.144.0.5/32", + "8.144.0.7/32", + "8.144.0.9/32", + "8.144.0.11/32", + "8.144.0.13/32", + "8.144.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.0.1/32", + "8.144.0.3/32", + "8.144.0.5/32", + "8.144.0.7/32", + "8.144.0.9/32", + "8.144.0.11/32", + "8.144.0.13/32", + "8.144.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.144.0.2/32", + "8.144.0.4/32", + "8.144.0.6/32", + "8.144.0.8/32", + "8.144.0.10/32", + "8.144.0.12/32", + "8.144.0.14/32", + "8.144.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.0.2/32", + "8.144.0.4/32", + "8.144.0.6/32", + "8.144.0.8/32", + "8.144.0.10/32", + "8.144.0.12/32", + "8.144.0.14/32", + "8.144.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.144.2.1/32", + "8.144.2.3/32", + "8.144.2.5/32", + "8.144.2.7/32", + "8.144.2.9/32", + "8.144.2.11/32", + "8.144.2.13/32", + "8.144.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.2.1/32", + "8.144.2.3/32", + "8.144.2.5/32", + "8.144.2.7/32", + "8.144.2.9/32", + "8.144.2.11/32", + "8.144.2.13/32", + "8.144.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.144.2.2/32", + "8.144.2.4/32", + "8.144.2.6/32", + "8.144.2.8/32", + "8.144.2.10/32", + "8.144.2.12/32", + "8.144.2.14/32", + "8.144.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.2.2/32", + "8.144.2.4/32", + "8.144.2.6/32", + "8.144.2.8/32", + "8.144.2.10/32", + "8.144.2.12/32", + "8.144.2.14/32", + "8.144.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.144.4.1/32", + "8.144.4.3/32", + "8.144.4.5/32", + "8.144.4.7/32", + "8.144.4.9/32", + "8.144.4.11/32", + "8.144.4.13/32", + "8.144.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.4.1/32", + "8.144.4.3/32", + "8.144.4.5/32", + "8.144.4.7/32", + "8.144.4.9/32", + "8.144.4.11/32", + "8.144.4.13/32", + "8.144.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.144.4.2/32", + "8.144.4.4/32", + "8.144.4.6/32", + "8.144.4.8/32", + "8.144.4.10/32", + "8.144.4.12/32", + "8.144.4.14/32", + "8.144.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.4.2/32", + "8.144.4.4/32", + "8.144.4.6/32", + "8.144.4.8/32", + "8.144.4.10/32", + "8.144.4.12/32", + "8.144.4.14/32", + "8.144.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.144.6.1/32", + "8.144.6.3/32", + "8.144.6.5/32", + "8.144.6.7/32", + "8.144.6.9/32", + "8.144.6.11/32", + "8.144.6.13/32", + "8.144.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.6.1/32", + "8.144.6.3/32", + "8.144.6.5/32", + "8.144.6.7/32", + "8.144.6.9/32", + "8.144.6.11/32", + "8.144.6.13/32", + "8.144.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.144.6.2/32", + "8.144.6.4/32", + "8.144.6.6/32", + "8.144.6.8/32", + "8.144.6.10/32", + "8.144.6.12/32", + "8.144.6.14/32", + "8.144.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.6.2/32", + "8.144.6.4/32", + "8.144.6.6/32", + "8.144.6.8/32", + "8.144.6.10/32", + "8.144.6.12/32", + "8.144.6.14/32", + "8.144.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.144.8.1/32", + "8.144.8.3/32", + "8.144.8.5/32", + "8.144.8.7/32", + "8.144.8.9/32", + "8.144.8.11/32", + "8.144.8.13/32", + "8.144.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.8.1/32", + "8.144.8.3/32", + "8.144.8.5/32", + "8.144.8.7/32", + "8.144.8.9/32", + "8.144.8.11/32", + "8.144.8.13/32", + "8.144.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.144.8.2/32", + "8.144.8.4/32", + "8.144.8.6/32", + "8.144.8.8/32", + "8.144.8.10/32", + "8.144.8.12/32", + "8.144.8.14/32", + "8.144.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.8.2/32", + "8.144.8.4/32", + "8.144.8.6/32", + "8.144.8.8/32", + "8.144.8.10/32", + "8.144.8.12/32", + "8.144.8.14/32", + "8.144.8.16/32", + "8.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8006": { + "acl-group-id": "acl-group-8006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.148.0.1/32", + "8.148.0.3/32", + "8.148.0.5/32", + "8.148.0.7/32", + "8.148.0.9/32", + "8.148.0.11/32", + "8.148.0.13/32", + "8.148.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.0.1/32", + "8.148.0.3/32", + "8.148.0.5/32", + "8.148.0.7/32", + "8.148.0.9/32", + "8.148.0.11/32", + "8.148.0.13/32", + "8.148.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.148.0.2/32", + "8.148.0.4/32", + "8.148.0.6/32", + "8.148.0.8/32", + "8.148.0.10/32", + "8.148.0.12/32", + "8.148.0.14/32", + "8.148.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.0.2/32", + "8.148.0.4/32", + "8.148.0.6/32", + "8.148.0.8/32", + "8.148.0.10/32", + "8.148.0.12/32", + "8.148.0.14/32", + "8.148.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.148.2.1/32", + "8.148.2.3/32", + "8.148.2.5/32", + "8.148.2.7/32", + "8.148.2.9/32", + "8.148.2.11/32", + "8.148.2.13/32", + "8.148.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.2.1/32", + "8.148.2.3/32", + "8.148.2.5/32", + "8.148.2.7/32", + "8.148.2.9/32", + "8.148.2.11/32", + "8.148.2.13/32", + "8.148.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.148.2.2/32", + "8.148.2.4/32", + "8.148.2.6/32", + "8.148.2.8/32", + "8.148.2.10/32", + "8.148.2.12/32", + "8.148.2.14/32", + "8.148.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.2.2/32", + "8.148.2.4/32", + "8.148.2.6/32", + "8.148.2.8/32", + "8.148.2.10/32", + "8.148.2.12/32", + "8.148.2.14/32", + "8.148.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.148.4.1/32", + "8.148.4.3/32", + "8.148.4.5/32", + "8.148.4.7/32", + "8.148.4.9/32", + "8.148.4.11/32", + "8.148.4.13/32", + "8.148.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.4.1/32", + "8.148.4.3/32", + "8.148.4.5/32", + "8.148.4.7/32", + "8.148.4.9/32", + "8.148.4.11/32", + "8.148.4.13/32", + "8.148.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.148.4.2/32", + "8.148.4.4/32", + "8.148.4.6/32", + "8.148.4.8/32", + "8.148.4.10/32", + "8.148.4.12/32", + "8.148.4.14/32", + "8.148.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.4.2/32", + "8.148.4.4/32", + "8.148.4.6/32", + "8.148.4.8/32", + "8.148.4.10/32", + "8.148.4.12/32", + "8.148.4.14/32", + "8.148.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.148.6.1/32", + "8.148.6.3/32", + "8.148.6.5/32", + "8.148.6.7/32", + "8.148.6.9/32", + "8.148.6.11/32", + "8.148.6.13/32", + "8.148.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.6.1/32", + "8.148.6.3/32", + "8.148.6.5/32", + "8.148.6.7/32", + "8.148.6.9/32", + "8.148.6.11/32", + "8.148.6.13/32", + "8.148.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.148.6.2/32", + "8.148.6.4/32", + "8.148.6.6/32", + "8.148.6.8/32", + "8.148.6.10/32", + "8.148.6.12/32", + "8.148.6.14/32", + "8.148.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.6.2/32", + "8.148.6.4/32", + "8.148.6.6/32", + "8.148.6.8/32", + "8.148.6.10/32", + "8.148.6.12/32", + "8.148.6.14/32", + "8.148.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.148.8.1/32", + "8.148.8.3/32", + "8.148.8.5/32", + "8.148.8.7/32", + "8.148.8.9/32", + "8.148.8.11/32", + "8.148.8.13/32", + "8.148.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.8.1/32", + "8.148.8.3/32", + "8.148.8.5/32", + "8.148.8.7/32", + "8.148.8.9/32", + "8.148.8.11/32", + "8.148.8.13/32", + "8.148.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.148.8.2/32", + "8.148.8.4/32", + "8.148.8.6/32", + "8.148.8.8/32", + "8.148.8.10/32", + "8.148.8.12/32", + "8.148.8.14/32", + "8.148.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.8.2/32", + "8.148.8.4/32", + "8.148.8.6/32", + "8.148.8.8/32", + "8.148.8.10/32", + "8.148.8.12/32", + "8.148.8.14/32", + "8.148.8.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "8.1.0.1/32", + "8.128.0.1/14", + "8.132.0.1/14", + "8.136.0.1/14" + ], + "dst_addrs": [ + "8.1.0.1/32", + "8.128.0.1/14", + "8.132.0.1/14", + "8.136.0.1/14" + ] + } + ] + } + } + ], + "vpc": [ + { + "VPC:1": { + "vpc-id": "vpc-1", + "vni-key": 1, + "encap": "vxlan", + "address_spaces": [ + "1.1.0.1/32" + ] + } + }, + { + "VPC:101": { + "vpc-id": "vpc-101", + "vni-key": 101, + "encap": "vxlan", + "address_spaces": [ + "1.128.0.1/9" + ] + } + }, + { + "VPC:2": { + "vpc-id": "vpc-2", + "vni-key": 2, + "encap": "vxlan", + "address_spaces": [ + "2.1.0.1/32" + ] + } + }, + { + "VPC:102": { + "vpc-id": "vpc-102", + "vni-key": 102, + "encap": "vxlan", + "address_spaces": [ + "2.128.0.1/9" + ] + } + }, + { + "VPC:3": { + "vpc-id": "vpc-3", + "vni-key": 3, + "encap": "vxlan", + "address_spaces": [ + "3.1.0.1/32" + ] + } + }, + { + "VPC:103": { + "vpc-id": "vpc-103", + "vni-key": 103, + "encap": "vxlan", + "address_spaces": [ + "3.128.0.1/9" + ] + } + }, + { + "VPC:4": { + "vpc-id": "vpc-4", + "vni-key": 4, + "encap": "vxlan", + "address_spaces": [ + "4.1.0.1/32" + ] + } + }, + { + "VPC:104": { + "vpc-id": "vpc-104", + "vni-key": 104, + "encap": "vxlan", + "address_spaces": [ + "4.128.0.1/9" + ] + } + }, + { + "VPC:5": { + "vpc-id": "vpc-5", + "vni-key": 5, + "encap": "vxlan", + "address_spaces": [ + "5.1.0.1/32" + ] + } + }, + { + "VPC:105": { + "vpc-id": "vpc-105", + "vni-key": 105, + "encap": "vxlan", + "address_spaces": [ + "5.128.0.1/9" + ] + } + }, + { + "VPC:6": { + "vpc-id": "vpc-6", + "vni-key": 6, + "encap": "vxlan", + "address_spaces": [ + "6.1.0.1/32" + ] + } + }, + { + "VPC:106": { + "vpc-id": "vpc-106", + "vni-key": 106, + "encap": "vxlan", + "address_spaces": [ + "6.128.0.1/9" + ] + } + }, + { + "VPC:7": { + "vpc-id": "vpc-7", + "vni-key": 7, + "encap": "vxlan", + "address_spaces": [ + "7.1.0.1/32" + ] + } + }, + { + "VPC:107": { + "vpc-id": "vpc-107", + "vni-key": 107, + "encap": "vxlan", + "address_spaces": [ + "7.128.0.1/9" + ] + } + }, + { + "VPC:8": { + "vpc-id": "vpc-8", + "vni-key": 8, + "encap": "vxlan", + "address_spaces": [ + "8.1.0.1/32" + ] + } + }, + { + "VPC:108": { + "vpc-id": "vpc-108", + "vni-key": 108, + "encap": "vxlan", + "address_spaces": [ + "8.128.0.1/9" + ] + } + } + ], + "vpc-mappings-routing-types": [ + [ + "vpc", + "privatelink", + "privatelinknsg" + ] + ], + "vpc-mappings": [ + { + "MAPPINGS:VPC:1": { + "vpc-id": "vpc-1", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.1.0.1", + "underlay-ip-address": "221.0.1.1", + "mac": "00:1A:C5:00:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:101": { + "vpc-id": "vpc-101", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:2": { + "vpc-id": "vpc-2", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.1.0.1", + "underlay-ip-address": "221.0.1.2", + "mac": "00:1A:C5:18:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:102": { + "vpc-id": "vpc-102", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:3": { + "vpc-id": "vpc-3", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.1.0.1", + "underlay-ip-address": "221.0.1.3", + "mac": "00:1A:C5:30:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:103": { + "vpc-id": "vpc-103", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:4": { + "vpc-id": "vpc-4", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.1.0.1", + "underlay-ip-address": "221.0.1.4", + "mac": "00:1A:C5:48:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:104": { + "vpc-id": "vpc-104", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:5": { + "vpc-id": "vpc-5", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.1.0.1", + "underlay-ip-address": "221.0.1.5", + "mac": "00:1A:C5:60:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:105": { + "vpc-id": "vpc-105", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:6": { + "vpc-id": "vpc-6", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.1.0.1", + "underlay-ip-address": "221.0.1.6", + "mac": "00:1A:C5:78:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:106": { + "vpc-id": "vpc-106", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:7": { + "vpc-id": "vpc-7", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.1.0.1", + "underlay-ip-address": "221.0.1.7", + "mac": "00:1A:C5:90:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:107": { + "vpc-id": "vpc-107", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:8": { + "vpc-id": "vpc-8", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.1.0.1", + "underlay-ip-address": "221.0.1.8", + "mac": "00:1A:C5:A8:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:108": { + "vpc-id": "vpc-108", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:09:02" + } + ] + } + } + ], + "routing-appliances": [ + { + "ROUTING-APPLIANCE:1": { + "appliance-id": "appliance-1", + "routing-appliance-id": 1, + "routing-appliance-addresses": [ + "1.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 1 + } + }, + { + "ROUTING-APPLIANCE:101": { + "appliance-id": "appliance-101", + "routing-appliance-id": 101, + "routing-appliance-addresses": [ + "1.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 101 + } + }, + { + "ROUTING-APPLIANCE:2": { + "appliance-id": "appliance-2", + "routing-appliance-id": 2, + "routing-appliance-addresses": [ + "2.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 2 + } + }, + { + "ROUTING-APPLIANCE:102": { + "appliance-id": "appliance-102", + "routing-appliance-id": 102, + "routing-appliance-addresses": [ + "2.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 102 + } + }, + { + "ROUTING-APPLIANCE:3": { + "appliance-id": "appliance-3", + "routing-appliance-id": 3, + "routing-appliance-addresses": [ + "3.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 3 + } + }, + { + "ROUTING-APPLIANCE:103": { + "appliance-id": "appliance-103", + "routing-appliance-id": 103, + "routing-appliance-addresses": [ + "3.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 103 + } + }, + { + "ROUTING-APPLIANCE:4": { + "appliance-id": "appliance-4", + "routing-appliance-id": 4, + "routing-appliance-addresses": [ + "4.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 4 + } + }, + { + "ROUTING-APPLIANCE:104": { + "appliance-id": "appliance-104", + "routing-appliance-id": 104, + "routing-appliance-addresses": [ + "4.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 104 + } + }, + { + "ROUTING-APPLIANCE:5": { + "appliance-id": "appliance-5", + "routing-appliance-id": 5, + "routing-appliance-addresses": [ + "5.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 5 + } + }, + { + "ROUTING-APPLIANCE:105": { + "appliance-id": "appliance-105", + "routing-appliance-id": 105, + "routing-appliance-addresses": [ + "5.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 105 + } + }, + { + "ROUTING-APPLIANCE:6": { + "appliance-id": "appliance-6", + "routing-appliance-id": 6, + "routing-appliance-addresses": [ + "6.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 6 + } + }, + { + "ROUTING-APPLIANCE:106": { + "appliance-id": "appliance-106", + "routing-appliance-id": 106, + "routing-appliance-addresses": [ + "6.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 106 + } + }, + { + "ROUTING-APPLIANCE:7": { + "appliance-id": "appliance-7", + "routing-appliance-id": 7, + "routing-appliance-addresses": [ + "7.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 7 + } + }, + { + "ROUTING-APPLIANCE:107": { + "appliance-id": "appliance-107", + "routing-appliance-id": 107, + "routing-appliance-addresses": [ + "7.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 107 + } + }, + { + "ROUTING-APPLIANCE:8": { + "appliance-id": "appliance-8", + "routing-appliance-id": 8, + "routing-appliance-addresses": [ + "8.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 8 + } + }, + { + "ROUTING-APPLIANCE:108": { + "appliance-id": "appliance-108", + "routing-appliance-id": 108, + "routing-appliance-addresses": [ + "8.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 108 + } + } + ], + "route-tables": [ + { + "ROUTE-TABLE:1": { + "route-table-id": "route-table-1", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "1.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-1" + } + }, + { + "ip-prefixes": [ + "1.128.0.0/31", + "1.128.0.3/32", + "1.128.0.4/31", + "1.128.0.7/32", + "1.128.1.0/31", + "1.128.1.3/32", + "1.128.1.4/31", + "1.128.1.7/32", + "1.128.2.0/31", + "1.128.2.3/32", + "1.128.2.4/31", + "1.128.2.7/32", + "1.128.3.0/31", + "1.128.3.3/32", + "1.128.3.4/31", + "1.128.3.7/32", + "1.128.4.0/31", + "1.128.4.3/32", + "1.128.4.4/31", + "1.128.4.7/32", + "1.128.5.0/31", + "1.128.5.3/32", + "1.128.5.4/31", + "1.128.5.7/32", + "1.128.6.0/31", + "1.128.6.3/32", + "1.128.6.4/31", + "1.128.6.7/32", + "1.128.7.0/31", + "1.128.7.3/32", + "1.128.7.4/31", + "1.128.7.7/32", + "1.128.8.0/31", + "1.128.8.3/32", + "1.128.8.4/31", + "1.128.8.7/32", + "1.128.9.0/31", + "1.128.9.3/32", + "1.128.9.4/31", + "1.128.9.7/32", + "1.132.0.0/31", + "1.132.0.3/32", + "1.132.0.4/31", + "1.132.0.7/32", + "1.132.1.0/31", + "1.132.1.3/32", + "1.132.1.4/31", + "1.132.1.7/32", + "1.132.2.0/31", + "1.132.2.3/32", + "1.132.2.4/31", + "1.132.2.7/32", + "1.132.3.0/31", + "1.132.3.3/32", + "1.132.3.4/31", + "1.132.3.7/32", + "1.132.4.0/31", + "1.132.4.3/32", + "1.132.4.4/31", + "1.132.4.7/32", + "1.132.5.0/31", + "1.132.5.3/32", + "1.132.5.4/31", + "1.132.5.7/32", + "1.132.6.0/31", + "1.132.6.3/32", + "1.132.6.4/31", + "1.132.6.7/32", + "1.132.7.0/31", + "1.132.7.3/32", + "1.132.7.4/31", + "1.132.7.7/32", + "1.132.8.0/31", + "1.132.8.3/32", + "1.132.8.4/31", + "1.132.8.7/32", + "1.132.9.0/31", + "1.132.9.3/32", + "1.132.9.4/31", + "1.132.9.7/32", + "1.136.0.0/31", + "1.136.0.3/32", + "1.136.0.4/31", + "1.136.0.7/32", + "1.136.1.0/31", + "1.136.1.3/32", + "1.136.1.4/31", + "1.136.1.7/32", + "1.136.2.0/31", + "1.136.2.3/32", + "1.136.2.4/31", + "1.136.2.7/32", + "1.136.3.0/31", + "1.136.3.3/32", + "1.136.3.4/31", + "1.136.3.7/32", + "1.136.4.0/31", + "1.136.4.3/32", + "1.136.4.4/31", + "1.136.4.7/32", + "1.136.5.0/31", + "1.136.5.3/32", + "1.136.5.4/31", + "1.136.5.7/32", + "1.136.6.0/31", + "1.136.6.3/32", + "1.136.6.4/31", + "1.136.6.7/32", + "1.136.7.0/31", + "1.136.7.3/32", + "1.136.7.4/31", + "1.136.7.7/32", + "1.136.8.0/31", + "1.136.8.3/32", + "1.136.8.4/31", + "1.136.8.7/32", + "1.136.9.0/31", + "1.136.9.3/32", + "1.136.9.4/31", + "1.136.9.7/32", + "1.140.0.0/31", + "1.140.0.3/32", + "1.140.0.4/31", + "1.140.0.7/32", + "1.140.1.0/31", + "1.140.1.3/32", + "1.140.1.4/31", + "1.140.1.7/32", + "1.140.2.0/31", + "1.140.2.3/32", + "1.140.2.4/31", + "1.140.2.7/32", + "1.140.3.0/31", + "1.140.3.3/32", + "1.140.3.4/31", + "1.140.3.7/32", + "1.140.4.0/31", + "1.140.4.3/32", + "1.140.4.4/31", + "1.140.4.7/32", + "1.140.5.0/31", + "1.140.5.3/32", + "1.140.5.4/31", + "1.140.5.7/32", + "1.140.6.0/31", + "1.140.6.3/32", + "1.140.6.4/31", + "1.140.6.7/32", + "1.140.7.0/31", + "1.140.7.3/32", + "1.140.7.4/31", + "1.140.7.7/32", + "1.140.8.0/31", + "1.140.8.3/32", + "1.140.8.4/31", + "1.140.8.7/32", + "1.140.9.0/31", + "1.140.9.3/32", + "1.140.9.4/31", + "1.140.9.7/32", + "1.144.0.0/31", + "1.144.0.3/32", + "1.144.0.4/31", + "1.144.0.7/32", + "1.144.1.0/31", + "1.144.1.3/32", + "1.144.1.4/31", + "1.144.1.7/32", + "1.144.2.0/31", + "1.144.2.3/32", + "1.144.2.4/31", + "1.144.2.7/32", + "1.144.3.0/31", + "1.144.3.3/32", + "1.144.3.4/31", + "1.144.3.7/32", + "1.144.4.0/31", + "1.144.4.3/32", + "1.144.4.4/31", + "1.144.4.7/32", + "1.144.5.0/31", + "1.144.5.3/32", + "1.144.5.4/31", + "1.144.5.7/32", + "1.144.6.0/31", + "1.144.6.3/32", + "1.144.6.4/31", + "1.144.6.7/32", + "1.144.7.0/31", + "1.144.7.3/32", + "1.144.7.4/31", + "1.144.7.7/32", + "1.144.8.0/31", + "1.144.8.3/32", + "1.144.8.4/31", + "1.144.8.7/32", + "1.144.9.0/31", + "1.144.9.3/32", + "1.144.9.4/31", + "1.144.9.7/32", + "1.148.0.0/31", + "1.148.0.3/32", + "1.148.0.4/31", + "1.148.0.7/32", + "1.148.1.0/31", + "1.148.1.3/32", + "1.148.1.4/31", + "1.148.1.7/32", + "1.148.2.0/31", + "1.148.2.3/32", + "1.148.2.4/31", + "1.148.2.7/32", + "1.148.3.0/31", + "1.148.3.3/32", + "1.148.3.4/31", + "1.148.3.7/32", + "1.148.4.0/31", + "1.148.4.3/32", + "1.148.4.4/31", + "1.148.4.7/32", + "1.148.5.0/31", + "1.148.5.3/32", + "1.148.5.4/31", + "1.148.5.7/32", + "1.148.6.0/31", + "1.148.6.3/32", + "1.148.6.4/31", + "1.148.6.7/32", + "1.148.7.0/31", + "1.148.7.3/32", + "1.148.7.4/31", + "1.148.7.7/32", + "1.148.8.0/31", + "1.148.8.3/32", + "1.148.8.4/31", + "1.148.8.7/32", + "1.148.9.0/31", + "1.148.9.3/32", + "1.148.9.4/31", + "1.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-101" + } + } + ] + } + }, + { + "ROUTE-TABLE:2": { + "route-table-id": "route-table-2", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "2.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-2" + } + }, + { + "ip-prefixes": [ + "2.128.0.0/31", + "2.128.0.3/32", + "2.128.0.4/31", + "2.128.0.7/32", + "2.128.1.0/31", + "2.128.1.3/32", + "2.128.1.4/31", + "2.128.1.7/32", + "2.128.2.0/31", + "2.128.2.3/32", + "2.128.2.4/31", + "2.128.2.7/32", + "2.128.3.0/31", + "2.128.3.3/32", + "2.128.3.4/31", + "2.128.3.7/32", + "2.128.4.0/31", + "2.128.4.3/32", + "2.128.4.4/31", + "2.128.4.7/32", + "2.128.5.0/31", + "2.128.5.3/32", + "2.128.5.4/31", + "2.128.5.7/32", + "2.128.6.0/31", + "2.128.6.3/32", + "2.128.6.4/31", + "2.128.6.7/32", + "2.128.7.0/31", + "2.128.7.3/32", + "2.128.7.4/31", + "2.128.7.7/32", + "2.128.8.0/31", + "2.128.8.3/32", + "2.128.8.4/31", + "2.128.8.7/32", + "2.128.9.0/31", + "2.128.9.3/32", + "2.128.9.4/31", + "2.128.9.7/32", + "2.132.0.0/31", + "2.132.0.3/32", + "2.132.0.4/31", + "2.132.0.7/32", + "2.132.1.0/31", + "2.132.1.3/32", + "2.132.1.4/31", + "2.132.1.7/32", + "2.132.2.0/31", + "2.132.2.3/32", + "2.132.2.4/31", + "2.132.2.7/32", + "2.132.3.0/31", + "2.132.3.3/32", + "2.132.3.4/31", + "2.132.3.7/32", + "2.132.4.0/31", + "2.132.4.3/32", + "2.132.4.4/31", + "2.132.4.7/32", + "2.132.5.0/31", + "2.132.5.3/32", + "2.132.5.4/31", + "2.132.5.7/32", + "2.132.6.0/31", + "2.132.6.3/32", + "2.132.6.4/31", + "2.132.6.7/32", + "2.132.7.0/31", + "2.132.7.3/32", + "2.132.7.4/31", + "2.132.7.7/32", + "2.132.8.0/31", + "2.132.8.3/32", + "2.132.8.4/31", + "2.132.8.7/32", + "2.132.9.0/31", + "2.132.9.3/32", + "2.132.9.4/31", + "2.132.9.7/32", + "2.136.0.0/31", + "2.136.0.3/32", + "2.136.0.4/31", + "2.136.0.7/32", + "2.136.1.0/31", + "2.136.1.3/32", + "2.136.1.4/31", + "2.136.1.7/32", + "2.136.2.0/31", + "2.136.2.3/32", + "2.136.2.4/31", + "2.136.2.7/32", + "2.136.3.0/31", + "2.136.3.3/32", + "2.136.3.4/31", + "2.136.3.7/32", + "2.136.4.0/31", + "2.136.4.3/32", + "2.136.4.4/31", + "2.136.4.7/32", + "2.136.5.0/31", + "2.136.5.3/32", + "2.136.5.4/31", + "2.136.5.7/32", + "2.136.6.0/31", + "2.136.6.3/32", + "2.136.6.4/31", + "2.136.6.7/32", + "2.136.7.0/31", + "2.136.7.3/32", + "2.136.7.4/31", + "2.136.7.7/32", + "2.136.8.0/31", + "2.136.8.3/32", + "2.136.8.4/31", + "2.136.8.7/32", + "2.136.9.0/31", + "2.136.9.3/32", + "2.136.9.4/31", + "2.136.9.7/32", + "2.140.0.0/31", + "2.140.0.3/32", + "2.140.0.4/31", + "2.140.0.7/32", + "2.140.1.0/31", + "2.140.1.3/32", + "2.140.1.4/31", + "2.140.1.7/32", + "2.140.2.0/31", + "2.140.2.3/32", + "2.140.2.4/31", + "2.140.2.7/32", + "2.140.3.0/31", + "2.140.3.3/32", + "2.140.3.4/31", + "2.140.3.7/32", + "2.140.4.0/31", + "2.140.4.3/32", + "2.140.4.4/31", + "2.140.4.7/32", + "2.140.5.0/31", + "2.140.5.3/32", + "2.140.5.4/31", + "2.140.5.7/32", + "2.140.6.0/31", + "2.140.6.3/32", + "2.140.6.4/31", + "2.140.6.7/32", + "2.140.7.0/31", + "2.140.7.3/32", + "2.140.7.4/31", + "2.140.7.7/32", + "2.140.8.0/31", + "2.140.8.3/32", + "2.140.8.4/31", + "2.140.8.7/32", + "2.140.9.0/31", + "2.140.9.3/32", + "2.140.9.4/31", + "2.140.9.7/32", + "2.144.0.0/31", + "2.144.0.3/32", + "2.144.0.4/31", + "2.144.0.7/32", + "2.144.1.0/31", + "2.144.1.3/32", + "2.144.1.4/31", + "2.144.1.7/32", + "2.144.2.0/31", + "2.144.2.3/32", + "2.144.2.4/31", + "2.144.2.7/32", + "2.144.3.0/31", + "2.144.3.3/32", + "2.144.3.4/31", + "2.144.3.7/32", + "2.144.4.0/31", + "2.144.4.3/32", + "2.144.4.4/31", + "2.144.4.7/32", + "2.144.5.0/31", + "2.144.5.3/32", + "2.144.5.4/31", + "2.144.5.7/32", + "2.144.6.0/31", + "2.144.6.3/32", + "2.144.6.4/31", + "2.144.6.7/32", + "2.144.7.0/31", + "2.144.7.3/32", + "2.144.7.4/31", + "2.144.7.7/32", + "2.144.8.0/31", + "2.144.8.3/32", + "2.144.8.4/31", + "2.144.8.7/32", + "2.144.9.0/31", + "2.144.9.3/32", + "2.144.9.4/31", + "2.144.9.7/32", + "2.148.0.0/31", + "2.148.0.3/32", + "2.148.0.4/31", + "2.148.0.7/32", + "2.148.1.0/31", + "2.148.1.3/32", + "2.148.1.4/31", + "2.148.1.7/32", + "2.148.2.0/31", + "2.148.2.3/32", + "2.148.2.4/31", + "2.148.2.7/32", + "2.148.3.0/31", + "2.148.3.3/32", + "2.148.3.4/31", + "2.148.3.7/32", + "2.148.4.0/31", + "2.148.4.3/32", + "2.148.4.4/31", + "2.148.4.7/32", + "2.148.5.0/31", + "2.148.5.3/32", + "2.148.5.4/31", + "2.148.5.7/32", + "2.148.6.0/31", + "2.148.6.3/32", + "2.148.6.4/31", + "2.148.6.7/32", + "2.148.7.0/31", + "2.148.7.3/32", + "2.148.7.4/31", + "2.148.7.7/32", + "2.148.8.0/31", + "2.148.8.3/32", + "2.148.8.4/31", + "2.148.8.7/32", + "2.148.9.0/31", + "2.148.9.3/32", + "2.148.9.4/31", + "2.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-102" + } + } + ] + } + }, + { + "ROUTE-TABLE:3": { + "route-table-id": "route-table-3", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "3.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-3" + } + }, + { + "ip-prefixes": [ + "3.128.0.0/31", + "3.128.0.3/32", + "3.128.0.4/31", + "3.128.0.7/32", + "3.128.1.0/31", + "3.128.1.3/32", + "3.128.1.4/31", + "3.128.1.7/32", + "3.128.2.0/31", + "3.128.2.3/32", + "3.128.2.4/31", + "3.128.2.7/32", + "3.128.3.0/31", + "3.128.3.3/32", + "3.128.3.4/31", + "3.128.3.7/32", + "3.128.4.0/31", + "3.128.4.3/32", + "3.128.4.4/31", + "3.128.4.7/32", + "3.128.5.0/31", + "3.128.5.3/32", + "3.128.5.4/31", + "3.128.5.7/32", + "3.128.6.0/31", + "3.128.6.3/32", + "3.128.6.4/31", + "3.128.6.7/32", + "3.128.7.0/31", + "3.128.7.3/32", + "3.128.7.4/31", + "3.128.7.7/32", + "3.128.8.0/31", + "3.128.8.3/32", + "3.128.8.4/31", + "3.128.8.7/32", + "3.128.9.0/31", + "3.128.9.3/32", + "3.128.9.4/31", + "3.128.9.7/32", + "3.132.0.0/31", + "3.132.0.3/32", + "3.132.0.4/31", + "3.132.0.7/32", + "3.132.1.0/31", + "3.132.1.3/32", + "3.132.1.4/31", + "3.132.1.7/32", + "3.132.2.0/31", + "3.132.2.3/32", + "3.132.2.4/31", + "3.132.2.7/32", + "3.132.3.0/31", + "3.132.3.3/32", + "3.132.3.4/31", + "3.132.3.7/32", + "3.132.4.0/31", + "3.132.4.3/32", + "3.132.4.4/31", + "3.132.4.7/32", + "3.132.5.0/31", + "3.132.5.3/32", + "3.132.5.4/31", + "3.132.5.7/32", + "3.132.6.0/31", + "3.132.6.3/32", + "3.132.6.4/31", + "3.132.6.7/32", + "3.132.7.0/31", + "3.132.7.3/32", + "3.132.7.4/31", + "3.132.7.7/32", + "3.132.8.0/31", + "3.132.8.3/32", + "3.132.8.4/31", + "3.132.8.7/32", + "3.132.9.0/31", + "3.132.9.3/32", + "3.132.9.4/31", + "3.132.9.7/32", + "3.136.0.0/31", + "3.136.0.3/32", + "3.136.0.4/31", + "3.136.0.7/32", + "3.136.1.0/31", + "3.136.1.3/32", + "3.136.1.4/31", + "3.136.1.7/32", + "3.136.2.0/31", + "3.136.2.3/32", + "3.136.2.4/31", + "3.136.2.7/32", + "3.136.3.0/31", + "3.136.3.3/32", + "3.136.3.4/31", + "3.136.3.7/32", + "3.136.4.0/31", + "3.136.4.3/32", + "3.136.4.4/31", + "3.136.4.7/32", + "3.136.5.0/31", + "3.136.5.3/32", + "3.136.5.4/31", + "3.136.5.7/32", + "3.136.6.0/31", + "3.136.6.3/32", + "3.136.6.4/31", + "3.136.6.7/32", + "3.136.7.0/31", + "3.136.7.3/32", + "3.136.7.4/31", + "3.136.7.7/32", + "3.136.8.0/31", + "3.136.8.3/32", + "3.136.8.4/31", + "3.136.8.7/32", + "3.136.9.0/31", + "3.136.9.3/32", + "3.136.9.4/31", + "3.136.9.7/32", + "3.140.0.0/31", + "3.140.0.3/32", + "3.140.0.4/31", + "3.140.0.7/32", + "3.140.1.0/31", + "3.140.1.3/32", + "3.140.1.4/31", + "3.140.1.7/32", + "3.140.2.0/31", + "3.140.2.3/32", + "3.140.2.4/31", + "3.140.2.7/32", + "3.140.3.0/31", + "3.140.3.3/32", + "3.140.3.4/31", + "3.140.3.7/32", + "3.140.4.0/31", + "3.140.4.3/32", + "3.140.4.4/31", + "3.140.4.7/32", + "3.140.5.0/31", + "3.140.5.3/32", + "3.140.5.4/31", + "3.140.5.7/32", + "3.140.6.0/31", + "3.140.6.3/32", + "3.140.6.4/31", + "3.140.6.7/32", + "3.140.7.0/31", + "3.140.7.3/32", + "3.140.7.4/31", + "3.140.7.7/32", + "3.140.8.0/31", + "3.140.8.3/32", + "3.140.8.4/31", + "3.140.8.7/32", + "3.140.9.0/31", + "3.140.9.3/32", + "3.140.9.4/31", + "3.140.9.7/32", + "3.144.0.0/31", + "3.144.0.3/32", + "3.144.0.4/31", + "3.144.0.7/32", + "3.144.1.0/31", + "3.144.1.3/32", + "3.144.1.4/31", + "3.144.1.7/32", + "3.144.2.0/31", + "3.144.2.3/32", + "3.144.2.4/31", + "3.144.2.7/32", + "3.144.3.0/31", + "3.144.3.3/32", + "3.144.3.4/31", + "3.144.3.7/32", + "3.144.4.0/31", + "3.144.4.3/32", + "3.144.4.4/31", + "3.144.4.7/32", + "3.144.5.0/31", + "3.144.5.3/32", + "3.144.5.4/31", + "3.144.5.7/32", + "3.144.6.0/31", + "3.144.6.3/32", + "3.144.6.4/31", + "3.144.6.7/32", + "3.144.7.0/31", + "3.144.7.3/32", + "3.144.7.4/31", + "3.144.7.7/32", + "3.144.8.0/31", + "3.144.8.3/32", + "3.144.8.4/31", + "3.144.8.7/32", + "3.144.9.0/31", + "3.144.9.3/32", + "3.144.9.4/31", + "3.144.9.7/32", + "3.148.0.0/31", + "3.148.0.3/32", + "3.148.0.4/31", + "3.148.0.7/32", + "3.148.1.0/31", + "3.148.1.3/32", + "3.148.1.4/31", + "3.148.1.7/32", + "3.148.2.0/31", + "3.148.2.3/32", + "3.148.2.4/31", + "3.148.2.7/32", + "3.148.3.0/31", + "3.148.3.3/32", + "3.148.3.4/31", + "3.148.3.7/32", + "3.148.4.0/31", + "3.148.4.3/32", + "3.148.4.4/31", + "3.148.4.7/32", + "3.148.5.0/31", + "3.148.5.3/32", + "3.148.5.4/31", + "3.148.5.7/32", + "3.148.6.0/31", + "3.148.6.3/32", + "3.148.6.4/31", + "3.148.6.7/32", + "3.148.7.0/31", + "3.148.7.3/32", + "3.148.7.4/31", + "3.148.7.7/32", + "3.148.8.0/31", + "3.148.8.3/32", + "3.148.8.4/31", + "3.148.8.7/32", + "3.148.9.0/31", + "3.148.9.3/32", + "3.148.9.4/31", + "3.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-103" + } + } + ] + } + }, + { + "ROUTE-TABLE:4": { + "route-table-id": "route-table-4", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "4.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-4" + } + }, + { + "ip-prefixes": [ + "4.128.0.0/31", + "4.128.0.3/32", + "4.128.0.4/31", + "4.128.0.7/32", + "4.128.1.0/31", + "4.128.1.3/32", + "4.128.1.4/31", + "4.128.1.7/32", + "4.128.2.0/31", + "4.128.2.3/32", + "4.128.2.4/31", + "4.128.2.7/32", + "4.128.3.0/31", + "4.128.3.3/32", + "4.128.3.4/31", + "4.128.3.7/32", + "4.128.4.0/31", + "4.128.4.3/32", + "4.128.4.4/31", + "4.128.4.7/32", + "4.128.5.0/31", + "4.128.5.3/32", + "4.128.5.4/31", + "4.128.5.7/32", + "4.128.6.0/31", + "4.128.6.3/32", + "4.128.6.4/31", + "4.128.6.7/32", + "4.128.7.0/31", + "4.128.7.3/32", + "4.128.7.4/31", + "4.128.7.7/32", + "4.128.8.0/31", + "4.128.8.3/32", + "4.128.8.4/31", + "4.128.8.7/32", + "4.128.9.0/31", + "4.128.9.3/32", + "4.128.9.4/31", + "4.128.9.7/32", + "4.132.0.0/31", + "4.132.0.3/32", + "4.132.0.4/31", + "4.132.0.7/32", + "4.132.1.0/31", + "4.132.1.3/32", + "4.132.1.4/31", + "4.132.1.7/32", + "4.132.2.0/31", + "4.132.2.3/32", + "4.132.2.4/31", + "4.132.2.7/32", + "4.132.3.0/31", + "4.132.3.3/32", + "4.132.3.4/31", + "4.132.3.7/32", + "4.132.4.0/31", + "4.132.4.3/32", + "4.132.4.4/31", + "4.132.4.7/32", + "4.132.5.0/31", + "4.132.5.3/32", + "4.132.5.4/31", + "4.132.5.7/32", + "4.132.6.0/31", + "4.132.6.3/32", + "4.132.6.4/31", + "4.132.6.7/32", + "4.132.7.0/31", + "4.132.7.3/32", + "4.132.7.4/31", + "4.132.7.7/32", + "4.132.8.0/31", + "4.132.8.3/32", + "4.132.8.4/31", + "4.132.8.7/32", + "4.132.9.0/31", + "4.132.9.3/32", + "4.132.9.4/31", + "4.132.9.7/32", + "4.136.0.0/31", + "4.136.0.3/32", + "4.136.0.4/31", + "4.136.0.7/32", + "4.136.1.0/31", + "4.136.1.3/32", + "4.136.1.4/31", + "4.136.1.7/32", + "4.136.2.0/31", + "4.136.2.3/32", + "4.136.2.4/31", + "4.136.2.7/32", + "4.136.3.0/31", + "4.136.3.3/32", + "4.136.3.4/31", + "4.136.3.7/32", + "4.136.4.0/31", + "4.136.4.3/32", + "4.136.4.4/31", + "4.136.4.7/32", + "4.136.5.0/31", + "4.136.5.3/32", + "4.136.5.4/31", + "4.136.5.7/32", + "4.136.6.0/31", + "4.136.6.3/32", + "4.136.6.4/31", + "4.136.6.7/32", + "4.136.7.0/31", + "4.136.7.3/32", + "4.136.7.4/31", + "4.136.7.7/32", + "4.136.8.0/31", + "4.136.8.3/32", + "4.136.8.4/31", + "4.136.8.7/32", + "4.136.9.0/31", + "4.136.9.3/32", + "4.136.9.4/31", + "4.136.9.7/32", + "4.140.0.0/31", + "4.140.0.3/32", + "4.140.0.4/31", + "4.140.0.7/32", + "4.140.1.0/31", + "4.140.1.3/32", + "4.140.1.4/31", + "4.140.1.7/32", + "4.140.2.0/31", + "4.140.2.3/32", + "4.140.2.4/31", + "4.140.2.7/32", + "4.140.3.0/31", + "4.140.3.3/32", + "4.140.3.4/31", + "4.140.3.7/32", + "4.140.4.0/31", + "4.140.4.3/32", + "4.140.4.4/31", + "4.140.4.7/32", + "4.140.5.0/31", + "4.140.5.3/32", + "4.140.5.4/31", + "4.140.5.7/32", + "4.140.6.0/31", + "4.140.6.3/32", + "4.140.6.4/31", + "4.140.6.7/32", + "4.140.7.0/31", + "4.140.7.3/32", + "4.140.7.4/31", + "4.140.7.7/32", + "4.140.8.0/31", + "4.140.8.3/32", + "4.140.8.4/31", + "4.140.8.7/32", + "4.140.9.0/31", + "4.140.9.3/32", + "4.140.9.4/31", + "4.140.9.7/32", + "4.144.0.0/31", + "4.144.0.3/32", + "4.144.0.4/31", + "4.144.0.7/32", + "4.144.1.0/31", + "4.144.1.3/32", + "4.144.1.4/31", + "4.144.1.7/32", + "4.144.2.0/31", + "4.144.2.3/32", + "4.144.2.4/31", + "4.144.2.7/32", + "4.144.3.0/31", + "4.144.3.3/32", + "4.144.3.4/31", + "4.144.3.7/32", + "4.144.4.0/31", + "4.144.4.3/32", + "4.144.4.4/31", + "4.144.4.7/32", + "4.144.5.0/31", + "4.144.5.3/32", + "4.144.5.4/31", + "4.144.5.7/32", + "4.144.6.0/31", + "4.144.6.3/32", + "4.144.6.4/31", + "4.144.6.7/32", + "4.144.7.0/31", + "4.144.7.3/32", + "4.144.7.4/31", + "4.144.7.7/32", + "4.144.8.0/31", + "4.144.8.3/32", + "4.144.8.4/31", + "4.144.8.7/32", + "4.144.9.0/31", + "4.144.9.3/32", + "4.144.9.4/31", + "4.144.9.7/32", + "4.148.0.0/31", + "4.148.0.3/32", + "4.148.0.4/31", + "4.148.0.7/32", + "4.148.1.0/31", + "4.148.1.3/32", + "4.148.1.4/31", + "4.148.1.7/32", + "4.148.2.0/31", + "4.148.2.3/32", + "4.148.2.4/31", + "4.148.2.7/32", + "4.148.3.0/31", + "4.148.3.3/32", + "4.148.3.4/31", + "4.148.3.7/32", + "4.148.4.0/31", + "4.148.4.3/32", + "4.148.4.4/31", + "4.148.4.7/32", + "4.148.5.0/31", + "4.148.5.3/32", + "4.148.5.4/31", + "4.148.5.7/32", + "4.148.6.0/31", + "4.148.6.3/32", + "4.148.6.4/31", + "4.148.6.7/32", + "4.148.7.0/31", + "4.148.7.3/32", + "4.148.7.4/31", + "4.148.7.7/32", + "4.148.8.0/31", + "4.148.8.3/32", + "4.148.8.4/31", + "4.148.8.7/32", + "4.148.9.0/31", + "4.148.9.3/32", + "4.148.9.4/31", + "4.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-104" + } + } + ] + } + }, + { + "ROUTE-TABLE:5": { + "route-table-id": "route-table-5", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "5.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-5" + } + }, + { + "ip-prefixes": [ + "5.128.0.0/31", + "5.128.0.3/32", + "5.128.0.4/31", + "5.128.0.7/32", + "5.128.1.0/31", + "5.128.1.3/32", + "5.128.1.4/31", + "5.128.1.7/32", + "5.128.2.0/31", + "5.128.2.3/32", + "5.128.2.4/31", + "5.128.2.7/32", + "5.128.3.0/31", + "5.128.3.3/32", + "5.128.3.4/31", + "5.128.3.7/32", + "5.128.4.0/31", + "5.128.4.3/32", + "5.128.4.4/31", + "5.128.4.7/32", + "5.128.5.0/31", + "5.128.5.3/32", + "5.128.5.4/31", + "5.128.5.7/32", + "5.128.6.0/31", + "5.128.6.3/32", + "5.128.6.4/31", + "5.128.6.7/32", + "5.128.7.0/31", + "5.128.7.3/32", + "5.128.7.4/31", + "5.128.7.7/32", + "5.128.8.0/31", + "5.128.8.3/32", + "5.128.8.4/31", + "5.128.8.7/32", + "5.128.9.0/31", + "5.128.9.3/32", + "5.128.9.4/31", + "5.128.9.7/32", + "5.132.0.0/31", + "5.132.0.3/32", + "5.132.0.4/31", + "5.132.0.7/32", + "5.132.1.0/31", + "5.132.1.3/32", + "5.132.1.4/31", + "5.132.1.7/32", + "5.132.2.0/31", + "5.132.2.3/32", + "5.132.2.4/31", + "5.132.2.7/32", + "5.132.3.0/31", + "5.132.3.3/32", + "5.132.3.4/31", + "5.132.3.7/32", + "5.132.4.0/31", + "5.132.4.3/32", + "5.132.4.4/31", + "5.132.4.7/32", + "5.132.5.0/31", + "5.132.5.3/32", + "5.132.5.4/31", + "5.132.5.7/32", + "5.132.6.0/31", + "5.132.6.3/32", + "5.132.6.4/31", + "5.132.6.7/32", + "5.132.7.0/31", + "5.132.7.3/32", + "5.132.7.4/31", + "5.132.7.7/32", + "5.132.8.0/31", + "5.132.8.3/32", + "5.132.8.4/31", + "5.132.8.7/32", + "5.132.9.0/31", + "5.132.9.3/32", + "5.132.9.4/31", + "5.132.9.7/32", + "5.136.0.0/31", + "5.136.0.3/32", + "5.136.0.4/31", + "5.136.0.7/32", + "5.136.1.0/31", + "5.136.1.3/32", + "5.136.1.4/31", + "5.136.1.7/32", + "5.136.2.0/31", + "5.136.2.3/32", + "5.136.2.4/31", + "5.136.2.7/32", + "5.136.3.0/31", + "5.136.3.3/32", + "5.136.3.4/31", + "5.136.3.7/32", + "5.136.4.0/31", + "5.136.4.3/32", + "5.136.4.4/31", + "5.136.4.7/32", + "5.136.5.0/31", + "5.136.5.3/32", + "5.136.5.4/31", + "5.136.5.7/32", + "5.136.6.0/31", + "5.136.6.3/32", + "5.136.6.4/31", + "5.136.6.7/32", + "5.136.7.0/31", + "5.136.7.3/32", + "5.136.7.4/31", + "5.136.7.7/32", + "5.136.8.0/31", + "5.136.8.3/32", + "5.136.8.4/31", + "5.136.8.7/32", + "5.136.9.0/31", + "5.136.9.3/32", + "5.136.9.4/31", + "5.136.9.7/32", + "5.140.0.0/31", + "5.140.0.3/32", + "5.140.0.4/31", + "5.140.0.7/32", + "5.140.1.0/31", + "5.140.1.3/32", + "5.140.1.4/31", + "5.140.1.7/32", + "5.140.2.0/31", + "5.140.2.3/32", + "5.140.2.4/31", + "5.140.2.7/32", + "5.140.3.0/31", + "5.140.3.3/32", + "5.140.3.4/31", + "5.140.3.7/32", + "5.140.4.0/31", + "5.140.4.3/32", + "5.140.4.4/31", + "5.140.4.7/32", + "5.140.5.0/31", + "5.140.5.3/32", + "5.140.5.4/31", + "5.140.5.7/32", + "5.140.6.0/31", + "5.140.6.3/32", + "5.140.6.4/31", + "5.140.6.7/32", + "5.140.7.0/31", + "5.140.7.3/32", + "5.140.7.4/31", + "5.140.7.7/32", + "5.140.8.0/31", + "5.140.8.3/32", + "5.140.8.4/31", + "5.140.8.7/32", + "5.140.9.0/31", + "5.140.9.3/32", + "5.140.9.4/31", + "5.140.9.7/32", + "5.144.0.0/31", + "5.144.0.3/32", + "5.144.0.4/31", + "5.144.0.7/32", + "5.144.1.0/31", + "5.144.1.3/32", + "5.144.1.4/31", + "5.144.1.7/32", + "5.144.2.0/31", + "5.144.2.3/32", + "5.144.2.4/31", + "5.144.2.7/32", + "5.144.3.0/31", + "5.144.3.3/32", + "5.144.3.4/31", + "5.144.3.7/32", + "5.144.4.0/31", + "5.144.4.3/32", + "5.144.4.4/31", + "5.144.4.7/32", + "5.144.5.0/31", + "5.144.5.3/32", + "5.144.5.4/31", + "5.144.5.7/32", + "5.144.6.0/31", + "5.144.6.3/32", + "5.144.6.4/31", + "5.144.6.7/32", + "5.144.7.0/31", + "5.144.7.3/32", + "5.144.7.4/31", + "5.144.7.7/32", + "5.144.8.0/31", + "5.144.8.3/32", + "5.144.8.4/31", + "5.144.8.7/32", + "5.144.9.0/31", + "5.144.9.3/32", + "5.144.9.4/31", + "5.144.9.7/32", + "5.148.0.0/31", + "5.148.0.3/32", + "5.148.0.4/31", + "5.148.0.7/32", + "5.148.1.0/31", + "5.148.1.3/32", + "5.148.1.4/31", + "5.148.1.7/32", + "5.148.2.0/31", + "5.148.2.3/32", + "5.148.2.4/31", + "5.148.2.7/32", + "5.148.3.0/31", + "5.148.3.3/32", + "5.148.3.4/31", + "5.148.3.7/32", + "5.148.4.0/31", + "5.148.4.3/32", + "5.148.4.4/31", + "5.148.4.7/32", + "5.148.5.0/31", + "5.148.5.3/32", + "5.148.5.4/31", + "5.148.5.7/32", + "5.148.6.0/31", + "5.148.6.3/32", + "5.148.6.4/31", + "5.148.6.7/32", + "5.148.7.0/31", + "5.148.7.3/32", + "5.148.7.4/31", + "5.148.7.7/32", + "5.148.8.0/31", + "5.148.8.3/32", + "5.148.8.4/31", + "5.148.8.7/32", + "5.148.9.0/31", + "5.148.9.3/32", + "5.148.9.4/31", + "5.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-105" + } + } + ] + } + }, + { + "ROUTE-TABLE:6": { + "route-table-id": "route-table-6", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "6.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-6" + } + }, + { + "ip-prefixes": [ + "6.128.0.0/31", + "6.128.0.3/32", + "6.128.0.4/31", + "6.128.0.7/32", + "6.128.1.0/31", + "6.128.1.3/32", + "6.128.1.4/31", + "6.128.1.7/32", + "6.128.2.0/31", + "6.128.2.3/32", + "6.128.2.4/31", + "6.128.2.7/32", + "6.128.3.0/31", + "6.128.3.3/32", + "6.128.3.4/31", + "6.128.3.7/32", + "6.128.4.0/31", + "6.128.4.3/32", + "6.128.4.4/31", + "6.128.4.7/32", + "6.128.5.0/31", + "6.128.5.3/32", + "6.128.5.4/31", + "6.128.5.7/32", + "6.128.6.0/31", + "6.128.6.3/32", + "6.128.6.4/31", + "6.128.6.7/32", + "6.128.7.0/31", + "6.128.7.3/32", + "6.128.7.4/31", + "6.128.7.7/32", + "6.128.8.0/31", + "6.128.8.3/32", + "6.128.8.4/31", + "6.128.8.7/32", + "6.128.9.0/31", + "6.128.9.3/32", + "6.128.9.4/31", + "6.128.9.7/32", + "6.132.0.0/31", + "6.132.0.3/32", + "6.132.0.4/31", + "6.132.0.7/32", + "6.132.1.0/31", + "6.132.1.3/32", + "6.132.1.4/31", + "6.132.1.7/32", + "6.132.2.0/31", + "6.132.2.3/32", + "6.132.2.4/31", + "6.132.2.7/32", + "6.132.3.0/31", + "6.132.3.3/32", + "6.132.3.4/31", + "6.132.3.7/32", + "6.132.4.0/31", + "6.132.4.3/32", + "6.132.4.4/31", + "6.132.4.7/32", + "6.132.5.0/31", + "6.132.5.3/32", + "6.132.5.4/31", + "6.132.5.7/32", + "6.132.6.0/31", + "6.132.6.3/32", + "6.132.6.4/31", + "6.132.6.7/32", + "6.132.7.0/31", + "6.132.7.3/32", + "6.132.7.4/31", + "6.132.7.7/32", + "6.132.8.0/31", + "6.132.8.3/32", + "6.132.8.4/31", + "6.132.8.7/32", + "6.132.9.0/31", + "6.132.9.3/32", + "6.132.9.4/31", + "6.132.9.7/32", + "6.136.0.0/31", + "6.136.0.3/32", + "6.136.0.4/31", + "6.136.0.7/32", + "6.136.1.0/31", + "6.136.1.3/32", + "6.136.1.4/31", + "6.136.1.7/32", + "6.136.2.0/31", + "6.136.2.3/32", + "6.136.2.4/31", + "6.136.2.7/32", + "6.136.3.0/31", + "6.136.3.3/32", + "6.136.3.4/31", + "6.136.3.7/32", + "6.136.4.0/31", + "6.136.4.3/32", + "6.136.4.4/31", + "6.136.4.7/32", + "6.136.5.0/31", + "6.136.5.3/32", + "6.136.5.4/31", + "6.136.5.7/32", + "6.136.6.0/31", + "6.136.6.3/32", + "6.136.6.4/31", + "6.136.6.7/32", + "6.136.7.0/31", + "6.136.7.3/32", + "6.136.7.4/31", + "6.136.7.7/32", + "6.136.8.0/31", + "6.136.8.3/32", + "6.136.8.4/31", + "6.136.8.7/32", + "6.136.9.0/31", + "6.136.9.3/32", + "6.136.9.4/31", + "6.136.9.7/32", + "6.140.0.0/31", + "6.140.0.3/32", + "6.140.0.4/31", + "6.140.0.7/32", + "6.140.1.0/31", + "6.140.1.3/32", + "6.140.1.4/31", + "6.140.1.7/32", + "6.140.2.0/31", + "6.140.2.3/32", + "6.140.2.4/31", + "6.140.2.7/32", + "6.140.3.0/31", + "6.140.3.3/32", + "6.140.3.4/31", + "6.140.3.7/32", + "6.140.4.0/31", + "6.140.4.3/32", + "6.140.4.4/31", + "6.140.4.7/32", + "6.140.5.0/31", + "6.140.5.3/32", + "6.140.5.4/31", + "6.140.5.7/32", + "6.140.6.0/31", + "6.140.6.3/32", + "6.140.6.4/31", + "6.140.6.7/32", + "6.140.7.0/31", + "6.140.7.3/32", + "6.140.7.4/31", + "6.140.7.7/32", + "6.140.8.0/31", + "6.140.8.3/32", + "6.140.8.4/31", + "6.140.8.7/32", + "6.140.9.0/31", + "6.140.9.3/32", + "6.140.9.4/31", + "6.140.9.7/32", + "6.144.0.0/31", + "6.144.0.3/32", + "6.144.0.4/31", + "6.144.0.7/32", + "6.144.1.0/31", + "6.144.1.3/32", + "6.144.1.4/31", + "6.144.1.7/32", + "6.144.2.0/31", + "6.144.2.3/32", + "6.144.2.4/31", + "6.144.2.7/32", + "6.144.3.0/31", + "6.144.3.3/32", + "6.144.3.4/31", + "6.144.3.7/32", + "6.144.4.0/31", + "6.144.4.3/32", + "6.144.4.4/31", + "6.144.4.7/32", + "6.144.5.0/31", + "6.144.5.3/32", + "6.144.5.4/31", + "6.144.5.7/32", + "6.144.6.0/31", + "6.144.6.3/32", + "6.144.6.4/31", + "6.144.6.7/32", + "6.144.7.0/31", + "6.144.7.3/32", + "6.144.7.4/31", + "6.144.7.7/32", + "6.144.8.0/31", + "6.144.8.3/32", + "6.144.8.4/31", + "6.144.8.7/32", + "6.144.9.0/31", + "6.144.9.3/32", + "6.144.9.4/31", + "6.144.9.7/32", + "6.148.0.0/31", + "6.148.0.3/32", + "6.148.0.4/31", + "6.148.0.7/32", + "6.148.1.0/31", + "6.148.1.3/32", + "6.148.1.4/31", + "6.148.1.7/32", + "6.148.2.0/31", + "6.148.2.3/32", + "6.148.2.4/31", + "6.148.2.7/32", + "6.148.3.0/31", + "6.148.3.3/32", + "6.148.3.4/31", + "6.148.3.7/32", + "6.148.4.0/31", + "6.148.4.3/32", + "6.148.4.4/31", + "6.148.4.7/32", + "6.148.5.0/31", + "6.148.5.3/32", + "6.148.5.4/31", + "6.148.5.7/32", + "6.148.6.0/31", + "6.148.6.3/32", + "6.148.6.4/31", + "6.148.6.7/32", + "6.148.7.0/31", + "6.148.7.3/32", + "6.148.7.4/31", + "6.148.7.7/32", + "6.148.8.0/31", + "6.148.8.3/32", + "6.148.8.4/31", + "6.148.8.7/32", + "6.148.9.0/31", + "6.148.9.3/32", + "6.148.9.4/31", + "6.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-106" + } + } + ] + } + }, + { + "ROUTE-TABLE:7": { + "route-table-id": "route-table-7", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "7.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-7" + } + }, + { + "ip-prefixes": [ + "7.128.0.0/31", + "7.128.0.3/32", + "7.128.0.4/31", + "7.128.0.7/32", + "7.128.1.0/31", + "7.128.1.3/32", + "7.128.1.4/31", + "7.128.1.7/32", + "7.128.2.0/31", + "7.128.2.3/32", + "7.128.2.4/31", + "7.128.2.7/32", + "7.128.3.0/31", + "7.128.3.3/32", + "7.128.3.4/31", + "7.128.3.7/32", + "7.128.4.0/31", + "7.128.4.3/32", + "7.128.4.4/31", + "7.128.4.7/32", + "7.128.5.0/31", + "7.128.5.3/32", + "7.128.5.4/31", + "7.128.5.7/32", + "7.128.6.0/31", + "7.128.6.3/32", + "7.128.6.4/31", + "7.128.6.7/32", + "7.128.7.0/31", + "7.128.7.3/32", + "7.128.7.4/31", + "7.128.7.7/32", + "7.128.8.0/31", + "7.128.8.3/32", + "7.128.8.4/31", + "7.128.8.7/32", + "7.128.9.0/31", + "7.128.9.3/32", + "7.128.9.4/31", + "7.128.9.7/32", + "7.132.0.0/31", + "7.132.0.3/32", + "7.132.0.4/31", + "7.132.0.7/32", + "7.132.1.0/31", + "7.132.1.3/32", + "7.132.1.4/31", + "7.132.1.7/32", + "7.132.2.0/31", + "7.132.2.3/32", + "7.132.2.4/31", + "7.132.2.7/32", + "7.132.3.0/31", + "7.132.3.3/32", + "7.132.3.4/31", + "7.132.3.7/32", + "7.132.4.0/31", + "7.132.4.3/32", + "7.132.4.4/31", + "7.132.4.7/32", + "7.132.5.0/31", + "7.132.5.3/32", + "7.132.5.4/31", + "7.132.5.7/32", + "7.132.6.0/31", + "7.132.6.3/32", + "7.132.6.4/31", + "7.132.6.7/32", + "7.132.7.0/31", + "7.132.7.3/32", + "7.132.7.4/31", + "7.132.7.7/32", + "7.132.8.0/31", + "7.132.8.3/32", + "7.132.8.4/31", + "7.132.8.7/32", + "7.132.9.0/31", + "7.132.9.3/32", + "7.132.9.4/31", + "7.132.9.7/32", + "7.136.0.0/31", + "7.136.0.3/32", + "7.136.0.4/31", + "7.136.0.7/32", + "7.136.1.0/31", + "7.136.1.3/32", + "7.136.1.4/31", + "7.136.1.7/32", + "7.136.2.0/31", + "7.136.2.3/32", + "7.136.2.4/31", + "7.136.2.7/32", + "7.136.3.0/31", + "7.136.3.3/32", + "7.136.3.4/31", + "7.136.3.7/32", + "7.136.4.0/31", + "7.136.4.3/32", + "7.136.4.4/31", + "7.136.4.7/32", + "7.136.5.0/31", + "7.136.5.3/32", + "7.136.5.4/31", + "7.136.5.7/32", + "7.136.6.0/31", + "7.136.6.3/32", + "7.136.6.4/31", + "7.136.6.7/32", + "7.136.7.0/31", + "7.136.7.3/32", + "7.136.7.4/31", + "7.136.7.7/32", + "7.136.8.0/31", + "7.136.8.3/32", + "7.136.8.4/31", + "7.136.8.7/32", + "7.136.9.0/31", + "7.136.9.3/32", + "7.136.9.4/31", + "7.136.9.7/32", + "7.140.0.0/31", + "7.140.0.3/32", + "7.140.0.4/31", + "7.140.0.7/32", + "7.140.1.0/31", + "7.140.1.3/32", + "7.140.1.4/31", + "7.140.1.7/32", + "7.140.2.0/31", + "7.140.2.3/32", + "7.140.2.4/31", + "7.140.2.7/32", + "7.140.3.0/31", + "7.140.3.3/32", + "7.140.3.4/31", + "7.140.3.7/32", + "7.140.4.0/31", + "7.140.4.3/32", + "7.140.4.4/31", + "7.140.4.7/32", + "7.140.5.0/31", + "7.140.5.3/32", + "7.140.5.4/31", + "7.140.5.7/32", + "7.140.6.0/31", + "7.140.6.3/32", + "7.140.6.4/31", + "7.140.6.7/32", + "7.140.7.0/31", + "7.140.7.3/32", + "7.140.7.4/31", + "7.140.7.7/32", + "7.140.8.0/31", + "7.140.8.3/32", + "7.140.8.4/31", + "7.140.8.7/32", + "7.140.9.0/31", + "7.140.9.3/32", + "7.140.9.4/31", + "7.140.9.7/32", + "7.144.0.0/31", + "7.144.0.3/32", + "7.144.0.4/31", + "7.144.0.7/32", + "7.144.1.0/31", + "7.144.1.3/32", + "7.144.1.4/31", + "7.144.1.7/32", + "7.144.2.0/31", + "7.144.2.3/32", + "7.144.2.4/31", + "7.144.2.7/32", + "7.144.3.0/31", + "7.144.3.3/32", + "7.144.3.4/31", + "7.144.3.7/32", + "7.144.4.0/31", + "7.144.4.3/32", + "7.144.4.4/31", + "7.144.4.7/32", + "7.144.5.0/31", + "7.144.5.3/32", + "7.144.5.4/31", + "7.144.5.7/32", + "7.144.6.0/31", + "7.144.6.3/32", + "7.144.6.4/31", + "7.144.6.7/32", + "7.144.7.0/31", + "7.144.7.3/32", + "7.144.7.4/31", + "7.144.7.7/32", + "7.144.8.0/31", + "7.144.8.3/32", + "7.144.8.4/31", + "7.144.8.7/32", + "7.144.9.0/31", + "7.144.9.3/32", + "7.144.9.4/31", + "7.144.9.7/32", + "7.148.0.0/31", + "7.148.0.3/32", + "7.148.0.4/31", + "7.148.0.7/32", + "7.148.1.0/31", + "7.148.1.3/32", + "7.148.1.4/31", + "7.148.1.7/32", + "7.148.2.0/31", + "7.148.2.3/32", + "7.148.2.4/31", + "7.148.2.7/32", + "7.148.3.0/31", + "7.148.3.3/32", + "7.148.3.4/31", + "7.148.3.7/32", + "7.148.4.0/31", + "7.148.4.3/32", + "7.148.4.4/31", + "7.148.4.7/32", + "7.148.5.0/31", + "7.148.5.3/32", + "7.148.5.4/31", + "7.148.5.7/32", + "7.148.6.0/31", + "7.148.6.3/32", + "7.148.6.4/31", + "7.148.6.7/32", + "7.148.7.0/31", + "7.148.7.3/32", + "7.148.7.4/31", + "7.148.7.7/32", + "7.148.8.0/31", + "7.148.8.3/32", + "7.148.8.4/31", + "7.148.8.7/32", + "7.148.9.0/31", + "7.148.9.3/32", + "7.148.9.4/31", + "7.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-107" + } + } + ] + } + }, + { + "ROUTE-TABLE:8": { + "route-table-id": "route-table-8", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "8.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-8" + } + }, + { + "ip-prefixes": [ + "8.128.0.0/31", + "8.128.0.3/32", + "8.128.0.4/31", + "8.128.0.7/32", + "8.128.1.0/31", + "8.128.1.3/32", + "8.128.1.4/31", + "8.128.1.7/32", + "8.128.2.0/31", + "8.128.2.3/32", + "8.128.2.4/31", + "8.128.2.7/32", + "8.128.3.0/31", + "8.128.3.3/32", + "8.128.3.4/31", + "8.128.3.7/32", + "8.128.4.0/31", + "8.128.4.3/32", + "8.128.4.4/31", + "8.128.4.7/32", + "8.128.5.0/31", + "8.128.5.3/32", + "8.128.5.4/31", + "8.128.5.7/32", + "8.128.6.0/31", + "8.128.6.3/32", + "8.128.6.4/31", + "8.128.6.7/32", + "8.128.7.0/31", + "8.128.7.3/32", + "8.128.7.4/31", + "8.128.7.7/32", + "8.128.8.0/31", + "8.128.8.3/32", + "8.128.8.4/31", + "8.128.8.7/32", + "8.128.9.0/31", + "8.128.9.3/32", + "8.128.9.4/31", + "8.128.9.7/32", + "8.132.0.0/31", + "8.132.0.3/32", + "8.132.0.4/31", + "8.132.0.7/32", + "8.132.1.0/31", + "8.132.1.3/32", + "8.132.1.4/31", + "8.132.1.7/32", + "8.132.2.0/31", + "8.132.2.3/32", + "8.132.2.4/31", + "8.132.2.7/32", + "8.132.3.0/31", + "8.132.3.3/32", + "8.132.3.4/31", + "8.132.3.7/32", + "8.132.4.0/31", + "8.132.4.3/32", + "8.132.4.4/31", + "8.132.4.7/32", + "8.132.5.0/31", + "8.132.5.3/32", + "8.132.5.4/31", + "8.132.5.7/32", + "8.132.6.0/31", + "8.132.6.3/32", + "8.132.6.4/31", + "8.132.6.7/32", + "8.132.7.0/31", + "8.132.7.3/32", + "8.132.7.4/31", + "8.132.7.7/32", + "8.132.8.0/31", + "8.132.8.3/32", + "8.132.8.4/31", + "8.132.8.7/32", + "8.132.9.0/31", + "8.132.9.3/32", + "8.132.9.4/31", + "8.132.9.7/32", + "8.136.0.0/31", + "8.136.0.3/32", + "8.136.0.4/31", + "8.136.0.7/32", + "8.136.1.0/31", + "8.136.1.3/32", + "8.136.1.4/31", + "8.136.1.7/32", + "8.136.2.0/31", + "8.136.2.3/32", + "8.136.2.4/31", + "8.136.2.7/32", + "8.136.3.0/31", + "8.136.3.3/32", + "8.136.3.4/31", + "8.136.3.7/32", + "8.136.4.0/31", + "8.136.4.3/32", + "8.136.4.4/31", + "8.136.4.7/32", + "8.136.5.0/31", + "8.136.5.3/32", + "8.136.5.4/31", + "8.136.5.7/32", + "8.136.6.0/31", + "8.136.6.3/32", + "8.136.6.4/31", + "8.136.6.7/32", + "8.136.7.0/31", + "8.136.7.3/32", + "8.136.7.4/31", + "8.136.7.7/32", + "8.136.8.0/31", + "8.136.8.3/32", + "8.136.8.4/31", + "8.136.8.7/32", + "8.136.9.0/31", + "8.136.9.3/32", + "8.136.9.4/31", + "8.136.9.7/32", + "8.140.0.0/31", + "8.140.0.3/32", + "8.140.0.4/31", + "8.140.0.7/32", + "8.140.1.0/31", + "8.140.1.3/32", + "8.140.1.4/31", + "8.140.1.7/32", + "8.140.2.0/31", + "8.140.2.3/32", + "8.140.2.4/31", + "8.140.2.7/32", + "8.140.3.0/31", + "8.140.3.3/32", + "8.140.3.4/31", + "8.140.3.7/32", + "8.140.4.0/31", + "8.140.4.3/32", + "8.140.4.4/31", + "8.140.4.7/32", + "8.140.5.0/31", + "8.140.5.3/32", + "8.140.5.4/31", + "8.140.5.7/32", + "8.140.6.0/31", + "8.140.6.3/32", + "8.140.6.4/31", + "8.140.6.7/32", + "8.140.7.0/31", + "8.140.7.3/32", + "8.140.7.4/31", + "8.140.7.7/32", + "8.140.8.0/31", + "8.140.8.3/32", + "8.140.8.4/31", + "8.140.8.7/32", + "8.140.9.0/31", + "8.140.9.3/32", + "8.140.9.4/31", + "8.140.9.7/32", + "8.144.0.0/31", + "8.144.0.3/32", + "8.144.0.4/31", + "8.144.0.7/32", + "8.144.1.0/31", + "8.144.1.3/32", + "8.144.1.4/31", + "8.144.1.7/32", + "8.144.2.0/31", + "8.144.2.3/32", + "8.144.2.4/31", + "8.144.2.7/32", + "8.144.3.0/31", + "8.144.3.3/32", + "8.144.3.4/31", + "8.144.3.7/32", + "8.144.4.0/31", + "8.144.4.3/32", + "8.144.4.4/31", + "8.144.4.7/32", + "8.144.5.0/31", + "8.144.5.3/32", + "8.144.5.4/31", + "8.144.5.7/32", + "8.144.6.0/31", + "8.144.6.3/32", + "8.144.6.4/31", + "8.144.6.7/32", + "8.144.7.0/31", + "8.144.7.3/32", + "8.144.7.4/31", + "8.144.7.7/32", + "8.144.8.0/31", + "8.144.8.3/32", + "8.144.8.4/31", + "8.144.8.7/32", + "8.144.9.0/31", + "8.144.9.3/32", + "8.144.9.4/31", + "8.144.9.7/32", + "8.148.0.0/31", + "8.148.0.3/32", + "8.148.0.4/31", + "8.148.0.7/32", + "8.148.1.0/31", + "8.148.1.3/32", + "8.148.1.4/31", + "8.148.1.7/32", + "8.148.2.0/31", + "8.148.2.3/32", + "8.148.2.4/31", + "8.148.2.7/32", + "8.148.3.0/31", + "8.148.3.3/32", + "8.148.3.4/31", + "8.148.3.7/32", + "8.148.4.0/31", + "8.148.4.3/32", + "8.148.4.4/31", + "8.148.4.7/32", + "8.148.5.0/31", + "8.148.5.3/32", + "8.148.5.4/31", + "8.148.5.7/32", + "8.148.6.0/31", + "8.148.6.3/32", + "8.148.6.4/31", + "8.148.6.7/32", + "8.148.7.0/31", + "8.148.7.3/32", + "8.148.7.4/31", + "8.148.7.7/32", + "8.148.8.0/31", + "8.148.8.3/32", + "8.148.8.4/31", + "8.148.8.7/32", + "8.148.9.0/31", + "8.148.9.3/32", + "8.148.9.4/31", + "8.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-108" + } + } + ] + } + } + ], + "prefix-tags": [ + { + "PREFIX-TAG:VPC:1": { + "prefix-tag-id": "1", + "prefix-tag-number": 1, + "ip-prefixes-ipv4": [ + "1.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:101": { + "prefix-tag-id": "101", + "prefix-tag-number": 101, + "ip-prefixes-ipv4": [ + "1.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:2": { + "prefix-tag-id": "2", + "prefix-tag-number": 2, + "ip-prefixes-ipv4": [ + "2.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:102": { + "prefix-tag-id": "102", + "prefix-tag-number": 102, + "ip-prefixes-ipv4": [ + "2.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:3": { + "prefix-tag-id": "3", + "prefix-tag-number": 3, + "ip-prefixes-ipv4": [ + "3.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:103": { + "prefix-tag-id": "103", + "prefix-tag-number": 103, + "ip-prefixes-ipv4": [ + "3.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:4": { + "prefix-tag-id": "4", + "prefix-tag-number": 4, + "ip-prefixes-ipv4": [ + "4.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:104": { + "prefix-tag-id": "104", + "prefix-tag-number": 104, + "ip-prefixes-ipv4": [ + "4.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:5": { + "prefix-tag-id": "5", + "prefix-tag-number": 5, + "ip-prefixes-ipv4": [ + "5.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:105": { + "prefix-tag-id": "105", + "prefix-tag-number": 105, + "ip-prefixes-ipv4": [ + "5.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:6": { + "prefix-tag-id": "6", + "prefix-tag-number": 6, + "ip-prefixes-ipv4": [ + "6.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:106": { + "prefix-tag-id": "106", + "prefix-tag-number": 106, + "ip-prefixes-ipv4": [ + "6.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:7": { + "prefix-tag-id": "7", + "prefix-tag-number": 7, + "ip-prefixes-ipv4": [ + "7.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:107": { + "prefix-tag-id": "107", + "prefix-tag-number": 107, + "ip-prefixes-ipv4": [ + "7.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:8": { + "prefix-tag-id": "8", + "prefix-tag-number": 8, + "ip-prefixes-ipv4": [ + "8.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:108": { + "prefix-tag-id": "108", + "prefix-tag-number": 108, + "ip-prefixes-ipv4": [ + "8.128.0.1/9" + ] + } + } + ] +} \ No newline at end of file diff --git a/test/environments/keysight/requirements.txt b/test/environments/keysight/requirements.txt index 908e41166..69346a5e4 100644 --- a/test/environments/keysight/requirements.txt +++ b/test/environments/keysight/requirements.txt @@ -8,3 +8,8 @@ ixnetwork-restpy snappi snappi-ixnetwork ixload + +# used by confgen +orjson +ipaddress +macaddress From 2e00f94c78f12fb99621853ee0dfc9c178912cc7 Mon Sep 17 00:00:00 2001 From: MirceaDan Date: Mon, 8 Aug 2022 16:02:58 -0700 Subject: [PATCH 2/4] Update README.md --- test/confgen/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/confgen/README.md b/test/confgen/README.md index 7015a6701..2e16e6e5c 100644 --- a/test/confgen/README.md +++ b/test/confgen/README.md @@ -1,14 +1,14 @@ # Objectives: -The intention of the dash config generator is to provide a way to build a large scale dash config. and to answer today the question `what is the "ip"?` +The intention of the dash config generator is to provide a way to build a large scale dash config. and to provide some insight into the actual values used in the test. -the dash config format is close to [dash-reference-config-example.md](../../../documentation/gnmi/design/dash-reference-config-example.md) with small changes. +The dash config format is close to [dash-reference-config-example.md](../../../documentation/gnmi/design/dash-reference-config-example.md) with small changes. -this is not yet a config that can be deployed, but intends to be morphed into one as DASH standards get ratified and implemented +This is not yet a config that can be deployed, but intends to be morphed into one as DASH standards get ratified and implemented # Usage: -to generate a dash config simply run `python generate.d.py` in the current directory +To generate a dash config simply run `python generate.d.py` in the current directory -each section of the config file has it's own generator for example `enis` block is generated by `dashgen/enis.py` and `generate.d.py` brings all the blocks together and writes them into the json file +Each section of the config file has it's own generator for example `enis` block is generated by `dashgen/enis.py` and `generate.d.py` brings all the blocks together and writes them into the json file `variables.py` contains the parameters used by the generator ``` From 5028cd85078c3f86cd184b0a1342f98d4a1f92d8 Mon Sep 17 00:00:00 2001 From: Mircea Dan Date: Tue, 9 Aug 2022 18:10:39 -0700 Subject: [PATCH 3/4] removed random comma that comma was creating problems with the structure of data, removed it. --- test/confgen/dashgen/vpcmappingtypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/confgen/dashgen/vpcmappingtypes.py b/test/confgen/dashgen/vpcmappingtypes.py index dc9b61a8d..1071af24a 100644 --- a/test/confgen/dashgen/vpcmappingtypes.py +++ b/test/confgen/dashgen/vpcmappingtypes.py @@ -7,6 +7,6 @@ def generate(): "vpc", "privatelink", "privatelinknsg" - ], + ] return {"vpc-mappings-routing-types": vpcmappingtypes} From bb5f9245baf77b6e105c03bb9c13ddf041a41eab Mon Sep 17 00:00:00 2001 From: Mircea Dan Date: Tue, 16 Aug 2022 16:46:45 -0700 Subject: [PATCH 4/4] generator enh from Chris json generator with 10x memory usage improvement parameters enh --- test/confgen/README.md | 98 +- test/confgen/dashgen/__init__.py | 5 +- test/confgen/dashgen/aclgroups.py | 159 +- test/confgen/dashgen/confbase.py | 91 + test/confgen/dashgen/confutils.py | 189 + test/confgen/dashgen/dflt_params.py | 28 + test/confgen/dashgen/enis.py | 85 +- test/confgen/dashgen/prefixtags.py | 84 +- test/confgen/dashgen/routetables.py | 132 +- test/confgen/dashgen/routingappliances.py | 99 +- test/confgen/dashgen/variables.py | 37 - test/confgen/dashgen/vpc.py | 35 - test/confgen/dashgen/vpcmappings.py | 170 +- test/confgen/dashgen/vpcmappingtypes.py | 41 +- test/confgen/dashgen/vpcs.py | 57 + test/confgen/generate.d.py | 66 +- test/confgen/images/confgen-apps.svg | 4 + test/confgen/images/confgen-hld-diag.svg | 4 + test/confgen/requirments.txt | 4 +- test/confgen/sample_dash_conf.json | 44884 ++++++++++---------- 20 files changed, 23413 insertions(+), 22859 deletions(-) create mode 100644 test/confgen/dashgen/confbase.py create mode 100644 test/confgen/dashgen/confutils.py create mode 100644 test/confgen/dashgen/dflt_params.py delete mode 100644 test/confgen/dashgen/variables.py delete mode 100644 test/confgen/dashgen/vpc.py create mode 100644 test/confgen/dashgen/vpcs.py create mode 100644 test/confgen/images/confgen-apps.svg create mode 100644 test/confgen/images/confgen-hld-diag.svg diff --git a/test/confgen/README.md b/test/confgen/README.md index 2e16e6e5c..658b2f5d1 100644 --- a/test/confgen/README.md +++ b/test/confgen/README.md @@ -1,27 +1,94 @@ -# Objectives: +# Overview The intention of the dash config generator is to provide a way to build a large scale dash config. and to provide some insight into the actual values used in the test. The dash config format is close to [dash-reference-config-example.md](../../../documentation/gnmi/design/dash-reference-config-example.md) with small changes. This is not yet a config that can be deployed, but intends to be morphed into one as DASH standards get ratified and implemented -# Usage: -To generate a dash config simply run `python generate.d.py` in the current directory +## Features +* Generate complex DASH configurations +* Custom input parameters for scale and other options. +* Output to file or stdio +* Select output format: `JSON` [future: `yaml`?] +* Generate all config (uber-generator) or just selected items (e.g. `aclgroups`) +* Potential to create custom apps to transform streaming data e.g into device API calls w/o intermediate text rendering +## High-level Diagram -Each section of the config file has it's own generator for example `enis` block is generated by `dashgen/enis.py` and `generate.d.py` brings all the blocks together and writes them into the json file +![confgen-hld-diag](images/confgen-hld-diag.svg) -`variables.py` contains the parameters used by the generator -``` -#for baby hero test: -IP_MAPPED_PER_ACL_RULE = 1 -IP_PER_ACL_RULE = 1 +## Design +The uber-generator `generate.d.py` instantiates sub-generators and produces a composite output stream which can be rendered into text files (JSON) or sent to stdout for custom pipelines. + +The uber-generator and sub-generators all derive from a base-class `ConfBase`. They all share a common `main` progam with CLI command-line options, which allows them to be used independently yet consistently. + +The generators produce Python data structures which can be rendered into output text (e.g. JSON) or used to feed custom applications such as a saithrift API driver, to directly configure a device. Likewise a custom API driver can be developed for vendor-specific APIs. + +Default parameters allow easy operations with no complex input. All parameters can be selectively overridden via cmd-line, input file or both. +## Confgen Applications +Two anticipated applications (see Figure below): +* Generate a configuration file, e.g. JSON, and use this to feed downstream tools such as a DUT configuration utility. +* Use the output of the config data stream generators to perform on-the-fly DUT configuration without intermediate JSON file rendering; also configure traffic-generators using data in the config info itself. -#for hero test: -IP_MAPPED_PER_ACL_RULE = 40 -IP_PER_ACL_RULE = 200 +![confgen-apps](images/confgen-apps.svg) + +## Sample CLI Usage +This may not be current; check latest for actual content. +``` +$ ./generate.d.py -h +usage: generate.d.py [-h] [-f {json}] [-c {dict,list}] [-d] [-m] [-M "MSG"] [-P "{PARAMS}"] [-p PARAM_FILE] + [-o OFILE] + +Generate DASH Configs + +optional arguments: + -h, --help show this help message and exit + -f {json}, --format {json} + Config output format. + -c {dict,list}, --content {dict,list} + Emit dictionary (with inner lists), or list items only + -d, --dump-params Just dump parameters (defaults with user-defined merged in + -m, --meta Include metadata in output (only if "-c dict" used) + -M "MSG", --msg "MSG" + Put MSG in metadata (only if "-m" used) + -P "{PARAMS}", --set-params "{PARAMS}" + supply parameters as a dict, partial is OK; defaults and file-provided (-p) + -p PARAM_FILE, --param-file PARAM_FILE + use parameter dict from file, partial is OK; overrides defaults + -o OFILE, --output OFILE + Output file (default: standard output) + +Usage: +========= +./generate.d.py - generate output to stdout using uber-generator +./generate.d.py -o tmp.json - generate output to file tmp.json +./generate.d.py -o /dev/null - generate output to nowhere (good for testing) +./generate.d.py -c list - generate just the list items w/o parent dictionary +dashgen/aclgroups.py [options] - run one sub-generator, e.g. acls, routetables, etc. + - many different subgenerators available, support same options as uber-generator + +Passing parameters. Provided as Python dict, see dflt_params.py for available items +================ +./generate.d.py -d - display default parameters and quit +./generate.d.py -d -P PARAMS - override given parameters, display and quit; see dflt_params.py for template +./generate.d.py -d -p PARAM_FILE - override parameters in file; display only +./generate.d.py -d -p PARAM_FILE -P PARAMS - override params from file, then override params from cmdline; display only +./generate.d.py -p PARAM_FILE -P PARAMS - override params from file, then override params from cmdline, generate output + +Examples: +./generate.d.py -d -p params_small.py -P "{'ENI_COUNT': 16}" - use params_small.py but override ENI_COUNT; display params +./generate.d.py -p params_hero.py -o tmp.json - generate full "hero test" scale config as json file +dashgen/vpcmappingtypes.py -m -M "Kewl Config!" - generate dict of vpcmappingtypes, include meta with message ``` -# Logic: +# TODO +* Reconcile the param dicts vs. param attributes obtained via Munch, use of scalar variables inside performance-heavy loops etc. There is a tradeoff between elegance, expressiveness and performance. +# IDEAS/Wish-List +* Expose yaml format, need to work on streaming output (bulk output was working, but slow). +* Use logger instead of print to stderr +* logging levels -v, -vv, -vvv etc., otherwise silent on stderr +* -O, --optimize flags for speed or memory (for speed - expand lists in-memory and use orjson serializer, like original code) +* Use nested generators inside each sub-generator, instead of nested loops, to reduce in-memory usage; may require enhancing JSON output streaming to use recursion etc. +# Logic ACLs and Routes should not be summarized. ``` @@ -56,8 +123,7 @@ for each eni we allocate a `MAC_L_START` and `IP_L_START` this way there is no route for 1.128.0.6 ``` -# Scale: - +# Scale | 8 ENI Scenario | required | generated config number | | ----------------| --------- |---------------------------| @@ -68,7 +134,7 @@ for each eni we allocate a `MAC_L_START` and `IP_L_START` | Mapping Table | 2M | ACL * IP_MAPPED_PER_ACL_RULE | | Routes | 1.6M | ACL * (IP_PER_ACL_RULE / IP_ROUTE_DIVIDER_PER_ACL_RULE) * log(IP_ROUTE_DIVIDER_PER_ACL_RULE, 2) | -# Sample (low scale): +# Sample (low scale) [sample_dash_conf.json](sample_dash_conf.json) diff --git a/test/confgen/dashgen/__init__.py b/test/confgen/dashgen/__init__.py index e0f078382..079cc24cf 100644 --- a/test/confgen/dashgen/__init__.py +++ b/test/confgen/dashgen/__init__.py @@ -1,7 +1,10 @@ +import dashgen.confbase +import dashgen.confutils +import dashgen.dflt_params import dashgen.enis import dashgen.aclgroups import dashgen.prefixtags -import dashgen.vpc +import dashgen.vpcs import dashgen.vpcmappings import dashgen.vpcmappingtypes import dashgen.routetables diff --git a/test/confgen/dashgen/aclgroups.py b/test/confgen/dashgen/aclgroups.py index e41c3194f..92771f8dc 100644 --- a/test/confgen/dashgen/aclgroups.py +++ b/test/confgen/dashgen/aclgroups.py @@ -1,82 +1,105 @@ -from copy import deepcopy -from dashgen.variables import * +#!/usr/bin/python3 +from dashgen.confbase import * +from dashgen.confutils import * +from copy import deepcopy +import sys +class AclGroups(ConfBase): -def generate(): - print(' ' + os.path.basename(__file__)) - acl_groups = [] - for eni_index in range(1, ENI_COUNT + 1): - local_ip = IP_L_START + (eni_index - 1) * IP_STEP4 - l_ip_ac = deepcopy(str(local_ip)+"/32") + def __init__(self, params={}): + super().__init__('acl-groups', params) + + def items(self): + self.numYields = 0 + print(' Generating %s...' % self.dictname, file=sys.stderr) + p=self.params + cp=self.cooked_params + IP_STEP1=cp.IP_STEP1 + IP_STEP2=cp.IP_STEP2 + IP_STEP3=cp.IP_STEP3 + IP_STEP4=cp.IP_STEP4 + IP_STEPE=cp.IP_STEPE + IP_R_START=cp.IP_R_START + IP_L_START=cp.IP_L_START + ACL_TABLE_COUNT=p.ACL_TABLE_COUNT + ACL_RULES_NSG=p.ACL_RULES_NSG + IP_PER_ACL_RULE=p.IP_PER_ACL_RULE + + for eni_index in range(1, p.ENI_COUNT + 1): + local_ip = IP_L_START + (eni_index - 1) * IP_STEP4 + l_ip_ac = deepcopy(str(local_ip)+"/32") - for table_index in range(1, (ACL_TABLE_COUNT*2+1)): - table_id = eni_index * 1000 + table_index + for table_index in range(1, (ACL_TABLE_COUNT*2+1)): + table_id = eni_index * 1000 + table_index - rules = [] - rappend = rules.append - for ip_index in range(1, (ACL_RULES_NSG+1), 2): - rule_id_a = table_id * 10 * ACL_RULES_NSG + ip_index - remote_ip_a = IP_R_START + (eni_index - 1) * IP_STEP4 + ( - table_index - 1) * 4 * IP_STEP3 + (ip_index - 1) * IP_STEP2 + rules = [] + rappend = rules.append + for ip_index in range(1, (ACL_RULES_NSG+1), 2): + rule_id_a = table_id * 10 * ACL_RULES_NSG + ip_index + remote_ip_a = IP_R_START + (eni_index - 1) * IP_STEP4 + ( + table_index - 1) * 4 * IP_STEP3 + (ip_index - 1) * IP_STEP2 - ip_list_a = [str(remote_ip_a + expanded_index * IP_STEPE)+"/32" for expanded_index in range(0, IP_PER_ACL_RULE)] - ip_list_a.append(l_ip_ac) + ip_list_a = [str(remote_ip_a + expanded_index * IP_STEPE)+"/32" for expanded_index in range(0, IP_PER_ACL_RULE)] + ip_list_a.append(l_ip_ac) - rule_a = { - "priority": ip_index, - "action": "allow", - "terminating": False, - "src_addrs": ip_list_a[:], - "dst_addrs": ip_list_a[:], - } - rappend(rule_a) - rule_id_d = rule_id_a + 1 - remote_ip_d = remote_ip_a + IP_STEP1 + rule_a = { + "priority": ip_index, + "action": "allow", + "terminating": False, + "src_addrs": ip_list_a[:], + "dst_addrs": ip_list_a[:], + } + rappend(rule_a) + rule_id_d = rule_id_a + 1 + remote_ip_d = remote_ip_a + IP_STEP1 - ip_list_d = [str(remote_ip_d + expanded_index * IP_STEPE)+"/32" for expanded_index in range(0, IP_PER_ACL_RULE)] - ip_list_d.append(l_ip_ac) + ip_list_d = [str(remote_ip_d + expanded_index * IP_STEPE)+"/32" for expanded_index in range(0, IP_PER_ACL_RULE)] + ip_list_d.append(l_ip_ac) - rule_d = { - "priority": ip_index+1, - "action": "deny", - "terminating": True, - "src_addrs": ip_list_d[:], - "dst_addrs": ip_list_d[:], - } - rappend(rule_d) + rule_d = { + "priority": ip_index+1, + "action": "deny", + "terminating": True, + "src_addrs": ip_list_d[:], + "dst_addrs": ip_list_d[:], + } + rappend(rule_d) - # add as last rule in last table from ingress and egress an allow rule for all the ip's from egress and ingress - if ((table_index - 1) % 3) == 2: - rule_id_a = table_id * 10 * ACL_RULES_NSG + ip_index - all_ipsA = IP_R_START + (eni_index - 1) * IP_STEP4 + (table_index % 6) * 4 * IP_STEP3 - all_ipsB = all_ipsA + 1 * 4 * IP_STEP3 - all_ipsC = all_ipsA + 2 * 4 * IP_STEP3 + # add as last rule in last table from ingress and egress an allow rule for all the ip's from egress and ingress + if ((table_index - 1) % 3) == 2: + rule_id_a = table_id * 10 *ACL_RULES_NSG + ip_index + all_ipsA = IP_R_START + (eni_index - 1) * IP_STEP4 + (table_index % 6) * 4 * IP_STEP3 + all_ipsB = all_ipsA + 1 * 4 * IP_STEP3 + all_ipsC = all_ipsA + 2 * 4 * IP_STEP3 - ip_list_all = [ - l_ip_ac, - str(all_ipsA)+"/14", - str(all_ipsB)+"/14", - str(all_ipsC)+"/14", - ] + ip_list_all = [ + l_ip_ac, + str(all_ipsA)+"/14", + str(all_ipsB)+"/14", + str(all_ipsC)+"/14", + ] - rule_allow_all = { - "priority": ip_index+2, - "action": "allow", - "terminating": "true", - "src_addrs": ip_list_all[:], - "dst_addrs": ip_list_all[:], - } - rappend(rule_allow_all) + rule_allow_all = { + "priority": ip_index+2, + "action": "allow", + "terminating": "true", + "src_addrs": ip_list_all[:], + "dst_addrs": ip_list_all[:], + } + rappend(rule_allow_all) - acl_group = deepcopy( - { - "ACL-GROUP:ENI:%d:TABLE:%d" % (eni_index, table_id): { - "acl-group-id": "acl-group-%d" % table_id, - "ip_version": "IPv4", - "rules": rules + acl_group = deepcopy( + { + "ACL-GROUP:ENI:%d:TABLE:%d" % (eni_index, table_id): { + "acl-group-id": "acl-group-%d" % table_id, + "ip_version": "IPv4", + "rules": rules + } } - } - ) - acl_groups.append(acl_group) + ) + self.numYields+=1 + yield acl_group - return {"acl-groups": acl_groups} +if __name__ == "__main__": + conf=AclGroups() + common_main(conf) \ No newline at end of file diff --git a/test/confgen/dashgen/confbase.py b/test/confgen/dashgen/confbase.py new file mode 100644 index 000000000..778d1b2dd --- /dev/null +++ b/test/confgen/dashgen/confbase.py @@ -0,0 +1,91 @@ +import ipaddress +from abc import ABC, abstractmethod +from copy import deepcopy +from datetime import datetime + +import macaddress +from munch import DefaultMunch + +from dashgen.dflt_params import * + +ipp = ipaddress.ip_address +macM = macaddress.MAC + + +class ConfBase(ABC): + + def __init__(self, name='base', params={}): + self.dictname = name + self.dflt_params = deepcopy(dflt_params) + self.cooked_params = {} + self.mergeParams(params) + self.numYields = 0 + + def mergeParams(self, params): + # Merge provided params into/onto defaults + self.params_dict = deepcopy(self.dflt_params) + self.params_dict.update(params) + + # make scalar attributes for speed & brevity (compared to dict) + # https://stackoverflow.com/questions/1305532/how-to-convert-a-nested-python-dict-to-object + self.cookParams() + self.params = DefaultMunch.fromDict(self.params_dict) + # print ('%s: self.params=' % self.dictname, self.params) + self.cooked_params = DefaultMunch.fromDict(self.cooked_params_dict) + # print ("cooked_params = ", self.cooked_params) + + def cookParams(self): + self.cooked_params_dict = {} + for ip in [ + 'IP_STEP1', + 'IP_STEP2', + 'IP_STEP3', + 'IP_STEP4', + 'IP_STEPE' + ]: + self.cooked_params_dict[ip] = int(ipp(self.params_dict[ip])) + for ip in [ + 'IP_L_START', + 'IP_R_START', + 'PAL', + 'PAR' + ]: + self.cooked_params_dict[ip] = ipp(self.params_dict[ip]) + for mac in [ + 'MAC_L_START', + 'MAC_R_START' + ]: + self.cooked_params_dict[mac] = macM(self.params_dict[mac]) + + @abstractmethod + def items(self): + pass + + # expensive - runs generator + def itemCount(self): + return len(self.items()) + + def itemsGenerated(self): + """ Last count of # yields, reset each time at begining""" + return self.num_yields + + def dictName(self): + return self.dictname + + def toDict(self): + return {self.dictname: list(self.items())} + + def getParams(self): + return self.params_dict + + def getMeta(self, message=''): + """Generate metadata. FOr reference, could also add e.g. data to help drive tests""" + return {'meta': { + 'tstamp': datetime.now().strftime("%m/%d/%Y, %H:%M:%S"), + 'msg': message, + 'params': self.getParams() + } + } + + def pretty(self): + pprint.pprint(self.toDict()) diff --git a/test/confgen/dashgen/confutils.py b/test/confgen/dashgen/confutils.py new file mode 100644 index 000000000..2898d8a8f --- /dev/null +++ b/test/confgen/dashgen/confutils.py @@ -0,0 +1,189 @@ +import argparse +import collections +import itertools +import json +import sys +import textwrap + +# From https://stackoverflow.com/questions/12670395/json-encoding-very-long-iterators +# Other articles to consider: +# https://stackoverflow.com/questions/21663800/python-make-a-list-generator-json-serializable/31517812#31517812 +# https://stackoverflow.com/questions/1871685/in-python-is-there-a-way-to-check-if-a-function-is-a-generator-function-before +# https://stackoverflow.com/questions/6416538/how-to-check-if-an-object-is-a-generator-object-in-python +# https://pypi.org/project/json-stream/ +# https://pythonspeed.com/articles/json-memory-streaming/ + + +class IterEncoder(json.JSONEncoder): + """ + JSON Encoder that encodes iterators as well. + Write directly to file to use minimal memory + """ + class FakeListIterator(list): + def __init__(self, iterable): + self.iterable = iter(iterable) + try: + self.firstitem = next(self.iterable) + self.truthy = True + except StopIteration: + self.truthy = False + + def __iter__(self): + if not self.truthy: + return iter([]) + return itertools.chain([self.firstitem], self.iterable) + + def __len__(self): + raise NotImplementedError("Fakelist has no length") + + def __getitem__(self, i): + raise NotImplementedError("Fakelist has no getitem") + + def __setitem__(self, i): + raise NotImplementedError("Fakelist has no setitem") + + def __bool__(self): + return self.truthy + + def default(self, o): + if isinstance(o, collections.abc.Iterable): + return type(self).FakeListIterator(o) + return super().default(o) + + +def writeListFileIter(config, format, filename=''): + if filename == '': + writeListFpIter(config, format, sys.stdout) + else: + with open(filename, "wt") as file: + writeListFpIter(config, format, fp) + + +def writeListFpIter(config, format, fp): + if format == 'json': + json.dump(config, fp, cls=IterEncoder, indent=2, separators=(',', ': ')) + else: + raise NotImplementedError('ERROR: unsupported format %s' % format) +# TODO - consider generic recursive approach + + +def writeDictFileIter(config, format, filename=''): + def _writeDictFileIter(config, fp): + fp.write('{\n') + first = True + for key, list in config.items(): + if not first: + fp.write(',\n') + fp.write(' "%s":\n' % key) + json.dump(list, fp, cls=IterEncoder, indent=2, separators=(',', ': ')) + first = False + fp.write('\n}\n') + + if format == 'json': + print('Writing the %s config to %s...' % (format, filename), file=sys.stderr) + if filename == '': + fp = sys.stdout + _writeDictFileIter(config, fp) + else: + with open(filename, 'wt') as fp: + _writeDictFileIter(config, fp) + else: + raise NotImplementedError('ERROR: unsupported format %s' % format) + + +def commonArgParser(): + parser = argparse.ArgumentParser(description='Generate DASH Configs', + formatter_class=argparse.RawTextHelpFormatter, + epilog=textwrap.dedent(''' +Usage: +========= +./generate.d.py - generate output to stdout using uber-generator +./generate.d.py -o tmp.json - generate output to file tmp.json +./generate.d.py -o /dev/null - generate output to nowhere (good for testing) +./generate.d.py -c list - generate just the list items w/o parent dictionary +dashgen/aclgroups.py [options] - run one sub-generator, e.g. acls, routetables, etc. + - many different subgenerators available, support same options as uber-generator + +Passing parameters. Provided as Python dict, see dflt_params.py for available items +Can use defaults; override from file; override again from cmdline (all 3 sources merged). +================ +./generate.d.py -d - display default parameters and quit +./generate.d.py -d -P PARAMS - use given parameters, display and quit; see dflt_params.py for template +./generate.d.py -d -p PARAM_FILE - override with parameters from file; display only +./generate.d.py -d -p PARAM_FILE -P PARAMS - override with params from file and cmdline; display only +./generate.d.py -p PARAM_FILE -P PARAMS - override with params from file and cmdline; generate output + +Examples: +./generate.d.py -d -p params_small.py -P "{'ENI_COUNT': 16}" - use params_small.py but override ENI_COUNT; display params +./generate.d.py -p params_hero.py -o tmp.json - generate full "hero test" scale config as json file +dashgen/vpcmappingtypes.py -m -M "Kewl Config!" - generate dict of vpcmappingtypes, include meta with message + + + + ''')) + + # parser.add_argument('-f', '--format', choices=['json', 'yaml'], default='json', + parser.add_argument('-f', '--format', choices=['json'], default='json', + help='Config output format.') + + parser.add_argument('-c', '--content', choices=['dict', 'list'], default='dict', + help='Emit dictionary (with inner lists), or list items only') + + parser.add_argument('-d', '--dump-params', action='store_true', + help='Just dump paramters (defaults with user-defined merged in') + + parser.add_argument('-m', '--meta', action='store_true', + help='Include metadata in output (only if "-c dict" used)') + + parser.add_argument('-M', '--msg', default='', metavar='"MSG"', + help='Put MSG in metadata (only if "-m" used)') + + parser.add_argument('-P', '--set-params', metavar='"{PARAMS}"', + help='use parameter dict from cmdline, partial is OK; overrides defaults & from file') + + parser.add_argument('-p', '--param-file', metavar='PARAM_FILE', + help='use parameter dict from file, partial is OK; overrides defaults') + + parser.add_argument( + '-o', '--output', default='', metavar='OFILE', + help="Output file (default: standard output)") + + return parser + + +def common_parse_args(self): + parser = commonArgParser() + self.args = parser.parse_args() + + # Prams from file override defaults; params from cmd-line override all + params = {} + if self.args.param_file: + with open(self.args.param_file, 'r') as fp: + params = eval(fp.read()) + if self.args.set_params: + params.update(eval(self.args.set_params)) + self.mergeParams(params) + + if self.args.dump_params: + print(self.params_dict) + exit() + + +def common_output(self): + if self.args.content == 'dict': + d = self.toDict() + if (self.args.meta): + d.update(self.getMeta(self.args.msg)) + # streaming dict output: + writeDictFileIter(d, self.args.format, self.args.output) + + elif self.args.content == 'list': + # streaming list output: + writeListFileIter(self.items(), self.args.format, self.args.output) + else: + raise Exception("Unknown content specifier: '%s'" % self.args.content) + + +def common_main(self): + common_parse_args(self) + common_output(self) diff --git a/test/confgen/dashgen/dflt_params.py b/test/confgen/dashgen/dflt_params.py new file mode 100644 index 000000000..241a6ef03 --- /dev/null +++ b/test/confgen/dashgen/dflt_params.py @@ -0,0 +1,28 @@ +dflt_params = { + 'SCHEMA_VER': '0.0.1', + 'ACL_TABLE_MAC_STEP': '00:00:00:04:00:00', + 'ACL_POLICY_MAC_STEP': '00:00:00:00:01:00', + 'ACL_RULES_NSG': 1000, + 'ACL_TABLE_COUNT': 3, + 'ENI_COUNT': 8, + 'ENI_MAC_STEP': '00:00:00:18:00:00', + 'ENI_STEP': 1, + 'ENI_L2R_STEP': 100, + 'IP_PER_ACL_RULE': 255, + 'IP_MAPPED_PER_ACL_RULE': 40, + 'IP_ROUTE_DIVIDER_PER_ACL_RULE': 8, # must be 2^N + + # Params requiring cooking before use: + 'IP_STEP1': '0.0.0.1', + 'IP_STEP2': '0.0.1.0', + 'IP_STEP3': '0.1.0.0', + 'IP_STEP4': '1.0.0.0', + 'IP_STEPE': '0.0.0.2', + 'IP_L_START': '1.1.0.1', + 'IP_R_START': '1.128.0.1', + 'MAC_L_START': '00:1A:C5:00:00:01', + 'MAC_R_START': '00:1B:6E:00:00:01', + 'PAL': '221.0.1.0', + 'PAR': '221.0.2.100' + +} diff --git a/test/confgen/dashgen/enis.py b/test/confgen/dashgen/enis.py index ed68fdbc0..63c5830af 100644 --- a/test/confgen/dashgen/enis.py +++ b/test/confgen/dashgen/enis.py @@ -1,36 +1,48 @@ -from dashgen.variables import * - - -def generate(): - print(' ' + os.path.basename(__file__)) - enis = [] - for eni_index in range(1, ENI_COUNT+1): - local_mac = str(macaddress.MAC(int(MAC_L_START)+(eni_index - 1)*int(macaddress.MAC(ENI_MAC_STEP)))).replace('-', ':') - - acl_tables_in = [] - acl_tables_out = [] - - for table_index in range(1, (ACL_TABLE_COUNT*2+1)): - table_id = eni_index * 1000 + table_index - - stage = (table_index - 1) % 3 + 1 - if table_index < 4: - acl_tables_in.append( - { - "acl-group-id": "acl-group-%d" % table_id, - "stage": stage - } - ) - else: - acl_tables_out.append( - { - "acl-group-id": "acl-group-%d" % table_id, - "stage": stage - } - ) - - enis.append( - { +#!/usr/bin/python3 + +import sys + +from dashgen.confbase import * +from dashgen.confutils import * + + +class Enis(ConfBase): + + def __init__(self, params={}): + super().__init__('enis', params) + + def items(self): + self.numYields = 0 + print(' Generating %s...' % self.dictname, file=sys.stderr) + p = self.params + cp = self.cooked_params + for eni_index in range(1, p.ENI_COUNT+1): + local_mac = str(macaddress.MAC(int(cp.MAC_L_START)+(eni_index - 1)*int(macaddress.MAC(p.ENI_MAC_STEP)))).replace('-', ':') + + acl_tables_in = [] + acl_tables_out = [] + + for table_index in range(1, (p.ACL_TABLE_COUNT*2+1)): + table_id = eni_index * 1000 + table_index + + stage = (table_index - 1) % 3 + 1 + if table_index < 4: + acl_tables_in.append( + { + "acl-group-id": "acl-group-%d" % table_id, + "stage": stage + } + ) + else: + acl_tables_out.append( + { + "acl-group-id": "acl-group-%d" % table_id, + "stage": stage + } + ) + + self.numYields += 1 + yield { 'ENI:%d' % eni_index: { 'eni-id': 'eni-%d' % eni_index, 'mac': local_mac, @@ -42,5 +54,8 @@ def generate(): "route-table-v4": "route-table-%d" % eni_index }, } - ) - return {"enis": enis} + + +if __name__ == "__main__": + conf = Enis() + common_main(conf) diff --git a/test/confgen/dashgen/prefixtags.py b/test/confgen/dashgen/prefixtags.py index 1bb1bd4f3..61bd5e2f4 100644 --- a/test/confgen/dashgen/prefixtags.py +++ b/test/confgen/dashgen/prefixtags.py @@ -1,34 +1,50 @@ -import ipaddress -from dashgen.variables import * - - -def generate(): - print(' ' + os.path.basename(__file__)) - prefixtag = [] - for eni_index in range(1, ENI_COUNT+1): - IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 - r_vpc = eni_index + ENI_L2R_STEP - IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 - prefixtag.append( - { - "PREFIX-TAG:VPC:%d" % eni_index: { - "prefix-tag-id": "%d" % eni_index, - "prefix-tag-number": eni_index, - "ip-prefixes-ipv4": [ - "%s/32" % IP_L - ] - }, - } - ) - prefixtag.append( - { - "PREFIX-TAG:VPC:%d" % r_vpc: { - "prefix-tag-id": "%d" % r_vpc, - "prefix-tag-number": r_vpc, - "ip-prefixes-ipv4": [ - "%s/9" % IP_R - ] - }, - } - ) - return {"prefix-tags": prefixtag} +#!/usr/bin/python3 + +import sys + +from dashgen.confbase import * +from dashgen.confutils import * + + +class PrefixTags(ConfBase): + + def __init__(self, params={}): + super().__init__('prefix-tags', params) + + def items(self): + self.numYields = 0 + print(' Generating %s...' % self.dictname, file=sys.stderr) + p = self.params + cp = self.cooked_params + for eni_index in range(1, p.ENI_COUNT+1): + IP_L = cp.IP_L_START + (eni_index - 1) * cp.IP_STEP4 + r_vpc = eni_index + p.ENI_L2R_STEP + IP_R = cp.IP_R_START + (eni_index - 1) * cp.IP_STEP4 + self.numYields += 1 + yield \ + { + "PREFIX-TAG:VPC:%d" % eni_index: { + "prefix-tag-id": "%d" % eni_index, + "prefix-tag-number": eni_index, + "ip-prefixes-ipv4": [ + "%s/32" % IP_L + ] + }, + } + + self.numYields += 1 + yield \ + { + "PREFIX-TAG:VPC:%d" % r_vpc: { + "prefix-tag-id": "%d" % r_vpc, + "prefix-tag-number": r_vpc, + "ip-prefixes-ipv4": [ + "%s/9" % IP_R + ] + }, + } + + +if __name__ == "__main__": + conf = PrefixTags() + common_main(conf) diff --git a/test/confgen/dashgen/routetables.py b/test/confgen/dashgen/routetables.py index 896bd044d..43a642fbe 100644 --- a/test/confgen/dashgen/routetables.py +++ b/test/confgen/dashgen/routetables.py @@ -1,65 +1,93 @@ -import ipaddress +#!/usr/bin/python3 + import math -from dashgen.variables import * +import sys +from copy import deepcopy + +from dashgen.confbase import * +from dashgen.confutils import * + +class RouteTables(ConfBase): -def generate(): - print(' ' + os.path.basename(__file__)) - routetable = [] + def __init__(self, params={}): + super().__init__('route-tables', params) - for eni_index in range(1, ENI_COUNT+1): - routes = [] - ip_prefixes = [] - ip_prefixes_append = ip_prefixes.append + def items(self): + self.numYields = 0 + print(' Generating %s...' % self.dictname, file=sys.stderr) + p = self.params + cp = self.cooked_params + # optimizations: + IP_ROUTE_DIVIDER_PER_ACL_RULE = p.IP_ROUTE_DIVIDER_PER_ACL_RULE + IP_PER_ACL_RULE = p.IP_PER_ACL_RULE + IP_STEP1 = cp.IP_STEP1 + IP_STEP2 = cp.IP_STEP2 + IP_STEP3 = cp.IP_STEP3 + IP_STEP4 = cp.IP_STEP4 + IP_R_START = cp.IP_R_START + IP_L_START = cp.IP_L_START + ACL_TABLE_COUNT = p.ACL_TABLE_COUNT + ACL_RULES_NSG = p.ACL_RULES_NSG + ENI_L2R_STEP = p.ENI_L2R_STEP - IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 - r_vpc = eni_index + ENI_L2R_STEP - IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 - routes.append( - { - "ip-prefixes": ["%s/32" % IP_L], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-%d" % eni_index + nr_of_routes_prefixes = int(math.log(p.IP_ROUTE_DIVIDER_PER_ACL_RULE, 2)) + for eni_index in range(1, p.ENI_COUNT+1): + routes = [] + ip_prefixes = [] + ip_prefixes_append = ip_prefixes.append + + IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 + r_vpc = eni_index + ENI_L2R_STEP + # IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 + routes.append( + { + "ip-prefixes": ["%s/32" % IP_L], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-%d" % eni_index + } } - } - ) + ) - for table_index in range(1, (ACL_TABLE_COUNT*2+1)): - #table_id = eni_index * 1000 + table_index + for table_index in range(1, (ACL_TABLE_COUNT*2+1)): + #table_id = eni_index * 1000 + table_index - for acl_index in range(1, (ACL_RULES_NSG+1)): - remote_ip = IP_R_START + (eni_index - 1) * IP_STEP4 + (table_index - 1) * 4 * IP_STEP3 + (acl_index - 1) * IP_STEP2 - no_of_route_groups = IP_PER_ACL_RULE // IP_ROUTE_DIVIDER_PER_ACL_RULE - for ip_index in range(0, no_of_route_groups): - nr_of_routes_prefixes = int(math.log(IP_ROUTE_DIVIDER_PER_ACL_RULE, 2)) - ip_prefix = remote_ip - 1 + ip_index * IP_ROUTE_DIVIDER_PER_ACL_RULE * IP_STEP1 - for prefix_index in range(nr_of_routes_prefixes, 0, -1): - nr_of_ips = int(math.pow(2, prefix_index-1)) - mask = 32 - prefix_index + 1 - if mask == 32: - ip_prefix = ip_prefix + 1 - ip_prefixes_append("%s/%d" % (ip_prefix, mask)) - ip_prefix = ip_prefix + IP_STEP1 * nr_of_ips + for acl_index in range(1, (ACL_RULES_NSG+1)): + remote_ip = IP_R_START + (eni_index - 1) * IP_STEP4 + (table_index - 1) * 4 * IP_STEP3 + (acl_index - 1) * IP_STEP2 + no_of_route_groups = IP_PER_ACL_RULE // IP_ROUTE_DIVIDER_PER_ACL_RULE + for ip_index in range(0, no_of_route_groups): + ip_prefix = remote_ip - 1 + ip_index * IP_ROUTE_DIVIDER_PER_ACL_RULE * IP_STEP1 + for prefix_index in range(nr_of_routes_prefixes, 0, -1): + # nr_of_ips = int(math.pow(2, prefix_index-1)) + nr_of_ips = 1 << (prefix_index-1) + mask = 32 - prefix_index + 1 + if mask == 32: + ip_prefix = ip_prefix + 1 + ip_prefixes_append("%s/%d" % (ip_prefix, mask)) + ip_prefix = ip_prefix + IP_STEP1 * nr_of_ips - routes.append( - { - "ip-prefixes": ip_prefixes, - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-%d" % r_vpc + routes.append( + { + "ip-prefixes": ip_prefixes, + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-%d" % r_vpc + } } - } - ) + ) - routetable.append( - { - "ROUTE-TABLE:%d" % eni_index: { - "route-table-id": "route-table-%d" % eni_index, - "ip-version": "IPv4", - "routes": routes + self.numYields += 1 + yield \ + { + "ROUTE-TABLE:%d" % eni_index: { + "route-table-id": "route-table-%d" % eni_index, + "ip-version": "IPv4", + "routes": routes + } } - } - ) - return {"route-tables": routetable} + +if __name__ == "__main__": + conf = RouteTables() + common_main(conf) diff --git a/test/confgen/dashgen/routingappliances.py b/test/confgen/dashgen/routingappliances.py index cbbe973e0..ff2a83aac 100644 --- a/test/confgen/dashgen/routingappliances.py +++ b/test/confgen/dashgen/routingappliances.py @@ -1,37 +1,62 @@ -from dashgen.variables import * - - -def generate(): - print(' ' + os.path.basename(__file__)) - routing_appliances = [] - for eni_index in range(1, ENI_COUNT+1): - IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 - r_vpc = eni_index + ENI_L2R_STEP - IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 - routing_appliances.append( - { - "ROUTING-APPLIANCE:%d" % eni_index: { - "appliance-id": "appliance-%d" % eni_index, - "routing-appliance-id": eni_index, - "routing-appliance-addresses": [ - "%s/32" % IP_L - ], - "encap-type": "vxlan", - "vni-key": eni_index - }, - } - ) - routing_appliances.append( - { - "ROUTING-APPLIANCE:%d" % r_vpc: { - "appliance-id": "appliance-%d" % r_vpc, - "routing-appliance-id": r_vpc, - "routing-appliance-addresses": [ - "%s/9" % IP_R - ], - "encap-type": "vxlan", - "vni-key": r_vpc - }, - } - ) - return {"routing-appliances": routing_appliances} +#!/usr/bin/python3 + +import sys +from copy import deepcopy + +from dashgen.confbase import * +from dashgen.confutils import * + + +class RoutingAppliances(ConfBase): + + def __init__(self, params={}): + super().__init__('routing-appliances', params) + + def items(self): + self.numYields = 0 + print(' Generating %s...' % self.dictname, file=sys.stderr) + p = self.params + cp = self.cooked_params + # optimizations: + IP_STEP4 = cp.IP_STEP4 + IP_R_START = cp.IP_R_START + IP_L_START = cp.IP_L_START + ENI_COUNT = p.ENI_COUNT + ENI_L2R_STEP = p.ENI_L2R_STEP + + for eni_index in range(1, ENI_COUNT+1): + IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 + r_vpc = eni_index + ENI_L2R_STEP + IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 + self.numYields += 1 + yield \ + { + "ROUTING-APPLIANCE:%d" % eni_index: { + "appliance-id": "appliance-%d" % eni_index, + "routing-appliance-id": eni_index, + "routing-appliance-addresses": [ + "%s/32" % IP_L + ], + "encap-type": "vxlan", + "vni-key": eni_index + } + } + + self.numYields += 1 + yield \ + { + "ROUTING-APPLIANCE:%d" % r_vpc: { + "appliance-id": "appliance-%d" % r_vpc, + "routing-appliance-id": r_vpc, + "routing-appliance-addresses": [ + "%s/9" % IP_R + ], + "encap-type": "vxlan", + "vni-key": r_vpc + }, + } + + +if __name__ == "__main__": + conf = RoutingAppliances() + common_main(conf) diff --git a/test/confgen/dashgen/variables.py b/test/confgen/dashgen/variables.py deleted file mode 100644 index 0065f9c96..000000000 --- a/test/confgen/dashgen/variables.py +++ /dev/null @@ -1,37 +0,0 @@ -import ipaddress -import macaddress -import os -ipp = ipaddress.ip_address - - -ENI_COUNT = 8 # 8 -ENI_MAC_STEP = '00:00:00:18:00:00' -ENI_STEP = 1 -ENI_L2R_STEP = 100 - - -ACL_TABLE_MAC_STEP = '00:00:00:04:00:00' -ACL_POLICY_MAC_STEP = '00:00:00:00:01:00' - -ACL_RULES_NSG = 1000 # 1000 -ACL_TABLE_COUNT = 3 - - -IP_MAPPED_PER_ACL_RULE = 40 # 40 -IP_PER_ACL_RULE = 255 # 255 -IP_ROUTE_DIVIDER_PER_ACL_RULE = 8 # 8, must be a power of 2 number - - -IP_STEP1 = int(ipp('0.0.0.1')) -IP_STEP2 = int(ipp('0.0.1.0')) -IP_STEP3 = int(ipp('0.1.0.0')) -IP_STEP4 = int(ipp('1.0.0.0')) -IP_STEPE = int(ipp('0.0.0.2')) - - -IP_L_START = ipaddress.ip_address('1.1.0.1') -IP_R_START = ipaddress.ip_address('1.128.0.1') - - -MAC_L_START = macaddress.MAC('00:1A:C5:00:00:01') -MAC_R_START = macaddress.MAC('00:1B:6E:00:00:01') diff --git a/test/confgen/dashgen/vpc.py b/test/confgen/dashgen/vpc.py deleted file mode 100644 index 74bdba5ad..000000000 --- a/test/confgen/dashgen/vpc.py +++ /dev/null @@ -1,35 +0,0 @@ -from dashgen.variables import * - - -def generate(): - print(' ' + os.path.basename(__file__)) - vpcs = [] - for eni_index in range(1, ENI_COUNT+1): - IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 - r_vpc = eni_index + ENI_L2R_STEP - IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 - vpcs.append( - { - "VPC:%d" % eni_index: { - "vpc-id": "vpc-%d" % eni_index, - "vni-key": eni_index, - "encap": "vxlan", - "address_spaces": [ - "%s/32" % IP_L - ] - }, - } - ) - vpcs.append( - { - "VPC:%d" % r_vpc: { - "vpc-id": "vpc-%d" % r_vpc, - "vni-key": r_vpc, - "encap": "vxlan", - "address_spaces": [ - "%s/9" % IP_R - ] - }, - } - ) - return {"vpc": vpcs} diff --git a/test/confgen/dashgen/vpcmappings.py b/test/confgen/dashgen/vpcmappings.py index 0c351f932..b4b868ab8 100644 --- a/test/confgen/dashgen/vpcmappings.py +++ b/test/confgen/dashgen/vpcmappings.py @@ -1,80 +1,114 @@ -from dashgen.variables import * +#!/usr/bin/python3 + +import sys from copy import deepcopy +from dashgen.confbase import * +from dashgen.confutils import * -def generate(): - print(' ' + os.path.basename(__file__)) - vpc_mappings = [] - PAL = ipp("221.0.1.0") - PAR = ipp("221.0.2.100") - for eni_index in range(1, ENI_COUNT + 1): - PAL = PAL + IP_STEP1 - PAR = PAR + IP_STEP1 - local_ip = IP_L_START + (eni_index - 1) * IP_STEP4 - local_mac = str( - macaddress.MAC( - int(MAC_L_START) + - (eni_index - 1) * int(macaddress.MAC(ENI_MAC_STEP)) - ) - ).replace('-', ':') +class VpcMappings(ConfBase): + + def __init__(self, params={}): + super().__init__('vpc-mappings', params) - l_vpc_mapping = deepcopy( - { - "MAPPINGS:VPC:%d" % eni_index: { - "vpc-id": "vpc-%d" % eni_index, - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "%s" % local_ip, - "underlay-ip-address": "%s" % PAL, - "mac": local_mac - } - ] - }, - } - ) - vpc_mappings.append(l_vpc_mapping) + def items(self): + self.numYields = 0 + print(' Generating %s...' % self.dictname, file=sys.stderr) + p = self.params + cp = self.cooked_params + PAL = cp.PAL + PAR = cp.PAR + IP_STEP1 = cp.IP_STEP1 + IP_STEP2 = cp.IP_STEP2 + IP_STEP3 = cp.IP_STEP3 + IP_STEP4 = cp.IP_STEP4 + IP_R_START = cp.IP_R_START + IP_L_START = cp.IP_L_START + ACL_TABLE_COUNT = p.ACL_TABLE_COUNT + ACL_RULES_NSG = p.ACL_RULES_NSG + ENI_MAC_STEP = p.ENI_MAC_STEP + MAC_L_START = cp.MAC_L_START + ACL_TABLE_MAC_STEP = p.ACL_TABLE_MAC_STEP + ACL_POLICY_MAC_STEP = p.ACL_POLICY_MAC_STEP + IP_MAPPED_PER_ACL_RULE = p.IP_MAPPED_PER_ACL_RULE + ENI_COUNT = p.ENI_COUNT + ENI_L2R_STEP = p.ENI_L2R_STEP - r_mappings = [] - r_mappings_append = r_mappings.append - r_vpc = eni_index + ENI_L2R_STEP - for table_index in range(1, (ACL_TABLE_COUNT*2+1)): - for ip_index in range(1, (ACL_RULES_NSG+1)): - remote_ip = IP_R_START + (eni_index - 1) * IP_STEP4 + (table_index - 1) * 4 * IP_STEP3 + (ip_index - 1) * IP_STEP2 - remote_mac = str( - macaddress.MAC( - int(macaddress.MAC('00:1B:6E:80:00:01')) + - (eni_index - 1) * int(macaddress.MAC(ENI_MAC_STEP)) + - (table_index - 1) * int(macaddress.MAC(ACL_TABLE_MAC_STEP)) + - (ip_index - 1) * int(macaddress.MAC(ACL_POLICY_MAC_STEP)) - ) - ).replace('-', ':') + for eni_index in range(1, ENI_COUNT + 1): + PAL = PAL + IP_STEP1 + PAR = PAR + IP_STEP1 + + local_ip = IP_L_START + (eni_index - 1) * IP_STEP4 + local_mac = str( + macaddress.MAC( + int(MAC_L_START) + + (eni_index - 1) * int(macaddress.MAC(ENI_MAC_STEP)) + ) + ).replace('-', ':') + + l_vpc_mapping = deepcopy( + { + "MAPPINGS:VPC:%d" % eni_index: { + "vpc-id": "vpc-%d" % eni_index, + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "%s" % local_ip, + "underlay-ip-address": "%s" % PAL, + "mac": local_mac + } + ] + }, + } + ) + self.numYields += 1 + yield l_vpc_mapping - for i in range(IP_MAPPED_PER_ACL_RULE): - remote_expanded_ip = remote_ip + i - remote_expanded_mac = str( + r_mappings = [] + r_mappings_append = r_mappings.append + r_vpc = eni_index + ENI_L2R_STEP + for table_index in range(1, (ACL_TABLE_COUNT*2+1)): + for ip_index in range(1, (ACL_RULES_NSG+1)): + remote_ip = IP_R_START + (eni_index - 1) * IP_STEP4 + (table_index - 1) * 4 * IP_STEP3 + (ip_index - 1) * IP_STEP2 + remote_mac = str( macaddress.MAC( - int(macaddress.MAC(remote_mac)) + i + int(macaddress.MAC('00:1B:6E:80:00:01')) + + (eni_index - 1) * int(macaddress.MAC(ENI_MAC_STEP)) + + (table_index - 1) * int(macaddress.MAC(ACL_TABLE_MAC_STEP)) + + (ip_index - 1) * int(macaddress.MAC(ACL_POLICY_MAC_STEP)) ) ).replace('-', ':') - r_mappings_append( - { - "routing-type": "vpc-direct", - "overlay-ip-address": "%s" % remote_expanded_ip, - "underlay-ip-address": "%s" % PAR, - "mac": remote_expanded_mac - } - ) - r_vpc_mapping = deepcopy( - { - "MAPPINGS:VPC:%d" % r_vpc: { - "vpc-id": "vpc-%d" % r_vpc, - "mappings": r_mappings - }, - } - ) + for i in range(IP_MAPPED_PER_ACL_RULE): + remote_expanded_ip = remote_ip + i + remote_expanded_mac = str( + macaddress.MAC( + int(macaddress.MAC(remote_mac)) + i + ) + ).replace('-', ':') + r_mappings_append( + { + "routing-type": "vpc-direct", + "overlay-ip-address": "%s" % remote_expanded_ip, + "underlay-ip-address": "%s" % PAR, + "mac": remote_expanded_mac + } + ) + + r_vpc_mapping = deepcopy( + { + "MAPPINGS:VPC:%d" % r_vpc: { + "vpc-id": "vpc-%d" % r_vpc, + "mappings": r_mappings + }, + } + ) + + self.numYields += 1 + yield r_vpc_mapping + - vpc_mappings.append(r_vpc_mapping) - return {'vpc-mappings': vpc_mappings} +if __name__ == "__main__": + conf = VpcMappings() + common_main(conf) diff --git a/test/confgen/dashgen/vpcmappingtypes.py b/test/confgen/dashgen/vpcmappingtypes.py index 1071af24a..c6f0cd5de 100644 --- a/test/confgen/dashgen/vpcmappingtypes.py +++ b/test/confgen/dashgen/vpcmappingtypes.py @@ -1,12 +1,35 @@ -from dashgen.variables import * +#!/usr/bin/python3 +import sys -def generate(): - print(' ' + os.path.basename(__file__)) - vpcmappingtypes = [ - "vpc", - "privatelink", - "privatelinknsg" - ] +from dashgen.confbase import * +from dashgen.confutils import * - return {"vpc-mappings-routing-types": vpcmappingtypes} + +class VpcMappingTypes(ConfBase): + + def __init__(self, params={}): + super().__init__('vpc-mappings-routing-types', params) + + def items(self): + self.numYields = 0 + print(' Generating %s...' % self.dictname, file=sys.stderr) + p = self.params + cp = self.cooked_params + + vpcmappingtypes = [ + "vpc", + "privatelink", + "privatelinknsg" + ] + + # return generator from list for consistency with other subgenerators + for x in vpcmappingtypes: + + self.numYields += 1 + yield x + + +if __name__ == "__main__": + conf = VpcMappingTypes() + common_main(conf) diff --git a/test/confgen/dashgen/vpcs.py b/test/confgen/dashgen/vpcs.py new file mode 100644 index 000000000..12fc6cf4d --- /dev/null +++ b/test/confgen/dashgen/vpcs.py @@ -0,0 +1,57 @@ +#!/usr/bin/python3 + +import sys +from copy import deepcopy + +from dashgen.confbase import * +from dashgen.confutils import * + + +class Vpcs(ConfBase): + + def __init__(self, params={}): + super().__init__('vpc', params) + + def items(self): + self.numYields = 0 + print(' Generating %s...' % self.dictname, file=sys.stderr) + p = self.params + cp = self.cooked_params + IP_L_START = cp.IP_L_START + IP_R_START = cp.IP_R_START + IP_STEP4 = cp.IP_STEP4 + ENI_L2R_STEP = p.ENI_L2R_STEP + ENI_COUNT = p.ENI_COUNT + + for eni_index in range(1, ENI_COUNT+1): + IP_L = IP_L_START + (eni_index - 1) * IP_STEP4 + r_vpc = eni_index + ENI_L2R_STEP + IP_R = IP_R_START + (eni_index - 1) * IP_STEP4 + self.numYields += 1 + yield { + "VPC:%d" % eni_index: { + "vpc-id": "vpc-%d" % eni_index, + "vni-key": eni_index, + "encap": "vxlan", + "address_spaces": [ + "%s/32" % IP_L + ] + }, + } + + self.numYields += 1 + yield { + "VPC:%d" % r_vpc: { + "vpc-id": "vpc-%d" % r_vpc, + "vni-key": r_vpc, + "encap": "vxlan", + "address_spaces": [ + "%s/9" % IP_R + ] + }, + } + + +if __name__ == "__main__": + conf = Vpcs() + common_main(conf) diff --git a/test/confgen/generate.d.py b/test/confgen/generate.d.py index 01be6e598..6a75e693a 100644 --- a/test/confgen/generate.d.py +++ b/test/confgen/generate.d.py @@ -1,29 +1,43 @@ -import io -import orjson -import dashgen +#!/usr/bin/python3 +import dashgen +from dashgen.confbase import * +from dashgen.confutils import * print('generating config') -enis = dashgen.enis.generate() -aclgroups = dashgen.aclgroups.generate() -vpc = dashgen.vpc.generate() -vpcmappingtypes = dashgen.vpcmappingtypes.generate() -vpcmappings = dashgen.vpcmappings.generate() -routingappliances = dashgen.routingappliances.generate() -routetables = dashgen.routetables.generate() -prefixtags = dashgen.prefixtags.generate() -config = {} -config.update(enis) -config.update(aclgroups) -config.update(vpc) -config.update(vpcmappingtypes) -config.update(vpcmappings) -config.update(routingappliances) -config.update(routetables) -config.update(prefixtags) - -print('writing the config to file') -with io.open(r'dash_conf.json', 'wb') as jsonfile: - jsonfile.write(orjson.dumps(config, option=orjson.OPT_INDENT_2)) - -print('done') + +parser = commonArgParser() +args = parser.parse_args() + + +class DashConfig(ConfBase): + + def __init__(self, params={}): + super().__init__('dash-config', params) + + def generate(self): + # Pass top-level params to sub-generrators. + self.configs = [ + dashgen.enis.Enis(self.params_dict), + dashgen.aclgroups.AclGroups(self.params_dict), + dashgen.vpcs.Vpcs(self.params_dict), + dashgen.vpcmappingtypes.VpcMappingTypes(self.params_dict), + dashgen.vpcmappings.VpcMappings(self.params_dict), + dashgen.routingappliances.RoutingAppliances(self.params_dict), + dashgen.routetables.RouteTables(self.params_dict), + dashgen.prefixtags.PrefixTags(self.params_dict), + ] + + def toDict(self): + return {x.dictName(): x.items() for x in self.configs} + + def items(self): + return (c.items() for c in self.configs) + + +if __name__ == "__main__": + conf = DashConfig() + common_parse_args(conf) + conf.generate() + common_output(conf) + print('done') diff --git a/test/confgen/images/confgen-apps.svg b/test/confgen/images/confgen-apps.svg new file mode 100644 index 000000000..916e33882 --- /dev/null +++ b/test/confgen/images/confgen-apps.svg @@ -0,0 +1,4 @@ + + + +
custom application
e.g. saithrift-driver.py
custom application...
config datastructures
config dat...
API driver
API driver
DUT
DUT
data stream
data stream
RPC interface
RPC interface
sub-generators
sub-generators
API driver
custom or proprietary
API driver...
DUT
DUT
RPC interface
RPC interface
Previously-generated data files
Previously-generated...
JSON File as device config data
JSON File as device config data
Stream data as API input source
Stream data as API input source
Test Traffic
Test Traffic
Traffic-generator
Traffic-ge...
Traffic-gen control
Traffic-gen control
Config Control
Config Control
Text is not SVG - cannot display
\ No newline at end of file diff --git a/test/confgen/images/confgen-hld-diag.svg b/test/confgen/images/confgen-hld-diag.svg new file mode 100644 index 000000000..a1f47b6ea --- /dev/null +++ b/test/confgen/images/confgen-hld-diag.svg @@ -0,0 +1,4 @@ + + + +
canned uber-generator application
e.g. generate.d.py
canned uber-generator application...
config datastructures
config dat...
config datastructures
config dat...
sub-generators
e.g. aclgroups.py
(can be run individually)
sub-generators...
output rendering
output rendering
> _
> _
file
file
stdout
stdout
downstream tools
downstream tools
input params
input params
OR
OR
Text
Text
Text is not SVG - cannot display
\ No newline at end of file diff --git a/test/confgen/requirments.txt b/test/confgen/requirments.txt index 73b529fd6..f50d59585 100644 --- a/test/confgen/requirments.txt +++ b/test/confgen/requirments.txt @@ -1,3 +1,3 @@ -orjson ipaddress -macaddress \ No newline at end of file +macaddress +munch diff --git a/test/confgen/sample_dash_conf.json b/test/confgen/sample_dash_conf.json index 7e6ef1c66..72208be68 100644 --- a/test/confgen/sample_dash_conf.json +++ b/test/confgen/sample_dash_conf.json @@ -1,22463 +1,22469 @@ { - "enis": [ - { - "ENI:1": { - "eni-id": "eni-1", - "mac": "00:1A:C5:00:00:01", - "vpcs": [ - 1 - ], - "acls-v4-in": [ - { - "acl-group-id": "acl-group-1001", - "stage": 1 - }, - { - "acl-group-id": "acl-group-1002", - "stage": 2 - }, - { - "acl-group-id": "acl-group-1003", - "stage": 3 - } - ], - "acls-v4-out": [ - { - "acl-group-id": "acl-group-1004", - "stage": 1 - }, - { - "acl-group-id": "acl-group-1005", - "stage": 2 - }, - { - "acl-group-id": "acl-group-1006", - "stage": 3 - } - ], - "route-table-v4": "route-table-1" - } - }, - { - "ENI:2": { - "eni-id": "eni-2", - "mac": "00:1A:C5:18:00:01", - "vpcs": [ - 2 - ], - "acls-v4-in": [ - { - "acl-group-id": "acl-group-2001", - "stage": 1 - }, - { - "acl-group-id": "acl-group-2002", - "stage": 2 - }, - { - "acl-group-id": "acl-group-2003", - "stage": 3 - } - ], - "acls-v4-out": [ - { - "acl-group-id": "acl-group-2004", - "stage": 1 - }, - { - "acl-group-id": "acl-group-2005", - "stage": 2 - }, - { - "acl-group-id": "acl-group-2006", - "stage": 3 - } - ], - "route-table-v4": "route-table-2" - } - }, - { - "ENI:3": { - "eni-id": "eni-3", - "mac": "00:1A:C5:30:00:01", - "vpcs": [ - 3 - ], - "acls-v4-in": [ - { - "acl-group-id": "acl-group-3001", - "stage": 1 - }, - { - "acl-group-id": "acl-group-3002", - "stage": 2 - }, - { - "acl-group-id": "acl-group-3003", - "stage": 3 - } - ], - "acls-v4-out": [ - { - "acl-group-id": "acl-group-3004", - "stage": 1 - }, - { - "acl-group-id": "acl-group-3005", - "stage": 2 - }, - { - "acl-group-id": "acl-group-3006", - "stage": 3 - } - ], - "route-table-v4": "route-table-3" - } - }, - { - "ENI:4": { - "eni-id": "eni-4", - "mac": "00:1A:C5:48:00:01", - "vpcs": [ - 4 - ], - "acls-v4-in": [ - { - "acl-group-id": "acl-group-4001", - "stage": 1 - }, - { - "acl-group-id": "acl-group-4002", - "stage": 2 - }, - { - "acl-group-id": "acl-group-4003", - "stage": 3 - } - ], - "acls-v4-out": [ - { - "acl-group-id": "acl-group-4004", - "stage": 1 - }, - { - "acl-group-id": "acl-group-4005", - "stage": 2 - }, - { - "acl-group-id": "acl-group-4006", - "stage": 3 - } - ], - "route-table-v4": "route-table-4" - } - }, - { - "ENI:5": { - "eni-id": "eni-5", - "mac": "00:1A:C5:60:00:01", - "vpcs": [ - 5 - ], - "acls-v4-in": [ - { - "acl-group-id": "acl-group-5001", - "stage": 1 - }, - { - "acl-group-id": "acl-group-5002", - "stage": 2 - }, - { - "acl-group-id": "acl-group-5003", - "stage": 3 - } - ], - "acls-v4-out": [ - { - "acl-group-id": "acl-group-5004", - "stage": 1 - }, - { - "acl-group-id": "acl-group-5005", - "stage": 2 - }, - { - "acl-group-id": "acl-group-5006", - "stage": 3 - } - ], - "route-table-v4": "route-table-5" - } - }, - { - "ENI:6": { - "eni-id": "eni-6", - "mac": "00:1A:C5:78:00:01", - "vpcs": [ - 6 - ], - "acls-v4-in": [ - { - "acl-group-id": "acl-group-6001", - "stage": 1 - }, - { - "acl-group-id": "acl-group-6002", - "stage": 2 - }, - { - "acl-group-id": "acl-group-6003", - "stage": 3 - } - ], - "acls-v4-out": [ - { - "acl-group-id": "acl-group-6004", - "stage": 1 - }, - { - "acl-group-id": "acl-group-6005", - "stage": 2 - }, - { - "acl-group-id": "acl-group-6006", - "stage": 3 - } - ], - "route-table-v4": "route-table-6" - } - }, - { - "ENI:7": { - "eni-id": "eni-7", - "mac": "00:1A:C5:90:00:01", - "vpcs": [ - 7 - ], - "acls-v4-in": [ - { - "acl-group-id": "acl-group-7001", - "stage": 1 - }, - { - "acl-group-id": "acl-group-7002", - "stage": 2 - }, - { - "acl-group-id": "acl-group-7003", - "stage": 3 - } - ], - "acls-v4-out": [ - { - "acl-group-id": "acl-group-7004", - "stage": 1 - }, - { - "acl-group-id": "acl-group-7005", - "stage": 2 - }, - { - "acl-group-id": "acl-group-7006", - "stage": 3 - } - ], - "route-table-v4": "route-table-7" - } - }, - { - "ENI:8": { - "eni-id": "eni-8", - "mac": "00:1A:C5:A8:00:01", - "vpcs": [ - 8 - ], - "acls-v4-in": [ - { - "acl-group-id": "acl-group-8001", - "stage": 1 - }, - { - "acl-group-id": "acl-group-8002", - "stage": 2 - }, - { - "acl-group-id": "acl-group-8003", - "stage": 3 - } - ], - "acls-v4-out": [ - { - "acl-group-id": "acl-group-8004", - "stage": 1 - }, - { - "acl-group-id": "acl-group-8005", - "stage": 2 - }, - { - "acl-group-id": "acl-group-8006", - "stage": 3 - } - ], - "route-table-v4": "route-table-8" - } + "enis": +[ + { + "ENI:1": { + "eni-id": "eni-1", + "mac": "00:1A:C5:00:00:01", + "vpcs": [ + 1 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-1001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-1002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-1003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-1004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-1005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-1006", + "stage": 3 + } + ], + "route-table-v4": "route-table-1" } - ], - "acl-groups": [ - { - "ACL-GROUP:ENI:1:TABLE:1001": { - "acl-group-id": "acl-group-1001", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.128.0.1/32", - "1.128.0.3/32", - "1.128.0.5/32", - "1.128.0.7/32", - "1.128.0.9/32", - "1.128.0.11/32", - "1.128.0.13/32", - "1.128.0.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.128.0.1/32", - "1.128.0.3/32", - "1.128.0.5/32", - "1.128.0.7/32", - "1.128.0.9/32", - "1.128.0.11/32", - "1.128.0.13/32", - "1.128.0.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.128.0.2/32", - "1.128.0.4/32", - "1.128.0.6/32", - "1.128.0.8/32", - "1.128.0.10/32", - "1.128.0.12/32", - "1.128.0.14/32", - "1.128.0.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.128.0.2/32", - "1.128.0.4/32", - "1.128.0.6/32", - "1.128.0.8/32", - "1.128.0.10/32", - "1.128.0.12/32", - "1.128.0.14/32", - "1.128.0.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.128.2.1/32", - "1.128.2.3/32", - "1.128.2.5/32", - "1.128.2.7/32", - "1.128.2.9/32", - "1.128.2.11/32", - "1.128.2.13/32", - "1.128.2.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.128.2.1/32", - "1.128.2.3/32", - "1.128.2.5/32", - "1.128.2.7/32", - "1.128.2.9/32", - "1.128.2.11/32", - "1.128.2.13/32", - "1.128.2.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.128.2.2/32", - "1.128.2.4/32", - "1.128.2.6/32", - "1.128.2.8/32", - "1.128.2.10/32", - "1.128.2.12/32", - "1.128.2.14/32", - "1.128.2.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.128.2.2/32", - "1.128.2.4/32", - "1.128.2.6/32", - "1.128.2.8/32", - "1.128.2.10/32", - "1.128.2.12/32", - "1.128.2.14/32", - "1.128.2.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.128.4.1/32", - "1.128.4.3/32", - "1.128.4.5/32", - "1.128.4.7/32", - "1.128.4.9/32", - "1.128.4.11/32", - "1.128.4.13/32", - "1.128.4.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.128.4.1/32", - "1.128.4.3/32", - "1.128.4.5/32", - "1.128.4.7/32", - "1.128.4.9/32", - "1.128.4.11/32", - "1.128.4.13/32", - "1.128.4.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.128.4.2/32", - "1.128.4.4/32", - "1.128.4.6/32", - "1.128.4.8/32", - "1.128.4.10/32", - "1.128.4.12/32", - "1.128.4.14/32", - "1.128.4.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.128.4.2/32", - "1.128.4.4/32", - "1.128.4.6/32", - "1.128.4.8/32", - "1.128.4.10/32", - "1.128.4.12/32", - "1.128.4.14/32", - "1.128.4.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.128.6.1/32", - "1.128.6.3/32", - "1.128.6.5/32", - "1.128.6.7/32", - "1.128.6.9/32", - "1.128.6.11/32", - "1.128.6.13/32", - "1.128.6.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.128.6.1/32", - "1.128.6.3/32", - "1.128.6.5/32", - "1.128.6.7/32", - "1.128.6.9/32", - "1.128.6.11/32", - "1.128.6.13/32", - "1.128.6.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.128.6.2/32", - "1.128.6.4/32", - "1.128.6.6/32", - "1.128.6.8/32", - "1.128.6.10/32", - "1.128.6.12/32", - "1.128.6.14/32", - "1.128.6.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.128.6.2/32", - "1.128.6.4/32", - "1.128.6.6/32", - "1.128.6.8/32", - "1.128.6.10/32", - "1.128.6.12/32", - "1.128.6.14/32", - "1.128.6.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.128.8.1/32", - "1.128.8.3/32", - "1.128.8.5/32", - "1.128.8.7/32", - "1.128.8.9/32", - "1.128.8.11/32", - "1.128.8.13/32", - "1.128.8.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.128.8.1/32", - "1.128.8.3/32", - "1.128.8.5/32", - "1.128.8.7/32", - "1.128.8.9/32", - "1.128.8.11/32", - "1.128.8.13/32", - "1.128.8.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.128.8.2/32", - "1.128.8.4/32", - "1.128.8.6/32", - "1.128.8.8/32", - "1.128.8.10/32", - "1.128.8.12/32", - "1.128.8.14/32", - "1.128.8.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.128.8.2/32", - "1.128.8.4/32", - "1.128.8.6/32", - "1.128.8.8/32", - "1.128.8.10/32", - "1.128.8.12/32", - "1.128.8.14/32", - "1.128.8.16/32", - "1.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:1:TABLE:1002": { - "acl-group-id": "acl-group-1002", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.132.0.1/32", - "1.132.0.3/32", - "1.132.0.5/32", - "1.132.0.7/32", - "1.132.0.9/32", - "1.132.0.11/32", - "1.132.0.13/32", - "1.132.0.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.132.0.1/32", - "1.132.0.3/32", - "1.132.0.5/32", - "1.132.0.7/32", - "1.132.0.9/32", - "1.132.0.11/32", - "1.132.0.13/32", - "1.132.0.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.132.0.2/32", - "1.132.0.4/32", - "1.132.0.6/32", - "1.132.0.8/32", - "1.132.0.10/32", - "1.132.0.12/32", - "1.132.0.14/32", - "1.132.0.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.132.0.2/32", - "1.132.0.4/32", - "1.132.0.6/32", - "1.132.0.8/32", - "1.132.0.10/32", - "1.132.0.12/32", - "1.132.0.14/32", - "1.132.0.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.132.2.1/32", - "1.132.2.3/32", - "1.132.2.5/32", - "1.132.2.7/32", - "1.132.2.9/32", - "1.132.2.11/32", - "1.132.2.13/32", - "1.132.2.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.132.2.1/32", - "1.132.2.3/32", - "1.132.2.5/32", - "1.132.2.7/32", - "1.132.2.9/32", - "1.132.2.11/32", - "1.132.2.13/32", - "1.132.2.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.132.2.2/32", - "1.132.2.4/32", - "1.132.2.6/32", - "1.132.2.8/32", - "1.132.2.10/32", - "1.132.2.12/32", - "1.132.2.14/32", - "1.132.2.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.132.2.2/32", - "1.132.2.4/32", - "1.132.2.6/32", - "1.132.2.8/32", - "1.132.2.10/32", - "1.132.2.12/32", - "1.132.2.14/32", - "1.132.2.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.132.4.1/32", - "1.132.4.3/32", - "1.132.4.5/32", - "1.132.4.7/32", - "1.132.4.9/32", - "1.132.4.11/32", - "1.132.4.13/32", - "1.132.4.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.132.4.1/32", - "1.132.4.3/32", - "1.132.4.5/32", - "1.132.4.7/32", - "1.132.4.9/32", - "1.132.4.11/32", - "1.132.4.13/32", - "1.132.4.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.132.4.2/32", - "1.132.4.4/32", - "1.132.4.6/32", - "1.132.4.8/32", - "1.132.4.10/32", - "1.132.4.12/32", - "1.132.4.14/32", - "1.132.4.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.132.4.2/32", - "1.132.4.4/32", - "1.132.4.6/32", - "1.132.4.8/32", - "1.132.4.10/32", - "1.132.4.12/32", - "1.132.4.14/32", - "1.132.4.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.132.6.1/32", - "1.132.6.3/32", - "1.132.6.5/32", - "1.132.6.7/32", - "1.132.6.9/32", - "1.132.6.11/32", - "1.132.6.13/32", - "1.132.6.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.132.6.1/32", - "1.132.6.3/32", - "1.132.6.5/32", - "1.132.6.7/32", - "1.132.6.9/32", - "1.132.6.11/32", - "1.132.6.13/32", - "1.132.6.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.132.6.2/32", - "1.132.6.4/32", - "1.132.6.6/32", - "1.132.6.8/32", - "1.132.6.10/32", - "1.132.6.12/32", - "1.132.6.14/32", - "1.132.6.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.132.6.2/32", - "1.132.6.4/32", - "1.132.6.6/32", - "1.132.6.8/32", - "1.132.6.10/32", - "1.132.6.12/32", - "1.132.6.14/32", - "1.132.6.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.132.8.1/32", - "1.132.8.3/32", - "1.132.8.5/32", - "1.132.8.7/32", - "1.132.8.9/32", - "1.132.8.11/32", - "1.132.8.13/32", - "1.132.8.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.132.8.1/32", - "1.132.8.3/32", - "1.132.8.5/32", - "1.132.8.7/32", - "1.132.8.9/32", - "1.132.8.11/32", - "1.132.8.13/32", - "1.132.8.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.132.8.2/32", - "1.132.8.4/32", - "1.132.8.6/32", - "1.132.8.8/32", - "1.132.8.10/32", - "1.132.8.12/32", - "1.132.8.14/32", - "1.132.8.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.132.8.2/32", - "1.132.8.4/32", - "1.132.8.6/32", - "1.132.8.8/32", - "1.132.8.10/32", - "1.132.8.12/32", - "1.132.8.14/32", - "1.132.8.16/32", - "1.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:1:TABLE:1003": { - "acl-group-id": "acl-group-1003", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.136.0.1/32", - "1.136.0.3/32", - "1.136.0.5/32", - "1.136.0.7/32", - "1.136.0.9/32", - "1.136.0.11/32", - "1.136.0.13/32", - "1.136.0.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.136.0.1/32", - "1.136.0.3/32", - "1.136.0.5/32", - "1.136.0.7/32", - "1.136.0.9/32", - "1.136.0.11/32", - "1.136.0.13/32", - "1.136.0.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.136.0.2/32", - "1.136.0.4/32", - "1.136.0.6/32", - "1.136.0.8/32", - "1.136.0.10/32", - "1.136.0.12/32", - "1.136.0.14/32", - "1.136.0.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.136.0.2/32", - "1.136.0.4/32", - "1.136.0.6/32", - "1.136.0.8/32", - "1.136.0.10/32", - "1.136.0.12/32", - "1.136.0.14/32", - "1.136.0.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.136.2.1/32", - "1.136.2.3/32", - "1.136.2.5/32", - "1.136.2.7/32", - "1.136.2.9/32", - "1.136.2.11/32", - "1.136.2.13/32", - "1.136.2.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.136.2.1/32", - "1.136.2.3/32", - "1.136.2.5/32", - "1.136.2.7/32", - "1.136.2.9/32", - "1.136.2.11/32", - "1.136.2.13/32", - "1.136.2.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.136.2.2/32", - "1.136.2.4/32", - "1.136.2.6/32", - "1.136.2.8/32", - "1.136.2.10/32", - "1.136.2.12/32", - "1.136.2.14/32", - "1.136.2.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.136.2.2/32", - "1.136.2.4/32", - "1.136.2.6/32", - "1.136.2.8/32", - "1.136.2.10/32", - "1.136.2.12/32", - "1.136.2.14/32", - "1.136.2.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.136.4.1/32", - "1.136.4.3/32", - "1.136.4.5/32", - "1.136.4.7/32", - "1.136.4.9/32", - "1.136.4.11/32", - "1.136.4.13/32", - "1.136.4.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.136.4.1/32", - "1.136.4.3/32", - "1.136.4.5/32", - "1.136.4.7/32", - "1.136.4.9/32", - "1.136.4.11/32", - "1.136.4.13/32", - "1.136.4.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.136.4.2/32", - "1.136.4.4/32", - "1.136.4.6/32", - "1.136.4.8/32", - "1.136.4.10/32", - "1.136.4.12/32", - "1.136.4.14/32", - "1.136.4.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.136.4.2/32", - "1.136.4.4/32", - "1.136.4.6/32", - "1.136.4.8/32", - "1.136.4.10/32", - "1.136.4.12/32", - "1.136.4.14/32", - "1.136.4.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.136.6.1/32", - "1.136.6.3/32", - "1.136.6.5/32", - "1.136.6.7/32", - "1.136.6.9/32", - "1.136.6.11/32", - "1.136.6.13/32", - "1.136.6.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.136.6.1/32", - "1.136.6.3/32", - "1.136.6.5/32", - "1.136.6.7/32", - "1.136.6.9/32", - "1.136.6.11/32", - "1.136.6.13/32", - "1.136.6.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.136.6.2/32", - "1.136.6.4/32", - "1.136.6.6/32", - "1.136.6.8/32", - "1.136.6.10/32", - "1.136.6.12/32", - "1.136.6.14/32", - "1.136.6.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.136.6.2/32", - "1.136.6.4/32", - "1.136.6.6/32", - "1.136.6.8/32", - "1.136.6.10/32", - "1.136.6.12/32", - "1.136.6.14/32", - "1.136.6.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.136.8.1/32", - "1.136.8.3/32", - "1.136.8.5/32", - "1.136.8.7/32", - "1.136.8.9/32", - "1.136.8.11/32", - "1.136.8.13/32", - "1.136.8.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.136.8.1/32", - "1.136.8.3/32", - "1.136.8.5/32", - "1.136.8.7/32", - "1.136.8.9/32", - "1.136.8.11/32", - "1.136.8.13/32", - "1.136.8.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.136.8.2/32", - "1.136.8.4/32", - "1.136.8.6/32", - "1.136.8.8/32", - "1.136.8.10/32", - "1.136.8.12/32", - "1.136.8.14/32", - "1.136.8.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.136.8.2/32", - "1.136.8.4/32", - "1.136.8.6/32", - "1.136.8.8/32", - "1.136.8.10/32", - "1.136.8.12/32", - "1.136.8.14/32", - "1.136.8.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "1.1.0.1/32", - "1.140.0.1/14", - "1.144.0.1/14", - "1.148.0.1/14" - ], - "dst_addrs": [ - "1.1.0.1/32", - "1.140.0.1/14", - "1.144.0.1/14", - "1.148.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:1:TABLE:1004": { - "acl-group-id": "acl-group-1004", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.140.0.1/32", - "1.140.0.3/32", - "1.140.0.5/32", - "1.140.0.7/32", - "1.140.0.9/32", - "1.140.0.11/32", - "1.140.0.13/32", - "1.140.0.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.140.0.1/32", - "1.140.0.3/32", - "1.140.0.5/32", - "1.140.0.7/32", - "1.140.0.9/32", - "1.140.0.11/32", - "1.140.0.13/32", - "1.140.0.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.140.0.2/32", - "1.140.0.4/32", - "1.140.0.6/32", - "1.140.0.8/32", - "1.140.0.10/32", - "1.140.0.12/32", - "1.140.0.14/32", - "1.140.0.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.140.0.2/32", - "1.140.0.4/32", - "1.140.0.6/32", - "1.140.0.8/32", - "1.140.0.10/32", - "1.140.0.12/32", - "1.140.0.14/32", - "1.140.0.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.140.2.1/32", - "1.140.2.3/32", - "1.140.2.5/32", - "1.140.2.7/32", - "1.140.2.9/32", - "1.140.2.11/32", - "1.140.2.13/32", - "1.140.2.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.140.2.1/32", - "1.140.2.3/32", - "1.140.2.5/32", - "1.140.2.7/32", - "1.140.2.9/32", - "1.140.2.11/32", - "1.140.2.13/32", - "1.140.2.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.140.2.2/32", - "1.140.2.4/32", - "1.140.2.6/32", - "1.140.2.8/32", - "1.140.2.10/32", - "1.140.2.12/32", - "1.140.2.14/32", - "1.140.2.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.140.2.2/32", - "1.140.2.4/32", - "1.140.2.6/32", - "1.140.2.8/32", - "1.140.2.10/32", - "1.140.2.12/32", - "1.140.2.14/32", - "1.140.2.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.140.4.1/32", - "1.140.4.3/32", - "1.140.4.5/32", - "1.140.4.7/32", - "1.140.4.9/32", - "1.140.4.11/32", - "1.140.4.13/32", - "1.140.4.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.140.4.1/32", - "1.140.4.3/32", - "1.140.4.5/32", - "1.140.4.7/32", - "1.140.4.9/32", - "1.140.4.11/32", - "1.140.4.13/32", - "1.140.4.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.140.4.2/32", - "1.140.4.4/32", - "1.140.4.6/32", - "1.140.4.8/32", - "1.140.4.10/32", - "1.140.4.12/32", - "1.140.4.14/32", - "1.140.4.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.140.4.2/32", - "1.140.4.4/32", - "1.140.4.6/32", - "1.140.4.8/32", - "1.140.4.10/32", - "1.140.4.12/32", - "1.140.4.14/32", - "1.140.4.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.140.6.1/32", - "1.140.6.3/32", - "1.140.6.5/32", - "1.140.6.7/32", - "1.140.6.9/32", - "1.140.6.11/32", - "1.140.6.13/32", - "1.140.6.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.140.6.1/32", - "1.140.6.3/32", - "1.140.6.5/32", - "1.140.6.7/32", - "1.140.6.9/32", - "1.140.6.11/32", - "1.140.6.13/32", - "1.140.6.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.140.6.2/32", - "1.140.6.4/32", - "1.140.6.6/32", - "1.140.6.8/32", - "1.140.6.10/32", - "1.140.6.12/32", - "1.140.6.14/32", - "1.140.6.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.140.6.2/32", - "1.140.6.4/32", - "1.140.6.6/32", - "1.140.6.8/32", - "1.140.6.10/32", - "1.140.6.12/32", - "1.140.6.14/32", - "1.140.6.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.140.8.1/32", - "1.140.8.3/32", - "1.140.8.5/32", - "1.140.8.7/32", - "1.140.8.9/32", - "1.140.8.11/32", - "1.140.8.13/32", - "1.140.8.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.140.8.1/32", - "1.140.8.3/32", - "1.140.8.5/32", - "1.140.8.7/32", - "1.140.8.9/32", - "1.140.8.11/32", - "1.140.8.13/32", - "1.140.8.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.140.8.2/32", - "1.140.8.4/32", - "1.140.8.6/32", - "1.140.8.8/32", - "1.140.8.10/32", - "1.140.8.12/32", - "1.140.8.14/32", - "1.140.8.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.140.8.2/32", - "1.140.8.4/32", - "1.140.8.6/32", - "1.140.8.8/32", - "1.140.8.10/32", - "1.140.8.12/32", - "1.140.8.14/32", - "1.140.8.16/32", - "1.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:1:TABLE:1005": { - "acl-group-id": "acl-group-1005", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.144.0.1/32", - "1.144.0.3/32", - "1.144.0.5/32", - "1.144.0.7/32", - "1.144.0.9/32", - "1.144.0.11/32", - "1.144.0.13/32", - "1.144.0.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.144.0.1/32", - "1.144.0.3/32", - "1.144.0.5/32", - "1.144.0.7/32", - "1.144.0.9/32", - "1.144.0.11/32", - "1.144.0.13/32", - "1.144.0.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.144.0.2/32", - "1.144.0.4/32", - "1.144.0.6/32", - "1.144.0.8/32", - "1.144.0.10/32", - "1.144.0.12/32", - "1.144.0.14/32", - "1.144.0.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.144.0.2/32", - "1.144.0.4/32", - "1.144.0.6/32", - "1.144.0.8/32", - "1.144.0.10/32", - "1.144.0.12/32", - "1.144.0.14/32", - "1.144.0.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.144.2.1/32", - "1.144.2.3/32", - "1.144.2.5/32", - "1.144.2.7/32", - "1.144.2.9/32", - "1.144.2.11/32", - "1.144.2.13/32", - "1.144.2.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.144.2.1/32", - "1.144.2.3/32", - "1.144.2.5/32", - "1.144.2.7/32", - "1.144.2.9/32", - "1.144.2.11/32", - "1.144.2.13/32", - "1.144.2.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.144.2.2/32", - "1.144.2.4/32", - "1.144.2.6/32", - "1.144.2.8/32", - "1.144.2.10/32", - "1.144.2.12/32", - "1.144.2.14/32", - "1.144.2.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.144.2.2/32", - "1.144.2.4/32", - "1.144.2.6/32", - "1.144.2.8/32", - "1.144.2.10/32", - "1.144.2.12/32", - "1.144.2.14/32", - "1.144.2.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.144.4.1/32", - "1.144.4.3/32", - "1.144.4.5/32", - "1.144.4.7/32", - "1.144.4.9/32", - "1.144.4.11/32", - "1.144.4.13/32", - "1.144.4.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.144.4.1/32", - "1.144.4.3/32", - "1.144.4.5/32", - "1.144.4.7/32", - "1.144.4.9/32", - "1.144.4.11/32", - "1.144.4.13/32", - "1.144.4.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.144.4.2/32", - "1.144.4.4/32", - "1.144.4.6/32", - "1.144.4.8/32", - "1.144.4.10/32", - "1.144.4.12/32", - "1.144.4.14/32", - "1.144.4.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.144.4.2/32", - "1.144.4.4/32", - "1.144.4.6/32", - "1.144.4.8/32", - "1.144.4.10/32", - "1.144.4.12/32", - "1.144.4.14/32", - "1.144.4.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.144.6.1/32", - "1.144.6.3/32", - "1.144.6.5/32", - "1.144.6.7/32", - "1.144.6.9/32", - "1.144.6.11/32", - "1.144.6.13/32", - "1.144.6.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.144.6.1/32", - "1.144.6.3/32", - "1.144.6.5/32", - "1.144.6.7/32", - "1.144.6.9/32", - "1.144.6.11/32", - "1.144.6.13/32", - "1.144.6.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.144.6.2/32", - "1.144.6.4/32", - "1.144.6.6/32", - "1.144.6.8/32", - "1.144.6.10/32", - "1.144.6.12/32", - "1.144.6.14/32", - "1.144.6.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.144.6.2/32", - "1.144.6.4/32", - "1.144.6.6/32", - "1.144.6.8/32", - "1.144.6.10/32", - "1.144.6.12/32", - "1.144.6.14/32", - "1.144.6.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.144.8.1/32", - "1.144.8.3/32", - "1.144.8.5/32", - "1.144.8.7/32", - "1.144.8.9/32", - "1.144.8.11/32", - "1.144.8.13/32", - "1.144.8.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.144.8.1/32", - "1.144.8.3/32", - "1.144.8.5/32", - "1.144.8.7/32", - "1.144.8.9/32", - "1.144.8.11/32", - "1.144.8.13/32", - "1.144.8.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.144.8.2/32", - "1.144.8.4/32", - "1.144.8.6/32", - "1.144.8.8/32", - "1.144.8.10/32", - "1.144.8.12/32", - "1.144.8.14/32", - "1.144.8.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.144.8.2/32", - "1.144.8.4/32", - "1.144.8.6/32", - "1.144.8.8/32", - "1.144.8.10/32", - "1.144.8.12/32", - "1.144.8.14/32", - "1.144.8.16/32", - "1.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:1:TABLE:1006": { - "acl-group-id": "acl-group-1006", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.148.0.1/32", - "1.148.0.3/32", - "1.148.0.5/32", - "1.148.0.7/32", - "1.148.0.9/32", - "1.148.0.11/32", - "1.148.0.13/32", - "1.148.0.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.148.0.1/32", - "1.148.0.3/32", - "1.148.0.5/32", - "1.148.0.7/32", - "1.148.0.9/32", - "1.148.0.11/32", - "1.148.0.13/32", - "1.148.0.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.148.0.2/32", - "1.148.0.4/32", - "1.148.0.6/32", - "1.148.0.8/32", - "1.148.0.10/32", - "1.148.0.12/32", - "1.148.0.14/32", - "1.148.0.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.148.0.2/32", - "1.148.0.4/32", - "1.148.0.6/32", - "1.148.0.8/32", - "1.148.0.10/32", - "1.148.0.12/32", - "1.148.0.14/32", - "1.148.0.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.148.2.1/32", - "1.148.2.3/32", - "1.148.2.5/32", - "1.148.2.7/32", - "1.148.2.9/32", - "1.148.2.11/32", - "1.148.2.13/32", - "1.148.2.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.148.2.1/32", - "1.148.2.3/32", - "1.148.2.5/32", - "1.148.2.7/32", - "1.148.2.9/32", - "1.148.2.11/32", - "1.148.2.13/32", - "1.148.2.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.148.2.2/32", - "1.148.2.4/32", - "1.148.2.6/32", - "1.148.2.8/32", - "1.148.2.10/32", - "1.148.2.12/32", - "1.148.2.14/32", - "1.148.2.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.148.2.2/32", - "1.148.2.4/32", - "1.148.2.6/32", - "1.148.2.8/32", - "1.148.2.10/32", - "1.148.2.12/32", - "1.148.2.14/32", - "1.148.2.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.148.4.1/32", - "1.148.4.3/32", - "1.148.4.5/32", - "1.148.4.7/32", - "1.148.4.9/32", - "1.148.4.11/32", - "1.148.4.13/32", - "1.148.4.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.148.4.1/32", - "1.148.4.3/32", - "1.148.4.5/32", - "1.148.4.7/32", - "1.148.4.9/32", - "1.148.4.11/32", - "1.148.4.13/32", - "1.148.4.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.148.4.2/32", - "1.148.4.4/32", - "1.148.4.6/32", - "1.148.4.8/32", - "1.148.4.10/32", - "1.148.4.12/32", - "1.148.4.14/32", - "1.148.4.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.148.4.2/32", - "1.148.4.4/32", - "1.148.4.6/32", - "1.148.4.8/32", - "1.148.4.10/32", - "1.148.4.12/32", - "1.148.4.14/32", - "1.148.4.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.148.6.1/32", - "1.148.6.3/32", - "1.148.6.5/32", - "1.148.6.7/32", - "1.148.6.9/32", - "1.148.6.11/32", - "1.148.6.13/32", - "1.148.6.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.148.6.1/32", - "1.148.6.3/32", - "1.148.6.5/32", - "1.148.6.7/32", - "1.148.6.9/32", - "1.148.6.11/32", - "1.148.6.13/32", - "1.148.6.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.148.6.2/32", - "1.148.6.4/32", - "1.148.6.6/32", - "1.148.6.8/32", - "1.148.6.10/32", - "1.148.6.12/32", - "1.148.6.14/32", - "1.148.6.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.148.6.2/32", - "1.148.6.4/32", - "1.148.6.6/32", - "1.148.6.8/32", - "1.148.6.10/32", - "1.148.6.12/32", - "1.148.6.14/32", - "1.148.6.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "1.148.8.1/32", - "1.148.8.3/32", - "1.148.8.5/32", - "1.148.8.7/32", - "1.148.8.9/32", - "1.148.8.11/32", - "1.148.8.13/32", - "1.148.8.15/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.148.8.1/32", - "1.148.8.3/32", - "1.148.8.5/32", - "1.148.8.7/32", - "1.148.8.9/32", - "1.148.8.11/32", - "1.148.8.13/32", - "1.148.8.15/32", - "1.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "1.148.8.2/32", - "1.148.8.4/32", - "1.148.8.6/32", - "1.148.8.8/32", - "1.148.8.10/32", - "1.148.8.12/32", - "1.148.8.14/32", - "1.148.8.16/32", - "1.1.0.1/32" - ], - "dst_addrs": [ - "1.148.8.2/32", - "1.148.8.4/32", - "1.148.8.6/32", - "1.148.8.8/32", - "1.148.8.10/32", - "1.148.8.12/32", - "1.148.8.14/32", - "1.148.8.16/32", - "1.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "1.1.0.1/32", - "1.128.0.1/14", - "1.132.0.1/14", - "1.136.0.1/14" - ], - "dst_addrs": [ - "1.1.0.1/32", - "1.128.0.1/14", - "1.132.0.1/14", - "1.136.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:2:TABLE:2001": { - "acl-group-id": "acl-group-2001", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.128.0.1/32", - "2.128.0.3/32", - "2.128.0.5/32", - "2.128.0.7/32", - "2.128.0.9/32", - "2.128.0.11/32", - "2.128.0.13/32", - "2.128.0.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.128.0.1/32", - "2.128.0.3/32", - "2.128.0.5/32", - "2.128.0.7/32", - "2.128.0.9/32", - "2.128.0.11/32", - "2.128.0.13/32", - "2.128.0.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.128.0.2/32", - "2.128.0.4/32", - "2.128.0.6/32", - "2.128.0.8/32", - "2.128.0.10/32", - "2.128.0.12/32", - "2.128.0.14/32", - "2.128.0.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.128.0.2/32", - "2.128.0.4/32", - "2.128.0.6/32", - "2.128.0.8/32", - "2.128.0.10/32", - "2.128.0.12/32", - "2.128.0.14/32", - "2.128.0.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.128.2.1/32", - "2.128.2.3/32", - "2.128.2.5/32", - "2.128.2.7/32", - "2.128.2.9/32", - "2.128.2.11/32", - "2.128.2.13/32", - "2.128.2.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.128.2.1/32", - "2.128.2.3/32", - "2.128.2.5/32", - "2.128.2.7/32", - "2.128.2.9/32", - "2.128.2.11/32", - "2.128.2.13/32", - "2.128.2.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.128.2.2/32", - "2.128.2.4/32", - "2.128.2.6/32", - "2.128.2.8/32", - "2.128.2.10/32", - "2.128.2.12/32", - "2.128.2.14/32", - "2.128.2.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.128.2.2/32", - "2.128.2.4/32", - "2.128.2.6/32", - "2.128.2.8/32", - "2.128.2.10/32", - "2.128.2.12/32", - "2.128.2.14/32", - "2.128.2.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.128.4.1/32", - "2.128.4.3/32", - "2.128.4.5/32", - "2.128.4.7/32", - "2.128.4.9/32", - "2.128.4.11/32", - "2.128.4.13/32", - "2.128.4.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.128.4.1/32", - "2.128.4.3/32", - "2.128.4.5/32", - "2.128.4.7/32", - "2.128.4.9/32", - "2.128.4.11/32", - "2.128.4.13/32", - "2.128.4.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.128.4.2/32", - "2.128.4.4/32", - "2.128.4.6/32", - "2.128.4.8/32", - "2.128.4.10/32", - "2.128.4.12/32", - "2.128.4.14/32", - "2.128.4.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.128.4.2/32", - "2.128.4.4/32", - "2.128.4.6/32", - "2.128.4.8/32", - "2.128.4.10/32", - "2.128.4.12/32", - "2.128.4.14/32", - "2.128.4.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.128.6.1/32", - "2.128.6.3/32", - "2.128.6.5/32", - "2.128.6.7/32", - "2.128.6.9/32", - "2.128.6.11/32", - "2.128.6.13/32", - "2.128.6.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.128.6.1/32", - "2.128.6.3/32", - "2.128.6.5/32", - "2.128.6.7/32", - "2.128.6.9/32", - "2.128.6.11/32", - "2.128.6.13/32", - "2.128.6.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.128.6.2/32", - "2.128.6.4/32", - "2.128.6.6/32", - "2.128.6.8/32", - "2.128.6.10/32", - "2.128.6.12/32", - "2.128.6.14/32", - "2.128.6.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.128.6.2/32", - "2.128.6.4/32", - "2.128.6.6/32", - "2.128.6.8/32", - "2.128.6.10/32", - "2.128.6.12/32", - "2.128.6.14/32", - "2.128.6.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.128.8.1/32", - "2.128.8.3/32", - "2.128.8.5/32", - "2.128.8.7/32", - "2.128.8.9/32", - "2.128.8.11/32", - "2.128.8.13/32", - "2.128.8.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.128.8.1/32", - "2.128.8.3/32", - "2.128.8.5/32", - "2.128.8.7/32", - "2.128.8.9/32", - "2.128.8.11/32", - "2.128.8.13/32", - "2.128.8.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.128.8.2/32", - "2.128.8.4/32", - "2.128.8.6/32", - "2.128.8.8/32", - "2.128.8.10/32", - "2.128.8.12/32", - "2.128.8.14/32", - "2.128.8.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.128.8.2/32", - "2.128.8.4/32", - "2.128.8.6/32", - "2.128.8.8/32", - "2.128.8.10/32", - "2.128.8.12/32", - "2.128.8.14/32", - "2.128.8.16/32", - "2.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:2:TABLE:2002": { - "acl-group-id": "acl-group-2002", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.132.0.1/32", - "2.132.0.3/32", - "2.132.0.5/32", - "2.132.0.7/32", - "2.132.0.9/32", - "2.132.0.11/32", - "2.132.0.13/32", - "2.132.0.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.132.0.1/32", - "2.132.0.3/32", - "2.132.0.5/32", - "2.132.0.7/32", - "2.132.0.9/32", - "2.132.0.11/32", - "2.132.0.13/32", - "2.132.0.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.132.0.2/32", - "2.132.0.4/32", - "2.132.0.6/32", - "2.132.0.8/32", - "2.132.0.10/32", - "2.132.0.12/32", - "2.132.0.14/32", - "2.132.0.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.132.0.2/32", - "2.132.0.4/32", - "2.132.0.6/32", - "2.132.0.8/32", - "2.132.0.10/32", - "2.132.0.12/32", - "2.132.0.14/32", - "2.132.0.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.132.2.1/32", - "2.132.2.3/32", - "2.132.2.5/32", - "2.132.2.7/32", - "2.132.2.9/32", - "2.132.2.11/32", - "2.132.2.13/32", - "2.132.2.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.132.2.1/32", - "2.132.2.3/32", - "2.132.2.5/32", - "2.132.2.7/32", - "2.132.2.9/32", - "2.132.2.11/32", - "2.132.2.13/32", - "2.132.2.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.132.2.2/32", - "2.132.2.4/32", - "2.132.2.6/32", - "2.132.2.8/32", - "2.132.2.10/32", - "2.132.2.12/32", - "2.132.2.14/32", - "2.132.2.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.132.2.2/32", - "2.132.2.4/32", - "2.132.2.6/32", - "2.132.2.8/32", - "2.132.2.10/32", - "2.132.2.12/32", - "2.132.2.14/32", - "2.132.2.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.132.4.1/32", - "2.132.4.3/32", - "2.132.4.5/32", - "2.132.4.7/32", - "2.132.4.9/32", - "2.132.4.11/32", - "2.132.4.13/32", - "2.132.4.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.132.4.1/32", - "2.132.4.3/32", - "2.132.4.5/32", - "2.132.4.7/32", - "2.132.4.9/32", - "2.132.4.11/32", - "2.132.4.13/32", - "2.132.4.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.132.4.2/32", - "2.132.4.4/32", - "2.132.4.6/32", - "2.132.4.8/32", - "2.132.4.10/32", - "2.132.4.12/32", - "2.132.4.14/32", - "2.132.4.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.132.4.2/32", - "2.132.4.4/32", - "2.132.4.6/32", - "2.132.4.8/32", - "2.132.4.10/32", - "2.132.4.12/32", - "2.132.4.14/32", - "2.132.4.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.132.6.1/32", - "2.132.6.3/32", - "2.132.6.5/32", - "2.132.6.7/32", - "2.132.6.9/32", - "2.132.6.11/32", - "2.132.6.13/32", - "2.132.6.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.132.6.1/32", - "2.132.6.3/32", - "2.132.6.5/32", - "2.132.6.7/32", - "2.132.6.9/32", - "2.132.6.11/32", - "2.132.6.13/32", - "2.132.6.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.132.6.2/32", - "2.132.6.4/32", - "2.132.6.6/32", - "2.132.6.8/32", - "2.132.6.10/32", - "2.132.6.12/32", - "2.132.6.14/32", - "2.132.6.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.132.6.2/32", - "2.132.6.4/32", - "2.132.6.6/32", - "2.132.6.8/32", - "2.132.6.10/32", - "2.132.6.12/32", - "2.132.6.14/32", - "2.132.6.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.132.8.1/32", - "2.132.8.3/32", - "2.132.8.5/32", - "2.132.8.7/32", - "2.132.8.9/32", - "2.132.8.11/32", - "2.132.8.13/32", - "2.132.8.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.132.8.1/32", - "2.132.8.3/32", - "2.132.8.5/32", - "2.132.8.7/32", - "2.132.8.9/32", - "2.132.8.11/32", - "2.132.8.13/32", - "2.132.8.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.132.8.2/32", - "2.132.8.4/32", - "2.132.8.6/32", - "2.132.8.8/32", - "2.132.8.10/32", - "2.132.8.12/32", - "2.132.8.14/32", - "2.132.8.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.132.8.2/32", - "2.132.8.4/32", - "2.132.8.6/32", - "2.132.8.8/32", - "2.132.8.10/32", - "2.132.8.12/32", - "2.132.8.14/32", - "2.132.8.16/32", - "2.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:2:TABLE:2003": { - "acl-group-id": "acl-group-2003", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.136.0.1/32", - "2.136.0.3/32", - "2.136.0.5/32", - "2.136.0.7/32", - "2.136.0.9/32", - "2.136.0.11/32", - "2.136.0.13/32", - "2.136.0.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.136.0.1/32", - "2.136.0.3/32", - "2.136.0.5/32", - "2.136.0.7/32", - "2.136.0.9/32", - "2.136.0.11/32", - "2.136.0.13/32", - "2.136.0.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.136.0.2/32", - "2.136.0.4/32", - "2.136.0.6/32", - "2.136.0.8/32", - "2.136.0.10/32", - "2.136.0.12/32", - "2.136.0.14/32", - "2.136.0.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.136.0.2/32", - "2.136.0.4/32", - "2.136.0.6/32", - "2.136.0.8/32", - "2.136.0.10/32", - "2.136.0.12/32", - "2.136.0.14/32", - "2.136.0.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.136.2.1/32", - "2.136.2.3/32", - "2.136.2.5/32", - "2.136.2.7/32", - "2.136.2.9/32", - "2.136.2.11/32", - "2.136.2.13/32", - "2.136.2.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.136.2.1/32", - "2.136.2.3/32", - "2.136.2.5/32", - "2.136.2.7/32", - "2.136.2.9/32", - "2.136.2.11/32", - "2.136.2.13/32", - "2.136.2.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.136.2.2/32", - "2.136.2.4/32", - "2.136.2.6/32", - "2.136.2.8/32", - "2.136.2.10/32", - "2.136.2.12/32", - "2.136.2.14/32", - "2.136.2.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.136.2.2/32", - "2.136.2.4/32", - "2.136.2.6/32", - "2.136.2.8/32", - "2.136.2.10/32", - "2.136.2.12/32", - "2.136.2.14/32", - "2.136.2.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.136.4.1/32", - "2.136.4.3/32", - "2.136.4.5/32", - "2.136.4.7/32", - "2.136.4.9/32", - "2.136.4.11/32", - "2.136.4.13/32", - "2.136.4.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.136.4.1/32", - "2.136.4.3/32", - "2.136.4.5/32", - "2.136.4.7/32", - "2.136.4.9/32", - "2.136.4.11/32", - "2.136.4.13/32", - "2.136.4.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.136.4.2/32", - "2.136.4.4/32", - "2.136.4.6/32", - "2.136.4.8/32", - "2.136.4.10/32", - "2.136.4.12/32", - "2.136.4.14/32", - "2.136.4.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.136.4.2/32", - "2.136.4.4/32", - "2.136.4.6/32", - "2.136.4.8/32", - "2.136.4.10/32", - "2.136.4.12/32", - "2.136.4.14/32", - "2.136.4.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.136.6.1/32", - "2.136.6.3/32", - "2.136.6.5/32", - "2.136.6.7/32", - "2.136.6.9/32", - "2.136.6.11/32", - "2.136.6.13/32", - "2.136.6.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.136.6.1/32", - "2.136.6.3/32", - "2.136.6.5/32", - "2.136.6.7/32", - "2.136.6.9/32", - "2.136.6.11/32", - "2.136.6.13/32", - "2.136.6.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.136.6.2/32", - "2.136.6.4/32", - "2.136.6.6/32", - "2.136.6.8/32", - "2.136.6.10/32", - "2.136.6.12/32", - "2.136.6.14/32", - "2.136.6.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.136.6.2/32", - "2.136.6.4/32", - "2.136.6.6/32", - "2.136.6.8/32", - "2.136.6.10/32", - "2.136.6.12/32", - "2.136.6.14/32", - "2.136.6.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.136.8.1/32", - "2.136.8.3/32", - "2.136.8.5/32", - "2.136.8.7/32", - "2.136.8.9/32", - "2.136.8.11/32", - "2.136.8.13/32", - "2.136.8.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.136.8.1/32", - "2.136.8.3/32", - "2.136.8.5/32", - "2.136.8.7/32", - "2.136.8.9/32", - "2.136.8.11/32", - "2.136.8.13/32", - "2.136.8.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.136.8.2/32", - "2.136.8.4/32", - "2.136.8.6/32", - "2.136.8.8/32", - "2.136.8.10/32", - "2.136.8.12/32", - "2.136.8.14/32", - "2.136.8.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.136.8.2/32", - "2.136.8.4/32", - "2.136.8.6/32", - "2.136.8.8/32", - "2.136.8.10/32", - "2.136.8.12/32", - "2.136.8.14/32", - "2.136.8.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "2.1.0.1/32", - "2.140.0.1/14", - "2.144.0.1/14", - "2.148.0.1/14" - ], - "dst_addrs": [ - "2.1.0.1/32", - "2.140.0.1/14", - "2.144.0.1/14", - "2.148.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:2:TABLE:2004": { - "acl-group-id": "acl-group-2004", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.140.0.1/32", - "2.140.0.3/32", - "2.140.0.5/32", - "2.140.0.7/32", - "2.140.0.9/32", - "2.140.0.11/32", - "2.140.0.13/32", - "2.140.0.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.140.0.1/32", - "2.140.0.3/32", - "2.140.0.5/32", - "2.140.0.7/32", - "2.140.0.9/32", - "2.140.0.11/32", - "2.140.0.13/32", - "2.140.0.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.140.0.2/32", - "2.140.0.4/32", - "2.140.0.6/32", - "2.140.0.8/32", - "2.140.0.10/32", - "2.140.0.12/32", - "2.140.0.14/32", - "2.140.0.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.140.0.2/32", - "2.140.0.4/32", - "2.140.0.6/32", - "2.140.0.8/32", - "2.140.0.10/32", - "2.140.0.12/32", - "2.140.0.14/32", - "2.140.0.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.140.2.1/32", - "2.140.2.3/32", - "2.140.2.5/32", - "2.140.2.7/32", - "2.140.2.9/32", - "2.140.2.11/32", - "2.140.2.13/32", - "2.140.2.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.140.2.1/32", - "2.140.2.3/32", - "2.140.2.5/32", - "2.140.2.7/32", - "2.140.2.9/32", - "2.140.2.11/32", - "2.140.2.13/32", - "2.140.2.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.140.2.2/32", - "2.140.2.4/32", - "2.140.2.6/32", - "2.140.2.8/32", - "2.140.2.10/32", - "2.140.2.12/32", - "2.140.2.14/32", - "2.140.2.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.140.2.2/32", - "2.140.2.4/32", - "2.140.2.6/32", - "2.140.2.8/32", - "2.140.2.10/32", - "2.140.2.12/32", - "2.140.2.14/32", - "2.140.2.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.140.4.1/32", - "2.140.4.3/32", - "2.140.4.5/32", - "2.140.4.7/32", - "2.140.4.9/32", - "2.140.4.11/32", - "2.140.4.13/32", - "2.140.4.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.140.4.1/32", - "2.140.4.3/32", - "2.140.4.5/32", - "2.140.4.7/32", - "2.140.4.9/32", - "2.140.4.11/32", - "2.140.4.13/32", - "2.140.4.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.140.4.2/32", - "2.140.4.4/32", - "2.140.4.6/32", - "2.140.4.8/32", - "2.140.4.10/32", - "2.140.4.12/32", - "2.140.4.14/32", - "2.140.4.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.140.4.2/32", - "2.140.4.4/32", - "2.140.4.6/32", - "2.140.4.8/32", - "2.140.4.10/32", - "2.140.4.12/32", - "2.140.4.14/32", - "2.140.4.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.140.6.1/32", - "2.140.6.3/32", - "2.140.6.5/32", - "2.140.6.7/32", - "2.140.6.9/32", - "2.140.6.11/32", - "2.140.6.13/32", - "2.140.6.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.140.6.1/32", - "2.140.6.3/32", - "2.140.6.5/32", - "2.140.6.7/32", - "2.140.6.9/32", - "2.140.6.11/32", - "2.140.6.13/32", - "2.140.6.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.140.6.2/32", - "2.140.6.4/32", - "2.140.6.6/32", - "2.140.6.8/32", - "2.140.6.10/32", - "2.140.6.12/32", - "2.140.6.14/32", - "2.140.6.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.140.6.2/32", - "2.140.6.4/32", - "2.140.6.6/32", - "2.140.6.8/32", - "2.140.6.10/32", - "2.140.6.12/32", - "2.140.6.14/32", - "2.140.6.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.140.8.1/32", - "2.140.8.3/32", - "2.140.8.5/32", - "2.140.8.7/32", - "2.140.8.9/32", - "2.140.8.11/32", - "2.140.8.13/32", - "2.140.8.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.140.8.1/32", - "2.140.8.3/32", - "2.140.8.5/32", - "2.140.8.7/32", - "2.140.8.9/32", - "2.140.8.11/32", - "2.140.8.13/32", - "2.140.8.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.140.8.2/32", - "2.140.8.4/32", - "2.140.8.6/32", - "2.140.8.8/32", - "2.140.8.10/32", - "2.140.8.12/32", - "2.140.8.14/32", - "2.140.8.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.140.8.2/32", - "2.140.8.4/32", - "2.140.8.6/32", - "2.140.8.8/32", - "2.140.8.10/32", - "2.140.8.12/32", - "2.140.8.14/32", - "2.140.8.16/32", - "2.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:2:TABLE:2005": { - "acl-group-id": "acl-group-2005", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.144.0.1/32", - "2.144.0.3/32", - "2.144.0.5/32", - "2.144.0.7/32", - "2.144.0.9/32", - "2.144.0.11/32", - "2.144.0.13/32", - "2.144.0.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.144.0.1/32", - "2.144.0.3/32", - "2.144.0.5/32", - "2.144.0.7/32", - "2.144.0.9/32", - "2.144.0.11/32", - "2.144.0.13/32", - "2.144.0.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.144.0.2/32", - "2.144.0.4/32", - "2.144.0.6/32", - "2.144.0.8/32", - "2.144.0.10/32", - "2.144.0.12/32", - "2.144.0.14/32", - "2.144.0.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.144.0.2/32", - "2.144.0.4/32", - "2.144.0.6/32", - "2.144.0.8/32", - "2.144.0.10/32", - "2.144.0.12/32", - "2.144.0.14/32", - "2.144.0.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.144.2.1/32", - "2.144.2.3/32", - "2.144.2.5/32", - "2.144.2.7/32", - "2.144.2.9/32", - "2.144.2.11/32", - "2.144.2.13/32", - "2.144.2.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.144.2.1/32", - "2.144.2.3/32", - "2.144.2.5/32", - "2.144.2.7/32", - "2.144.2.9/32", - "2.144.2.11/32", - "2.144.2.13/32", - "2.144.2.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.144.2.2/32", - "2.144.2.4/32", - "2.144.2.6/32", - "2.144.2.8/32", - "2.144.2.10/32", - "2.144.2.12/32", - "2.144.2.14/32", - "2.144.2.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.144.2.2/32", - "2.144.2.4/32", - "2.144.2.6/32", - "2.144.2.8/32", - "2.144.2.10/32", - "2.144.2.12/32", - "2.144.2.14/32", - "2.144.2.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.144.4.1/32", - "2.144.4.3/32", - "2.144.4.5/32", - "2.144.4.7/32", - "2.144.4.9/32", - "2.144.4.11/32", - "2.144.4.13/32", - "2.144.4.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.144.4.1/32", - "2.144.4.3/32", - "2.144.4.5/32", - "2.144.4.7/32", - "2.144.4.9/32", - "2.144.4.11/32", - "2.144.4.13/32", - "2.144.4.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.144.4.2/32", - "2.144.4.4/32", - "2.144.4.6/32", - "2.144.4.8/32", - "2.144.4.10/32", - "2.144.4.12/32", - "2.144.4.14/32", - "2.144.4.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.144.4.2/32", - "2.144.4.4/32", - "2.144.4.6/32", - "2.144.4.8/32", - "2.144.4.10/32", - "2.144.4.12/32", - "2.144.4.14/32", - "2.144.4.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.144.6.1/32", - "2.144.6.3/32", - "2.144.6.5/32", - "2.144.6.7/32", - "2.144.6.9/32", - "2.144.6.11/32", - "2.144.6.13/32", - "2.144.6.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.144.6.1/32", - "2.144.6.3/32", - "2.144.6.5/32", - "2.144.6.7/32", - "2.144.6.9/32", - "2.144.6.11/32", - "2.144.6.13/32", - "2.144.6.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.144.6.2/32", - "2.144.6.4/32", - "2.144.6.6/32", - "2.144.6.8/32", - "2.144.6.10/32", - "2.144.6.12/32", - "2.144.6.14/32", - "2.144.6.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.144.6.2/32", - "2.144.6.4/32", - "2.144.6.6/32", - "2.144.6.8/32", - "2.144.6.10/32", - "2.144.6.12/32", - "2.144.6.14/32", - "2.144.6.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.144.8.1/32", - "2.144.8.3/32", - "2.144.8.5/32", - "2.144.8.7/32", - "2.144.8.9/32", - "2.144.8.11/32", - "2.144.8.13/32", - "2.144.8.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.144.8.1/32", - "2.144.8.3/32", - "2.144.8.5/32", - "2.144.8.7/32", - "2.144.8.9/32", - "2.144.8.11/32", - "2.144.8.13/32", - "2.144.8.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.144.8.2/32", - "2.144.8.4/32", - "2.144.8.6/32", - "2.144.8.8/32", - "2.144.8.10/32", - "2.144.8.12/32", - "2.144.8.14/32", - "2.144.8.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.144.8.2/32", - "2.144.8.4/32", - "2.144.8.6/32", - "2.144.8.8/32", - "2.144.8.10/32", - "2.144.8.12/32", - "2.144.8.14/32", - "2.144.8.16/32", - "2.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:2:TABLE:2006": { - "acl-group-id": "acl-group-2006", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.148.0.1/32", - "2.148.0.3/32", - "2.148.0.5/32", - "2.148.0.7/32", - "2.148.0.9/32", - "2.148.0.11/32", - "2.148.0.13/32", - "2.148.0.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.148.0.1/32", - "2.148.0.3/32", - "2.148.0.5/32", - "2.148.0.7/32", - "2.148.0.9/32", - "2.148.0.11/32", - "2.148.0.13/32", - "2.148.0.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.148.0.2/32", - "2.148.0.4/32", - "2.148.0.6/32", - "2.148.0.8/32", - "2.148.0.10/32", - "2.148.0.12/32", - "2.148.0.14/32", - "2.148.0.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.148.0.2/32", - "2.148.0.4/32", - "2.148.0.6/32", - "2.148.0.8/32", - "2.148.0.10/32", - "2.148.0.12/32", - "2.148.0.14/32", - "2.148.0.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.148.2.1/32", - "2.148.2.3/32", - "2.148.2.5/32", - "2.148.2.7/32", - "2.148.2.9/32", - "2.148.2.11/32", - "2.148.2.13/32", - "2.148.2.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.148.2.1/32", - "2.148.2.3/32", - "2.148.2.5/32", - "2.148.2.7/32", - "2.148.2.9/32", - "2.148.2.11/32", - "2.148.2.13/32", - "2.148.2.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.148.2.2/32", - "2.148.2.4/32", - "2.148.2.6/32", - "2.148.2.8/32", - "2.148.2.10/32", - "2.148.2.12/32", - "2.148.2.14/32", - "2.148.2.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.148.2.2/32", - "2.148.2.4/32", - "2.148.2.6/32", - "2.148.2.8/32", - "2.148.2.10/32", - "2.148.2.12/32", - "2.148.2.14/32", - "2.148.2.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.148.4.1/32", - "2.148.4.3/32", - "2.148.4.5/32", - "2.148.4.7/32", - "2.148.4.9/32", - "2.148.4.11/32", - "2.148.4.13/32", - "2.148.4.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.148.4.1/32", - "2.148.4.3/32", - "2.148.4.5/32", - "2.148.4.7/32", - "2.148.4.9/32", - "2.148.4.11/32", - "2.148.4.13/32", - "2.148.4.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.148.4.2/32", - "2.148.4.4/32", - "2.148.4.6/32", - "2.148.4.8/32", - "2.148.4.10/32", - "2.148.4.12/32", - "2.148.4.14/32", - "2.148.4.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.148.4.2/32", - "2.148.4.4/32", - "2.148.4.6/32", - "2.148.4.8/32", - "2.148.4.10/32", - "2.148.4.12/32", - "2.148.4.14/32", - "2.148.4.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.148.6.1/32", - "2.148.6.3/32", - "2.148.6.5/32", - "2.148.6.7/32", - "2.148.6.9/32", - "2.148.6.11/32", - "2.148.6.13/32", - "2.148.6.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.148.6.1/32", - "2.148.6.3/32", - "2.148.6.5/32", - "2.148.6.7/32", - "2.148.6.9/32", - "2.148.6.11/32", - "2.148.6.13/32", - "2.148.6.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.148.6.2/32", - "2.148.6.4/32", - "2.148.6.6/32", - "2.148.6.8/32", - "2.148.6.10/32", - "2.148.6.12/32", - "2.148.6.14/32", - "2.148.6.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.148.6.2/32", - "2.148.6.4/32", - "2.148.6.6/32", - "2.148.6.8/32", - "2.148.6.10/32", - "2.148.6.12/32", - "2.148.6.14/32", - "2.148.6.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "2.148.8.1/32", - "2.148.8.3/32", - "2.148.8.5/32", - "2.148.8.7/32", - "2.148.8.9/32", - "2.148.8.11/32", - "2.148.8.13/32", - "2.148.8.15/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.148.8.1/32", - "2.148.8.3/32", - "2.148.8.5/32", - "2.148.8.7/32", - "2.148.8.9/32", - "2.148.8.11/32", - "2.148.8.13/32", - "2.148.8.15/32", - "2.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "2.148.8.2/32", - "2.148.8.4/32", - "2.148.8.6/32", - "2.148.8.8/32", - "2.148.8.10/32", - "2.148.8.12/32", - "2.148.8.14/32", - "2.148.8.16/32", - "2.1.0.1/32" - ], - "dst_addrs": [ - "2.148.8.2/32", - "2.148.8.4/32", - "2.148.8.6/32", - "2.148.8.8/32", - "2.148.8.10/32", - "2.148.8.12/32", - "2.148.8.14/32", - "2.148.8.16/32", - "2.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "2.1.0.1/32", - "2.128.0.1/14", - "2.132.0.1/14", - "2.136.0.1/14" - ], - "dst_addrs": [ - "2.1.0.1/32", - "2.128.0.1/14", - "2.132.0.1/14", - "2.136.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:3:TABLE:3001": { - "acl-group-id": "acl-group-3001", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.128.0.1/32", - "3.128.0.3/32", - "3.128.0.5/32", - "3.128.0.7/32", - "3.128.0.9/32", - "3.128.0.11/32", - "3.128.0.13/32", - "3.128.0.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.128.0.1/32", - "3.128.0.3/32", - "3.128.0.5/32", - "3.128.0.7/32", - "3.128.0.9/32", - "3.128.0.11/32", - "3.128.0.13/32", - "3.128.0.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.128.0.2/32", - "3.128.0.4/32", - "3.128.0.6/32", - "3.128.0.8/32", - "3.128.0.10/32", - "3.128.0.12/32", - "3.128.0.14/32", - "3.128.0.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.128.0.2/32", - "3.128.0.4/32", - "3.128.0.6/32", - "3.128.0.8/32", - "3.128.0.10/32", - "3.128.0.12/32", - "3.128.0.14/32", - "3.128.0.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.128.2.1/32", - "3.128.2.3/32", - "3.128.2.5/32", - "3.128.2.7/32", - "3.128.2.9/32", - "3.128.2.11/32", - "3.128.2.13/32", - "3.128.2.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.128.2.1/32", - "3.128.2.3/32", - "3.128.2.5/32", - "3.128.2.7/32", - "3.128.2.9/32", - "3.128.2.11/32", - "3.128.2.13/32", - "3.128.2.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.128.2.2/32", - "3.128.2.4/32", - "3.128.2.6/32", - "3.128.2.8/32", - "3.128.2.10/32", - "3.128.2.12/32", - "3.128.2.14/32", - "3.128.2.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.128.2.2/32", - "3.128.2.4/32", - "3.128.2.6/32", - "3.128.2.8/32", - "3.128.2.10/32", - "3.128.2.12/32", - "3.128.2.14/32", - "3.128.2.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.128.4.1/32", - "3.128.4.3/32", - "3.128.4.5/32", - "3.128.4.7/32", - "3.128.4.9/32", - "3.128.4.11/32", - "3.128.4.13/32", - "3.128.4.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.128.4.1/32", - "3.128.4.3/32", - "3.128.4.5/32", - "3.128.4.7/32", - "3.128.4.9/32", - "3.128.4.11/32", - "3.128.4.13/32", - "3.128.4.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.128.4.2/32", - "3.128.4.4/32", - "3.128.4.6/32", - "3.128.4.8/32", - "3.128.4.10/32", - "3.128.4.12/32", - "3.128.4.14/32", - "3.128.4.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.128.4.2/32", - "3.128.4.4/32", - "3.128.4.6/32", - "3.128.4.8/32", - "3.128.4.10/32", - "3.128.4.12/32", - "3.128.4.14/32", - "3.128.4.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.128.6.1/32", - "3.128.6.3/32", - "3.128.6.5/32", - "3.128.6.7/32", - "3.128.6.9/32", - "3.128.6.11/32", - "3.128.6.13/32", - "3.128.6.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.128.6.1/32", - "3.128.6.3/32", - "3.128.6.5/32", - "3.128.6.7/32", - "3.128.6.9/32", - "3.128.6.11/32", - "3.128.6.13/32", - "3.128.6.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.128.6.2/32", - "3.128.6.4/32", - "3.128.6.6/32", - "3.128.6.8/32", - "3.128.6.10/32", - "3.128.6.12/32", - "3.128.6.14/32", - "3.128.6.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.128.6.2/32", - "3.128.6.4/32", - "3.128.6.6/32", - "3.128.6.8/32", - "3.128.6.10/32", - "3.128.6.12/32", - "3.128.6.14/32", - "3.128.6.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.128.8.1/32", - "3.128.8.3/32", - "3.128.8.5/32", - "3.128.8.7/32", - "3.128.8.9/32", - "3.128.8.11/32", - "3.128.8.13/32", - "3.128.8.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.128.8.1/32", - "3.128.8.3/32", - "3.128.8.5/32", - "3.128.8.7/32", - "3.128.8.9/32", - "3.128.8.11/32", - "3.128.8.13/32", - "3.128.8.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.128.8.2/32", - "3.128.8.4/32", - "3.128.8.6/32", - "3.128.8.8/32", - "3.128.8.10/32", - "3.128.8.12/32", - "3.128.8.14/32", - "3.128.8.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.128.8.2/32", - "3.128.8.4/32", - "3.128.8.6/32", - "3.128.8.8/32", - "3.128.8.10/32", - "3.128.8.12/32", - "3.128.8.14/32", - "3.128.8.16/32", - "3.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:3:TABLE:3002": { - "acl-group-id": "acl-group-3002", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.132.0.1/32", - "3.132.0.3/32", - "3.132.0.5/32", - "3.132.0.7/32", - "3.132.0.9/32", - "3.132.0.11/32", - "3.132.0.13/32", - "3.132.0.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.132.0.1/32", - "3.132.0.3/32", - "3.132.0.5/32", - "3.132.0.7/32", - "3.132.0.9/32", - "3.132.0.11/32", - "3.132.0.13/32", - "3.132.0.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.132.0.2/32", - "3.132.0.4/32", - "3.132.0.6/32", - "3.132.0.8/32", - "3.132.0.10/32", - "3.132.0.12/32", - "3.132.0.14/32", - "3.132.0.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.132.0.2/32", - "3.132.0.4/32", - "3.132.0.6/32", - "3.132.0.8/32", - "3.132.0.10/32", - "3.132.0.12/32", - "3.132.0.14/32", - "3.132.0.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.132.2.1/32", - "3.132.2.3/32", - "3.132.2.5/32", - "3.132.2.7/32", - "3.132.2.9/32", - "3.132.2.11/32", - "3.132.2.13/32", - "3.132.2.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.132.2.1/32", - "3.132.2.3/32", - "3.132.2.5/32", - "3.132.2.7/32", - "3.132.2.9/32", - "3.132.2.11/32", - "3.132.2.13/32", - "3.132.2.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.132.2.2/32", - "3.132.2.4/32", - "3.132.2.6/32", - "3.132.2.8/32", - "3.132.2.10/32", - "3.132.2.12/32", - "3.132.2.14/32", - "3.132.2.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.132.2.2/32", - "3.132.2.4/32", - "3.132.2.6/32", - "3.132.2.8/32", - "3.132.2.10/32", - "3.132.2.12/32", - "3.132.2.14/32", - "3.132.2.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.132.4.1/32", - "3.132.4.3/32", - "3.132.4.5/32", - "3.132.4.7/32", - "3.132.4.9/32", - "3.132.4.11/32", - "3.132.4.13/32", - "3.132.4.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.132.4.1/32", - "3.132.4.3/32", - "3.132.4.5/32", - "3.132.4.7/32", - "3.132.4.9/32", - "3.132.4.11/32", - "3.132.4.13/32", - "3.132.4.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.132.4.2/32", - "3.132.4.4/32", - "3.132.4.6/32", - "3.132.4.8/32", - "3.132.4.10/32", - "3.132.4.12/32", - "3.132.4.14/32", - "3.132.4.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.132.4.2/32", - "3.132.4.4/32", - "3.132.4.6/32", - "3.132.4.8/32", - "3.132.4.10/32", - "3.132.4.12/32", - "3.132.4.14/32", - "3.132.4.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.132.6.1/32", - "3.132.6.3/32", - "3.132.6.5/32", - "3.132.6.7/32", - "3.132.6.9/32", - "3.132.6.11/32", - "3.132.6.13/32", - "3.132.6.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.132.6.1/32", - "3.132.6.3/32", - "3.132.6.5/32", - "3.132.6.7/32", - "3.132.6.9/32", - "3.132.6.11/32", - "3.132.6.13/32", - "3.132.6.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.132.6.2/32", - "3.132.6.4/32", - "3.132.6.6/32", - "3.132.6.8/32", - "3.132.6.10/32", - "3.132.6.12/32", - "3.132.6.14/32", - "3.132.6.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.132.6.2/32", - "3.132.6.4/32", - "3.132.6.6/32", - "3.132.6.8/32", - "3.132.6.10/32", - "3.132.6.12/32", - "3.132.6.14/32", - "3.132.6.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.132.8.1/32", - "3.132.8.3/32", - "3.132.8.5/32", - "3.132.8.7/32", - "3.132.8.9/32", - "3.132.8.11/32", - "3.132.8.13/32", - "3.132.8.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.132.8.1/32", - "3.132.8.3/32", - "3.132.8.5/32", - "3.132.8.7/32", - "3.132.8.9/32", - "3.132.8.11/32", - "3.132.8.13/32", - "3.132.8.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.132.8.2/32", - "3.132.8.4/32", - "3.132.8.6/32", - "3.132.8.8/32", - "3.132.8.10/32", - "3.132.8.12/32", - "3.132.8.14/32", - "3.132.8.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.132.8.2/32", - "3.132.8.4/32", - "3.132.8.6/32", - "3.132.8.8/32", - "3.132.8.10/32", - "3.132.8.12/32", - "3.132.8.14/32", - "3.132.8.16/32", - "3.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:3:TABLE:3003": { - "acl-group-id": "acl-group-3003", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.136.0.1/32", - "3.136.0.3/32", - "3.136.0.5/32", - "3.136.0.7/32", - "3.136.0.9/32", - "3.136.0.11/32", - "3.136.0.13/32", - "3.136.0.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.136.0.1/32", - "3.136.0.3/32", - "3.136.0.5/32", - "3.136.0.7/32", - "3.136.0.9/32", - "3.136.0.11/32", - "3.136.0.13/32", - "3.136.0.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.136.0.2/32", - "3.136.0.4/32", - "3.136.0.6/32", - "3.136.0.8/32", - "3.136.0.10/32", - "3.136.0.12/32", - "3.136.0.14/32", - "3.136.0.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.136.0.2/32", - "3.136.0.4/32", - "3.136.0.6/32", - "3.136.0.8/32", - "3.136.0.10/32", - "3.136.0.12/32", - "3.136.0.14/32", - "3.136.0.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.136.2.1/32", - "3.136.2.3/32", - "3.136.2.5/32", - "3.136.2.7/32", - "3.136.2.9/32", - "3.136.2.11/32", - "3.136.2.13/32", - "3.136.2.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.136.2.1/32", - "3.136.2.3/32", - "3.136.2.5/32", - "3.136.2.7/32", - "3.136.2.9/32", - "3.136.2.11/32", - "3.136.2.13/32", - "3.136.2.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.136.2.2/32", - "3.136.2.4/32", - "3.136.2.6/32", - "3.136.2.8/32", - "3.136.2.10/32", - "3.136.2.12/32", - "3.136.2.14/32", - "3.136.2.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.136.2.2/32", - "3.136.2.4/32", - "3.136.2.6/32", - "3.136.2.8/32", - "3.136.2.10/32", - "3.136.2.12/32", - "3.136.2.14/32", - "3.136.2.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.136.4.1/32", - "3.136.4.3/32", - "3.136.4.5/32", - "3.136.4.7/32", - "3.136.4.9/32", - "3.136.4.11/32", - "3.136.4.13/32", - "3.136.4.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.136.4.1/32", - "3.136.4.3/32", - "3.136.4.5/32", - "3.136.4.7/32", - "3.136.4.9/32", - "3.136.4.11/32", - "3.136.4.13/32", - "3.136.4.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.136.4.2/32", - "3.136.4.4/32", - "3.136.4.6/32", - "3.136.4.8/32", - "3.136.4.10/32", - "3.136.4.12/32", - "3.136.4.14/32", - "3.136.4.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.136.4.2/32", - "3.136.4.4/32", - "3.136.4.6/32", - "3.136.4.8/32", - "3.136.4.10/32", - "3.136.4.12/32", - "3.136.4.14/32", - "3.136.4.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.136.6.1/32", - "3.136.6.3/32", - "3.136.6.5/32", - "3.136.6.7/32", - "3.136.6.9/32", - "3.136.6.11/32", - "3.136.6.13/32", - "3.136.6.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.136.6.1/32", - "3.136.6.3/32", - "3.136.6.5/32", - "3.136.6.7/32", - "3.136.6.9/32", - "3.136.6.11/32", - "3.136.6.13/32", - "3.136.6.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.136.6.2/32", - "3.136.6.4/32", - "3.136.6.6/32", - "3.136.6.8/32", - "3.136.6.10/32", - "3.136.6.12/32", - "3.136.6.14/32", - "3.136.6.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.136.6.2/32", - "3.136.6.4/32", - "3.136.6.6/32", - "3.136.6.8/32", - "3.136.6.10/32", - "3.136.6.12/32", - "3.136.6.14/32", - "3.136.6.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.136.8.1/32", - "3.136.8.3/32", - "3.136.8.5/32", - "3.136.8.7/32", - "3.136.8.9/32", - "3.136.8.11/32", - "3.136.8.13/32", - "3.136.8.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.136.8.1/32", - "3.136.8.3/32", - "3.136.8.5/32", - "3.136.8.7/32", - "3.136.8.9/32", - "3.136.8.11/32", - "3.136.8.13/32", - "3.136.8.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.136.8.2/32", - "3.136.8.4/32", - "3.136.8.6/32", - "3.136.8.8/32", - "3.136.8.10/32", - "3.136.8.12/32", - "3.136.8.14/32", - "3.136.8.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.136.8.2/32", - "3.136.8.4/32", - "3.136.8.6/32", - "3.136.8.8/32", - "3.136.8.10/32", - "3.136.8.12/32", - "3.136.8.14/32", - "3.136.8.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "3.1.0.1/32", - "3.140.0.1/14", - "3.144.0.1/14", - "3.148.0.1/14" - ], - "dst_addrs": [ - "3.1.0.1/32", - "3.140.0.1/14", - "3.144.0.1/14", - "3.148.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:3:TABLE:3004": { - "acl-group-id": "acl-group-3004", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.140.0.1/32", - "3.140.0.3/32", - "3.140.0.5/32", - "3.140.0.7/32", - "3.140.0.9/32", - "3.140.0.11/32", - "3.140.0.13/32", - "3.140.0.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.140.0.1/32", - "3.140.0.3/32", - "3.140.0.5/32", - "3.140.0.7/32", - "3.140.0.9/32", - "3.140.0.11/32", - "3.140.0.13/32", - "3.140.0.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.140.0.2/32", - "3.140.0.4/32", - "3.140.0.6/32", - "3.140.0.8/32", - "3.140.0.10/32", - "3.140.0.12/32", - "3.140.0.14/32", - "3.140.0.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.140.0.2/32", - "3.140.0.4/32", - "3.140.0.6/32", - "3.140.0.8/32", - "3.140.0.10/32", - "3.140.0.12/32", - "3.140.0.14/32", - "3.140.0.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.140.2.1/32", - "3.140.2.3/32", - "3.140.2.5/32", - "3.140.2.7/32", - "3.140.2.9/32", - "3.140.2.11/32", - "3.140.2.13/32", - "3.140.2.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.140.2.1/32", - "3.140.2.3/32", - "3.140.2.5/32", - "3.140.2.7/32", - "3.140.2.9/32", - "3.140.2.11/32", - "3.140.2.13/32", - "3.140.2.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.140.2.2/32", - "3.140.2.4/32", - "3.140.2.6/32", - "3.140.2.8/32", - "3.140.2.10/32", - "3.140.2.12/32", - "3.140.2.14/32", - "3.140.2.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.140.2.2/32", - "3.140.2.4/32", - "3.140.2.6/32", - "3.140.2.8/32", - "3.140.2.10/32", - "3.140.2.12/32", - "3.140.2.14/32", - "3.140.2.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.140.4.1/32", - "3.140.4.3/32", - "3.140.4.5/32", - "3.140.4.7/32", - "3.140.4.9/32", - "3.140.4.11/32", - "3.140.4.13/32", - "3.140.4.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.140.4.1/32", - "3.140.4.3/32", - "3.140.4.5/32", - "3.140.4.7/32", - "3.140.4.9/32", - "3.140.4.11/32", - "3.140.4.13/32", - "3.140.4.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.140.4.2/32", - "3.140.4.4/32", - "3.140.4.6/32", - "3.140.4.8/32", - "3.140.4.10/32", - "3.140.4.12/32", - "3.140.4.14/32", - "3.140.4.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.140.4.2/32", - "3.140.4.4/32", - "3.140.4.6/32", - "3.140.4.8/32", - "3.140.4.10/32", - "3.140.4.12/32", - "3.140.4.14/32", - "3.140.4.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.140.6.1/32", - "3.140.6.3/32", - "3.140.6.5/32", - "3.140.6.7/32", - "3.140.6.9/32", - "3.140.6.11/32", - "3.140.6.13/32", - "3.140.6.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.140.6.1/32", - "3.140.6.3/32", - "3.140.6.5/32", - "3.140.6.7/32", - "3.140.6.9/32", - "3.140.6.11/32", - "3.140.6.13/32", - "3.140.6.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.140.6.2/32", - "3.140.6.4/32", - "3.140.6.6/32", - "3.140.6.8/32", - "3.140.6.10/32", - "3.140.6.12/32", - "3.140.6.14/32", - "3.140.6.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.140.6.2/32", - "3.140.6.4/32", - "3.140.6.6/32", - "3.140.6.8/32", - "3.140.6.10/32", - "3.140.6.12/32", - "3.140.6.14/32", - "3.140.6.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.140.8.1/32", - "3.140.8.3/32", - "3.140.8.5/32", - "3.140.8.7/32", - "3.140.8.9/32", - "3.140.8.11/32", - "3.140.8.13/32", - "3.140.8.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.140.8.1/32", - "3.140.8.3/32", - "3.140.8.5/32", - "3.140.8.7/32", - "3.140.8.9/32", - "3.140.8.11/32", - "3.140.8.13/32", - "3.140.8.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.140.8.2/32", - "3.140.8.4/32", - "3.140.8.6/32", - "3.140.8.8/32", - "3.140.8.10/32", - "3.140.8.12/32", - "3.140.8.14/32", - "3.140.8.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.140.8.2/32", - "3.140.8.4/32", - "3.140.8.6/32", - "3.140.8.8/32", - "3.140.8.10/32", - "3.140.8.12/32", - "3.140.8.14/32", - "3.140.8.16/32", - "3.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:3:TABLE:3005": { - "acl-group-id": "acl-group-3005", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.144.0.1/32", - "3.144.0.3/32", - "3.144.0.5/32", - "3.144.0.7/32", - "3.144.0.9/32", - "3.144.0.11/32", - "3.144.0.13/32", - "3.144.0.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.144.0.1/32", - "3.144.0.3/32", - "3.144.0.5/32", - "3.144.0.7/32", - "3.144.0.9/32", - "3.144.0.11/32", - "3.144.0.13/32", - "3.144.0.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.144.0.2/32", - "3.144.0.4/32", - "3.144.0.6/32", - "3.144.0.8/32", - "3.144.0.10/32", - "3.144.0.12/32", - "3.144.0.14/32", - "3.144.0.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.144.0.2/32", - "3.144.0.4/32", - "3.144.0.6/32", - "3.144.0.8/32", - "3.144.0.10/32", - "3.144.0.12/32", - "3.144.0.14/32", - "3.144.0.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.144.2.1/32", - "3.144.2.3/32", - "3.144.2.5/32", - "3.144.2.7/32", - "3.144.2.9/32", - "3.144.2.11/32", - "3.144.2.13/32", - "3.144.2.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.144.2.1/32", - "3.144.2.3/32", - "3.144.2.5/32", - "3.144.2.7/32", - "3.144.2.9/32", - "3.144.2.11/32", - "3.144.2.13/32", - "3.144.2.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.144.2.2/32", - "3.144.2.4/32", - "3.144.2.6/32", - "3.144.2.8/32", - "3.144.2.10/32", - "3.144.2.12/32", - "3.144.2.14/32", - "3.144.2.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.144.2.2/32", - "3.144.2.4/32", - "3.144.2.6/32", - "3.144.2.8/32", - "3.144.2.10/32", - "3.144.2.12/32", - "3.144.2.14/32", - "3.144.2.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.144.4.1/32", - "3.144.4.3/32", - "3.144.4.5/32", - "3.144.4.7/32", - "3.144.4.9/32", - "3.144.4.11/32", - "3.144.4.13/32", - "3.144.4.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.144.4.1/32", - "3.144.4.3/32", - "3.144.4.5/32", - "3.144.4.7/32", - "3.144.4.9/32", - "3.144.4.11/32", - "3.144.4.13/32", - "3.144.4.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.144.4.2/32", - "3.144.4.4/32", - "3.144.4.6/32", - "3.144.4.8/32", - "3.144.4.10/32", - "3.144.4.12/32", - "3.144.4.14/32", - "3.144.4.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.144.4.2/32", - "3.144.4.4/32", - "3.144.4.6/32", - "3.144.4.8/32", - "3.144.4.10/32", - "3.144.4.12/32", - "3.144.4.14/32", - "3.144.4.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.144.6.1/32", - "3.144.6.3/32", - "3.144.6.5/32", - "3.144.6.7/32", - "3.144.6.9/32", - "3.144.6.11/32", - "3.144.6.13/32", - "3.144.6.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.144.6.1/32", - "3.144.6.3/32", - "3.144.6.5/32", - "3.144.6.7/32", - "3.144.6.9/32", - "3.144.6.11/32", - "3.144.6.13/32", - "3.144.6.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.144.6.2/32", - "3.144.6.4/32", - "3.144.6.6/32", - "3.144.6.8/32", - "3.144.6.10/32", - "3.144.6.12/32", - "3.144.6.14/32", - "3.144.6.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.144.6.2/32", - "3.144.6.4/32", - "3.144.6.6/32", - "3.144.6.8/32", - "3.144.6.10/32", - "3.144.6.12/32", - "3.144.6.14/32", - "3.144.6.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.144.8.1/32", - "3.144.8.3/32", - "3.144.8.5/32", - "3.144.8.7/32", - "3.144.8.9/32", - "3.144.8.11/32", - "3.144.8.13/32", - "3.144.8.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.144.8.1/32", - "3.144.8.3/32", - "3.144.8.5/32", - "3.144.8.7/32", - "3.144.8.9/32", - "3.144.8.11/32", - "3.144.8.13/32", - "3.144.8.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.144.8.2/32", - "3.144.8.4/32", - "3.144.8.6/32", - "3.144.8.8/32", - "3.144.8.10/32", - "3.144.8.12/32", - "3.144.8.14/32", - "3.144.8.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.144.8.2/32", - "3.144.8.4/32", - "3.144.8.6/32", - "3.144.8.8/32", - "3.144.8.10/32", - "3.144.8.12/32", - "3.144.8.14/32", - "3.144.8.16/32", - "3.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:3:TABLE:3006": { - "acl-group-id": "acl-group-3006", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.148.0.1/32", - "3.148.0.3/32", - "3.148.0.5/32", - "3.148.0.7/32", - "3.148.0.9/32", - "3.148.0.11/32", - "3.148.0.13/32", - "3.148.0.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.148.0.1/32", - "3.148.0.3/32", - "3.148.0.5/32", - "3.148.0.7/32", - "3.148.0.9/32", - "3.148.0.11/32", - "3.148.0.13/32", - "3.148.0.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.148.0.2/32", - "3.148.0.4/32", - "3.148.0.6/32", - "3.148.0.8/32", - "3.148.0.10/32", - "3.148.0.12/32", - "3.148.0.14/32", - "3.148.0.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.148.0.2/32", - "3.148.0.4/32", - "3.148.0.6/32", - "3.148.0.8/32", - "3.148.0.10/32", - "3.148.0.12/32", - "3.148.0.14/32", - "3.148.0.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.148.2.1/32", - "3.148.2.3/32", - "3.148.2.5/32", - "3.148.2.7/32", - "3.148.2.9/32", - "3.148.2.11/32", - "3.148.2.13/32", - "3.148.2.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.148.2.1/32", - "3.148.2.3/32", - "3.148.2.5/32", - "3.148.2.7/32", - "3.148.2.9/32", - "3.148.2.11/32", - "3.148.2.13/32", - "3.148.2.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.148.2.2/32", - "3.148.2.4/32", - "3.148.2.6/32", - "3.148.2.8/32", - "3.148.2.10/32", - "3.148.2.12/32", - "3.148.2.14/32", - "3.148.2.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.148.2.2/32", - "3.148.2.4/32", - "3.148.2.6/32", - "3.148.2.8/32", - "3.148.2.10/32", - "3.148.2.12/32", - "3.148.2.14/32", - "3.148.2.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.148.4.1/32", - "3.148.4.3/32", - "3.148.4.5/32", - "3.148.4.7/32", - "3.148.4.9/32", - "3.148.4.11/32", - "3.148.4.13/32", - "3.148.4.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.148.4.1/32", - "3.148.4.3/32", - "3.148.4.5/32", - "3.148.4.7/32", - "3.148.4.9/32", - "3.148.4.11/32", - "3.148.4.13/32", - "3.148.4.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.148.4.2/32", - "3.148.4.4/32", - "3.148.4.6/32", - "3.148.4.8/32", - "3.148.4.10/32", - "3.148.4.12/32", - "3.148.4.14/32", - "3.148.4.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.148.4.2/32", - "3.148.4.4/32", - "3.148.4.6/32", - "3.148.4.8/32", - "3.148.4.10/32", - "3.148.4.12/32", - "3.148.4.14/32", - "3.148.4.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.148.6.1/32", - "3.148.6.3/32", - "3.148.6.5/32", - "3.148.6.7/32", - "3.148.6.9/32", - "3.148.6.11/32", - "3.148.6.13/32", - "3.148.6.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.148.6.1/32", - "3.148.6.3/32", - "3.148.6.5/32", - "3.148.6.7/32", - "3.148.6.9/32", - "3.148.6.11/32", - "3.148.6.13/32", - "3.148.6.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.148.6.2/32", - "3.148.6.4/32", - "3.148.6.6/32", - "3.148.6.8/32", - "3.148.6.10/32", - "3.148.6.12/32", - "3.148.6.14/32", - "3.148.6.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.148.6.2/32", - "3.148.6.4/32", - "3.148.6.6/32", - "3.148.6.8/32", - "3.148.6.10/32", - "3.148.6.12/32", - "3.148.6.14/32", - "3.148.6.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "3.148.8.1/32", - "3.148.8.3/32", - "3.148.8.5/32", - "3.148.8.7/32", - "3.148.8.9/32", - "3.148.8.11/32", - "3.148.8.13/32", - "3.148.8.15/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.148.8.1/32", - "3.148.8.3/32", - "3.148.8.5/32", - "3.148.8.7/32", - "3.148.8.9/32", - "3.148.8.11/32", - "3.148.8.13/32", - "3.148.8.15/32", - "3.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "3.148.8.2/32", - "3.148.8.4/32", - "3.148.8.6/32", - "3.148.8.8/32", - "3.148.8.10/32", - "3.148.8.12/32", - "3.148.8.14/32", - "3.148.8.16/32", - "3.1.0.1/32" - ], - "dst_addrs": [ - "3.148.8.2/32", - "3.148.8.4/32", - "3.148.8.6/32", - "3.148.8.8/32", - "3.148.8.10/32", - "3.148.8.12/32", - "3.148.8.14/32", - "3.148.8.16/32", - "3.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "3.1.0.1/32", - "3.128.0.1/14", - "3.132.0.1/14", - "3.136.0.1/14" - ], - "dst_addrs": [ - "3.1.0.1/32", - "3.128.0.1/14", - "3.132.0.1/14", - "3.136.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:4:TABLE:4001": { - "acl-group-id": "acl-group-4001", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.128.0.1/32", - "4.128.0.3/32", - "4.128.0.5/32", - "4.128.0.7/32", - "4.128.0.9/32", - "4.128.0.11/32", - "4.128.0.13/32", - "4.128.0.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.128.0.1/32", - "4.128.0.3/32", - "4.128.0.5/32", - "4.128.0.7/32", - "4.128.0.9/32", - "4.128.0.11/32", - "4.128.0.13/32", - "4.128.0.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.128.0.2/32", - "4.128.0.4/32", - "4.128.0.6/32", - "4.128.0.8/32", - "4.128.0.10/32", - "4.128.0.12/32", - "4.128.0.14/32", - "4.128.0.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.128.0.2/32", - "4.128.0.4/32", - "4.128.0.6/32", - "4.128.0.8/32", - "4.128.0.10/32", - "4.128.0.12/32", - "4.128.0.14/32", - "4.128.0.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.128.2.1/32", - "4.128.2.3/32", - "4.128.2.5/32", - "4.128.2.7/32", - "4.128.2.9/32", - "4.128.2.11/32", - "4.128.2.13/32", - "4.128.2.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.128.2.1/32", - "4.128.2.3/32", - "4.128.2.5/32", - "4.128.2.7/32", - "4.128.2.9/32", - "4.128.2.11/32", - "4.128.2.13/32", - "4.128.2.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.128.2.2/32", - "4.128.2.4/32", - "4.128.2.6/32", - "4.128.2.8/32", - "4.128.2.10/32", - "4.128.2.12/32", - "4.128.2.14/32", - "4.128.2.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.128.2.2/32", - "4.128.2.4/32", - "4.128.2.6/32", - "4.128.2.8/32", - "4.128.2.10/32", - "4.128.2.12/32", - "4.128.2.14/32", - "4.128.2.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.128.4.1/32", - "4.128.4.3/32", - "4.128.4.5/32", - "4.128.4.7/32", - "4.128.4.9/32", - "4.128.4.11/32", - "4.128.4.13/32", - "4.128.4.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.128.4.1/32", - "4.128.4.3/32", - "4.128.4.5/32", - "4.128.4.7/32", - "4.128.4.9/32", - "4.128.4.11/32", - "4.128.4.13/32", - "4.128.4.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.128.4.2/32", - "4.128.4.4/32", - "4.128.4.6/32", - "4.128.4.8/32", - "4.128.4.10/32", - "4.128.4.12/32", - "4.128.4.14/32", - "4.128.4.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.128.4.2/32", - "4.128.4.4/32", - "4.128.4.6/32", - "4.128.4.8/32", - "4.128.4.10/32", - "4.128.4.12/32", - "4.128.4.14/32", - "4.128.4.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.128.6.1/32", - "4.128.6.3/32", - "4.128.6.5/32", - "4.128.6.7/32", - "4.128.6.9/32", - "4.128.6.11/32", - "4.128.6.13/32", - "4.128.6.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.128.6.1/32", - "4.128.6.3/32", - "4.128.6.5/32", - "4.128.6.7/32", - "4.128.6.9/32", - "4.128.6.11/32", - "4.128.6.13/32", - "4.128.6.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.128.6.2/32", - "4.128.6.4/32", - "4.128.6.6/32", - "4.128.6.8/32", - "4.128.6.10/32", - "4.128.6.12/32", - "4.128.6.14/32", - "4.128.6.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.128.6.2/32", - "4.128.6.4/32", - "4.128.6.6/32", - "4.128.6.8/32", - "4.128.6.10/32", - "4.128.6.12/32", - "4.128.6.14/32", - "4.128.6.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.128.8.1/32", - "4.128.8.3/32", - "4.128.8.5/32", - "4.128.8.7/32", - "4.128.8.9/32", - "4.128.8.11/32", - "4.128.8.13/32", - "4.128.8.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.128.8.1/32", - "4.128.8.3/32", - "4.128.8.5/32", - "4.128.8.7/32", - "4.128.8.9/32", - "4.128.8.11/32", - "4.128.8.13/32", - "4.128.8.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.128.8.2/32", - "4.128.8.4/32", - "4.128.8.6/32", - "4.128.8.8/32", - "4.128.8.10/32", - "4.128.8.12/32", - "4.128.8.14/32", - "4.128.8.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.128.8.2/32", - "4.128.8.4/32", - "4.128.8.6/32", - "4.128.8.8/32", - "4.128.8.10/32", - "4.128.8.12/32", - "4.128.8.14/32", - "4.128.8.16/32", - "4.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:4:TABLE:4002": { - "acl-group-id": "acl-group-4002", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.132.0.1/32", - "4.132.0.3/32", - "4.132.0.5/32", - "4.132.0.7/32", - "4.132.0.9/32", - "4.132.0.11/32", - "4.132.0.13/32", - "4.132.0.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.132.0.1/32", - "4.132.0.3/32", - "4.132.0.5/32", - "4.132.0.7/32", - "4.132.0.9/32", - "4.132.0.11/32", - "4.132.0.13/32", - "4.132.0.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.132.0.2/32", - "4.132.0.4/32", - "4.132.0.6/32", - "4.132.0.8/32", - "4.132.0.10/32", - "4.132.0.12/32", - "4.132.0.14/32", - "4.132.0.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.132.0.2/32", - "4.132.0.4/32", - "4.132.0.6/32", - "4.132.0.8/32", - "4.132.0.10/32", - "4.132.0.12/32", - "4.132.0.14/32", - "4.132.0.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.132.2.1/32", - "4.132.2.3/32", - "4.132.2.5/32", - "4.132.2.7/32", - "4.132.2.9/32", - "4.132.2.11/32", - "4.132.2.13/32", - "4.132.2.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.132.2.1/32", - "4.132.2.3/32", - "4.132.2.5/32", - "4.132.2.7/32", - "4.132.2.9/32", - "4.132.2.11/32", - "4.132.2.13/32", - "4.132.2.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.132.2.2/32", - "4.132.2.4/32", - "4.132.2.6/32", - "4.132.2.8/32", - "4.132.2.10/32", - "4.132.2.12/32", - "4.132.2.14/32", - "4.132.2.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.132.2.2/32", - "4.132.2.4/32", - "4.132.2.6/32", - "4.132.2.8/32", - "4.132.2.10/32", - "4.132.2.12/32", - "4.132.2.14/32", - "4.132.2.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.132.4.1/32", - "4.132.4.3/32", - "4.132.4.5/32", - "4.132.4.7/32", - "4.132.4.9/32", - "4.132.4.11/32", - "4.132.4.13/32", - "4.132.4.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.132.4.1/32", - "4.132.4.3/32", - "4.132.4.5/32", - "4.132.4.7/32", - "4.132.4.9/32", - "4.132.4.11/32", - "4.132.4.13/32", - "4.132.4.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.132.4.2/32", - "4.132.4.4/32", - "4.132.4.6/32", - "4.132.4.8/32", - "4.132.4.10/32", - "4.132.4.12/32", - "4.132.4.14/32", - "4.132.4.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.132.4.2/32", - "4.132.4.4/32", - "4.132.4.6/32", - "4.132.4.8/32", - "4.132.4.10/32", - "4.132.4.12/32", - "4.132.4.14/32", - "4.132.4.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.132.6.1/32", - "4.132.6.3/32", - "4.132.6.5/32", - "4.132.6.7/32", - "4.132.6.9/32", - "4.132.6.11/32", - "4.132.6.13/32", - "4.132.6.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.132.6.1/32", - "4.132.6.3/32", - "4.132.6.5/32", - "4.132.6.7/32", - "4.132.6.9/32", - "4.132.6.11/32", - "4.132.6.13/32", - "4.132.6.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.132.6.2/32", - "4.132.6.4/32", - "4.132.6.6/32", - "4.132.6.8/32", - "4.132.6.10/32", - "4.132.6.12/32", - "4.132.6.14/32", - "4.132.6.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.132.6.2/32", - "4.132.6.4/32", - "4.132.6.6/32", - "4.132.6.8/32", - "4.132.6.10/32", - "4.132.6.12/32", - "4.132.6.14/32", - "4.132.6.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.132.8.1/32", - "4.132.8.3/32", - "4.132.8.5/32", - "4.132.8.7/32", - "4.132.8.9/32", - "4.132.8.11/32", - "4.132.8.13/32", - "4.132.8.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.132.8.1/32", - "4.132.8.3/32", - "4.132.8.5/32", - "4.132.8.7/32", - "4.132.8.9/32", - "4.132.8.11/32", - "4.132.8.13/32", - "4.132.8.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.132.8.2/32", - "4.132.8.4/32", - "4.132.8.6/32", - "4.132.8.8/32", - "4.132.8.10/32", - "4.132.8.12/32", - "4.132.8.14/32", - "4.132.8.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.132.8.2/32", - "4.132.8.4/32", - "4.132.8.6/32", - "4.132.8.8/32", - "4.132.8.10/32", - "4.132.8.12/32", - "4.132.8.14/32", - "4.132.8.16/32", - "4.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:4:TABLE:4003": { - "acl-group-id": "acl-group-4003", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.136.0.1/32", - "4.136.0.3/32", - "4.136.0.5/32", - "4.136.0.7/32", - "4.136.0.9/32", - "4.136.0.11/32", - "4.136.0.13/32", - "4.136.0.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.136.0.1/32", - "4.136.0.3/32", - "4.136.0.5/32", - "4.136.0.7/32", - "4.136.0.9/32", - "4.136.0.11/32", - "4.136.0.13/32", - "4.136.0.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.136.0.2/32", - "4.136.0.4/32", - "4.136.0.6/32", - "4.136.0.8/32", - "4.136.0.10/32", - "4.136.0.12/32", - "4.136.0.14/32", - "4.136.0.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.136.0.2/32", - "4.136.0.4/32", - "4.136.0.6/32", - "4.136.0.8/32", - "4.136.0.10/32", - "4.136.0.12/32", - "4.136.0.14/32", - "4.136.0.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.136.2.1/32", - "4.136.2.3/32", - "4.136.2.5/32", - "4.136.2.7/32", - "4.136.2.9/32", - "4.136.2.11/32", - "4.136.2.13/32", - "4.136.2.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.136.2.1/32", - "4.136.2.3/32", - "4.136.2.5/32", - "4.136.2.7/32", - "4.136.2.9/32", - "4.136.2.11/32", - "4.136.2.13/32", - "4.136.2.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.136.2.2/32", - "4.136.2.4/32", - "4.136.2.6/32", - "4.136.2.8/32", - "4.136.2.10/32", - "4.136.2.12/32", - "4.136.2.14/32", - "4.136.2.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.136.2.2/32", - "4.136.2.4/32", - "4.136.2.6/32", - "4.136.2.8/32", - "4.136.2.10/32", - "4.136.2.12/32", - "4.136.2.14/32", - "4.136.2.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.136.4.1/32", - "4.136.4.3/32", - "4.136.4.5/32", - "4.136.4.7/32", - "4.136.4.9/32", - "4.136.4.11/32", - "4.136.4.13/32", - "4.136.4.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.136.4.1/32", - "4.136.4.3/32", - "4.136.4.5/32", - "4.136.4.7/32", - "4.136.4.9/32", - "4.136.4.11/32", - "4.136.4.13/32", - "4.136.4.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.136.4.2/32", - "4.136.4.4/32", - "4.136.4.6/32", - "4.136.4.8/32", - "4.136.4.10/32", - "4.136.4.12/32", - "4.136.4.14/32", - "4.136.4.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.136.4.2/32", - "4.136.4.4/32", - "4.136.4.6/32", - "4.136.4.8/32", - "4.136.4.10/32", - "4.136.4.12/32", - "4.136.4.14/32", - "4.136.4.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.136.6.1/32", - "4.136.6.3/32", - "4.136.6.5/32", - "4.136.6.7/32", - "4.136.6.9/32", - "4.136.6.11/32", - "4.136.6.13/32", - "4.136.6.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.136.6.1/32", - "4.136.6.3/32", - "4.136.6.5/32", - "4.136.6.7/32", - "4.136.6.9/32", - "4.136.6.11/32", - "4.136.6.13/32", - "4.136.6.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.136.6.2/32", - "4.136.6.4/32", - "4.136.6.6/32", - "4.136.6.8/32", - "4.136.6.10/32", - "4.136.6.12/32", - "4.136.6.14/32", - "4.136.6.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.136.6.2/32", - "4.136.6.4/32", - "4.136.6.6/32", - "4.136.6.8/32", - "4.136.6.10/32", - "4.136.6.12/32", - "4.136.6.14/32", - "4.136.6.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.136.8.1/32", - "4.136.8.3/32", - "4.136.8.5/32", - "4.136.8.7/32", - "4.136.8.9/32", - "4.136.8.11/32", - "4.136.8.13/32", - "4.136.8.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.136.8.1/32", - "4.136.8.3/32", - "4.136.8.5/32", - "4.136.8.7/32", - "4.136.8.9/32", - "4.136.8.11/32", - "4.136.8.13/32", - "4.136.8.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.136.8.2/32", - "4.136.8.4/32", - "4.136.8.6/32", - "4.136.8.8/32", - "4.136.8.10/32", - "4.136.8.12/32", - "4.136.8.14/32", - "4.136.8.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.136.8.2/32", - "4.136.8.4/32", - "4.136.8.6/32", - "4.136.8.8/32", - "4.136.8.10/32", - "4.136.8.12/32", - "4.136.8.14/32", - "4.136.8.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "4.1.0.1/32", - "4.140.0.1/14", - "4.144.0.1/14", - "4.148.0.1/14" - ], - "dst_addrs": [ - "4.1.0.1/32", - "4.140.0.1/14", - "4.144.0.1/14", - "4.148.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:4:TABLE:4004": { - "acl-group-id": "acl-group-4004", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.140.0.1/32", - "4.140.0.3/32", - "4.140.0.5/32", - "4.140.0.7/32", - "4.140.0.9/32", - "4.140.0.11/32", - "4.140.0.13/32", - "4.140.0.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.140.0.1/32", - "4.140.0.3/32", - "4.140.0.5/32", - "4.140.0.7/32", - "4.140.0.9/32", - "4.140.0.11/32", - "4.140.0.13/32", - "4.140.0.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.140.0.2/32", - "4.140.0.4/32", - "4.140.0.6/32", - "4.140.0.8/32", - "4.140.0.10/32", - "4.140.0.12/32", - "4.140.0.14/32", - "4.140.0.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.140.0.2/32", - "4.140.0.4/32", - "4.140.0.6/32", - "4.140.0.8/32", - "4.140.0.10/32", - "4.140.0.12/32", - "4.140.0.14/32", - "4.140.0.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.140.2.1/32", - "4.140.2.3/32", - "4.140.2.5/32", - "4.140.2.7/32", - "4.140.2.9/32", - "4.140.2.11/32", - "4.140.2.13/32", - "4.140.2.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.140.2.1/32", - "4.140.2.3/32", - "4.140.2.5/32", - "4.140.2.7/32", - "4.140.2.9/32", - "4.140.2.11/32", - "4.140.2.13/32", - "4.140.2.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.140.2.2/32", - "4.140.2.4/32", - "4.140.2.6/32", - "4.140.2.8/32", - "4.140.2.10/32", - "4.140.2.12/32", - "4.140.2.14/32", - "4.140.2.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.140.2.2/32", - "4.140.2.4/32", - "4.140.2.6/32", - "4.140.2.8/32", - "4.140.2.10/32", - "4.140.2.12/32", - "4.140.2.14/32", - "4.140.2.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.140.4.1/32", - "4.140.4.3/32", - "4.140.4.5/32", - "4.140.4.7/32", - "4.140.4.9/32", - "4.140.4.11/32", - "4.140.4.13/32", - "4.140.4.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.140.4.1/32", - "4.140.4.3/32", - "4.140.4.5/32", - "4.140.4.7/32", - "4.140.4.9/32", - "4.140.4.11/32", - "4.140.4.13/32", - "4.140.4.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.140.4.2/32", - "4.140.4.4/32", - "4.140.4.6/32", - "4.140.4.8/32", - "4.140.4.10/32", - "4.140.4.12/32", - "4.140.4.14/32", - "4.140.4.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.140.4.2/32", - "4.140.4.4/32", - "4.140.4.6/32", - "4.140.4.8/32", - "4.140.4.10/32", - "4.140.4.12/32", - "4.140.4.14/32", - "4.140.4.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.140.6.1/32", - "4.140.6.3/32", - "4.140.6.5/32", - "4.140.6.7/32", - "4.140.6.9/32", - "4.140.6.11/32", - "4.140.6.13/32", - "4.140.6.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.140.6.1/32", - "4.140.6.3/32", - "4.140.6.5/32", - "4.140.6.7/32", - "4.140.6.9/32", - "4.140.6.11/32", - "4.140.6.13/32", - "4.140.6.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.140.6.2/32", - "4.140.6.4/32", - "4.140.6.6/32", - "4.140.6.8/32", - "4.140.6.10/32", - "4.140.6.12/32", - "4.140.6.14/32", - "4.140.6.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.140.6.2/32", - "4.140.6.4/32", - "4.140.6.6/32", - "4.140.6.8/32", - "4.140.6.10/32", - "4.140.6.12/32", - "4.140.6.14/32", - "4.140.6.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.140.8.1/32", - "4.140.8.3/32", - "4.140.8.5/32", - "4.140.8.7/32", - "4.140.8.9/32", - "4.140.8.11/32", - "4.140.8.13/32", - "4.140.8.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.140.8.1/32", - "4.140.8.3/32", - "4.140.8.5/32", - "4.140.8.7/32", - "4.140.8.9/32", - "4.140.8.11/32", - "4.140.8.13/32", - "4.140.8.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.140.8.2/32", - "4.140.8.4/32", - "4.140.8.6/32", - "4.140.8.8/32", - "4.140.8.10/32", - "4.140.8.12/32", - "4.140.8.14/32", - "4.140.8.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.140.8.2/32", - "4.140.8.4/32", - "4.140.8.6/32", - "4.140.8.8/32", - "4.140.8.10/32", - "4.140.8.12/32", - "4.140.8.14/32", - "4.140.8.16/32", - "4.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:4:TABLE:4005": { - "acl-group-id": "acl-group-4005", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.144.0.1/32", - "4.144.0.3/32", - "4.144.0.5/32", - "4.144.0.7/32", - "4.144.0.9/32", - "4.144.0.11/32", - "4.144.0.13/32", - "4.144.0.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.144.0.1/32", - "4.144.0.3/32", - "4.144.0.5/32", - "4.144.0.7/32", - "4.144.0.9/32", - "4.144.0.11/32", - "4.144.0.13/32", - "4.144.0.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.144.0.2/32", - "4.144.0.4/32", - "4.144.0.6/32", - "4.144.0.8/32", - "4.144.0.10/32", - "4.144.0.12/32", - "4.144.0.14/32", - "4.144.0.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.144.0.2/32", - "4.144.0.4/32", - "4.144.0.6/32", - "4.144.0.8/32", - "4.144.0.10/32", - "4.144.0.12/32", - "4.144.0.14/32", - "4.144.0.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.144.2.1/32", - "4.144.2.3/32", - "4.144.2.5/32", - "4.144.2.7/32", - "4.144.2.9/32", - "4.144.2.11/32", - "4.144.2.13/32", - "4.144.2.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.144.2.1/32", - "4.144.2.3/32", - "4.144.2.5/32", - "4.144.2.7/32", - "4.144.2.9/32", - "4.144.2.11/32", - "4.144.2.13/32", - "4.144.2.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.144.2.2/32", - "4.144.2.4/32", - "4.144.2.6/32", - "4.144.2.8/32", - "4.144.2.10/32", - "4.144.2.12/32", - "4.144.2.14/32", - "4.144.2.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.144.2.2/32", - "4.144.2.4/32", - "4.144.2.6/32", - "4.144.2.8/32", - "4.144.2.10/32", - "4.144.2.12/32", - "4.144.2.14/32", - "4.144.2.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.144.4.1/32", - "4.144.4.3/32", - "4.144.4.5/32", - "4.144.4.7/32", - "4.144.4.9/32", - "4.144.4.11/32", - "4.144.4.13/32", - "4.144.4.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.144.4.1/32", - "4.144.4.3/32", - "4.144.4.5/32", - "4.144.4.7/32", - "4.144.4.9/32", - "4.144.4.11/32", - "4.144.4.13/32", - "4.144.4.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.144.4.2/32", - "4.144.4.4/32", - "4.144.4.6/32", - "4.144.4.8/32", - "4.144.4.10/32", - "4.144.4.12/32", - "4.144.4.14/32", - "4.144.4.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.144.4.2/32", - "4.144.4.4/32", - "4.144.4.6/32", - "4.144.4.8/32", - "4.144.4.10/32", - "4.144.4.12/32", - "4.144.4.14/32", - "4.144.4.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.144.6.1/32", - "4.144.6.3/32", - "4.144.6.5/32", - "4.144.6.7/32", - "4.144.6.9/32", - "4.144.6.11/32", - "4.144.6.13/32", - "4.144.6.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.144.6.1/32", - "4.144.6.3/32", - "4.144.6.5/32", - "4.144.6.7/32", - "4.144.6.9/32", - "4.144.6.11/32", - "4.144.6.13/32", - "4.144.6.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.144.6.2/32", - "4.144.6.4/32", - "4.144.6.6/32", - "4.144.6.8/32", - "4.144.6.10/32", - "4.144.6.12/32", - "4.144.6.14/32", - "4.144.6.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.144.6.2/32", - "4.144.6.4/32", - "4.144.6.6/32", - "4.144.6.8/32", - "4.144.6.10/32", - "4.144.6.12/32", - "4.144.6.14/32", - "4.144.6.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.144.8.1/32", - "4.144.8.3/32", - "4.144.8.5/32", - "4.144.8.7/32", - "4.144.8.9/32", - "4.144.8.11/32", - "4.144.8.13/32", - "4.144.8.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.144.8.1/32", - "4.144.8.3/32", - "4.144.8.5/32", - "4.144.8.7/32", - "4.144.8.9/32", - "4.144.8.11/32", - "4.144.8.13/32", - "4.144.8.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.144.8.2/32", - "4.144.8.4/32", - "4.144.8.6/32", - "4.144.8.8/32", - "4.144.8.10/32", - "4.144.8.12/32", - "4.144.8.14/32", - "4.144.8.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.144.8.2/32", - "4.144.8.4/32", - "4.144.8.6/32", - "4.144.8.8/32", - "4.144.8.10/32", - "4.144.8.12/32", - "4.144.8.14/32", - "4.144.8.16/32", - "4.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:4:TABLE:4006": { - "acl-group-id": "acl-group-4006", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.148.0.1/32", - "4.148.0.3/32", - "4.148.0.5/32", - "4.148.0.7/32", - "4.148.0.9/32", - "4.148.0.11/32", - "4.148.0.13/32", - "4.148.0.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.148.0.1/32", - "4.148.0.3/32", - "4.148.0.5/32", - "4.148.0.7/32", - "4.148.0.9/32", - "4.148.0.11/32", - "4.148.0.13/32", - "4.148.0.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.148.0.2/32", - "4.148.0.4/32", - "4.148.0.6/32", - "4.148.0.8/32", - "4.148.0.10/32", - "4.148.0.12/32", - "4.148.0.14/32", - "4.148.0.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.148.0.2/32", - "4.148.0.4/32", - "4.148.0.6/32", - "4.148.0.8/32", - "4.148.0.10/32", - "4.148.0.12/32", - "4.148.0.14/32", - "4.148.0.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.148.2.1/32", - "4.148.2.3/32", - "4.148.2.5/32", - "4.148.2.7/32", - "4.148.2.9/32", - "4.148.2.11/32", - "4.148.2.13/32", - "4.148.2.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.148.2.1/32", - "4.148.2.3/32", - "4.148.2.5/32", - "4.148.2.7/32", - "4.148.2.9/32", - "4.148.2.11/32", - "4.148.2.13/32", - "4.148.2.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.148.2.2/32", - "4.148.2.4/32", - "4.148.2.6/32", - "4.148.2.8/32", - "4.148.2.10/32", - "4.148.2.12/32", - "4.148.2.14/32", - "4.148.2.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.148.2.2/32", - "4.148.2.4/32", - "4.148.2.6/32", - "4.148.2.8/32", - "4.148.2.10/32", - "4.148.2.12/32", - "4.148.2.14/32", - "4.148.2.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.148.4.1/32", - "4.148.4.3/32", - "4.148.4.5/32", - "4.148.4.7/32", - "4.148.4.9/32", - "4.148.4.11/32", - "4.148.4.13/32", - "4.148.4.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.148.4.1/32", - "4.148.4.3/32", - "4.148.4.5/32", - "4.148.4.7/32", - "4.148.4.9/32", - "4.148.4.11/32", - "4.148.4.13/32", - "4.148.4.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.148.4.2/32", - "4.148.4.4/32", - "4.148.4.6/32", - "4.148.4.8/32", - "4.148.4.10/32", - "4.148.4.12/32", - "4.148.4.14/32", - "4.148.4.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.148.4.2/32", - "4.148.4.4/32", - "4.148.4.6/32", - "4.148.4.8/32", - "4.148.4.10/32", - "4.148.4.12/32", - "4.148.4.14/32", - "4.148.4.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.148.6.1/32", - "4.148.6.3/32", - "4.148.6.5/32", - "4.148.6.7/32", - "4.148.6.9/32", - "4.148.6.11/32", - "4.148.6.13/32", - "4.148.6.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.148.6.1/32", - "4.148.6.3/32", - "4.148.6.5/32", - "4.148.6.7/32", - "4.148.6.9/32", - "4.148.6.11/32", - "4.148.6.13/32", - "4.148.6.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.148.6.2/32", - "4.148.6.4/32", - "4.148.6.6/32", - "4.148.6.8/32", - "4.148.6.10/32", - "4.148.6.12/32", - "4.148.6.14/32", - "4.148.6.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.148.6.2/32", - "4.148.6.4/32", - "4.148.6.6/32", - "4.148.6.8/32", - "4.148.6.10/32", - "4.148.6.12/32", - "4.148.6.14/32", - "4.148.6.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "4.148.8.1/32", - "4.148.8.3/32", - "4.148.8.5/32", - "4.148.8.7/32", - "4.148.8.9/32", - "4.148.8.11/32", - "4.148.8.13/32", - "4.148.8.15/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.148.8.1/32", - "4.148.8.3/32", - "4.148.8.5/32", - "4.148.8.7/32", - "4.148.8.9/32", - "4.148.8.11/32", - "4.148.8.13/32", - "4.148.8.15/32", - "4.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "4.148.8.2/32", - "4.148.8.4/32", - "4.148.8.6/32", - "4.148.8.8/32", - "4.148.8.10/32", - "4.148.8.12/32", - "4.148.8.14/32", - "4.148.8.16/32", - "4.1.0.1/32" - ], - "dst_addrs": [ - "4.148.8.2/32", - "4.148.8.4/32", - "4.148.8.6/32", - "4.148.8.8/32", - "4.148.8.10/32", - "4.148.8.12/32", - "4.148.8.14/32", - "4.148.8.16/32", - "4.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "4.1.0.1/32", - "4.128.0.1/14", - "4.132.0.1/14", - "4.136.0.1/14" - ], - "dst_addrs": [ - "4.1.0.1/32", - "4.128.0.1/14", - "4.132.0.1/14", - "4.136.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:5:TABLE:5001": { - "acl-group-id": "acl-group-5001", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.128.0.1/32", - "5.128.0.3/32", - "5.128.0.5/32", - "5.128.0.7/32", - "5.128.0.9/32", - "5.128.0.11/32", - "5.128.0.13/32", - "5.128.0.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.128.0.1/32", - "5.128.0.3/32", - "5.128.0.5/32", - "5.128.0.7/32", - "5.128.0.9/32", - "5.128.0.11/32", - "5.128.0.13/32", - "5.128.0.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.128.0.2/32", - "5.128.0.4/32", - "5.128.0.6/32", - "5.128.0.8/32", - "5.128.0.10/32", - "5.128.0.12/32", - "5.128.0.14/32", - "5.128.0.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.128.0.2/32", - "5.128.0.4/32", - "5.128.0.6/32", - "5.128.0.8/32", - "5.128.0.10/32", - "5.128.0.12/32", - "5.128.0.14/32", - "5.128.0.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.128.2.1/32", - "5.128.2.3/32", - "5.128.2.5/32", - "5.128.2.7/32", - "5.128.2.9/32", - "5.128.2.11/32", - "5.128.2.13/32", - "5.128.2.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.128.2.1/32", - "5.128.2.3/32", - "5.128.2.5/32", - "5.128.2.7/32", - "5.128.2.9/32", - "5.128.2.11/32", - "5.128.2.13/32", - "5.128.2.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.128.2.2/32", - "5.128.2.4/32", - "5.128.2.6/32", - "5.128.2.8/32", - "5.128.2.10/32", - "5.128.2.12/32", - "5.128.2.14/32", - "5.128.2.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.128.2.2/32", - "5.128.2.4/32", - "5.128.2.6/32", - "5.128.2.8/32", - "5.128.2.10/32", - "5.128.2.12/32", - "5.128.2.14/32", - "5.128.2.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.128.4.1/32", - "5.128.4.3/32", - "5.128.4.5/32", - "5.128.4.7/32", - "5.128.4.9/32", - "5.128.4.11/32", - "5.128.4.13/32", - "5.128.4.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.128.4.1/32", - "5.128.4.3/32", - "5.128.4.5/32", - "5.128.4.7/32", - "5.128.4.9/32", - "5.128.4.11/32", - "5.128.4.13/32", - "5.128.4.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.128.4.2/32", - "5.128.4.4/32", - "5.128.4.6/32", - "5.128.4.8/32", - "5.128.4.10/32", - "5.128.4.12/32", - "5.128.4.14/32", - "5.128.4.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.128.4.2/32", - "5.128.4.4/32", - "5.128.4.6/32", - "5.128.4.8/32", - "5.128.4.10/32", - "5.128.4.12/32", - "5.128.4.14/32", - "5.128.4.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.128.6.1/32", - "5.128.6.3/32", - "5.128.6.5/32", - "5.128.6.7/32", - "5.128.6.9/32", - "5.128.6.11/32", - "5.128.6.13/32", - "5.128.6.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.128.6.1/32", - "5.128.6.3/32", - "5.128.6.5/32", - "5.128.6.7/32", - "5.128.6.9/32", - "5.128.6.11/32", - "5.128.6.13/32", - "5.128.6.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.128.6.2/32", - "5.128.6.4/32", - "5.128.6.6/32", - "5.128.6.8/32", - "5.128.6.10/32", - "5.128.6.12/32", - "5.128.6.14/32", - "5.128.6.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.128.6.2/32", - "5.128.6.4/32", - "5.128.6.6/32", - "5.128.6.8/32", - "5.128.6.10/32", - "5.128.6.12/32", - "5.128.6.14/32", - "5.128.6.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.128.8.1/32", - "5.128.8.3/32", - "5.128.8.5/32", - "5.128.8.7/32", - "5.128.8.9/32", - "5.128.8.11/32", - "5.128.8.13/32", - "5.128.8.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.128.8.1/32", - "5.128.8.3/32", - "5.128.8.5/32", - "5.128.8.7/32", - "5.128.8.9/32", - "5.128.8.11/32", - "5.128.8.13/32", - "5.128.8.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.128.8.2/32", - "5.128.8.4/32", - "5.128.8.6/32", - "5.128.8.8/32", - "5.128.8.10/32", - "5.128.8.12/32", - "5.128.8.14/32", - "5.128.8.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.128.8.2/32", - "5.128.8.4/32", - "5.128.8.6/32", - "5.128.8.8/32", - "5.128.8.10/32", - "5.128.8.12/32", - "5.128.8.14/32", - "5.128.8.16/32", - "5.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:5:TABLE:5002": { - "acl-group-id": "acl-group-5002", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.132.0.1/32", - "5.132.0.3/32", - "5.132.0.5/32", - "5.132.0.7/32", - "5.132.0.9/32", - "5.132.0.11/32", - "5.132.0.13/32", - "5.132.0.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.132.0.1/32", - "5.132.0.3/32", - "5.132.0.5/32", - "5.132.0.7/32", - "5.132.0.9/32", - "5.132.0.11/32", - "5.132.0.13/32", - "5.132.0.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.132.0.2/32", - "5.132.0.4/32", - "5.132.0.6/32", - "5.132.0.8/32", - "5.132.0.10/32", - "5.132.0.12/32", - "5.132.0.14/32", - "5.132.0.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.132.0.2/32", - "5.132.0.4/32", - "5.132.0.6/32", - "5.132.0.8/32", - "5.132.0.10/32", - "5.132.0.12/32", - "5.132.0.14/32", - "5.132.0.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.132.2.1/32", - "5.132.2.3/32", - "5.132.2.5/32", - "5.132.2.7/32", - "5.132.2.9/32", - "5.132.2.11/32", - "5.132.2.13/32", - "5.132.2.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.132.2.1/32", - "5.132.2.3/32", - "5.132.2.5/32", - "5.132.2.7/32", - "5.132.2.9/32", - "5.132.2.11/32", - "5.132.2.13/32", - "5.132.2.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.132.2.2/32", - "5.132.2.4/32", - "5.132.2.6/32", - "5.132.2.8/32", - "5.132.2.10/32", - "5.132.2.12/32", - "5.132.2.14/32", - "5.132.2.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.132.2.2/32", - "5.132.2.4/32", - "5.132.2.6/32", - "5.132.2.8/32", - "5.132.2.10/32", - "5.132.2.12/32", - "5.132.2.14/32", - "5.132.2.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.132.4.1/32", - "5.132.4.3/32", - "5.132.4.5/32", - "5.132.4.7/32", - "5.132.4.9/32", - "5.132.4.11/32", - "5.132.4.13/32", - "5.132.4.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.132.4.1/32", - "5.132.4.3/32", - "5.132.4.5/32", - "5.132.4.7/32", - "5.132.4.9/32", - "5.132.4.11/32", - "5.132.4.13/32", - "5.132.4.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.132.4.2/32", - "5.132.4.4/32", - "5.132.4.6/32", - "5.132.4.8/32", - "5.132.4.10/32", - "5.132.4.12/32", - "5.132.4.14/32", - "5.132.4.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.132.4.2/32", - "5.132.4.4/32", - "5.132.4.6/32", - "5.132.4.8/32", - "5.132.4.10/32", - "5.132.4.12/32", - "5.132.4.14/32", - "5.132.4.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.132.6.1/32", - "5.132.6.3/32", - "5.132.6.5/32", - "5.132.6.7/32", - "5.132.6.9/32", - "5.132.6.11/32", - "5.132.6.13/32", - "5.132.6.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.132.6.1/32", - "5.132.6.3/32", - "5.132.6.5/32", - "5.132.6.7/32", - "5.132.6.9/32", - "5.132.6.11/32", - "5.132.6.13/32", - "5.132.6.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.132.6.2/32", - "5.132.6.4/32", - "5.132.6.6/32", - "5.132.6.8/32", - "5.132.6.10/32", - "5.132.6.12/32", - "5.132.6.14/32", - "5.132.6.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.132.6.2/32", - "5.132.6.4/32", - "5.132.6.6/32", - "5.132.6.8/32", - "5.132.6.10/32", - "5.132.6.12/32", - "5.132.6.14/32", - "5.132.6.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.132.8.1/32", - "5.132.8.3/32", - "5.132.8.5/32", - "5.132.8.7/32", - "5.132.8.9/32", - "5.132.8.11/32", - "5.132.8.13/32", - "5.132.8.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.132.8.1/32", - "5.132.8.3/32", - "5.132.8.5/32", - "5.132.8.7/32", - "5.132.8.9/32", - "5.132.8.11/32", - "5.132.8.13/32", - "5.132.8.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.132.8.2/32", - "5.132.8.4/32", - "5.132.8.6/32", - "5.132.8.8/32", - "5.132.8.10/32", - "5.132.8.12/32", - "5.132.8.14/32", - "5.132.8.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.132.8.2/32", - "5.132.8.4/32", - "5.132.8.6/32", - "5.132.8.8/32", - "5.132.8.10/32", - "5.132.8.12/32", - "5.132.8.14/32", - "5.132.8.16/32", - "5.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:5:TABLE:5003": { - "acl-group-id": "acl-group-5003", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.136.0.1/32", - "5.136.0.3/32", - "5.136.0.5/32", - "5.136.0.7/32", - "5.136.0.9/32", - "5.136.0.11/32", - "5.136.0.13/32", - "5.136.0.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.136.0.1/32", - "5.136.0.3/32", - "5.136.0.5/32", - "5.136.0.7/32", - "5.136.0.9/32", - "5.136.0.11/32", - "5.136.0.13/32", - "5.136.0.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.136.0.2/32", - "5.136.0.4/32", - "5.136.0.6/32", - "5.136.0.8/32", - "5.136.0.10/32", - "5.136.0.12/32", - "5.136.0.14/32", - "5.136.0.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.136.0.2/32", - "5.136.0.4/32", - "5.136.0.6/32", - "5.136.0.8/32", - "5.136.0.10/32", - "5.136.0.12/32", - "5.136.0.14/32", - "5.136.0.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.136.2.1/32", - "5.136.2.3/32", - "5.136.2.5/32", - "5.136.2.7/32", - "5.136.2.9/32", - "5.136.2.11/32", - "5.136.2.13/32", - "5.136.2.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.136.2.1/32", - "5.136.2.3/32", - "5.136.2.5/32", - "5.136.2.7/32", - "5.136.2.9/32", - "5.136.2.11/32", - "5.136.2.13/32", - "5.136.2.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.136.2.2/32", - "5.136.2.4/32", - "5.136.2.6/32", - "5.136.2.8/32", - "5.136.2.10/32", - "5.136.2.12/32", - "5.136.2.14/32", - "5.136.2.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.136.2.2/32", - "5.136.2.4/32", - "5.136.2.6/32", - "5.136.2.8/32", - "5.136.2.10/32", - "5.136.2.12/32", - "5.136.2.14/32", - "5.136.2.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.136.4.1/32", - "5.136.4.3/32", - "5.136.4.5/32", - "5.136.4.7/32", - "5.136.4.9/32", - "5.136.4.11/32", - "5.136.4.13/32", - "5.136.4.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.136.4.1/32", - "5.136.4.3/32", - "5.136.4.5/32", - "5.136.4.7/32", - "5.136.4.9/32", - "5.136.4.11/32", - "5.136.4.13/32", - "5.136.4.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.136.4.2/32", - "5.136.4.4/32", - "5.136.4.6/32", - "5.136.4.8/32", - "5.136.4.10/32", - "5.136.4.12/32", - "5.136.4.14/32", - "5.136.4.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.136.4.2/32", - "5.136.4.4/32", - "5.136.4.6/32", - "5.136.4.8/32", - "5.136.4.10/32", - "5.136.4.12/32", - "5.136.4.14/32", - "5.136.4.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.136.6.1/32", - "5.136.6.3/32", - "5.136.6.5/32", - "5.136.6.7/32", - "5.136.6.9/32", - "5.136.6.11/32", - "5.136.6.13/32", - "5.136.6.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.136.6.1/32", - "5.136.6.3/32", - "5.136.6.5/32", - "5.136.6.7/32", - "5.136.6.9/32", - "5.136.6.11/32", - "5.136.6.13/32", - "5.136.6.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.136.6.2/32", - "5.136.6.4/32", - "5.136.6.6/32", - "5.136.6.8/32", - "5.136.6.10/32", - "5.136.6.12/32", - "5.136.6.14/32", - "5.136.6.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.136.6.2/32", - "5.136.6.4/32", - "5.136.6.6/32", - "5.136.6.8/32", - "5.136.6.10/32", - "5.136.6.12/32", - "5.136.6.14/32", - "5.136.6.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.136.8.1/32", - "5.136.8.3/32", - "5.136.8.5/32", - "5.136.8.7/32", - "5.136.8.9/32", - "5.136.8.11/32", - "5.136.8.13/32", - "5.136.8.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.136.8.1/32", - "5.136.8.3/32", - "5.136.8.5/32", - "5.136.8.7/32", - "5.136.8.9/32", - "5.136.8.11/32", - "5.136.8.13/32", - "5.136.8.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.136.8.2/32", - "5.136.8.4/32", - "5.136.8.6/32", - "5.136.8.8/32", - "5.136.8.10/32", - "5.136.8.12/32", - "5.136.8.14/32", - "5.136.8.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.136.8.2/32", - "5.136.8.4/32", - "5.136.8.6/32", - "5.136.8.8/32", - "5.136.8.10/32", - "5.136.8.12/32", - "5.136.8.14/32", - "5.136.8.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "5.1.0.1/32", - "5.140.0.1/14", - "5.144.0.1/14", - "5.148.0.1/14" - ], - "dst_addrs": [ - "5.1.0.1/32", - "5.140.0.1/14", - "5.144.0.1/14", - "5.148.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:5:TABLE:5004": { - "acl-group-id": "acl-group-5004", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.140.0.1/32", - "5.140.0.3/32", - "5.140.0.5/32", - "5.140.0.7/32", - "5.140.0.9/32", - "5.140.0.11/32", - "5.140.0.13/32", - "5.140.0.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.140.0.1/32", - "5.140.0.3/32", - "5.140.0.5/32", - "5.140.0.7/32", - "5.140.0.9/32", - "5.140.0.11/32", - "5.140.0.13/32", - "5.140.0.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.140.0.2/32", - "5.140.0.4/32", - "5.140.0.6/32", - "5.140.0.8/32", - "5.140.0.10/32", - "5.140.0.12/32", - "5.140.0.14/32", - "5.140.0.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.140.0.2/32", - "5.140.0.4/32", - "5.140.0.6/32", - "5.140.0.8/32", - "5.140.0.10/32", - "5.140.0.12/32", - "5.140.0.14/32", - "5.140.0.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.140.2.1/32", - "5.140.2.3/32", - "5.140.2.5/32", - "5.140.2.7/32", - "5.140.2.9/32", - "5.140.2.11/32", - "5.140.2.13/32", - "5.140.2.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.140.2.1/32", - "5.140.2.3/32", - "5.140.2.5/32", - "5.140.2.7/32", - "5.140.2.9/32", - "5.140.2.11/32", - "5.140.2.13/32", - "5.140.2.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.140.2.2/32", - "5.140.2.4/32", - "5.140.2.6/32", - "5.140.2.8/32", - "5.140.2.10/32", - "5.140.2.12/32", - "5.140.2.14/32", - "5.140.2.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.140.2.2/32", - "5.140.2.4/32", - "5.140.2.6/32", - "5.140.2.8/32", - "5.140.2.10/32", - "5.140.2.12/32", - "5.140.2.14/32", - "5.140.2.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.140.4.1/32", - "5.140.4.3/32", - "5.140.4.5/32", - "5.140.4.7/32", - "5.140.4.9/32", - "5.140.4.11/32", - "5.140.4.13/32", - "5.140.4.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.140.4.1/32", - "5.140.4.3/32", - "5.140.4.5/32", - "5.140.4.7/32", - "5.140.4.9/32", - "5.140.4.11/32", - "5.140.4.13/32", - "5.140.4.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.140.4.2/32", - "5.140.4.4/32", - "5.140.4.6/32", - "5.140.4.8/32", - "5.140.4.10/32", - "5.140.4.12/32", - "5.140.4.14/32", - "5.140.4.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.140.4.2/32", - "5.140.4.4/32", - "5.140.4.6/32", - "5.140.4.8/32", - "5.140.4.10/32", - "5.140.4.12/32", - "5.140.4.14/32", - "5.140.4.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.140.6.1/32", - "5.140.6.3/32", - "5.140.6.5/32", - "5.140.6.7/32", - "5.140.6.9/32", - "5.140.6.11/32", - "5.140.6.13/32", - "5.140.6.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.140.6.1/32", - "5.140.6.3/32", - "5.140.6.5/32", - "5.140.6.7/32", - "5.140.6.9/32", - "5.140.6.11/32", - "5.140.6.13/32", - "5.140.6.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.140.6.2/32", - "5.140.6.4/32", - "5.140.6.6/32", - "5.140.6.8/32", - "5.140.6.10/32", - "5.140.6.12/32", - "5.140.6.14/32", - "5.140.6.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.140.6.2/32", - "5.140.6.4/32", - "5.140.6.6/32", - "5.140.6.8/32", - "5.140.6.10/32", - "5.140.6.12/32", - "5.140.6.14/32", - "5.140.6.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.140.8.1/32", - "5.140.8.3/32", - "5.140.8.5/32", - "5.140.8.7/32", - "5.140.8.9/32", - "5.140.8.11/32", - "5.140.8.13/32", - "5.140.8.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.140.8.1/32", - "5.140.8.3/32", - "5.140.8.5/32", - "5.140.8.7/32", - "5.140.8.9/32", - "5.140.8.11/32", - "5.140.8.13/32", - "5.140.8.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.140.8.2/32", - "5.140.8.4/32", - "5.140.8.6/32", - "5.140.8.8/32", - "5.140.8.10/32", - "5.140.8.12/32", - "5.140.8.14/32", - "5.140.8.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.140.8.2/32", - "5.140.8.4/32", - "5.140.8.6/32", - "5.140.8.8/32", - "5.140.8.10/32", - "5.140.8.12/32", - "5.140.8.14/32", - "5.140.8.16/32", - "5.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:5:TABLE:5005": { - "acl-group-id": "acl-group-5005", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.144.0.1/32", - "5.144.0.3/32", - "5.144.0.5/32", - "5.144.0.7/32", - "5.144.0.9/32", - "5.144.0.11/32", - "5.144.0.13/32", - "5.144.0.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.144.0.1/32", - "5.144.0.3/32", - "5.144.0.5/32", - "5.144.0.7/32", - "5.144.0.9/32", - "5.144.0.11/32", - "5.144.0.13/32", - "5.144.0.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.144.0.2/32", - "5.144.0.4/32", - "5.144.0.6/32", - "5.144.0.8/32", - "5.144.0.10/32", - "5.144.0.12/32", - "5.144.0.14/32", - "5.144.0.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.144.0.2/32", - "5.144.0.4/32", - "5.144.0.6/32", - "5.144.0.8/32", - "5.144.0.10/32", - "5.144.0.12/32", - "5.144.0.14/32", - "5.144.0.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.144.2.1/32", - "5.144.2.3/32", - "5.144.2.5/32", - "5.144.2.7/32", - "5.144.2.9/32", - "5.144.2.11/32", - "5.144.2.13/32", - "5.144.2.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.144.2.1/32", - "5.144.2.3/32", - "5.144.2.5/32", - "5.144.2.7/32", - "5.144.2.9/32", - "5.144.2.11/32", - "5.144.2.13/32", - "5.144.2.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.144.2.2/32", - "5.144.2.4/32", - "5.144.2.6/32", - "5.144.2.8/32", - "5.144.2.10/32", - "5.144.2.12/32", - "5.144.2.14/32", - "5.144.2.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.144.2.2/32", - "5.144.2.4/32", - "5.144.2.6/32", - "5.144.2.8/32", - "5.144.2.10/32", - "5.144.2.12/32", - "5.144.2.14/32", - "5.144.2.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.144.4.1/32", - "5.144.4.3/32", - "5.144.4.5/32", - "5.144.4.7/32", - "5.144.4.9/32", - "5.144.4.11/32", - "5.144.4.13/32", - "5.144.4.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.144.4.1/32", - "5.144.4.3/32", - "5.144.4.5/32", - "5.144.4.7/32", - "5.144.4.9/32", - "5.144.4.11/32", - "5.144.4.13/32", - "5.144.4.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.144.4.2/32", - "5.144.4.4/32", - "5.144.4.6/32", - "5.144.4.8/32", - "5.144.4.10/32", - "5.144.4.12/32", - "5.144.4.14/32", - "5.144.4.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.144.4.2/32", - "5.144.4.4/32", - "5.144.4.6/32", - "5.144.4.8/32", - "5.144.4.10/32", - "5.144.4.12/32", - "5.144.4.14/32", - "5.144.4.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.144.6.1/32", - "5.144.6.3/32", - "5.144.6.5/32", - "5.144.6.7/32", - "5.144.6.9/32", - "5.144.6.11/32", - "5.144.6.13/32", - "5.144.6.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.144.6.1/32", - "5.144.6.3/32", - "5.144.6.5/32", - "5.144.6.7/32", - "5.144.6.9/32", - "5.144.6.11/32", - "5.144.6.13/32", - "5.144.6.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.144.6.2/32", - "5.144.6.4/32", - "5.144.6.6/32", - "5.144.6.8/32", - "5.144.6.10/32", - "5.144.6.12/32", - "5.144.6.14/32", - "5.144.6.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.144.6.2/32", - "5.144.6.4/32", - "5.144.6.6/32", - "5.144.6.8/32", - "5.144.6.10/32", - "5.144.6.12/32", - "5.144.6.14/32", - "5.144.6.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.144.8.1/32", - "5.144.8.3/32", - "5.144.8.5/32", - "5.144.8.7/32", - "5.144.8.9/32", - "5.144.8.11/32", - "5.144.8.13/32", - "5.144.8.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.144.8.1/32", - "5.144.8.3/32", - "5.144.8.5/32", - "5.144.8.7/32", - "5.144.8.9/32", - "5.144.8.11/32", - "5.144.8.13/32", - "5.144.8.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.144.8.2/32", - "5.144.8.4/32", - "5.144.8.6/32", - "5.144.8.8/32", - "5.144.8.10/32", - "5.144.8.12/32", - "5.144.8.14/32", - "5.144.8.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.144.8.2/32", - "5.144.8.4/32", - "5.144.8.6/32", - "5.144.8.8/32", - "5.144.8.10/32", - "5.144.8.12/32", - "5.144.8.14/32", - "5.144.8.16/32", - "5.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:5:TABLE:5006": { - "acl-group-id": "acl-group-5006", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.148.0.1/32", - "5.148.0.3/32", - "5.148.0.5/32", - "5.148.0.7/32", - "5.148.0.9/32", - "5.148.0.11/32", - "5.148.0.13/32", - "5.148.0.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.148.0.1/32", - "5.148.0.3/32", - "5.148.0.5/32", - "5.148.0.7/32", - "5.148.0.9/32", - "5.148.0.11/32", - "5.148.0.13/32", - "5.148.0.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.148.0.2/32", - "5.148.0.4/32", - "5.148.0.6/32", - "5.148.0.8/32", - "5.148.0.10/32", - "5.148.0.12/32", - "5.148.0.14/32", - "5.148.0.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.148.0.2/32", - "5.148.0.4/32", - "5.148.0.6/32", - "5.148.0.8/32", - "5.148.0.10/32", - "5.148.0.12/32", - "5.148.0.14/32", - "5.148.0.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.148.2.1/32", - "5.148.2.3/32", - "5.148.2.5/32", - "5.148.2.7/32", - "5.148.2.9/32", - "5.148.2.11/32", - "5.148.2.13/32", - "5.148.2.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.148.2.1/32", - "5.148.2.3/32", - "5.148.2.5/32", - "5.148.2.7/32", - "5.148.2.9/32", - "5.148.2.11/32", - "5.148.2.13/32", - "5.148.2.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.148.2.2/32", - "5.148.2.4/32", - "5.148.2.6/32", - "5.148.2.8/32", - "5.148.2.10/32", - "5.148.2.12/32", - "5.148.2.14/32", - "5.148.2.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.148.2.2/32", - "5.148.2.4/32", - "5.148.2.6/32", - "5.148.2.8/32", - "5.148.2.10/32", - "5.148.2.12/32", - "5.148.2.14/32", - "5.148.2.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.148.4.1/32", - "5.148.4.3/32", - "5.148.4.5/32", - "5.148.4.7/32", - "5.148.4.9/32", - "5.148.4.11/32", - "5.148.4.13/32", - "5.148.4.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.148.4.1/32", - "5.148.4.3/32", - "5.148.4.5/32", - "5.148.4.7/32", - "5.148.4.9/32", - "5.148.4.11/32", - "5.148.4.13/32", - "5.148.4.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.148.4.2/32", - "5.148.4.4/32", - "5.148.4.6/32", - "5.148.4.8/32", - "5.148.4.10/32", - "5.148.4.12/32", - "5.148.4.14/32", - "5.148.4.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.148.4.2/32", - "5.148.4.4/32", - "5.148.4.6/32", - "5.148.4.8/32", - "5.148.4.10/32", - "5.148.4.12/32", - "5.148.4.14/32", - "5.148.4.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.148.6.1/32", - "5.148.6.3/32", - "5.148.6.5/32", - "5.148.6.7/32", - "5.148.6.9/32", - "5.148.6.11/32", - "5.148.6.13/32", - "5.148.6.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.148.6.1/32", - "5.148.6.3/32", - "5.148.6.5/32", - "5.148.6.7/32", - "5.148.6.9/32", - "5.148.6.11/32", - "5.148.6.13/32", - "5.148.6.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.148.6.2/32", - "5.148.6.4/32", - "5.148.6.6/32", - "5.148.6.8/32", - "5.148.6.10/32", - "5.148.6.12/32", - "5.148.6.14/32", - "5.148.6.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.148.6.2/32", - "5.148.6.4/32", - "5.148.6.6/32", - "5.148.6.8/32", - "5.148.6.10/32", - "5.148.6.12/32", - "5.148.6.14/32", - "5.148.6.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "5.148.8.1/32", - "5.148.8.3/32", - "5.148.8.5/32", - "5.148.8.7/32", - "5.148.8.9/32", - "5.148.8.11/32", - "5.148.8.13/32", - "5.148.8.15/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.148.8.1/32", - "5.148.8.3/32", - "5.148.8.5/32", - "5.148.8.7/32", - "5.148.8.9/32", - "5.148.8.11/32", - "5.148.8.13/32", - "5.148.8.15/32", - "5.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "5.148.8.2/32", - "5.148.8.4/32", - "5.148.8.6/32", - "5.148.8.8/32", - "5.148.8.10/32", - "5.148.8.12/32", - "5.148.8.14/32", - "5.148.8.16/32", - "5.1.0.1/32" - ], - "dst_addrs": [ - "5.148.8.2/32", - "5.148.8.4/32", - "5.148.8.6/32", - "5.148.8.8/32", - "5.148.8.10/32", - "5.148.8.12/32", - "5.148.8.14/32", - "5.148.8.16/32", - "5.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "5.1.0.1/32", - "5.128.0.1/14", - "5.132.0.1/14", - "5.136.0.1/14" - ], - "dst_addrs": [ - "5.1.0.1/32", - "5.128.0.1/14", - "5.132.0.1/14", - "5.136.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:6:TABLE:6001": { - "acl-group-id": "acl-group-6001", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.128.0.1/32", - "6.128.0.3/32", - "6.128.0.5/32", - "6.128.0.7/32", - "6.128.0.9/32", - "6.128.0.11/32", - "6.128.0.13/32", - "6.128.0.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.128.0.1/32", - "6.128.0.3/32", - "6.128.0.5/32", - "6.128.0.7/32", - "6.128.0.9/32", - "6.128.0.11/32", - "6.128.0.13/32", - "6.128.0.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.128.0.2/32", - "6.128.0.4/32", - "6.128.0.6/32", - "6.128.0.8/32", - "6.128.0.10/32", - "6.128.0.12/32", - "6.128.0.14/32", - "6.128.0.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.128.0.2/32", - "6.128.0.4/32", - "6.128.0.6/32", - "6.128.0.8/32", - "6.128.0.10/32", - "6.128.0.12/32", - "6.128.0.14/32", - "6.128.0.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.128.2.1/32", - "6.128.2.3/32", - "6.128.2.5/32", - "6.128.2.7/32", - "6.128.2.9/32", - "6.128.2.11/32", - "6.128.2.13/32", - "6.128.2.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.128.2.1/32", - "6.128.2.3/32", - "6.128.2.5/32", - "6.128.2.7/32", - "6.128.2.9/32", - "6.128.2.11/32", - "6.128.2.13/32", - "6.128.2.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.128.2.2/32", - "6.128.2.4/32", - "6.128.2.6/32", - "6.128.2.8/32", - "6.128.2.10/32", - "6.128.2.12/32", - "6.128.2.14/32", - "6.128.2.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.128.2.2/32", - "6.128.2.4/32", - "6.128.2.6/32", - "6.128.2.8/32", - "6.128.2.10/32", - "6.128.2.12/32", - "6.128.2.14/32", - "6.128.2.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.128.4.1/32", - "6.128.4.3/32", - "6.128.4.5/32", - "6.128.4.7/32", - "6.128.4.9/32", - "6.128.4.11/32", - "6.128.4.13/32", - "6.128.4.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.128.4.1/32", - "6.128.4.3/32", - "6.128.4.5/32", - "6.128.4.7/32", - "6.128.4.9/32", - "6.128.4.11/32", - "6.128.4.13/32", - "6.128.4.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.128.4.2/32", - "6.128.4.4/32", - "6.128.4.6/32", - "6.128.4.8/32", - "6.128.4.10/32", - "6.128.4.12/32", - "6.128.4.14/32", - "6.128.4.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.128.4.2/32", - "6.128.4.4/32", - "6.128.4.6/32", - "6.128.4.8/32", - "6.128.4.10/32", - "6.128.4.12/32", - "6.128.4.14/32", - "6.128.4.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.128.6.1/32", - "6.128.6.3/32", - "6.128.6.5/32", - "6.128.6.7/32", - "6.128.6.9/32", - "6.128.6.11/32", - "6.128.6.13/32", - "6.128.6.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.128.6.1/32", - "6.128.6.3/32", - "6.128.6.5/32", - "6.128.6.7/32", - "6.128.6.9/32", - "6.128.6.11/32", - "6.128.6.13/32", - "6.128.6.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.128.6.2/32", - "6.128.6.4/32", - "6.128.6.6/32", - "6.128.6.8/32", - "6.128.6.10/32", - "6.128.6.12/32", - "6.128.6.14/32", - "6.128.6.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.128.6.2/32", - "6.128.6.4/32", - "6.128.6.6/32", - "6.128.6.8/32", - "6.128.6.10/32", - "6.128.6.12/32", - "6.128.6.14/32", - "6.128.6.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.128.8.1/32", - "6.128.8.3/32", - "6.128.8.5/32", - "6.128.8.7/32", - "6.128.8.9/32", - "6.128.8.11/32", - "6.128.8.13/32", - "6.128.8.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.128.8.1/32", - "6.128.8.3/32", - "6.128.8.5/32", - "6.128.8.7/32", - "6.128.8.9/32", - "6.128.8.11/32", - "6.128.8.13/32", - "6.128.8.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.128.8.2/32", - "6.128.8.4/32", - "6.128.8.6/32", - "6.128.8.8/32", - "6.128.8.10/32", - "6.128.8.12/32", - "6.128.8.14/32", - "6.128.8.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.128.8.2/32", - "6.128.8.4/32", - "6.128.8.6/32", - "6.128.8.8/32", - "6.128.8.10/32", - "6.128.8.12/32", - "6.128.8.14/32", - "6.128.8.16/32", - "6.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:6:TABLE:6002": { - "acl-group-id": "acl-group-6002", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.132.0.1/32", - "6.132.0.3/32", - "6.132.0.5/32", - "6.132.0.7/32", - "6.132.0.9/32", - "6.132.0.11/32", - "6.132.0.13/32", - "6.132.0.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.132.0.1/32", - "6.132.0.3/32", - "6.132.0.5/32", - "6.132.0.7/32", - "6.132.0.9/32", - "6.132.0.11/32", - "6.132.0.13/32", - "6.132.0.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.132.0.2/32", - "6.132.0.4/32", - "6.132.0.6/32", - "6.132.0.8/32", - "6.132.0.10/32", - "6.132.0.12/32", - "6.132.0.14/32", - "6.132.0.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.132.0.2/32", - "6.132.0.4/32", - "6.132.0.6/32", - "6.132.0.8/32", - "6.132.0.10/32", - "6.132.0.12/32", - "6.132.0.14/32", - "6.132.0.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.132.2.1/32", - "6.132.2.3/32", - "6.132.2.5/32", - "6.132.2.7/32", - "6.132.2.9/32", - "6.132.2.11/32", - "6.132.2.13/32", - "6.132.2.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.132.2.1/32", - "6.132.2.3/32", - "6.132.2.5/32", - "6.132.2.7/32", - "6.132.2.9/32", - "6.132.2.11/32", - "6.132.2.13/32", - "6.132.2.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.132.2.2/32", - "6.132.2.4/32", - "6.132.2.6/32", - "6.132.2.8/32", - "6.132.2.10/32", - "6.132.2.12/32", - "6.132.2.14/32", - "6.132.2.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.132.2.2/32", - "6.132.2.4/32", - "6.132.2.6/32", - "6.132.2.8/32", - "6.132.2.10/32", - "6.132.2.12/32", - "6.132.2.14/32", - "6.132.2.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.132.4.1/32", - "6.132.4.3/32", - "6.132.4.5/32", - "6.132.4.7/32", - "6.132.4.9/32", - "6.132.4.11/32", - "6.132.4.13/32", - "6.132.4.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.132.4.1/32", - "6.132.4.3/32", - "6.132.4.5/32", - "6.132.4.7/32", - "6.132.4.9/32", - "6.132.4.11/32", - "6.132.4.13/32", - "6.132.4.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.132.4.2/32", - "6.132.4.4/32", - "6.132.4.6/32", - "6.132.4.8/32", - "6.132.4.10/32", - "6.132.4.12/32", - "6.132.4.14/32", - "6.132.4.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.132.4.2/32", - "6.132.4.4/32", - "6.132.4.6/32", - "6.132.4.8/32", - "6.132.4.10/32", - "6.132.4.12/32", - "6.132.4.14/32", - "6.132.4.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.132.6.1/32", - "6.132.6.3/32", - "6.132.6.5/32", - "6.132.6.7/32", - "6.132.6.9/32", - "6.132.6.11/32", - "6.132.6.13/32", - "6.132.6.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.132.6.1/32", - "6.132.6.3/32", - "6.132.6.5/32", - "6.132.6.7/32", - "6.132.6.9/32", - "6.132.6.11/32", - "6.132.6.13/32", - "6.132.6.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.132.6.2/32", - "6.132.6.4/32", - "6.132.6.6/32", - "6.132.6.8/32", - "6.132.6.10/32", - "6.132.6.12/32", - "6.132.6.14/32", - "6.132.6.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.132.6.2/32", - "6.132.6.4/32", - "6.132.6.6/32", - "6.132.6.8/32", - "6.132.6.10/32", - "6.132.6.12/32", - "6.132.6.14/32", - "6.132.6.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.132.8.1/32", - "6.132.8.3/32", - "6.132.8.5/32", - "6.132.8.7/32", - "6.132.8.9/32", - "6.132.8.11/32", - "6.132.8.13/32", - "6.132.8.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.132.8.1/32", - "6.132.8.3/32", - "6.132.8.5/32", - "6.132.8.7/32", - "6.132.8.9/32", - "6.132.8.11/32", - "6.132.8.13/32", - "6.132.8.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.132.8.2/32", - "6.132.8.4/32", - "6.132.8.6/32", - "6.132.8.8/32", - "6.132.8.10/32", - "6.132.8.12/32", - "6.132.8.14/32", - "6.132.8.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.132.8.2/32", - "6.132.8.4/32", - "6.132.8.6/32", - "6.132.8.8/32", - "6.132.8.10/32", - "6.132.8.12/32", - "6.132.8.14/32", - "6.132.8.16/32", - "6.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:6:TABLE:6003": { - "acl-group-id": "acl-group-6003", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.136.0.1/32", - "6.136.0.3/32", - "6.136.0.5/32", - "6.136.0.7/32", - "6.136.0.9/32", - "6.136.0.11/32", - "6.136.0.13/32", - "6.136.0.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.136.0.1/32", - "6.136.0.3/32", - "6.136.0.5/32", - "6.136.0.7/32", - "6.136.0.9/32", - "6.136.0.11/32", - "6.136.0.13/32", - "6.136.0.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.136.0.2/32", - "6.136.0.4/32", - "6.136.0.6/32", - "6.136.0.8/32", - "6.136.0.10/32", - "6.136.0.12/32", - "6.136.0.14/32", - "6.136.0.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.136.0.2/32", - "6.136.0.4/32", - "6.136.0.6/32", - "6.136.0.8/32", - "6.136.0.10/32", - "6.136.0.12/32", - "6.136.0.14/32", - "6.136.0.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.136.2.1/32", - "6.136.2.3/32", - "6.136.2.5/32", - "6.136.2.7/32", - "6.136.2.9/32", - "6.136.2.11/32", - "6.136.2.13/32", - "6.136.2.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.136.2.1/32", - "6.136.2.3/32", - "6.136.2.5/32", - "6.136.2.7/32", - "6.136.2.9/32", - "6.136.2.11/32", - "6.136.2.13/32", - "6.136.2.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.136.2.2/32", - "6.136.2.4/32", - "6.136.2.6/32", - "6.136.2.8/32", - "6.136.2.10/32", - "6.136.2.12/32", - "6.136.2.14/32", - "6.136.2.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.136.2.2/32", - "6.136.2.4/32", - "6.136.2.6/32", - "6.136.2.8/32", - "6.136.2.10/32", - "6.136.2.12/32", - "6.136.2.14/32", - "6.136.2.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.136.4.1/32", - "6.136.4.3/32", - "6.136.4.5/32", - "6.136.4.7/32", - "6.136.4.9/32", - "6.136.4.11/32", - "6.136.4.13/32", - "6.136.4.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.136.4.1/32", - "6.136.4.3/32", - "6.136.4.5/32", - "6.136.4.7/32", - "6.136.4.9/32", - "6.136.4.11/32", - "6.136.4.13/32", - "6.136.4.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.136.4.2/32", - "6.136.4.4/32", - "6.136.4.6/32", - "6.136.4.8/32", - "6.136.4.10/32", - "6.136.4.12/32", - "6.136.4.14/32", - "6.136.4.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.136.4.2/32", - "6.136.4.4/32", - "6.136.4.6/32", - "6.136.4.8/32", - "6.136.4.10/32", - "6.136.4.12/32", - "6.136.4.14/32", - "6.136.4.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.136.6.1/32", - "6.136.6.3/32", - "6.136.6.5/32", - "6.136.6.7/32", - "6.136.6.9/32", - "6.136.6.11/32", - "6.136.6.13/32", - "6.136.6.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.136.6.1/32", - "6.136.6.3/32", - "6.136.6.5/32", - "6.136.6.7/32", - "6.136.6.9/32", - "6.136.6.11/32", - "6.136.6.13/32", - "6.136.6.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.136.6.2/32", - "6.136.6.4/32", - "6.136.6.6/32", - "6.136.6.8/32", - "6.136.6.10/32", - "6.136.6.12/32", - "6.136.6.14/32", - "6.136.6.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.136.6.2/32", - "6.136.6.4/32", - "6.136.6.6/32", - "6.136.6.8/32", - "6.136.6.10/32", - "6.136.6.12/32", - "6.136.6.14/32", - "6.136.6.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.136.8.1/32", - "6.136.8.3/32", - "6.136.8.5/32", - "6.136.8.7/32", - "6.136.8.9/32", - "6.136.8.11/32", - "6.136.8.13/32", - "6.136.8.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.136.8.1/32", - "6.136.8.3/32", - "6.136.8.5/32", - "6.136.8.7/32", - "6.136.8.9/32", - "6.136.8.11/32", - "6.136.8.13/32", - "6.136.8.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.136.8.2/32", - "6.136.8.4/32", - "6.136.8.6/32", - "6.136.8.8/32", - "6.136.8.10/32", - "6.136.8.12/32", - "6.136.8.14/32", - "6.136.8.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.136.8.2/32", - "6.136.8.4/32", - "6.136.8.6/32", - "6.136.8.8/32", - "6.136.8.10/32", - "6.136.8.12/32", - "6.136.8.14/32", - "6.136.8.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "6.1.0.1/32", - "6.140.0.1/14", - "6.144.0.1/14", - "6.148.0.1/14" - ], - "dst_addrs": [ - "6.1.0.1/32", - "6.140.0.1/14", - "6.144.0.1/14", - "6.148.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:6:TABLE:6004": { - "acl-group-id": "acl-group-6004", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.140.0.1/32", - "6.140.0.3/32", - "6.140.0.5/32", - "6.140.0.7/32", - "6.140.0.9/32", - "6.140.0.11/32", - "6.140.0.13/32", - "6.140.0.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.140.0.1/32", - "6.140.0.3/32", - "6.140.0.5/32", - "6.140.0.7/32", - "6.140.0.9/32", - "6.140.0.11/32", - "6.140.0.13/32", - "6.140.0.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.140.0.2/32", - "6.140.0.4/32", - "6.140.0.6/32", - "6.140.0.8/32", - "6.140.0.10/32", - "6.140.0.12/32", - "6.140.0.14/32", - "6.140.0.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.140.0.2/32", - "6.140.0.4/32", - "6.140.0.6/32", - "6.140.0.8/32", - "6.140.0.10/32", - "6.140.0.12/32", - "6.140.0.14/32", - "6.140.0.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.140.2.1/32", - "6.140.2.3/32", - "6.140.2.5/32", - "6.140.2.7/32", - "6.140.2.9/32", - "6.140.2.11/32", - "6.140.2.13/32", - "6.140.2.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.140.2.1/32", - "6.140.2.3/32", - "6.140.2.5/32", - "6.140.2.7/32", - "6.140.2.9/32", - "6.140.2.11/32", - "6.140.2.13/32", - "6.140.2.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.140.2.2/32", - "6.140.2.4/32", - "6.140.2.6/32", - "6.140.2.8/32", - "6.140.2.10/32", - "6.140.2.12/32", - "6.140.2.14/32", - "6.140.2.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.140.2.2/32", - "6.140.2.4/32", - "6.140.2.6/32", - "6.140.2.8/32", - "6.140.2.10/32", - "6.140.2.12/32", - "6.140.2.14/32", - "6.140.2.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.140.4.1/32", - "6.140.4.3/32", - "6.140.4.5/32", - "6.140.4.7/32", - "6.140.4.9/32", - "6.140.4.11/32", - "6.140.4.13/32", - "6.140.4.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.140.4.1/32", - "6.140.4.3/32", - "6.140.4.5/32", - "6.140.4.7/32", - "6.140.4.9/32", - "6.140.4.11/32", - "6.140.4.13/32", - "6.140.4.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.140.4.2/32", - "6.140.4.4/32", - "6.140.4.6/32", - "6.140.4.8/32", - "6.140.4.10/32", - "6.140.4.12/32", - "6.140.4.14/32", - "6.140.4.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.140.4.2/32", - "6.140.4.4/32", - "6.140.4.6/32", - "6.140.4.8/32", - "6.140.4.10/32", - "6.140.4.12/32", - "6.140.4.14/32", - "6.140.4.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.140.6.1/32", - "6.140.6.3/32", - "6.140.6.5/32", - "6.140.6.7/32", - "6.140.6.9/32", - "6.140.6.11/32", - "6.140.6.13/32", - "6.140.6.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.140.6.1/32", - "6.140.6.3/32", - "6.140.6.5/32", - "6.140.6.7/32", - "6.140.6.9/32", - "6.140.6.11/32", - "6.140.6.13/32", - "6.140.6.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.140.6.2/32", - "6.140.6.4/32", - "6.140.6.6/32", - "6.140.6.8/32", - "6.140.6.10/32", - "6.140.6.12/32", - "6.140.6.14/32", - "6.140.6.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.140.6.2/32", - "6.140.6.4/32", - "6.140.6.6/32", - "6.140.6.8/32", - "6.140.6.10/32", - "6.140.6.12/32", - "6.140.6.14/32", - "6.140.6.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.140.8.1/32", - "6.140.8.3/32", - "6.140.8.5/32", - "6.140.8.7/32", - "6.140.8.9/32", - "6.140.8.11/32", - "6.140.8.13/32", - "6.140.8.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.140.8.1/32", - "6.140.8.3/32", - "6.140.8.5/32", - "6.140.8.7/32", - "6.140.8.9/32", - "6.140.8.11/32", - "6.140.8.13/32", - "6.140.8.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.140.8.2/32", - "6.140.8.4/32", - "6.140.8.6/32", - "6.140.8.8/32", - "6.140.8.10/32", - "6.140.8.12/32", - "6.140.8.14/32", - "6.140.8.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.140.8.2/32", - "6.140.8.4/32", - "6.140.8.6/32", - "6.140.8.8/32", - "6.140.8.10/32", - "6.140.8.12/32", - "6.140.8.14/32", - "6.140.8.16/32", - "6.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:6:TABLE:6005": { - "acl-group-id": "acl-group-6005", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.144.0.1/32", - "6.144.0.3/32", - "6.144.0.5/32", - "6.144.0.7/32", - "6.144.0.9/32", - "6.144.0.11/32", - "6.144.0.13/32", - "6.144.0.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.144.0.1/32", - "6.144.0.3/32", - "6.144.0.5/32", - "6.144.0.7/32", - "6.144.0.9/32", - "6.144.0.11/32", - "6.144.0.13/32", - "6.144.0.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.144.0.2/32", - "6.144.0.4/32", - "6.144.0.6/32", - "6.144.0.8/32", - "6.144.0.10/32", - "6.144.0.12/32", - "6.144.0.14/32", - "6.144.0.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.144.0.2/32", - "6.144.0.4/32", - "6.144.0.6/32", - "6.144.0.8/32", - "6.144.0.10/32", - "6.144.0.12/32", - "6.144.0.14/32", - "6.144.0.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.144.2.1/32", - "6.144.2.3/32", - "6.144.2.5/32", - "6.144.2.7/32", - "6.144.2.9/32", - "6.144.2.11/32", - "6.144.2.13/32", - "6.144.2.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.144.2.1/32", - "6.144.2.3/32", - "6.144.2.5/32", - "6.144.2.7/32", - "6.144.2.9/32", - "6.144.2.11/32", - "6.144.2.13/32", - "6.144.2.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.144.2.2/32", - "6.144.2.4/32", - "6.144.2.6/32", - "6.144.2.8/32", - "6.144.2.10/32", - "6.144.2.12/32", - "6.144.2.14/32", - "6.144.2.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.144.2.2/32", - "6.144.2.4/32", - "6.144.2.6/32", - "6.144.2.8/32", - "6.144.2.10/32", - "6.144.2.12/32", - "6.144.2.14/32", - "6.144.2.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.144.4.1/32", - "6.144.4.3/32", - "6.144.4.5/32", - "6.144.4.7/32", - "6.144.4.9/32", - "6.144.4.11/32", - "6.144.4.13/32", - "6.144.4.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.144.4.1/32", - "6.144.4.3/32", - "6.144.4.5/32", - "6.144.4.7/32", - "6.144.4.9/32", - "6.144.4.11/32", - "6.144.4.13/32", - "6.144.4.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.144.4.2/32", - "6.144.4.4/32", - "6.144.4.6/32", - "6.144.4.8/32", - "6.144.4.10/32", - "6.144.4.12/32", - "6.144.4.14/32", - "6.144.4.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.144.4.2/32", - "6.144.4.4/32", - "6.144.4.6/32", - "6.144.4.8/32", - "6.144.4.10/32", - "6.144.4.12/32", - "6.144.4.14/32", - "6.144.4.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.144.6.1/32", - "6.144.6.3/32", - "6.144.6.5/32", - "6.144.6.7/32", - "6.144.6.9/32", - "6.144.6.11/32", - "6.144.6.13/32", - "6.144.6.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.144.6.1/32", - "6.144.6.3/32", - "6.144.6.5/32", - "6.144.6.7/32", - "6.144.6.9/32", - "6.144.6.11/32", - "6.144.6.13/32", - "6.144.6.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.144.6.2/32", - "6.144.6.4/32", - "6.144.6.6/32", - "6.144.6.8/32", - "6.144.6.10/32", - "6.144.6.12/32", - "6.144.6.14/32", - "6.144.6.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.144.6.2/32", - "6.144.6.4/32", - "6.144.6.6/32", - "6.144.6.8/32", - "6.144.6.10/32", - "6.144.6.12/32", - "6.144.6.14/32", - "6.144.6.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.144.8.1/32", - "6.144.8.3/32", - "6.144.8.5/32", - "6.144.8.7/32", - "6.144.8.9/32", - "6.144.8.11/32", - "6.144.8.13/32", - "6.144.8.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.144.8.1/32", - "6.144.8.3/32", - "6.144.8.5/32", - "6.144.8.7/32", - "6.144.8.9/32", - "6.144.8.11/32", - "6.144.8.13/32", - "6.144.8.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.144.8.2/32", - "6.144.8.4/32", - "6.144.8.6/32", - "6.144.8.8/32", - "6.144.8.10/32", - "6.144.8.12/32", - "6.144.8.14/32", - "6.144.8.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.144.8.2/32", - "6.144.8.4/32", - "6.144.8.6/32", - "6.144.8.8/32", - "6.144.8.10/32", - "6.144.8.12/32", - "6.144.8.14/32", - "6.144.8.16/32", - "6.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:6:TABLE:6006": { - "acl-group-id": "acl-group-6006", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.148.0.1/32", - "6.148.0.3/32", - "6.148.0.5/32", - "6.148.0.7/32", - "6.148.0.9/32", - "6.148.0.11/32", - "6.148.0.13/32", - "6.148.0.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.148.0.1/32", - "6.148.0.3/32", - "6.148.0.5/32", - "6.148.0.7/32", - "6.148.0.9/32", - "6.148.0.11/32", - "6.148.0.13/32", - "6.148.0.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.148.0.2/32", - "6.148.0.4/32", - "6.148.0.6/32", - "6.148.0.8/32", - "6.148.0.10/32", - "6.148.0.12/32", - "6.148.0.14/32", - "6.148.0.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.148.0.2/32", - "6.148.0.4/32", - "6.148.0.6/32", - "6.148.0.8/32", - "6.148.0.10/32", - "6.148.0.12/32", - "6.148.0.14/32", - "6.148.0.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.148.2.1/32", - "6.148.2.3/32", - "6.148.2.5/32", - "6.148.2.7/32", - "6.148.2.9/32", - "6.148.2.11/32", - "6.148.2.13/32", - "6.148.2.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.148.2.1/32", - "6.148.2.3/32", - "6.148.2.5/32", - "6.148.2.7/32", - "6.148.2.9/32", - "6.148.2.11/32", - "6.148.2.13/32", - "6.148.2.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.148.2.2/32", - "6.148.2.4/32", - "6.148.2.6/32", - "6.148.2.8/32", - "6.148.2.10/32", - "6.148.2.12/32", - "6.148.2.14/32", - "6.148.2.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.148.2.2/32", - "6.148.2.4/32", - "6.148.2.6/32", - "6.148.2.8/32", - "6.148.2.10/32", - "6.148.2.12/32", - "6.148.2.14/32", - "6.148.2.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.148.4.1/32", - "6.148.4.3/32", - "6.148.4.5/32", - "6.148.4.7/32", - "6.148.4.9/32", - "6.148.4.11/32", - "6.148.4.13/32", - "6.148.4.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.148.4.1/32", - "6.148.4.3/32", - "6.148.4.5/32", - "6.148.4.7/32", - "6.148.4.9/32", - "6.148.4.11/32", - "6.148.4.13/32", - "6.148.4.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.148.4.2/32", - "6.148.4.4/32", - "6.148.4.6/32", - "6.148.4.8/32", - "6.148.4.10/32", - "6.148.4.12/32", - "6.148.4.14/32", - "6.148.4.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.148.4.2/32", - "6.148.4.4/32", - "6.148.4.6/32", - "6.148.4.8/32", - "6.148.4.10/32", - "6.148.4.12/32", - "6.148.4.14/32", - "6.148.4.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.148.6.1/32", - "6.148.6.3/32", - "6.148.6.5/32", - "6.148.6.7/32", - "6.148.6.9/32", - "6.148.6.11/32", - "6.148.6.13/32", - "6.148.6.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.148.6.1/32", - "6.148.6.3/32", - "6.148.6.5/32", - "6.148.6.7/32", - "6.148.6.9/32", - "6.148.6.11/32", - "6.148.6.13/32", - "6.148.6.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.148.6.2/32", - "6.148.6.4/32", - "6.148.6.6/32", - "6.148.6.8/32", - "6.148.6.10/32", - "6.148.6.12/32", - "6.148.6.14/32", - "6.148.6.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.148.6.2/32", - "6.148.6.4/32", - "6.148.6.6/32", - "6.148.6.8/32", - "6.148.6.10/32", - "6.148.6.12/32", - "6.148.6.14/32", - "6.148.6.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "6.148.8.1/32", - "6.148.8.3/32", - "6.148.8.5/32", - "6.148.8.7/32", - "6.148.8.9/32", - "6.148.8.11/32", - "6.148.8.13/32", - "6.148.8.15/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.148.8.1/32", - "6.148.8.3/32", - "6.148.8.5/32", - "6.148.8.7/32", - "6.148.8.9/32", - "6.148.8.11/32", - "6.148.8.13/32", - "6.148.8.15/32", - "6.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "6.148.8.2/32", - "6.148.8.4/32", - "6.148.8.6/32", - "6.148.8.8/32", - "6.148.8.10/32", - "6.148.8.12/32", - "6.148.8.14/32", - "6.148.8.16/32", - "6.1.0.1/32" - ], - "dst_addrs": [ - "6.148.8.2/32", - "6.148.8.4/32", - "6.148.8.6/32", - "6.148.8.8/32", - "6.148.8.10/32", - "6.148.8.12/32", - "6.148.8.14/32", - "6.148.8.16/32", - "6.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "6.1.0.1/32", - "6.128.0.1/14", - "6.132.0.1/14", - "6.136.0.1/14" - ], - "dst_addrs": [ - "6.1.0.1/32", - "6.128.0.1/14", - "6.132.0.1/14", - "6.136.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:7:TABLE:7001": { - "acl-group-id": "acl-group-7001", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.128.0.1/32", - "7.128.0.3/32", - "7.128.0.5/32", - "7.128.0.7/32", - "7.128.0.9/32", - "7.128.0.11/32", - "7.128.0.13/32", - "7.128.0.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.128.0.1/32", - "7.128.0.3/32", - "7.128.0.5/32", - "7.128.0.7/32", - "7.128.0.9/32", - "7.128.0.11/32", - "7.128.0.13/32", - "7.128.0.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.128.0.2/32", - "7.128.0.4/32", - "7.128.0.6/32", - "7.128.0.8/32", - "7.128.0.10/32", - "7.128.0.12/32", - "7.128.0.14/32", - "7.128.0.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.128.0.2/32", - "7.128.0.4/32", - "7.128.0.6/32", - "7.128.0.8/32", - "7.128.0.10/32", - "7.128.0.12/32", - "7.128.0.14/32", - "7.128.0.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.128.2.1/32", - "7.128.2.3/32", - "7.128.2.5/32", - "7.128.2.7/32", - "7.128.2.9/32", - "7.128.2.11/32", - "7.128.2.13/32", - "7.128.2.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.128.2.1/32", - "7.128.2.3/32", - "7.128.2.5/32", - "7.128.2.7/32", - "7.128.2.9/32", - "7.128.2.11/32", - "7.128.2.13/32", - "7.128.2.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.128.2.2/32", - "7.128.2.4/32", - "7.128.2.6/32", - "7.128.2.8/32", - "7.128.2.10/32", - "7.128.2.12/32", - "7.128.2.14/32", - "7.128.2.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.128.2.2/32", - "7.128.2.4/32", - "7.128.2.6/32", - "7.128.2.8/32", - "7.128.2.10/32", - "7.128.2.12/32", - "7.128.2.14/32", - "7.128.2.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.128.4.1/32", - "7.128.4.3/32", - "7.128.4.5/32", - "7.128.4.7/32", - "7.128.4.9/32", - "7.128.4.11/32", - "7.128.4.13/32", - "7.128.4.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.128.4.1/32", - "7.128.4.3/32", - "7.128.4.5/32", - "7.128.4.7/32", - "7.128.4.9/32", - "7.128.4.11/32", - "7.128.4.13/32", - "7.128.4.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.128.4.2/32", - "7.128.4.4/32", - "7.128.4.6/32", - "7.128.4.8/32", - "7.128.4.10/32", - "7.128.4.12/32", - "7.128.4.14/32", - "7.128.4.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.128.4.2/32", - "7.128.4.4/32", - "7.128.4.6/32", - "7.128.4.8/32", - "7.128.4.10/32", - "7.128.4.12/32", - "7.128.4.14/32", - "7.128.4.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.128.6.1/32", - "7.128.6.3/32", - "7.128.6.5/32", - "7.128.6.7/32", - "7.128.6.9/32", - "7.128.6.11/32", - "7.128.6.13/32", - "7.128.6.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.128.6.1/32", - "7.128.6.3/32", - "7.128.6.5/32", - "7.128.6.7/32", - "7.128.6.9/32", - "7.128.6.11/32", - "7.128.6.13/32", - "7.128.6.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.128.6.2/32", - "7.128.6.4/32", - "7.128.6.6/32", - "7.128.6.8/32", - "7.128.6.10/32", - "7.128.6.12/32", - "7.128.6.14/32", - "7.128.6.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.128.6.2/32", - "7.128.6.4/32", - "7.128.6.6/32", - "7.128.6.8/32", - "7.128.6.10/32", - "7.128.6.12/32", - "7.128.6.14/32", - "7.128.6.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.128.8.1/32", - "7.128.8.3/32", - "7.128.8.5/32", - "7.128.8.7/32", - "7.128.8.9/32", - "7.128.8.11/32", - "7.128.8.13/32", - "7.128.8.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.128.8.1/32", - "7.128.8.3/32", - "7.128.8.5/32", - "7.128.8.7/32", - "7.128.8.9/32", - "7.128.8.11/32", - "7.128.8.13/32", - "7.128.8.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.128.8.2/32", - "7.128.8.4/32", - "7.128.8.6/32", - "7.128.8.8/32", - "7.128.8.10/32", - "7.128.8.12/32", - "7.128.8.14/32", - "7.128.8.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.128.8.2/32", - "7.128.8.4/32", - "7.128.8.6/32", - "7.128.8.8/32", - "7.128.8.10/32", - "7.128.8.12/32", - "7.128.8.14/32", - "7.128.8.16/32", - "7.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:7:TABLE:7002": { - "acl-group-id": "acl-group-7002", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.132.0.1/32", - "7.132.0.3/32", - "7.132.0.5/32", - "7.132.0.7/32", - "7.132.0.9/32", - "7.132.0.11/32", - "7.132.0.13/32", - "7.132.0.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.132.0.1/32", - "7.132.0.3/32", - "7.132.0.5/32", - "7.132.0.7/32", - "7.132.0.9/32", - "7.132.0.11/32", - "7.132.0.13/32", - "7.132.0.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.132.0.2/32", - "7.132.0.4/32", - "7.132.0.6/32", - "7.132.0.8/32", - "7.132.0.10/32", - "7.132.0.12/32", - "7.132.0.14/32", - "7.132.0.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.132.0.2/32", - "7.132.0.4/32", - "7.132.0.6/32", - "7.132.0.8/32", - "7.132.0.10/32", - "7.132.0.12/32", - "7.132.0.14/32", - "7.132.0.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.132.2.1/32", - "7.132.2.3/32", - "7.132.2.5/32", - "7.132.2.7/32", - "7.132.2.9/32", - "7.132.2.11/32", - "7.132.2.13/32", - "7.132.2.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.132.2.1/32", - "7.132.2.3/32", - "7.132.2.5/32", - "7.132.2.7/32", - "7.132.2.9/32", - "7.132.2.11/32", - "7.132.2.13/32", - "7.132.2.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.132.2.2/32", - "7.132.2.4/32", - "7.132.2.6/32", - "7.132.2.8/32", - "7.132.2.10/32", - "7.132.2.12/32", - "7.132.2.14/32", - "7.132.2.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.132.2.2/32", - "7.132.2.4/32", - "7.132.2.6/32", - "7.132.2.8/32", - "7.132.2.10/32", - "7.132.2.12/32", - "7.132.2.14/32", - "7.132.2.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.132.4.1/32", - "7.132.4.3/32", - "7.132.4.5/32", - "7.132.4.7/32", - "7.132.4.9/32", - "7.132.4.11/32", - "7.132.4.13/32", - "7.132.4.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.132.4.1/32", - "7.132.4.3/32", - "7.132.4.5/32", - "7.132.4.7/32", - "7.132.4.9/32", - "7.132.4.11/32", - "7.132.4.13/32", - "7.132.4.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.132.4.2/32", - "7.132.4.4/32", - "7.132.4.6/32", - "7.132.4.8/32", - "7.132.4.10/32", - "7.132.4.12/32", - "7.132.4.14/32", - "7.132.4.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.132.4.2/32", - "7.132.4.4/32", - "7.132.4.6/32", - "7.132.4.8/32", - "7.132.4.10/32", - "7.132.4.12/32", - "7.132.4.14/32", - "7.132.4.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.132.6.1/32", - "7.132.6.3/32", - "7.132.6.5/32", - "7.132.6.7/32", - "7.132.6.9/32", - "7.132.6.11/32", - "7.132.6.13/32", - "7.132.6.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.132.6.1/32", - "7.132.6.3/32", - "7.132.6.5/32", - "7.132.6.7/32", - "7.132.6.9/32", - "7.132.6.11/32", - "7.132.6.13/32", - "7.132.6.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.132.6.2/32", - "7.132.6.4/32", - "7.132.6.6/32", - "7.132.6.8/32", - "7.132.6.10/32", - "7.132.6.12/32", - "7.132.6.14/32", - "7.132.6.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.132.6.2/32", - "7.132.6.4/32", - "7.132.6.6/32", - "7.132.6.8/32", - "7.132.6.10/32", - "7.132.6.12/32", - "7.132.6.14/32", - "7.132.6.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.132.8.1/32", - "7.132.8.3/32", - "7.132.8.5/32", - "7.132.8.7/32", - "7.132.8.9/32", - "7.132.8.11/32", - "7.132.8.13/32", - "7.132.8.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.132.8.1/32", - "7.132.8.3/32", - "7.132.8.5/32", - "7.132.8.7/32", - "7.132.8.9/32", - "7.132.8.11/32", - "7.132.8.13/32", - "7.132.8.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.132.8.2/32", - "7.132.8.4/32", - "7.132.8.6/32", - "7.132.8.8/32", - "7.132.8.10/32", - "7.132.8.12/32", - "7.132.8.14/32", - "7.132.8.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.132.8.2/32", - "7.132.8.4/32", - "7.132.8.6/32", - "7.132.8.8/32", - "7.132.8.10/32", - "7.132.8.12/32", - "7.132.8.14/32", - "7.132.8.16/32", - "7.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:7:TABLE:7003": { - "acl-group-id": "acl-group-7003", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.136.0.1/32", - "7.136.0.3/32", - "7.136.0.5/32", - "7.136.0.7/32", - "7.136.0.9/32", - "7.136.0.11/32", - "7.136.0.13/32", - "7.136.0.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.136.0.1/32", - "7.136.0.3/32", - "7.136.0.5/32", - "7.136.0.7/32", - "7.136.0.9/32", - "7.136.0.11/32", - "7.136.0.13/32", - "7.136.0.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.136.0.2/32", - "7.136.0.4/32", - "7.136.0.6/32", - "7.136.0.8/32", - "7.136.0.10/32", - "7.136.0.12/32", - "7.136.0.14/32", - "7.136.0.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.136.0.2/32", - "7.136.0.4/32", - "7.136.0.6/32", - "7.136.0.8/32", - "7.136.0.10/32", - "7.136.0.12/32", - "7.136.0.14/32", - "7.136.0.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.136.2.1/32", - "7.136.2.3/32", - "7.136.2.5/32", - "7.136.2.7/32", - "7.136.2.9/32", - "7.136.2.11/32", - "7.136.2.13/32", - "7.136.2.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.136.2.1/32", - "7.136.2.3/32", - "7.136.2.5/32", - "7.136.2.7/32", - "7.136.2.9/32", - "7.136.2.11/32", - "7.136.2.13/32", - "7.136.2.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.136.2.2/32", - "7.136.2.4/32", - "7.136.2.6/32", - "7.136.2.8/32", - "7.136.2.10/32", - "7.136.2.12/32", - "7.136.2.14/32", - "7.136.2.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.136.2.2/32", - "7.136.2.4/32", - "7.136.2.6/32", - "7.136.2.8/32", - "7.136.2.10/32", - "7.136.2.12/32", - "7.136.2.14/32", - "7.136.2.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.136.4.1/32", - "7.136.4.3/32", - "7.136.4.5/32", - "7.136.4.7/32", - "7.136.4.9/32", - "7.136.4.11/32", - "7.136.4.13/32", - "7.136.4.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.136.4.1/32", - "7.136.4.3/32", - "7.136.4.5/32", - "7.136.4.7/32", - "7.136.4.9/32", - "7.136.4.11/32", - "7.136.4.13/32", - "7.136.4.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.136.4.2/32", - "7.136.4.4/32", - "7.136.4.6/32", - "7.136.4.8/32", - "7.136.4.10/32", - "7.136.4.12/32", - "7.136.4.14/32", - "7.136.4.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.136.4.2/32", - "7.136.4.4/32", - "7.136.4.6/32", - "7.136.4.8/32", - "7.136.4.10/32", - "7.136.4.12/32", - "7.136.4.14/32", - "7.136.4.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.136.6.1/32", - "7.136.6.3/32", - "7.136.6.5/32", - "7.136.6.7/32", - "7.136.6.9/32", - "7.136.6.11/32", - "7.136.6.13/32", - "7.136.6.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.136.6.1/32", - "7.136.6.3/32", - "7.136.6.5/32", - "7.136.6.7/32", - "7.136.6.9/32", - "7.136.6.11/32", - "7.136.6.13/32", - "7.136.6.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.136.6.2/32", - "7.136.6.4/32", - "7.136.6.6/32", - "7.136.6.8/32", - "7.136.6.10/32", - "7.136.6.12/32", - "7.136.6.14/32", - "7.136.6.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.136.6.2/32", - "7.136.6.4/32", - "7.136.6.6/32", - "7.136.6.8/32", - "7.136.6.10/32", - "7.136.6.12/32", - "7.136.6.14/32", - "7.136.6.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.136.8.1/32", - "7.136.8.3/32", - "7.136.8.5/32", - "7.136.8.7/32", - "7.136.8.9/32", - "7.136.8.11/32", - "7.136.8.13/32", - "7.136.8.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.136.8.1/32", - "7.136.8.3/32", - "7.136.8.5/32", - "7.136.8.7/32", - "7.136.8.9/32", - "7.136.8.11/32", - "7.136.8.13/32", - "7.136.8.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.136.8.2/32", - "7.136.8.4/32", - "7.136.8.6/32", - "7.136.8.8/32", - "7.136.8.10/32", - "7.136.8.12/32", - "7.136.8.14/32", - "7.136.8.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.136.8.2/32", - "7.136.8.4/32", - "7.136.8.6/32", - "7.136.8.8/32", - "7.136.8.10/32", - "7.136.8.12/32", - "7.136.8.14/32", - "7.136.8.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "7.1.0.1/32", - "7.140.0.1/14", - "7.144.0.1/14", - "7.148.0.1/14" - ], - "dst_addrs": [ - "7.1.0.1/32", - "7.140.0.1/14", - "7.144.0.1/14", - "7.148.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:7:TABLE:7004": { - "acl-group-id": "acl-group-7004", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.140.0.1/32", - "7.140.0.3/32", - "7.140.0.5/32", - "7.140.0.7/32", - "7.140.0.9/32", - "7.140.0.11/32", - "7.140.0.13/32", - "7.140.0.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.140.0.1/32", - "7.140.0.3/32", - "7.140.0.5/32", - "7.140.0.7/32", - "7.140.0.9/32", - "7.140.0.11/32", - "7.140.0.13/32", - "7.140.0.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.140.0.2/32", - "7.140.0.4/32", - "7.140.0.6/32", - "7.140.0.8/32", - "7.140.0.10/32", - "7.140.0.12/32", - "7.140.0.14/32", - "7.140.0.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.140.0.2/32", - "7.140.0.4/32", - "7.140.0.6/32", - "7.140.0.8/32", - "7.140.0.10/32", - "7.140.0.12/32", - "7.140.0.14/32", - "7.140.0.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.140.2.1/32", - "7.140.2.3/32", - "7.140.2.5/32", - "7.140.2.7/32", - "7.140.2.9/32", - "7.140.2.11/32", - "7.140.2.13/32", - "7.140.2.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.140.2.1/32", - "7.140.2.3/32", - "7.140.2.5/32", - "7.140.2.7/32", - "7.140.2.9/32", - "7.140.2.11/32", - "7.140.2.13/32", - "7.140.2.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.140.2.2/32", - "7.140.2.4/32", - "7.140.2.6/32", - "7.140.2.8/32", - "7.140.2.10/32", - "7.140.2.12/32", - "7.140.2.14/32", - "7.140.2.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.140.2.2/32", - "7.140.2.4/32", - "7.140.2.6/32", - "7.140.2.8/32", - "7.140.2.10/32", - "7.140.2.12/32", - "7.140.2.14/32", - "7.140.2.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.140.4.1/32", - "7.140.4.3/32", - "7.140.4.5/32", - "7.140.4.7/32", - "7.140.4.9/32", - "7.140.4.11/32", - "7.140.4.13/32", - "7.140.4.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.140.4.1/32", - "7.140.4.3/32", - "7.140.4.5/32", - "7.140.4.7/32", - "7.140.4.9/32", - "7.140.4.11/32", - "7.140.4.13/32", - "7.140.4.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.140.4.2/32", - "7.140.4.4/32", - "7.140.4.6/32", - "7.140.4.8/32", - "7.140.4.10/32", - "7.140.4.12/32", - "7.140.4.14/32", - "7.140.4.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.140.4.2/32", - "7.140.4.4/32", - "7.140.4.6/32", - "7.140.4.8/32", - "7.140.4.10/32", - "7.140.4.12/32", - "7.140.4.14/32", - "7.140.4.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.140.6.1/32", - "7.140.6.3/32", - "7.140.6.5/32", - "7.140.6.7/32", - "7.140.6.9/32", - "7.140.6.11/32", - "7.140.6.13/32", - "7.140.6.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.140.6.1/32", - "7.140.6.3/32", - "7.140.6.5/32", - "7.140.6.7/32", - "7.140.6.9/32", - "7.140.6.11/32", - "7.140.6.13/32", - "7.140.6.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.140.6.2/32", - "7.140.6.4/32", - "7.140.6.6/32", - "7.140.6.8/32", - "7.140.6.10/32", - "7.140.6.12/32", - "7.140.6.14/32", - "7.140.6.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.140.6.2/32", - "7.140.6.4/32", - "7.140.6.6/32", - "7.140.6.8/32", - "7.140.6.10/32", - "7.140.6.12/32", - "7.140.6.14/32", - "7.140.6.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.140.8.1/32", - "7.140.8.3/32", - "7.140.8.5/32", - "7.140.8.7/32", - "7.140.8.9/32", - "7.140.8.11/32", - "7.140.8.13/32", - "7.140.8.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.140.8.1/32", - "7.140.8.3/32", - "7.140.8.5/32", - "7.140.8.7/32", - "7.140.8.9/32", - "7.140.8.11/32", - "7.140.8.13/32", - "7.140.8.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.140.8.2/32", - "7.140.8.4/32", - "7.140.8.6/32", - "7.140.8.8/32", - "7.140.8.10/32", - "7.140.8.12/32", - "7.140.8.14/32", - "7.140.8.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.140.8.2/32", - "7.140.8.4/32", - "7.140.8.6/32", - "7.140.8.8/32", - "7.140.8.10/32", - "7.140.8.12/32", - "7.140.8.14/32", - "7.140.8.16/32", - "7.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:7:TABLE:7005": { - "acl-group-id": "acl-group-7005", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.144.0.1/32", - "7.144.0.3/32", - "7.144.0.5/32", - "7.144.0.7/32", - "7.144.0.9/32", - "7.144.0.11/32", - "7.144.0.13/32", - "7.144.0.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.144.0.1/32", - "7.144.0.3/32", - "7.144.0.5/32", - "7.144.0.7/32", - "7.144.0.9/32", - "7.144.0.11/32", - "7.144.0.13/32", - "7.144.0.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.144.0.2/32", - "7.144.0.4/32", - "7.144.0.6/32", - "7.144.0.8/32", - "7.144.0.10/32", - "7.144.0.12/32", - "7.144.0.14/32", - "7.144.0.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.144.0.2/32", - "7.144.0.4/32", - "7.144.0.6/32", - "7.144.0.8/32", - "7.144.0.10/32", - "7.144.0.12/32", - "7.144.0.14/32", - "7.144.0.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.144.2.1/32", - "7.144.2.3/32", - "7.144.2.5/32", - "7.144.2.7/32", - "7.144.2.9/32", - "7.144.2.11/32", - "7.144.2.13/32", - "7.144.2.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.144.2.1/32", - "7.144.2.3/32", - "7.144.2.5/32", - "7.144.2.7/32", - "7.144.2.9/32", - "7.144.2.11/32", - "7.144.2.13/32", - "7.144.2.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.144.2.2/32", - "7.144.2.4/32", - "7.144.2.6/32", - "7.144.2.8/32", - "7.144.2.10/32", - "7.144.2.12/32", - "7.144.2.14/32", - "7.144.2.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.144.2.2/32", - "7.144.2.4/32", - "7.144.2.6/32", - "7.144.2.8/32", - "7.144.2.10/32", - "7.144.2.12/32", - "7.144.2.14/32", - "7.144.2.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.144.4.1/32", - "7.144.4.3/32", - "7.144.4.5/32", - "7.144.4.7/32", - "7.144.4.9/32", - "7.144.4.11/32", - "7.144.4.13/32", - "7.144.4.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.144.4.1/32", - "7.144.4.3/32", - "7.144.4.5/32", - "7.144.4.7/32", - "7.144.4.9/32", - "7.144.4.11/32", - "7.144.4.13/32", - "7.144.4.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.144.4.2/32", - "7.144.4.4/32", - "7.144.4.6/32", - "7.144.4.8/32", - "7.144.4.10/32", - "7.144.4.12/32", - "7.144.4.14/32", - "7.144.4.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.144.4.2/32", - "7.144.4.4/32", - "7.144.4.6/32", - "7.144.4.8/32", - "7.144.4.10/32", - "7.144.4.12/32", - "7.144.4.14/32", - "7.144.4.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.144.6.1/32", - "7.144.6.3/32", - "7.144.6.5/32", - "7.144.6.7/32", - "7.144.6.9/32", - "7.144.6.11/32", - "7.144.6.13/32", - "7.144.6.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.144.6.1/32", - "7.144.6.3/32", - "7.144.6.5/32", - "7.144.6.7/32", - "7.144.6.9/32", - "7.144.6.11/32", - "7.144.6.13/32", - "7.144.6.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.144.6.2/32", - "7.144.6.4/32", - "7.144.6.6/32", - "7.144.6.8/32", - "7.144.6.10/32", - "7.144.6.12/32", - "7.144.6.14/32", - "7.144.6.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.144.6.2/32", - "7.144.6.4/32", - "7.144.6.6/32", - "7.144.6.8/32", - "7.144.6.10/32", - "7.144.6.12/32", - "7.144.6.14/32", - "7.144.6.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.144.8.1/32", - "7.144.8.3/32", - "7.144.8.5/32", - "7.144.8.7/32", - "7.144.8.9/32", - "7.144.8.11/32", - "7.144.8.13/32", - "7.144.8.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.144.8.1/32", - "7.144.8.3/32", - "7.144.8.5/32", - "7.144.8.7/32", - "7.144.8.9/32", - "7.144.8.11/32", - "7.144.8.13/32", - "7.144.8.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.144.8.2/32", - "7.144.8.4/32", - "7.144.8.6/32", - "7.144.8.8/32", - "7.144.8.10/32", - "7.144.8.12/32", - "7.144.8.14/32", - "7.144.8.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.144.8.2/32", - "7.144.8.4/32", - "7.144.8.6/32", - "7.144.8.8/32", - "7.144.8.10/32", - "7.144.8.12/32", - "7.144.8.14/32", - "7.144.8.16/32", - "7.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:7:TABLE:7006": { - "acl-group-id": "acl-group-7006", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.148.0.1/32", - "7.148.0.3/32", - "7.148.0.5/32", - "7.148.0.7/32", - "7.148.0.9/32", - "7.148.0.11/32", - "7.148.0.13/32", - "7.148.0.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.148.0.1/32", - "7.148.0.3/32", - "7.148.0.5/32", - "7.148.0.7/32", - "7.148.0.9/32", - "7.148.0.11/32", - "7.148.0.13/32", - "7.148.0.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.148.0.2/32", - "7.148.0.4/32", - "7.148.0.6/32", - "7.148.0.8/32", - "7.148.0.10/32", - "7.148.0.12/32", - "7.148.0.14/32", - "7.148.0.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.148.0.2/32", - "7.148.0.4/32", - "7.148.0.6/32", - "7.148.0.8/32", - "7.148.0.10/32", - "7.148.0.12/32", - "7.148.0.14/32", - "7.148.0.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.148.2.1/32", - "7.148.2.3/32", - "7.148.2.5/32", - "7.148.2.7/32", - "7.148.2.9/32", - "7.148.2.11/32", - "7.148.2.13/32", - "7.148.2.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.148.2.1/32", - "7.148.2.3/32", - "7.148.2.5/32", - "7.148.2.7/32", - "7.148.2.9/32", - "7.148.2.11/32", - "7.148.2.13/32", - "7.148.2.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.148.2.2/32", - "7.148.2.4/32", - "7.148.2.6/32", - "7.148.2.8/32", - "7.148.2.10/32", - "7.148.2.12/32", - "7.148.2.14/32", - "7.148.2.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.148.2.2/32", - "7.148.2.4/32", - "7.148.2.6/32", - "7.148.2.8/32", - "7.148.2.10/32", - "7.148.2.12/32", - "7.148.2.14/32", - "7.148.2.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.148.4.1/32", - "7.148.4.3/32", - "7.148.4.5/32", - "7.148.4.7/32", - "7.148.4.9/32", - "7.148.4.11/32", - "7.148.4.13/32", - "7.148.4.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.148.4.1/32", - "7.148.4.3/32", - "7.148.4.5/32", - "7.148.4.7/32", - "7.148.4.9/32", - "7.148.4.11/32", - "7.148.4.13/32", - "7.148.4.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.148.4.2/32", - "7.148.4.4/32", - "7.148.4.6/32", - "7.148.4.8/32", - "7.148.4.10/32", - "7.148.4.12/32", - "7.148.4.14/32", - "7.148.4.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.148.4.2/32", - "7.148.4.4/32", - "7.148.4.6/32", - "7.148.4.8/32", - "7.148.4.10/32", - "7.148.4.12/32", - "7.148.4.14/32", - "7.148.4.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.148.6.1/32", - "7.148.6.3/32", - "7.148.6.5/32", - "7.148.6.7/32", - "7.148.6.9/32", - "7.148.6.11/32", - "7.148.6.13/32", - "7.148.6.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.148.6.1/32", - "7.148.6.3/32", - "7.148.6.5/32", - "7.148.6.7/32", - "7.148.6.9/32", - "7.148.6.11/32", - "7.148.6.13/32", - "7.148.6.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.148.6.2/32", - "7.148.6.4/32", - "7.148.6.6/32", - "7.148.6.8/32", - "7.148.6.10/32", - "7.148.6.12/32", - "7.148.6.14/32", - "7.148.6.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.148.6.2/32", - "7.148.6.4/32", - "7.148.6.6/32", - "7.148.6.8/32", - "7.148.6.10/32", - "7.148.6.12/32", - "7.148.6.14/32", - "7.148.6.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "7.148.8.1/32", - "7.148.8.3/32", - "7.148.8.5/32", - "7.148.8.7/32", - "7.148.8.9/32", - "7.148.8.11/32", - "7.148.8.13/32", - "7.148.8.15/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.148.8.1/32", - "7.148.8.3/32", - "7.148.8.5/32", - "7.148.8.7/32", - "7.148.8.9/32", - "7.148.8.11/32", - "7.148.8.13/32", - "7.148.8.15/32", - "7.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "7.148.8.2/32", - "7.148.8.4/32", - "7.148.8.6/32", - "7.148.8.8/32", - "7.148.8.10/32", - "7.148.8.12/32", - "7.148.8.14/32", - "7.148.8.16/32", - "7.1.0.1/32" - ], - "dst_addrs": [ - "7.148.8.2/32", - "7.148.8.4/32", - "7.148.8.6/32", - "7.148.8.8/32", - "7.148.8.10/32", - "7.148.8.12/32", - "7.148.8.14/32", - "7.148.8.16/32", - "7.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "7.1.0.1/32", - "7.128.0.1/14", - "7.132.0.1/14", - "7.136.0.1/14" - ], - "dst_addrs": [ - "7.1.0.1/32", - "7.128.0.1/14", - "7.132.0.1/14", - "7.136.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:8:TABLE:8001": { - "acl-group-id": "acl-group-8001", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.128.0.1/32", - "8.128.0.3/32", - "8.128.0.5/32", - "8.128.0.7/32", - "8.128.0.9/32", - "8.128.0.11/32", - "8.128.0.13/32", - "8.128.0.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.128.0.1/32", - "8.128.0.3/32", - "8.128.0.5/32", - "8.128.0.7/32", - "8.128.0.9/32", - "8.128.0.11/32", - "8.128.0.13/32", - "8.128.0.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.128.0.2/32", - "8.128.0.4/32", - "8.128.0.6/32", - "8.128.0.8/32", - "8.128.0.10/32", - "8.128.0.12/32", - "8.128.0.14/32", - "8.128.0.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.128.0.2/32", - "8.128.0.4/32", - "8.128.0.6/32", - "8.128.0.8/32", - "8.128.0.10/32", - "8.128.0.12/32", - "8.128.0.14/32", - "8.128.0.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.128.2.1/32", - "8.128.2.3/32", - "8.128.2.5/32", - "8.128.2.7/32", - "8.128.2.9/32", - "8.128.2.11/32", - "8.128.2.13/32", - "8.128.2.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.128.2.1/32", - "8.128.2.3/32", - "8.128.2.5/32", - "8.128.2.7/32", - "8.128.2.9/32", - "8.128.2.11/32", - "8.128.2.13/32", - "8.128.2.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.128.2.2/32", - "8.128.2.4/32", - "8.128.2.6/32", - "8.128.2.8/32", - "8.128.2.10/32", - "8.128.2.12/32", - "8.128.2.14/32", - "8.128.2.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.128.2.2/32", - "8.128.2.4/32", - "8.128.2.6/32", - "8.128.2.8/32", - "8.128.2.10/32", - "8.128.2.12/32", - "8.128.2.14/32", - "8.128.2.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.128.4.1/32", - "8.128.4.3/32", - "8.128.4.5/32", - "8.128.4.7/32", - "8.128.4.9/32", - "8.128.4.11/32", - "8.128.4.13/32", - "8.128.4.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.128.4.1/32", - "8.128.4.3/32", - "8.128.4.5/32", - "8.128.4.7/32", - "8.128.4.9/32", - "8.128.4.11/32", - "8.128.4.13/32", - "8.128.4.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.128.4.2/32", - "8.128.4.4/32", - "8.128.4.6/32", - "8.128.4.8/32", - "8.128.4.10/32", - "8.128.4.12/32", - "8.128.4.14/32", - "8.128.4.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.128.4.2/32", - "8.128.4.4/32", - "8.128.4.6/32", - "8.128.4.8/32", - "8.128.4.10/32", - "8.128.4.12/32", - "8.128.4.14/32", - "8.128.4.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.128.6.1/32", - "8.128.6.3/32", - "8.128.6.5/32", - "8.128.6.7/32", - "8.128.6.9/32", - "8.128.6.11/32", - "8.128.6.13/32", - "8.128.6.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.128.6.1/32", - "8.128.6.3/32", - "8.128.6.5/32", - "8.128.6.7/32", - "8.128.6.9/32", - "8.128.6.11/32", - "8.128.6.13/32", - "8.128.6.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.128.6.2/32", - "8.128.6.4/32", - "8.128.6.6/32", - "8.128.6.8/32", - "8.128.6.10/32", - "8.128.6.12/32", - "8.128.6.14/32", - "8.128.6.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.128.6.2/32", - "8.128.6.4/32", - "8.128.6.6/32", - "8.128.6.8/32", - "8.128.6.10/32", - "8.128.6.12/32", - "8.128.6.14/32", - "8.128.6.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.128.8.1/32", - "8.128.8.3/32", - "8.128.8.5/32", - "8.128.8.7/32", - "8.128.8.9/32", - "8.128.8.11/32", - "8.128.8.13/32", - "8.128.8.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.128.8.1/32", - "8.128.8.3/32", - "8.128.8.5/32", - "8.128.8.7/32", - "8.128.8.9/32", - "8.128.8.11/32", - "8.128.8.13/32", - "8.128.8.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.128.8.2/32", - "8.128.8.4/32", - "8.128.8.6/32", - "8.128.8.8/32", - "8.128.8.10/32", - "8.128.8.12/32", - "8.128.8.14/32", - "8.128.8.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.128.8.2/32", - "8.128.8.4/32", - "8.128.8.6/32", - "8.128.8.8/32", - "8.128.8.10/32", - "8.128.8.12/32", - "8.128.8.14/32", - "8.128.8.16/32", - "8.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:8:TABLE:8002": { - "acl-group-id": "acl-group-8002", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.132.0.1/32", - "8.132.0.3/32", - "8.132.0.5/32", - "8.132.0.7/32", - "8.132.0.9/32", - "8.132.0.11/32", - "8.132.0.13/32", - "8.132.0.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.132.0.1/32", - "8.132.0.3/32", - "8.132.0.5/32", - "8.132.0.7/32", - "8.132.0.9/32", - "8.132.0.11/32", - "8.132.0.13/32", - "8.132.0.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.132.0.2/32", - "8.132.0.4/32", - "8.132.0.6/32", - "8.132.0.8/32", - "8.132.0.10/32", - "8.132.0.12/32", - "8.132.0.14/32", - "8.132.0.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.132.0.2/32", - "8.132.0.4/32", - "8.132.0.6/32", - "8.132.0.8/32", - "8.132.0.10/32", - "8.132.0.12/32", - "8.132.0.14/32", - "8.132.0.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.132.2.1/32", - "8.132.2.3/32", - "8.132.2.5/32", - "8.132.2.7/32", - "8.132.2.9/32", - "8.132.2.11/32", - "8.132.2.13/32", - "8.132.2.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.132.2.1/32", - "8.132.2.3/32", - "8.132.2.5/32", - "8.132.2.7/32", - "8.132.2.9/32", - "8.132.2.11/32", - "8.132.2.13/32", - "8.132.2.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.132.2.2/32", - "8.132.2.4/32", - "8.132.2.6/32", - "8.132.2.8/32", - "8.132.2.10/32", - "8.132.2.12/32", - "8.132.2.14/32", - "8.132.2.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.132.2.2/32", - "8.132.2.4/32", - "8.132.2.6/32", - "8.132.2.8/32", - "8.132.2.10/32", - "8.132.2.12/32", - "8.132.2.14/32", - "8.132.2.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.132.4.1/32", - "8.132.4.3/32", - "8.132.4.5/32", - "8.132.4.7/32", - "8.132.4.9/32", - "8.132.4.11/32", - "8.132.4.13/32", - "8.132.4.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.132.4.1/32", - "8.132.4.3/32", - "8.132.4.5/32", - "8.132.4.7/32", - "8.132.4.9/32", - "8.132.4.11/32", - "8.132.4.13/32", - "8.132.4.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.132.4.2/32", - "8.132.4.4/32", - "8.132.4.6/32", - "8.132.4.8/32", - "8.132.4.10/32", - "8.132.4.12/32", - "8.132.4.14/32", - "8.132.4.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.132.4.2/32", - "8.132.4.4/32", - "8.132.4.6/32", - "8.132.4.8/32", - "8.132.4.10/32", - "8.132.4.12/32", - "8.132.4.14/32", - "8.132.4.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.132.6.1/32", - "8.132.6.3/32", - "8.132.6.5/32", - "8.132.6.7/32", - "8.132.6.9/32", - "8.132.6.11/32", - "8.132.6.13/32", - "8.132.6.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.132.6.1/32", - "8.132.6.3/32", - "8.132.6.5/32", - "8.132.6.7/32", - "8.132.6.9/32", - "8.132.6.11/32", - "8.132.6.13/32", - "8.132.6.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.132.6.2/32", - "8.132.6.4/32", - "8.132.6.6/32", - "8.132.6.8/32", - "8.132.6.10/32", - "8.132.6.12/32", - "8.132.6.14/32", - "8.132.6.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.132.6.2/32", - "8.132.6.4/32", - "8.132.6.6/32", - "8.132.6.8/32", - "8.132.6.10/32", - "8.132.6.12/32", - "8.132.6.14/32", - "8.132.6.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.132.8.1/32", - "8.132.8.3/32", - "8.132.8.5/32", - "8.132.8.7/32", - "8.132.8.9/32", - "8.132.8.11/32", - "8.132.8.13/32", - "8.132.8.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.132.8.1/32", - "8.132.8.3/32", - "8.132.8.5/32", - "8.132.8.7/32", - "8.132.8.9/32", - "8.132.8.11/32", - "8.132.8.13/32", - "8.132.8.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.132.8.2/32", - "8.132.8.4/32", - "8.132.8.6/32", - "8.132.8.8/32", - "8.132.8.10/32", - "8.132.8.12/32", - "8.132.8.14/32", - "8.132.8.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.132.8.2/32", - "8.132.8.4/32", - "8.132.8.6/32", - "8.132.8.8/32", - "8.132.8.10/32", - "8.132.8.12/32", - "8.132.8.14/32", - "8.132.8.16/32", - "8.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:8:TABLE:8003": { - "acl-group-id": "acl-group-8003", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.136.0.1/32", - "8.136.0.3/32", - "8.136.0.5/32", - "8.136.0.7/32", - "8.136.0.9/32", - "8.136.0.11/32", - "8.136.0.13/32", - "8.136.0.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.136.0.1/32", - "8.136.0.3/32", - "8.136.0.5/32", - "8.136.0.7/32", - "8.136.0.9/32", - "8.136.0.11/32", - "8.136.0.13/32", - "8.136.0.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.136.0.2/32", - "8.136.0.4/32", - "8.136.0.6/32", - "8.136.0.8/32", - "8.136.0.10/32", - "8.136.0.12/32", - "8.136.0.14/32", - "8.136.0.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.136.0.2/32", - "8.136.0.4/32", - "8.136.0.6/32", - "8.136.0.8/32", - "8.136.0.10/32", - "8.136.0.12/32", - "8.136.0.14/32", - "8.136.0.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.136.2.1/32", - "8.136.2.3/32", - "8.136.2.5/32", - "8.136.2.7/32", - "8.136.2.9/32", - "8.136.2.11/32", - "8.136.2.13/32", - "8.136.2.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.136.2.1/32", - "8.136.2.3/32", - "8.136.2.5/32", - "8.136.2.7/32", - "8.136.2.9/32", - "8.136.2.11/32", - "8.136.2.13/32", - "8.136.2.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.136.2.2/32", - "8.136.2.4/32", - "8.136.2.6/32", - "8.136.2.8/32", - "8.136.2.10/32", - "8.136.2.12/32", - "8.136.2.14/32", - "8.136.2.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.136.2.2/32", - "8.136.2.4/32", - "8.136.2.6/32", - "8.136.2.8/32", - "8.136.2.10/32", - "8.136.2.12/32", - "8.136.2.14/32", - "8.136.2.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.136.4.1/32", - "8.136.4.3/32", - "8.136.4.5/32", - "8.136.4.7/32", - "8.136.4.9/32", - "8.136.4.11/32", - "8.136.4.13/32", - "8.136.4.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.136.4.1/32", - "8.136.4.3/32", - "8.136.4.5/32", - "8.136.4.7/32", - "8.136.4.9/32", - "8.136.4.11/32", - "8.136.4.13/32", - "8.136.4.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.136.4.2/32", - "8.136.4.4/32", - "8.136.4.6/32", - "8.136.4.8/32", - "8.136.4.10/32", - "8.136.4.12/32", - "8.136.4.14/32", - "8.136.4.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.136.4.2/32", - "8.136.4.4/32", - "8.136.4.6/32", - "8.136.4.8/32", - "8.136.4.10/32", - "8.136.4.12/32", - "8.136.4.14/32", - "8.136.4.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.136.6.1/32", - "8.136.6.3/32", - "8.136.6.5/32", - "8.136.6.7/32", - "8.136.6.9/32", - "8.136.6.11/32", - "8.136.6.13/32", - "8.136.6.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.136.6.1/32", - "8.136.6.3/32", - "8.136.6.5/32", - "8.136.6.7/32", - "8.136.6.9/32", - "8.136.6.11/32", - "8.136.6.13/32", - "8.136.6.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.136.6.2/32", - "8.136.6.4/32", - "8.136.6.6/32", - "8.136.6.8/32", - "8.136.6.10/32", - "8.136.6.12/32", - "8.136.6.14/32", - "8.136.6.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.136.6.2/32", - "8.136.6.4/32", - "8.136.6.6/32", - "8.136.6.8/32", - "8.136.6.10/32", - "8.136.6.12/32", - "8.136.6.14/32", - "8.136.6.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.136.8.1/32", - "8.136.8.3/32", - "8.136.8.5/32", - "8.136.8.7/32", - "8.136.8.9/32", - "8.136.8.11/32", - "8.136.8.13/32", - "8.136.8.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.136.8.1/32", - "8.136.8.3/32", - "8.136.8.5/32", - "8.136.8.7/32", - "8.136.8.9/32", - "8.136.8.11/32", - "8.136.8.13/32", - "8.136.8.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.136.8.2/32", - "8.136.8.4/32", - "8.136.8.6/32", - "8.136.8.8/32", - "8.136.8.10/32", - "8.136.8.12/32", - "8.136.8.14/32", - "8.136.8.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.136.8.2/32", - "8.136.8.4/32", - "8.136.8.6/32", - "8.136.8.8/32", - "8.136.8.10/32", - "8.136.8.12/32", - "8.136.8.14/32", - "8.136.8.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "8.1.0.1/32", - "8.140.0.1/14", - "8.144.0.1/14", - "8.148.0.1/14" - ], - "dst_addrs": [ - "8.1.0.1/32", - "8.140.0.1/14", - "8.144.0.1/14", - "8.148.0.1/14" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:8:TABLE:8004": { - "acl-group-id": "acl-group-8004", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.140.0.1/32", - "8.140.0.3/32", - "8.140.0.5/32", - "8.140.0.7/32", - "8.140.0.9/32", - "8.140.0.11/32", - "8.140.0.13/32", - "8.140.0.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.140.0.1/32", - "8.140.0.3/32", - "8.140.0.5/32", - "8.140.0.7/32", - "8.140.0.9/32", - "8.140.0.11/32", - "8.140.0.13/32", - "8.140.0.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.140.0.2/32", - "8.140.0.4/32", - "8.140.0.6/32", - "8.140.0.8/32", - "8.140.0.10/32", - "8.140.0.12/32", - "8.140.0.14/32", - "8.140.0.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.140.0.2/32", - "8.140.0.4/32", - "8.140.0.6/32", - "8.140.0.8/32", - "8.140.0.10/32", - "8.140.0.12/32", - "8.140.0.14/32", - "8.140.0.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.140.2.1/32", - "8.140.2.3/32", - "8.140.2.5/32", - "8.140.2.7/32", - "8.140.2.9/32", - "8.140.2.11/32", - "8.140.2.13/32", - "8.140.2.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.140.2.1/32", - "8.140.2.3/32", - "8.140.2.5/32", - "8.140.2.7/32", - "8.140.2.9/32", - "8.140.2.11/32", - "8.140.2.13/32", - "8.140.2.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.140.2.2/32", - "8.140.2.4/32", - "8.140.2.6/32", - "8.140.2.8/32", - "8.140.2.10/32", - "8.140.2.12/32", - "8.140.2.14/32", - "8.140.2.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.140.2.2/32", - "8.140.2.4/32", - "8.140.2.6/32", - "8.140.2.8/32", - "8.140.2.10/32", - "8.140.2.12/32", - "8.140.2.14/32", - "8.140.2.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.140.4.1/32", - "8.140.4.3/32", - "8.140.4.5/32", - "8.140.4.7/32", - "8.140.4.9/32", - "8.140.4.11/32", - "8.140.4.13/32", - "8.140.4.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.140.4.1/32", - "8.140.4.3/32", - "8.140.4.5/32", - "8.140.4.7/32", - "8.140.4.9/32", - "8.140.4.11/32", - "8.140.4.13/32", - "8.140.4.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.140.4.2/32", - "8.140.4.4/32", - "8.140.4.6/32", - "8.140.4.8/32", - "8.140.4.10/32", - "8.140.4.12/32", - "8.140.4.14/32", - "8.140.4.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.140.4.2/32", - "8.140.4.4/32", - "8.140.4.6/32", - "8.140.4.8/32", - "8.140.4.10/32", - "8.140.4.12/32", - "8.140.4.14/32", - "8.140.4.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.140.6.1/32", - "8.140.6.3/32", - "8.140.6.5/32", - "8.140.6.7/32", - "8.140.6.9/32", - "8.140.6.11/32", - "8.140.6.13/32", - "8.140.6.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.140.6.1/32", - "8.140.6.3/32", - "8.140.6.5/32", - "8.140.6.7/32", - "8.140.6.9/32", - "8.140.6.11/32", - "8.140.6.13/32", - "8.140.6.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.140.6.2/32", - "8.140.6.4/32", - "8.140.6.6/32", - "8.140.6.8/32", - "8.140.6.10/32", - "8.140.6.12/32", - "8.140.6.14/32", - "8.140.6.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.140.6.2/32", - "8.140.6.4/32", - "8.140.6.6/32", - "8.140.6.8/32", - "8.140.6.10/32", - "8.140.6.12/32", - "8.140.6.14/32", - "8.140.6.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.140.8.1/32", - "8.140.8.3/32", - "8.140.8.5/32", - "8.140.8.7/32", - "8.140.8.9/32", - "8.140.8.11/32", - "8.140.8.13/32", - "8.140.8.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.140.8.1/32", - "8.140.8.3/32", - "8.140.8.5/32", - "8.140.8.7/32", - "8.140.8.9/32", - "8.140.8.11/32", - "8.140.8.13/32", - "8.140.8.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.140.8.2/32", - "8.140.8.4/32", - "8.140.8.6/32", - "8.140.8.8/32", - "8.140.8.10/32", - "8.140.8.12/32", - "8.140.8.14/32", - "8.140.8.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.140.8.2/32", - "8.140.8.4/32", - "8.140.8.6/32", - "8.140.8.8/32", - "8.140.8.10/32", - "8.140.8.12/32", - "8.140.8.14/32", - "8.140.8.16/32", - "8.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:8:TABLE:8005": { - "acl-group-id": "acl-group-8005", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.144.0.1/32", - "8.144.0.3/32", - "8.144.0.5/32", - "8.144.0.7/32", - "8.144.0.9/32", - "8.144.0.11/32", - "8.144.0.13/32", - "8.144.0.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.144.0.1/32", - "8.144.0.3/32", - "8.144.0.5/32", - "8.144.0.7/32", - "8.144.0.9/32", - "8.144.0.11/32", - "8.144.0.13/32", - "8.144.0.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.144.0.2/32", - "8.144.0.4/32", - "8.144.0.6/32", - "8.144.0.8/32", - "8.144.0.10/32", - "8.144.0.12/32", - "8.144.0.14/32", - "8.144.0.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.144.0.2/32", - "8.144.0.4/32", - "8.144.0.6/32", - "8.144.0.8/32", - "8.144.0.10/32", - "8.144.0.12/32", - "8.144.0.14/32", - "8.144.0.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.144.2.1/32", - "8.144.2.3/32", - "8.144.2.5/32", - "8.144.2.7/32", - "8.144.2.9/32", - "8.144.2.11/32", - "8.144.2.13/32", - "8.144.2.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.144.2.1/32", - "8.144.2.3/32", - "8.144.2.5/32", - "8.144.2.7/32", - "8.144.2.9/32", - "8.144.2.11/32", - "8.144.2.13/32", - "8.144.2.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.144.2.2/32", - "8.144.2.4/32", - "8.144.2.6/32", - "8.144.2.8/32", - "8.144.2.10/32", - "8.144.2.12/32", - "8.144.2.14/32", - "8.144.2.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.144.2.2/32", - "8.144.2.4/32", - "8.144.2.6/32", - "8.144.2.8/32", - "8.144.2.10/32", - "8.144.2.12/32", - "8.144.2.14/32", - "8.144.2.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.144.4.1/32", - "8.144.4.3/32", - "8.144.4.5/32", - "8.144.4.7/32", - "8.144.4.9/32", - "8.144.4.11/32", - "8.144.4.13/32", - "8.144.4.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.144.4.1/32", - "8.144.4.3/32", - "8.144.4.5/32", - "8.144.4.7/32", - "8.144.4.9/32", - "8.144.4.11/32", - "8.144.4.13/32", - "8.144.4.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.144.4.2/32", - "8.144.4.4/32", - "8.144.4.6/32", - "8.144.4.8/32", - "8.144.4.10/32", - "8.144.4.12/32", - "8.144.4.14/32", - "8.144.4.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.144.4.2/32", - "8.144.4.4/32", - "8.144.4.6/32", - "8.144.4.8/32", - "8.144.4.10/32", - "8.144.4.12/32", - "8.144.4.14/32", - "8.144.4.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.144.6.1/32", - "8.144.6.3/32", - "8.144.6.5/32", - "8.144.6.7/32", - "8.144.6.9/32", - "8.144.6.11/32", - "8.144.6.13/32", - "8.144.6.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.144.6.1/32", - "8.144.6.3/32", - "8.144.6.5/32", - "8.144.6.7/32", - "8.144.6.9/32", - "8.144.6.11/32", - "8.144.6.13/32", - "8.144.6.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.144.6.2/32", - "8.144.6.4/32", - "8.144.6.6/32", - "8.144.6.8/32", - "8.144.6.10/32", - "8.144.6.12/32", - "8.144.6.14/32", - "8.144.6.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.144.6.2/32", - "8.144.6.4/32", - "8.144.6.6/32", - "8.144.6.8/32", - "8.144.6.10/32", - "8.144.6.12/32", - "8.144.6.14/32", - "8.144.6.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.144.8.1/32", - "8.144.8.3/32", - "8.144.8.5/32", - "8.144.8.7/32", - "8.144.8.9/32", - "8.144.8.11/32", - "8.144.8.13/32", - "8.144.8.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.144.8.1/32", - "8.144.8.3/32", - "8.144.8.5/32", - "8.144.8.7/32", - "8.144.8.9/32", - "8.144.8.11/32", - "8.144.8.13/32", - "8.144.8.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.144.8.2/32", - "8.144.8.4/32", - "8.144.8.6/32", - "8.144.8.8/32", - "8.144.8.10/32", - "8.144.8.12/32", - "8.144.8.14/32", - "8.144.8.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.144.8.2/32", - "8.144.8.4/32", - "8.144.8.6/32", - "8.144.8.8/32", - "8.144.8.10/32", - "8.144.8.12/32", - "8.144.8.14/32", - "8.144.8.16/32", - "8.1.0.1/32" - ] - } - ] - } - }, - { - "ACL-GROUP:ENI:8:TABLE:8006": { - "acl-group-id": "acl-group-8006", - "ip_version": "IPv4", - "rules": [ - { - "priority": 1, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.148.0.1/32", - "8.148.0.3/32", - "8.148.0.5/32", - "8.148.0.7/32", - "8.148.0.9/32", - "8.148.0.11/32", - "8.148.0.13/32", - "8.148.0.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.148.0.1/32", - "8.148.0.3/32", - "8.148.0.5/32", - "8.148.0.7/32", - "8.148.0.9/32", - "8.148.0.11/32", - "8.148.0.13/32", - "8.148.0.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 2, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.148.0.2/32", - "8.148.0.4/32", - "8.148.0.6/32", - "8.148.0.8/32", - "8.148.0.10/32", - "8.148.0.12/32", - "8.148.0.14/32", - "8.148.0.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.148.0.2/32", - "8.148.0.4/32", - "8.148.0.6/32", - "8.148.0.8/32", - "8.148.0.10/32", - "8.148.0.12/32", - "8.148.0.14/32", - "8.148.0.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 3, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.148.2.1/32", - "8.148.2.3/32", - "8.148.2.5/32", - "8.148.2.7/32", - "8.148.2.9/32", - "8.148.2.11/32", - "8.148.2.13/32", - "8.148.2.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.148.2.1/32", - "8.148.2.3/32", - "8.148.2.5/32", - "8.148.2.7/32", - "8.148.2.9/32", - "8.148.2.11/32", - "8.148.2.13/32", - "8.148.2.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 4, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.148.2.2/32", - "8.148.2.4/32", - "8.148.2.6/32", - "8.148.2.8/32", - "8.148.2.10/32", - "8.148.2.12/32", - "8.148.2.14/32", - "8.148.2.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.148.2.2/32", - "8.148.2.4/32", - "8.148.2.6/32", - "8.148.2.8/32", - "8.148.2.10/32", - "8.148.2.12/32", - "8.148.2.14/32", - "8.148.2.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 5, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.148.4.1/32", - "8.148.4.3/32", - "8.148.4.5/32", - "8.148.4.7/32", - "8.148.4.9/32", - "8.148.4.11/32", - "8.148.4.13/32", - "8.148.4.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.148.4.1/32", - "8.148.4.3/32", - "8.148.4.5/32", - "8.148.4.7/32", - "8.148.4.9/32", - "8.148.4.11/32", - "8.148.4.13/32", - "8.148.4.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 6, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.148.4.2/32", - "8.148.4.4/32", - "8.148.4.6/32", - "8.148.4.8/32", - "8.148.4.10/32", - "8.148.4.12/32", - "8.148.4.14/32", - "8.148.4.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.148.4.2/32", - "8.148.4.4/32", - "8.148.4.6/32", - "8.148.4.8/32", - "8.148.4.10/32", - "8.148.4.12/32", - "8.148.4.14/32", - "8.148.4.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 7, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.148.6.1/32", - "8.148.6.3/32", - "8.148.6.5/32", - "8.148.6.7/32", - "8.148.6.9/32", - "8.148.6.11/32", - "8.148.6.13/32", - "8.148.6.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.148.6.1/32", - "8.148.6.3/32", - "8.148.6.5/32", - "8.148.6.7/32", - "8.148.6.9/32", - "8.148.6.11/32", - "8.148.6.13/32", - "8.148.6.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 8, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.148.6.2/32", - "8.148.6.4/32", - "8.148.6.6/32", - "8.148.6.8/32", - "8.148.6.10/32", - "8.148.6.12/32", - "8.148.6.14/32", - "8.148.6.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.148.6.2/32", - "8.148.6.4/32", - "8.148.6.6/32", - "8.148.6.8/32", - "8.148.6.10/32", - "8.148.6.12/32", - "8.148.6.14/32", - "8.148.6.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 9, - "action": "allow", - "terminating": false, - "src_addrs": [ - "8.148.8.1/32", - "8.148.8.3/32", - "8.148.8.5/32", - "8.148.8.7/32", - "8.148.8.9/32", - "8.148.8.11/32", - "8.148.8.13/32", - "8.148.8.15/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.148.8.1/32", - "8.148.8.3/32", - "8.148.8.5/32", - "8.148.8.7/32", - "8.148.8.9/32", - "8.148.8.11/32", - "8.148.8.13/32", - "8.148.8.15/32", - "8.1.0.1/32" - ] - }, - { - "priority": 10, - "action": "deny", - "terminating": true, - "src_addrs": [ - "8.148.8.2/32", - "8.148.8.4/32", - "8.148.8.6/32", - "8.148.8.8/32", - "8.148.8.10/32", - "8.148.8.12/32", - "8.148.8.14/32", - "8.148.8.16/32", - "8.1.0.1/32" - ], - "dst_addrs": [ - "8.148.8.2/32", - "8.148.8.4/32", - "8.148.8.6/32", - "8.148.8.8/32", - "8.148.8.10/32", - "8.148.8.12/32", - "8.148.8.14/32", - "8.148.8.16/32", - "8.1.0.1/32" - ] - }, - { - "priority": 11, - "action": "allow", - "terminating": "true", - "src_addrs": [ - "8.1.0.1/32", - "8.128.0.1/14", - "8.132.0.1/14", - "8.136.0.1/14" - ], - "dst_addrs": [ - "8.1.0.1/32", - "8.128.0.1/14", - "8.132.0.1/14", - "8.136.0.1/14" - ] - } - ] - } + }, + { + "ENI:2": { + "eni-id": "eni-2", + "mac": "00:1A:C5:18:00:01", + "vpcs": [ + 2 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-2001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-2002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-2003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-2004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-2005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-2006", + "stage": 3 + } + ], + "route-table-v4": "route-table-2" + } + }, + { + "ENI:3": { + "eni-id": "eni-3", + "mac": "00:1A:C5:30:00:01", + "vpcs": [ + 3 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-3001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-3002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-3003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-3004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-3005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-3006", + "stage": 3 + } + ], + "route-table-v4": "route-table-3" + } + }, + { + "ENI:4": { + "eni-id": "eni-4", + "mac": "00:1A:C5:48:00:01", + "vpcs": [ + 4 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-4001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-4002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-4003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-4004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-4005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-4006", + "stage": 3 + } + ], + "route-table-v4": "route-table-4" + } + }, + { + "ENI:5": { + "eni-id": "eni-5", + "mac": "00:1A:C5:60:00:01", + "vpcs": [ + 5 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-5001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-5002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-5003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-5004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-5005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-5006", + "stage": 3 + } + ], + "route-table-v4": "route-table-5" + } + }, + { + "ENI:6": { + "eni-id": "eni-6", + "mac": "00:1A:C5:78:00:01", + "vpcs": [ + 6 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-6001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-6002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-6003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-6004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-6005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-6006", + "stage": 3 + } + ], + "route-table-v4": "route-table-6" + } + }, + { + "ENI:7": { + "eni-id": "eni-7", + "mac": "00:1A:C5:90:00:01", + "vpcs": [ + 7 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-7001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-7002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-7003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-7004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-7005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-7006", + "stage": 3 + } + ], + "route-table-v4": "route-table-7" + } + }, + { + "ENI:8": { + "eni-id": "eni-8", + "mac": "00:1A:C5:A8:00:01", + "vpcs": [ + 8 + ], + "acls-v4-in": [ + { + "acl-group-id": "acl-group-8001", + "stage": 1 + }, + { + "acl-group-id": "acl-group-8002", + "stage": 2 + }, + { + "acl-group-id": "acl-group-8003", + "stage": 3 + } + ], + "acls-v4-out": [ + { + "acl-group-id": "acl-group-8004", + "stage": 1 + }, + { + "acl-group-id": "acl-group-8005", + "stage": 2 + }, + { + "acl-group-id": "acl-group-8006", + "stage": 3 + } + ], + "route-table-v4": "route-table-8" + } + } +], + "acl-groups": +[ + { + "ACL-GROUP:ENI:1:TABLE:1001": { + "acl-group-id": "acl-group-1001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.128.0.1/32", + "1.128.0.3/32", + "1.128.0.5/32", + "1.128.0.7/32", + "1.128.0.9/32", + "1.128.0.11/32", + "1.128.0.13/32", + "1.128.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.0.1/32", + "1.128.0.3/32", + "1.128.0.5/32", + "1.128.0.7/32", + "1.128.0.9/32", + "1.128.0.11/32", + "1.128.0.13/32", + "1.128.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.128.0.2/32", + "1.128.0.4/32", + "1.128.0.6/32", + "1.128.0.8/32", + "1.128.0.10/32", + "1.128.0.12/32", + "1.128.0.14/32", + "1.128.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.0.2/32", + "1.128.0.4/32", + "1.128.0.6/32", + "1.128.0.8/32", + "1.128.0.10/32", + "1.128.0.12/32", + "1.128.0.14/32", + "1.128.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.128.2.1/32", + "1.128.2.3/32", + "1.128.2.5/32", + "1.128.2.7/32", + "1.128.2.9/32", + "1.128.2.11/32", + "1.128.2.13/32", + "1.128.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.2.1/32", + "1.128.2.3/32", + "1.128.2.5/32", + "1.128.2.7/32", + "1.128.2.9/32", + "1.128.2.11/32", + "1.128.2.13/32", + "1.128.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.128.2.2/32", + "1.128.2.4/32", + "1.128.2.6/32", + "1.128.2.8/32", + "1.128.2.10/32", + "1.128.2.12/32", + "1.128.2.14/32", + "1.128.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.2.2/32", + "1.128.2.4/32", + "1.128.2.6/32", + "1.128.2.8/32", + "1.128.2.10/32", + "1.128.2.12/32", + "1.128.2.14/32", + "1.128.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.128.4.1/32", + "1.128.4.3/32", + "1.128.4.5/32", + "1.128.4.7/32", + "1.128.4.9/32", + "1.128.4.11/32", + "1.128.4.13/32", + "1.128.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.4.1/32", + "1.128.4.3/32", + "1.128.4.5/32", + "1.128.4.7/32", + "1.128.4.9/32", + "1.128.4.11/32", + "1.128.4.13/32", + "1.128.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.128.4.2/32", + "1.128.4.4/32", + "1.128.4.6/32", + "1.128.4.8/32", + "1.128.4.10/32", + "1.128.4.12/32", + "1.128.4.14/32", + "1.128.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.4.2/32", + "1.128.4.4/32", + "1.128.4.6/32", + "1.128.4.8/32", + "1.128.4.10/32", + "1.128.4.12/32", + "1.128.4.14/32", + "1.128.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.128.6.1/32", + "1.128.6.3/32", + "1.128.6.5/32", + "1.128.6.7/32", + "1.128.6.9/32", + "1.128.6.11/32", + "1.128.6.13/32", + "1.128.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.6.1/32", + "1.128.6.3/32", + "1.128.6.5/32", + "1.128.6.7/32", + "1.128.6.9/32", + "1.128.6.11/32", + "1.128.6.13/32", + "1.128.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.128.6.2/32", + "1.128.6.4/32", + "1.128.6.6/32", + "1.128.6.8/32", + "1.128.6.10/32", + "1.128.6.12/32", + "1.128.6.14/32", + "1.128.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.6.2/32", + "1.128.6.4/32", + "1.128.6.6/32", + "1.128.6.8/32", + "1.128.6.10/32", + "1.128.6.12/32", + "1.128.6.14/32", + "1.128.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.128.8.1/32", + "1.128.8.3/32", + "1.128.8.5/32", + "1.128.8.7/32", + "1.128.8.9/32", + "1.128.8.11/32", + "1.128.8.13/32", + "1.128.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.8.1/32", + "1.128.8.3/32", + "1.128.8.5/32", + "1.128.8.7/32", + "1.128.8.9/32", + "1.128.8.11/32", + "1.128.8.13/32", + "1.128.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.128.8.2/32", + "1.128.8.4/32", + "1.128.8.6/32", + "1.128.8.8/32", + "1.128.8.10/32", + "1.128.8.12/32", + "1.128.8.14/32", + "1.128.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.128.8.2/32", + "1.128.8.4/32", + "1.128.8.6/32", + "1.128.8.8/32", + "1.128.8.10/32", + "1.128.8.12/32", + "1.128.8.14/32", + "1.128.8.16/32", + "1.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:1:TABLE:1002": { + "acl-group-id": "acl-group-1002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.132.0.1/32", + "1.132.0.3/32", + "1.132.0.5/32", + "1.132.0.7/32", + "1.132.0.9/32", + "1.132.0.11/32", + "1.132.0.13/32", + "1.132.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.0.1/32", + "1.132.0.3/32", + "1.132.0.5/32", + "1.132.0.7/32", + "1.132.0.9/32", + "1.132.0.11/32", + "1.132.0.13/32", + "1.132.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.132.0.2/32", + "1.132.0.4/32", + "1.132.0.6/32", + "1.132.0.8/32", + "1.132.0.10/32", + "1.132.0.12/32", + "1.132.0.14/32", + "1.132.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.0.2/32", + "1.132.0.4/32", + "1.132.0.6/32", + "1.132.0.8/32", + "1.132.0.10/32", + "1.132.0.12/32", + "1.132.0.14/32", + "1.132.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.132.2.1/32", + "1.132.2.3/32", + "1.132.2.5/32", + "1.132.2.7/32", + "1.132.2.9/32", + "1.132.2.11/32", + "1.132.2.13/32", + "1.132.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.2.1/32", + "1.132.2.3/32", + "1.132.2.5/32", + "1.132.2.7/32", + "1.132.2.9/32", + "1.132.2.11/32", + "1.132.2.13/32", + "1.132.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.132.2.2/32", + "1.132.2.4/32", + "1.132.2.6/32", + "1.132.2.8/32", + "1.132.2.10/32", + "1.132.2.12/32", + "1.132.2.14/32", + "1.132.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.2.2/32", + "1.132.2.4/32", + "1.132.2.6/32", + "1.132.2.8/32", + "1.132.2.10/32", + "1.132.2.12/32", + "1.132.2.14/32", + "1.132.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.132.4.1/32", + "1.132.4.3/32", + "1.132.4.5/32", + "1.132.4.7/32", + "1.132.4.9/32", + "1.132.4.11/32", + "1.132.4.13/32", + "1.132.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.4.1/32", + "1.132.4.3/32", + "1.132.4.5/32", + "1.132.4.7/32", + "1.132.4.9/32", + "1.132.4.11/32", + "1.132.4.13/32", + "1.132.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.132.4.2/32", + "1.132.4.4/32", + "1.132.4.6/32", + "1.132.4.8/32", + "1.132.4.10/32", + "1.132.4.12/32", + "1.132.4.14/32", + "1.132.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.4.2/32", + "1.132.4.4/32", + "1.132.4.6/32", + "1.132.4.8/32", + "1.132.4.10/32", + "1.132.4.12/32", + "1.132.4.14/32", + "1.132.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.132.6.1/32", + "1.132.6.3/32", + "1.132.6.5/32", + "1.132.6.7/32", + "1.132.6.9/32", + "1.132.6.11/32", + "1.132.6.13/32", + "1.132.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.6.1/32", + "1.132.6.3/32", + "1.132.6.5/32", + "1.132.6.7/32", + "1.132.6.9/32", + "1.132.6.11/32", + "1.132.6.13/32", + "1.132.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.132.6.2/32", + "1.132.6.4/32", + "1.132.6.6/32", + "1.132.6.8/32", + "1.132.6.10/32", + "1.132.6.12/32", + "1.132.6.14/32", + "1.132.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.6.2/32", + "1.132.6.4/32", + "1.132.6.6/32", + "1.132.6.8/32", + "1.132.6.10/32", + "1.132.6.12/32", + "1.132.6.14/32", + "1.132.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.132.8.1/32", + "1.132.8.3/32", + "1.132.8.5/32", + "1.132.8.7/32", + "1.132.8.9/32", + "1.132.8.11/32", + "1.132.8.13/32", + "1.132.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.8.1/32", + "1.132.8.3/32", + "1.132.8.5/32", + "1.132.8.7/32", + "1.132.8.9/32", + "1.132.8.11/32", + "1.132.8.13/32", + "1.132.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.132.8.2/32", + "1.132.8.4/32", + "1.132.8.6/32", + "1.132.8.8/32", + "1.132.8.10/32", + "1.132.8.12/32", + "1.132.8.14/32", + "1.132.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.132.8.2/32", + "1.132.8.4/32", + "1.132.8.6/32", + "1.132.8.8/32", + "1.132.8.10/32", + "1.132.8.12/32", + "1.132.8.14/32", + "1.132.8.16/32", + "1.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:1:TABLE:1003": { + "acl-group-id": "acl-group-1003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.136.0.1/32", + "1.136.0.3/32", + "1.136.0.5/32", + "1.136.0.7/32", + "1.136.0.9/32", + "1.136.0.11/32", + "1.136.0.13/32", + "1.136.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.0.1/32", + "1.136.0.3/32", + "1.136.0.5/32", + "1.136.0.7/32", + "1.136.0.9/32", + "1.136.0.11/32", + "1.136.0.13/32", + "1.136.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.136.0.2/32", + "1.136.0.4/32", + "1.136.0.6/32", + "1.136.0.8/32", + "1.136.0.10/32", + "1.136.0.12/32", + "1.136.0.14/32", + "1.136.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.0.2/32", + "1.136.0.4/32", + "1.136.0.6/32", + "1.136.0.8/32", + "1.136.0.10/32", + "1.136.0.12/32", + "1.136.0.14/32", + "1.136.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.136.2.1/32", + "1.136.2.3/32", + "1.136.2.5/32", + "1.136.2.7/32", + "1.136.2.9/32", + "1.136.2.11/32", + "1.136.2.13/32", + "1.136.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.2.1/32", + "1.136.2.3/32", + "1.136.2.5/32", + "1.136.2.7/32", + "1.136.2.9/32", + "1.136.2.11/32", + "1.136.2.13/32", + "1.136.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.136.2.2/32", + "1.136.2.4/32", + "1.136.2.6/32", + "1.136.2.8/32", + "1.136.2.10/32", + "1.136.2.12/32", + "1.136.2.14/32", + "1.136.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.2.2/32", + "1.136.2.4/32", + "1.136.2.6/32", + "1.136.2.8/32", + "1.136.2.10/32", + "1.136.2.12/32", + "1.136.2.14/32", + "1.136.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.136.4.1/32", + "1.136.4.3/32", + "1.136.4.5/32", + "1.136.4.7/32", + "1.136.4.9/32", + "1.136.4.11/32", + "1.136.4.13/32", + "1.136.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.4.1/32", + "1.136.4.3/32", + "1.136.4.5/32", + "1.136.4.7/32", + "1.136.4.9/32", + "1.136.4.11/32", + "1.136.4.13/32", + "1.136.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.136.4.2/32", + "1.136.4.4/32", + "1.136.4.6/32", + "1.136.4.8/32", + "1.136.4.10/32", + "1.136.4.12/32", + "1.136.4.14/32", + "1.136.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.4.2/32", + "1.136.4.4/32", + "1.136.4.6/32", + "1.136.4.8/32", + "1.136.4.10/32", + "1.136.4.12/32", + "1.136.4.14/32", + "1.136.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.136.6.1/32", + "1.136.6.3/32", + "1.136.6.5/32", + "1.136.6.7/32", + "1.136.6.9/32", + "1.136.6.11/32", + "1.136.6.13/32", + "1.136.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.6.1/32", + "1.136.6.3/32", + "1.136.6.5/32", + "1.136.6.7/32", + "1.136.6.9/32", + "1.136.6.11/32", + "1.136.6.13/32", + "1.136.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.136.6.2/32", + "1.136.6.4/32", + "1.136.6.6/32", + "1.136.6.8/32", + "1.136.6.10/32", + "1.136.6.12/32", + "1.136.6.14/32", + "1.136.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.6.2/32", + "1.136.6.4/32", + "1.136.6.6/32", + "1.136.6.8/32", + "1.136.6.10/32", + "1.136.6.12/32", + "1.136.6.14/32", + "1.136.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.136.8.1/32", + "1.136.8.3/32", + "1.136.8.5/32", + "1.136.8.7/32", + "1.136.8.9/32", + "1.136.8.11/32", + "1.136.8.13/32", + "1.136.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.8.1/32", + "1.136.8.3/32", + "1.136.8.5/32", + "1.136.8.7/32", + "1.136.8.9/32", + "1.136.8.11/32", + "1.136.8.13/32", + "1.136.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.136.8.2/32", + "1.136.8.4/32", + "1.136.8.6/32", + "1.136.8.8/32", + "1.136.8.10/32", + "1.136.8.12/32", + "1.136.8.14/32", + "1.136.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.136.8.2/32", + "1.136.8.4/32", + "1.136.8.6/32", + "1.136.8.8/32", + "1.136.8.10/32", + "1.136.8.12/32", + "1.136.8.14/32", + "1.136.8.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "1.1.0.1/32", + "1.140.0.1/14", + "1.144.0.1/14", + "1.148.0.1/14" + ], + "dst_addrs": [ + "1.1.0.1/32", + "1.140.0.1/14", + "1.144.0.1/14", + "1.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:1:TABLE:1004": { + "acl-group-id": "acl-group-1004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.140.0.1/32", + "1.140.0.3/32", + "1.140.0.5/32", + "1.140.0.7/32", + "1.140.0.9/32", + "1.140.0.11/32", + "1.140.0.13/32", + "1.140.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.0.1/32", + "1.140.0.3/32", + "1.140.0.5/32", + "1.140.0.7/32", + "1.140.0.9/32", + "1.140.0.11/32", + "1.140.0.13/32", + "1.140.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.140.0.2/32", + "1.140.0.4/32", + "1.140.0.6/32", + "1.140.0.8/32", + "1.140.0.10/32", + "1.140.0.12/32", + "1.140.0.14/32", + "1.140.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.0.2/32", + "1.140.0.4/32", + "1.140.0.6/32", + "1.140.0.8/32", + "1.140.0.10/32", + "1.140.0.12/32", + "1.140.0.14/32", + "1.140.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.140.2.1/32", + "1.140.2.3/32", + "1.140.2.5/32", + "1.140.2.7/32", + "1.140.2.9/32", + "1.140.2.11/32", + "1.140.2.13/32", + "1.140.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.2.1/32", + "1.140.2.3/32", + "1.140.2.5/32", + "1.140.2.7/32", + "1.140.2.9/32", + "1.140.2.11/32", + "1.140.2.13/32", + "1.140.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.140.2.2/32", + "1.140.2.4/32", + "1.140.2.6/32", + "1.140.2.8/32", + "1.140.2.10/32", + "1.140.2.12/32", + "1.140.2.14/32", + "1.140.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.2.2/32", + "1.140.2.4/32", + "1.140.2.6/32", + "1.140.2.8/32", + "1.140.2.10/32", + "1.140.2.12/32", + "1.140.2.14/32", + "1.140.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.140.4.1/32", + "1.140.4.3/32", + "1.140.4.5/32", + "1.140.4.7/32", + "1.140.4.9/32", + "1.140.4.11/32", + "1.140.4.13/32", + "1.140.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.4.1/32", + "1.140.4.3/32", + "1.140.4.5/32", + "1.140.4.7/32", + "1.140.4.9/32", + "1.140.4.11/32", + "1.140.4.13/32", + "1.140.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.140.4.2/32", + "1.140.4.4/32", + "1.140.4.6/32", + "1.140.4.8/32", + "1.140.4.10/32", + "1.140.4.12/32", + "1.140.4.14/32", + "1.140.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.4.2/32", + "1.140.4.4/32", + "1.140.4.6/32", + "1.140.4.8/32", + "1.140.4.10/32", + "1.140.4.12/32", + "1.140.4.14/32", + "1.140.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.140.6.1/32", + "1.140.6.3/32", + "1.140.6.5/32", + "1.140.6.7/32", + "1.140.6.9/32", + "1.140.6.11/32", + "1.140.6.13/32", + "1.140.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.6.1/32", + "1.140.6.3/32", + "1.140.6.5/32", + "1.140.6.7/32", + "1.140.6.9/32", + "1.140.6.11/32", + "1.140.6.13/32", + "1.140.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.140.6.2/32", + "1.140.6.4/32", + "1.140.6.6/32", + "1.140.6.8/32", + "1.140.6.10/32", + "1.140.6.12/32", + "1.140.6.14/32", + "1.140.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.6.2/32", + "1.140.6.4/32", + "1.140.6.6/32", + "1.140.6.8/32", + "1.140.6.10/32", + "1.140.6.12/32", + "1.140.6.14/32", + "1.140.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.140.8.1/32", + "1.140.8.3/32", + "1.140.8.5/32", + "1.140.8.7/32", + "1.140.8.9/32", + "1.140.8.11/32", + "1.140.8.13/32", + "1.140.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.8.1/32", + "1.140.8.3/32", + "1.140.8.5/32", + "1.140.8.7/32", + "1.140.8.9/32", + "1.140.8.11/32", + "1.140.8.13/32", + "1.140.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.140.8.2/32", + "1.140.8.4/32", + "1.140.8.6/32", + "1.140.8.8/32", + "1.140.8.10/32", + "1.140.8.12/32", + "1.140.8.14/32", + "1.140.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.140.8.2/32", + "1.140.8.4/32", + "1.140.8.6/32", + "1.140.8.8/32", + "1.140.8.10/32", + "1.140.8.12/32", + "1.140.8.14/32", + "1.140.8.16/32", + "1.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:1:TABLE:1005": { + "acl-group-id": "acl-group-1005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.144.0.1/32", + "1.144.0.3/32", + "1.144.0.5/32", + "1.144.0.7/32", + "1.144.0.9/32", + "1.144.0.11/32", + "1.144.0.13/32", + "1.144.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.0.1/32", + "1.144.0.3/32", + "1.144.0.5/32", + "1.144.0.7/32", + "1.144.0.9/32", + "1.144.0.11/32", + "1.144.0.13/32", + "1.144.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.144.0.2/32", + "1.144.0.4/32", + "1.144.0.6/32", + "1.144.0.8/32", + "1.144.0.10/32", + "1.144.0.12/32", + "1.144.0.14/32", + "1.144.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.0.2/32", + "1.144.0.4/32", + "1.144.0.6/32", + "1.144.0.8/32", + "1.144.0.10/32", + "1.144.0.12/32", + "1.144.0.14/32", + "1.144.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.144.2.1/32", + "1.144.2.3/32", + "1.144.2.5/32", + "1.144.2.7/32", + "1.144.2.9/32", + "1.144.2.11/32", + "1.144.2.13/32", + "1.144.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.2.1/32", + "1.144.2.3/32", + "1.144.2.5/32", + "1.144.2.7/32", + "1.144.2.9/32", + "1.144.2.11/32", + "1.144.2.13/32", + "1.144.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.144.2.2/32", + "1.144.2.4/32", + "1.144.2.6/32", + "1.144.2.8/32", + "1.144.2.10/32", + "1.144.2.12/32", + "1.144.2.14/32", + "1.144.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.2.2/32", + "1.144.2.4/32", + "1.144.2.6/32", + "1.144.2.8/32", + "1.144.2.10/32", + "1.144.2.12/32", + "1.144.2.14/32", + "1.144.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.144.4.1/32", + "1.144.4.3/32", + "1.144.4.5/32", + "1.144.4.7/32", + "1.144.4.9/32", + "1.144.4.11/32", + "1.144.4.13/32", + "1.144.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.4.1/32", + "1.144.4.3/32", + "1.144.4.5/32", + "1.144.4.7/32", + "1.144.4.9/32", + "1.144.4.11/32", + "1.144.4.13/32", + "1.144.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.144.4.2/32", + "1.144.4.4/32", + "1.144.4.6/32", + "1.144.4.8/32", + "1.144.4.10/32", + "1.144.4.12/32", + "1.144.4.14/32", + "1.144.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.4.2/32", + "1.144.4.4/32", + "1.144.4.6/32", + "1.144.4.8/32", + "1.144.4.10/32", + "1.144.4.12/32", + "1.144.4.14/32", + "1.144.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.144.6.1/32", + "1.144.6.3/32", + "1.144.6.5/32", + "1.144.6.7/32", + "1.144.6.9/32", + "1.144.6.11/32", + "1.144.6.13/32", + "1.144.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.6.1/32", + "1.144.6.3/32", + "1.144.6.5/32", + "1.144.6.7/32", + "1.144.6.9/32", + "1.144.6.11/32", + "1.144.6.13/32", + "1.144.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.144.6.2/32", + "1.144.6.4/32", + "1.144.6.6/32", + "1.144.6.8/32", + "1.144.6.10/32", + "1.144.6.12/32", + "1.144.6.14/32", + "1.144.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.6.2/32", + "1.144.6.4/32", + "1.144.6.6/32", + "1.144.6.8/32", + "1.144.6.10/32", + "1.144.6.12/32", + "1.144.6.14/32", + "1.144.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.144.8.1/32", + "1.144.8.3/32", + "1.144.8.5/32", + "1.144.8.7/32", + "1.144.8.9/32", + "1.144.8.11/32", + "1.144.8.13/32", + "1.144.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.8.1/32", + "1.144.8.3/32", + "1.144.8.5/32", + "1.144.8.7/32", + "1.144.8.9/32", + "1.144.8.11/32", + "1.144.8.13/32", + "1.144.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.144.8.2/32", + "1.144.8.4/32", + "1.144.8.6/32", + "1.144.8.8/32", + "1.144.8.10/32", + "1.144.8.12/32", + "1.144.8.14/32", + "1.144.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.144.8.2/32", + "1.144.8.4/32", + "1.144.8.6/32", + "1.144.8.8/32", + "1.144.8.10/32", + "1.144.8.12/32", + "1.144.8.14/32", + "1.144.8.16/32", + "1.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:1:TABLE:1006": { + "acl-group-id": "acl-group-1006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.148.0.1/32", + "1.148.0.3/32", + "1.148.0.5/32", + "1.148.0.7/32", + "1.148.0.9/32", + "1.148.0.11/32", + "1.148.0.13/32", + "1.148.0.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.0.1/32", + "1.148.0.3/32", + "1.148.0.5/32", + "1.148.0.7/32", + "1.148.0.9/32", + "1.148.0.11/32", + "1.148.0.13/32", + "1.148.0.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.148.0.2/32", + "1.148.0.4/32", + "1.148.0.6/32", + "1.148.0.8/32", + "1.148.0.10/32", + "1.148.0.12/32", + "1.148.0.14/32", + "1.148.0.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.0.2/32", + "1.148.0.4/32", + "1.148.0.6/32", + "1.148.0.8/32", + "1.148.0.10/32", + "1.148.0.12/32", + "1.148.0.14/32", + "1.148.0.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.148.2.1/32", + "1.148.2.3/32", + "1.148.2.5/32", + "1.148.2.7/32", + "1.148.2.9/32", + "1.148.2.11/32", + "1.148.2.13/32", + "1.148.2.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.2.1/32", + "1.148.2.3/32", + "1.148.2.5/32", + "1.148.2.7/32", + "1.148.2.9/32", + "1.148.2.11/32", + "1.148.2.13/32", + "1.148.2.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.148.2.2/32", + "1.148.2.4/32", + "1.148.2.6/32", + "1.148.2.8/32", + "1.148.2.10/32", + "1.148.2.12/32", + "1.148.2.14/32", + "1.148.2.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.2.2/32", + "1.148.2.4/32", + "1.148.2.6/32", + "1.148.2.8/32", + "1.148.2.10/32", + "1.148.2.12/32", + "1.148.2.14/32", + "1.148.2.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.148.4.1/32", + "1.148.4.3/32", + "1.148.4.5/32", + "1.148.4.7/32", + "1.148.4.9/32", + "1.148.4.11/32", + "1.148.4.13/32", + "1.148.4.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.4.1/32", + "1.148.4.3/32", + "1.148.4.5/32", + "1.148.4.7/32", + "1.148.4.9/32", + "1.148.4.11/32", + "1.148.4.13/32", + "1.148.4.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.148.4.2/32", + "1.148.4.4/32", + "1.148.4.6/32", + "1.148.4.8/32", + "1.148.4.10/32", + "1.148.4.12/32", + "1.148.4.14/32", + "1.148.4.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.4.2/32", + "1.148.4.4/32", + "1.148.4.6/32", + "1.148.4.8/32", + "1.148.4.10/32", + "1.148.4.12/32", + "1.148.4.14/32", + "1.148.4.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.148.6.1/32", + "1.148.6.3/32", + "1.148.6.5/32", + "1.148.6.7/32", + "1.148.6.9/32", + "1.148.6.11/32", + "1.148.6.13/32", + "1.148.6.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.6.1/32", + "1.148.6.3/32", + "1.148.6.5/32", + "1.148.6.7/32", + "1.148.6.9/32", + "1.148.6.11/32", + "1.148.6.13/32", + "1.148.6.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.148.6.2/32", + "1.148.6.4/32", + "1.148.6.6/32", + "1.148.6.8/32", + "1.148.6.10/32", + "1.148.6.12/32", + "1.148.6.14/32", + "1.148.6.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.6.2/32", + "1.148.6.4/32", + "1.148.6.6/32", + "1.148.6.8/32", + "1.148.6.10/32", + "1.148.6.12/32", + "1.148.6.14/32", + "1.148.6.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "1.148.8.1/32", + "1.148.8.3/32", + "1.148.8.5/32", + "1.148.8.7/32", + "1.148.8.9/32", + "1.148.8.11/32", + "1.148.8.13/32", + "1.148.8.15/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.8.1/32", + "1.148.8.3/32", + "1.148.8.5/32", + "1.148.8.7/32", + "1.148.8.9/32", + "1.148.8.11/32", + "1.148.8.13/32", + "1.148.8.15/32", + "1.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "1.148.8.2/32", + "1.148.8.4/32", + "1.148.8.6/32", + "1.148.8.8/32", + "1.148.8.10/32", + "1.148.8.12/32", + "1.148.8.14/32", + "1.148.8.16/32", + "1.1.0.1/32" + ], + "dst_addrs": [ + "1.148.8.2/32", + "1.148.8.4/32", + "1.148.8.6/32", + "1.148.8.8/32", + "1.148.8.10/32", + "1.148.8.12/32", + "1.148.8.14/32", + "1.148.8.16/32", + "1.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "1.1.0.1/32", + "1.128.0.1/14", + "1.132.0.1/14", + "1.136.0.1/14" + ], + "dst_addrs": [ + "1.1.0.1/32", + "1.128.0.1/14", + "1.132.0.1/14", + "1.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2001": { + "acl-group-id": "acl-group-2001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.128.0.1/32", + "2.128.0.3/32", + "2.128.0.5/32", + "2.128.0.7/32", + "2.128.0.9/32", + "2.128.0.11/32", + "2.128.0.13/32", + "2.128.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.0.1/32", + "2.128.0.3/32", + "2.128.0.5/32", + "2.128.0.7/32", + "2.128.0.9/32", + "2.128.0.11/32", + "2.128.0.13/32", + "2.128.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.128.0.2/32", + "2.128.0.4/32", + "2.128.0.6/32", + "2.128.0.8/32", + "2.128.0.10/32", + "2.128.0.12/32", + "2.128.0.14/32", + "2.128.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.0.2/32", + "2.128.0.4/32", + "2.128.0.6/32", + "2.128.0.8/32", + "2.128.0.10/32", + "2.128.0.12/32", + "2.128.0.14/32", + "2.128.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.128.2.1/32", + "2.128.2.3/32", + "2.128.2.5/32", + "2.128.2.7/32", + "2.128.2.9/32", + "2.128.2.11/32", + "2.128.2.13/32", + "2.128.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.2.1/32", + "2.128.2.3/32", + "2.128.2.5/32", + "2.128.2.7/32", + "2.128.2.9/32", + "2.128.2.11/32", + "2.128.2.13/32", + "2.128.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.128.2.2/32", + "2.128.2.4/32", + "2.128.2.6/32", + "2.128.2.8/32", + "2.128.2.10/32", + "2.128.2.12/32", + "2.128.2.14/32", + "2.128.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.2.2/32", + "2.128.2.4/32", + "2.128.2.6/32", + "2.128.2.8/32", + "2.128.2.10/32", + "2.128.2.12/32", + "2.128.2.14/32", + "2.128.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.128.4.1/32", + "2.128.4.3/32", + "2.128.4.5/32", + "2.128.4.7/32", + "2.128.4.9/32", + "2.128.4.11/32", + "2.128.4.13/32", + "2.128.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.4.1/32", + "2.128.4.3/32", + "2.128.4.5/32", + "2.128.4.7/32", + "2.128.4.9/32", + "2.128.4.11/32", + "2.128.4.13/32", + "2.128.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.128.4.2/32", + "2.128.4.4/32", + "2.128.4.6/32", + "2.128.4.8/32", + "2.128.4.10/32", + "2.128.4.12/32", + "2.128.4.14/32", + "2.128.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.4.2/32", + "2.128.4.4/32", + "2.128.4.6/32", + "2.128.4.8/32", + "2.128.4.10/32", + "2.128.4.12/32", + "2.128.4.14/32", + "2.128.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.128.6.1/32", + "2.128.6.3/32", + "2.128.6.5/32", + "2.128.6.7/32", + "2.128.6.9/32", + "2.128.6.11/32", + "2.128.6.13/32", + "2.128.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.6.1/32", + "2.128.6.3/32", + "2.128.6.5/32", + "2.128.6.7/32", + "2.128.6.9/32", + "2.128.6.11/32", + "2.128.6.13/32", + "2.128.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.128.6.2/32", + "2.128.6.4/32", + "2.128.6.6/32", + "2.128.6.8/32", + "2.128.6.10/32", + "2.128.6.12/32", + "2.128.6.14/32", + "2.128.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.6.2/32", + "2.128.6.4/32", + "2.128.6.6/32", + "2.128.6.8/32", + "2.128.6.10/32", + "2.128.6.12/32", + "2.128.6.14/32", + "2.128.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.128.8.1/32", + "2.128.8.3/32", + "2.128.8.5/32", + "2.128.8.7/32", + "2.128.8.9/32", + "2.128.8.11/32", + "2.128.8.13/32", + "2.128.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.8.1/32", + "2.128.8.3/32", + "2.128.8.5/32", + "2.128.8.7/32", + "2.128.8.9/32", + "2.128.8.11/32", + "2.128.8.13/32", + "2.128.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.128.8.2/32", + "2.128.8.4/32", + "2.128.8.6/32", + "2.128.8.8/32", + "2.128.8.10/32", + "2.128.8.12/32", + "2.128.8.14/32", + "2.128.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.128.8.2/32", + "2.128.8.4/32", + "2.128.8.6/32", + "2.128.8.8/32", + "2.128.8.10/32", + "2.128.8.12/32", + "2.128.8.14/32", + "2.128.8.16/32", + "2.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2002": { + "acl-group-id": "acl-group-2002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.132.0.1/32", + "2.132.0.3/32", + "2.132.0.5/32", + "2.132.0.7/32", + "2.132.0.9/32", + "2.132.0.11/32", + "2.132.0.13/32", + "2.132.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.0.1/32", + "2.132.0.3/32", + "2.132.0.5/32", + "2.132.0.7/32", + "2.132.0.9/32", + "2.132.0.11/32", + "2.132.0.13/32", + "2.132.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.132.0.2/32", + "2.132.0.4/32", + "2.132.0.6/32", + "2.132.0.8/32", + "2.132.0.10/32", + "2.132.0.12/32", + "2.132.0.14/32", + "2.132.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.0.2/32", + "2.132.0.4/32", + "2.132.0.6/32", + "2.132.0.8/32", + "2.132.0.10/32", + "2.132.0.12/32", + "2.132.0.14/32", + "2.132.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.132.2.1/32", + "2.132.2.3/32", + "2.132.2.5/32", + "2.132.2.7/32", + "2.132.2.9/32", + "2.132.2.11/32", + "2.132.2.13/32", + "2.132.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.2.1/32", + "2.132.2.3/32", + "2.132.2.5/32", + "2.132.2.7/32", + "2.132.2.9/32", + "2.132.2.11/32", + "2.132.2.13/32", + "2.132.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.132.2.2/32", + "2.132.2.4/32", + "2.132.2.6/32", + "2.132.2.8/32", + "2.132.2.10/32", + "2.132.2.12/32", + "2.132.2.14/32", + "2.132.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.2.2/32", + "2.132.2.4/32", + "2.132.2.6/32", + "2.132.2.8/32", + "2.132.2.10/32", + "2.132.2.12/32", + "2.132.2.14/32", + "2.132.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.132.4.1/32", + "2.132.4.3/32", + "2.132.4.5/32", + "2.132.4.7/32", + "2.132.4.9/32", + "2.132.4.11/32", + "2.132.4.13/32", + "2.132.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.4.1/32", + "2.132.4.3/32", + "2.132.4.5/32", + "2.132.4.7/32", + "2.132.4.9/32", + "2.132.4.11/32", + "2.132.4.13/32", + "2.132.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.132.4.2/32", + "2.132.4.4/32", + "2.132.4.6/32", + "2.132.4.8/32", + "2.132.4.10/32", + "2.132.4.12/32", + "2.132.4.14/32", + "2.132.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.4.2/32", + "2.132.4.4/32", + "2.132.4.6/32", + "2.132.4.8/32", + "2.132.4.10/32", + "2.132.4.12/32", + "2.132.4.14/32", + "2.132.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.132.6.1/32", + "2.132.6.3/32", + "2.132.6.5/32", + "2.132.6.7/32", + "2.132.6.9/32", + "2.132.6.11/32", + "2.132.6.13/32", + "2.132.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.6.1/32", + "2.132.6.3/32", + "2.132.6.5/32", + "2.132.6.7/32", + "2.132.6.9/32", + "2.132.6.11/32", + "2.132.6.13/32", + "2.132.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.132.6.2/32", + "2.132.6.4/32", + "2.132.6.6/32", + "2.132.6.8/32", + "2.132.6.10/32", + "2.132.6.12/32", + "2.132.6.14/32", + "2.132.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.6.2/32", + "2.132.6.4/32", + "2.132.6.6/32", + "2.132.6.8/32", + "2.132.6.10/32", + "2.132.6.12/32", + "2.132.6.14/32", + "2.132.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.132.8.1/32", + "2.132.8.3/32", + "2.132.8.5/32", + "2.132.8.7/32", + "2.132.8.9/32", + "2.132.8.11/32", + "2.132.8.13/32", + "2.132.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.8.1/32", + "2.132.8.3/32", + "2.132.8.5/32", + "2.132.8.7/32", + "2.132.8.9/32", + "2.132.8.11/32", + "2.132.8.13/32", + "2.132.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.132.8.2/32", + "2.132.8.4/32", + "2.132.8.6/32", + "2.132.8.8/32", + "2.132.8.10/32", + "2.132.8.12/32", + "2.132.8.14/32", + "2.132.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.132.8.2/32", + "2.132.8.4/32", + "2.132.8.6/32", + "2.132.8.8/32", + "2.132.8.10/32", + "2.132.8.12/32", + "2.132.8.14/32", + "2.132.8.16/32", + "2.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2003": { + "acl-group-id": "acl-group-2003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.136.0.1/32", + "2.136.0.3/32", + "2.136.0.5/32", + "2.136.0.7/32", + "2.136.0.9/32", + "2.136.0.11/32", + "2.136.0.13/32", + "2.136.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.0.1/32", + "2.136.0.3/32", + "2.136.0.5/32", + "2.136.0.7/32", + "2.136.0.9/32", + "2.136.0.11/32", + "2.136.0.13/32", + "2.136.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.136.0.2/32", + "2.136.0.4/32", + "2.136.0.6/32", + "2.136.0.8/32", + "2.136.0.10/32", + "2.136.0.12/32", + "2.136.0.14/32", + "2.136.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.0.2/32", + "2.136.0.4/32", + "2.136.0.6/32", + "2.136.0.8/32", + "2.136.0.10/32", + "2.136.0.12/32", + "2.136.0.14/32", + "2.136.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.136.2.1/32", + "2.136.2.3/32", + "2.136.2.5/32", + "2.136.2.7/32", + "2.136.2.9/32", + "2.136.2.11/32", + "2.136.2.13/32", + "2.136.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.2.1/32", + "2.136.2.3/32", + "2.136.2.5/32", + "2.136.2.7/32", + "2.136.2.9/32", + "2.136.2.11/32", + "2.136.2.13/32", + "2.136.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.136.2.2/32", + "2.136.2.4/32", + "2.136.2.6/32", + "2.136.2.8/32", + "2.136.2.10/32", + "2.136.2.12/32", + "2.136.2.14/32", + "2.136.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.2.2/32", + "2.136.2.4/32", + "2.136.2.6/32", + "2.136.2.8/32", + "2.136.2.10/32", + "2.136.2.12/32", + "2.136.2.14/32", + "2.136.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.136.4.1/32", + "2.136.4.3/32", + "2.136.4.5/32", + "2.136.4.7/32", + "2.136.4.9/32", + "2.136.4.11/32", + "2.136.4.13/32", + "2.136.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.4.1/32", + "2.136.4.3/32", + "2.136.4.5/32", + "2.136.4.7/32", + "2.136.4.9/32", + "2.136.4.11/32", + "2.136.4.13/32", + "2.136.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.136.4.2/32", + "2.136.4.4/32", + "2.136.4.6/32", + "2.136.4.8/32", + "2.136.4.10/32", + "2.136.4.12/32", + "2.136.4.14/32", + "2.136.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.4.2/32", + "2.136.4.4/32", + "2.136.4.6/32", + "2.136.4.8/32", + "2.136.4.10/32", + "2.136.4.12/32", + "2.136.4.14/32", + "2.136.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.136.6.1/32", + "2.136.6.3/32", + "2.136.6.5/32", + "2.136.6.7/32", + "2.136.6.9/32", + "2.136.6.11/32", + "2.136.6.13/32", + "2.136.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.6.1/32", + "2.136.6.3/32", + "2.136.6.5/32", + "2.136.6.7/32", + "2.136.6.9/32", + "2.136.6.11/32", + "2.136.6.13/32", + "2.136.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.136.6.2/32", + "2.136.6.4/32", + "2.136.6.6/32", + "2.136.6.8/32", + "2.136.6.10/32", + "2.136.6.12/32", + "2.136.6.14/32", + "2.136.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.6.2/32", + "2.136.6.4/32", + "2.136.6.6/32", + "2.136.6.8/32", + "2.136.6.10/32", + "2.136.6.12/32", + "2.136.6.14/32", + "2.136.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.136.8.1/32", + "2.136.8.3/32", + "2.136.8.5/32", + "2.136.8.7/32", + "2.136.8.9/32", + "2.136.8.11/32", + "2.136.8.13/32", + "2.136.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.8.1/32", + "2.136.8.3/32", + "2.136.8.5/32", + "2.136.8.7/32", + "2.136.8.9/32", + "2.136.8.11/32", + "2.136.8.13/32", + "2.136.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.136.8.2/32", + "2.136.8.4/32", + "2.136.8.6/32", + "2.136.8.8/32", + "2.136.8.10/32", + "2.136.8.12/32", + "2.136.8.14/32", + "2.136.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.136.8.2/32", + "2.136.8.4/32", + "2.136.8.6/32", + "2.136.8.8/32", + "2.136.8.10/32", + "2.136.8.12/32", + "2.136.8.14/32", + "2.136.8.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "2.1.0.1/32", + "2.140.0.1/14", + "2.144.0.1/14", + "2.148.0.1/14" + ], + "dst_addrs": [ + "2.1.0.1/32", + "2.140.0.1/14", + "2.144.0.1/14", + "2.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2004": { + "acl-group-id": "acl-group-2004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.140.0.1/32", + "2.140.0.3/32", + "2.140.0.5/32", + "2.140.0.7/32", + "2.140.0.9/32", + "2.140.0.11/32", + "2.140.0.13/32", + "2.140.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.0.1/32", + "2.140.0.3/32", + "2.140.0.5/32", + "2.140.0.7/32", + "2.140.0.9/32", + "2.140.0.11/32", + "2.140.0.13/32", + "2.140.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.140.0.2/32", + "2.140.0.4/32", + "2.140.0.6/32", + "2.140.0.8/32", + "2.140.0.10/32", + "2.140.0.12/32", + "2.140.0.14/32", + "2.140.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.0.2/32", + "2.140.0.4/32", + "2.140.0.6/32", + "2.140.0.8/32", + "2.140.0.10/32", + "2.140.0.12/32", + "2.140.0.14/32", + "2.140.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.140.2.1/32", + "2.140.2.3/32", + "2.140.2.5/32", + "2.140.2.7/32", + "2.140.2.9/32", + "2.140.2.11/32", + "2.140.2.13/32", + "2.140.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.2.1/32", + "2.140.2.3/32", + "2.140.2.5/32", + "2.140.2.7/32", + "2.140.2.9/32", + "2.140.2.11/32", + "2.140.2.13/32", + "2.140.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.140.2.2/32", + "2.140.2.4/32", + "2.140.2.6/32", + "2.140.2.8/32", + "2.140.2.10/32", + "2.140.2.12/32", + "2.140.2.14/32", + "2.140.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.2.2/32", + "2.140.2.4/32", + "2.140.2.6/32", + "2.140.2.8/32", + "2.140.2.10/32", + "2.140.2.12/32", + "2.140.2.14/32", + "2.140.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.140.4.1/32", + "2.140.4.3/32", + "2.140.4.5/32", + "2.140.4.7/32", + "2.140.4.9/32", + "2.140.4.11/32", + "2.140.4.13/32", + "2.140.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.4.1/32", + "2.140.4.3/32", + "2.140.4.5/32", + "2.140.4.7/32", + "2.140.4.9/32", + "2.140.4.11/32", + "2.140.4.13/32", + "2.140.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.140.4.2/32", + "2.140.4.4/32", + "2.140.4.6/32", + "2.140.4.8/32", + "2.140.4.10/32", + "2.140.4.12/32", + "2.140.4.14/32", + "2.140.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.4.2/32", + "2.140.4.4/32", + "2.140.4.6/32", + "2.140.4.8/32", + "2.140.4.10/32", + "2.140.4.12/32", + "2.140.4.14/32", + "2.140.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.140.6.1/32", + "2.140.6.3/32", + "2.140.6.5/32", + "2.140.6.7/32", + "2.140.6.9/32", + "2.140.6.11/32", + "2.140.6.13/32", + "2.140.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.6.1/32", + "2.140.6.3/32", + "2.140.6.5/32", + "2.140.6.7/32", + "2.140.6.9/32", + "2.140.6.11/32", + "2.140.6.13/32", + "2.140.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.140.6.2/32", + "2.140.6.4/32", + "2.140.6.6/32", + "2.140.6.8/32", + "2.140.6.10/32", + "2.140.6.12/32", + "2.140.6.14/32", + "2.140.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.6.2/32", + "2.140.6.4/32", + "2.140.6.6/32", + "2.140.6.8/32", + "2.140.6.10/32", + "2.140.6.12/32", + "2.140.6.14/32", + "2.140.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.140.8.1/32", + "2.140.8.3/32", + "2.140.8.5/32", + "2.140.8.7/32", + "2.140.8.9/32", + "2.140.8.11/32", + "2.140.8.13/32", + "2.140.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.8.1/32", + "2.140.8.3/32", + "2.140.8.5/32", + "2.140.8.7/32", + "2.140.8.9/32", + "2.140.8.11/32", + "2.140.8.13/32", + "2.140.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.140.8.2/32", + "2.140.8.4/32", + "2.140.8.6/32", + "2.140.8.8/32", + "2.140.8.10/32", + "2.140.8.12/32", + "2.140.8.14/32", + "2.140.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.140.8.2/32", + "2.140.8.4/32", + "2.140.8.6/32", + "2.140.8.8/32", + "2.140.8.10/32", + "2.140.8.12/32", + "2.140.8.14/32", + "2.140.8.16/32", + "2.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2005": { + "acl-group-id": "acl-group-2005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.144.0.1/32", + "2.144.0.3/32", + "2.144.0.5/32", + "2.144.0.7/32", + "2.144.0.9/32", + "2.144.0.11/32", + "2.144.0.13/32", + "2.144.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.0.1/32", + "2.144.0.3/32", + "2.144.0.5/32", + "2.144.0.7/32", + "2.144.0.9/32", + "2.144.0.11/32", + "2.144.0.13/32", + "2.144.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.144.0.2/32", + "2.144.0.4/32", + "2.144.0.6/32", + "2.144.0.8/32", + "2.144.0.10/32", + "2.144.0.12/32", + "2.144.0.14/32", + "2.144.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.0.2/32", + "2.144.0.4/32", + "2.144.0.6/32", + "2.144.0.8/32", + "2.144.0.10/32", + "2.144.0.12/32", + "2.144.0.14/32", + "2.144.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.144.2.1/32", + "2.144.2.3/32", + "2.144.2.5/32", + "2.144.2.7/32", + "2.144.2.9/32", + "2.144.2.11/32", + "2.144.2.13/32", + "2.144.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.2.1/32", + "2.144.2.3/32", + "2.144.2.5/32", + "2.144.2.7/32", + "2.144.2.9/32", + "2.144.2.11/32", + "2.144.2.13/32", + "2.144.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.144.2.2/32", + "2.144.2.4/32", + "2.144.2.6/32", + "2.144.2.8/32", + "2.144.2.10/32", + "2.144.2.12/32", + "2.144.2.14/32", + "2.144.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.2.2/32", + "2.144.2.4/32", + "2.144.2.6/32", + "2.144.2.8/32", + "2.144.2.10/32", + "2.144.2.12/32", + "2.144.2.14/32", + "2.144.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.144.4.1/32", + "2.144.4.3/32", + "2.144.4.5/32", + "2.144.4.7/32", + "2.144.4.9/32", + "2.144.4.11/32", + "2.144.4.13/32", + "2.144.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.4.1/32", + "2.144.4.3/32", + "2.144.4.5/32", + "2.144.4.7/32", + "2.144.4.9/32", + "2.144.4.11/32", + "2.144.4.13/32", + "2.144.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.144.4.2/32", + "2.144.4.4/32", + "2.144.4.6/32", + "2.144.4.8/32", + "2.144.4.10/32", + "2.144.4.12/32", + "2.144.4.14/32", + "2.144.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.4.2/32", + "2.144.4.4/32", + "2.144.4.6/32", + "2.144.4.8/32", + "2.144.4.10/32", + "2.144.4.12/32", + "2.144.4.14/32", + "2.144.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.144.6.1/32", + "2.144.6.3/32", + "2.144.6.5/32", + "2.144.6.7/32", + "2.144.6.9/32", + "2.144.6.11/32", + "2.144.6.13/32", + "2.144.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.6.1/32", + "2.144.6.3/32", + "2.144.6.5/32", + "2.144.6.7/32", + "2.144.6.9/32", + "2.144.6.11/32", + "2.144.6.13/32", + "2.144.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.144.6.2/32", + "2.144.6.4/32", + "2.144.6.6/32", + "2.144.6.8/32", + "2.144.6.10/32", + "2.144.6.12/32", + "2.144.6.14/32", + "2.144.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.6.2/32", + "2.144.6.4/32", + "2.144.6.6/32", + "2.144.6.8/32", + "2.144.6.10/32", + "2.144.6.12/32", + "2.144.6.14/32", + "2.144.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.144.8.1/32", + "2.144.8.3/32", + "2.144.8.5/32", + "2.144.8.7/32", + "2.144.8.9/32", + "2.144.8.11/32", + "2.144.8.13/32", + "2.144.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.8.1/32", + "2.144.8.3/32", + "2.144.8.5/32", + "2.144.8.7/32", + "2.144.8.9/32", + "2.144.8.11/32", + "2.144.8.13/32", + "2.144.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.144.8.2/32", + "2.144.8.4/32", + "2.144.8.6/32", + "2.144.8.8/32", + "2.144.8.10/32", + "2.144.8.12/32", + "2.144.8.14/32", + "2.144.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.144.8.2/32", + "2.144.8.4/32", + "2.144.8.6/32", + "2.144.8.8/32", + "2.144.8.10/32", + "2.144.8.12/32", + "2.144.8.14/32", + "2.144.8.16/32", + "2.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:2:TABLE:2006": { + "acl-group-id": "acl-group-2006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.148.0.1/32", + "2.148.0.3/32", + "2.148.0.5/32", + "2.148.0.7/32", + "2.148.0.9/32", + "2.148.0.11/32", + "2.148.0.13/32", + "2.148.0.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.0.1/32", + "2.148.0.3/32", + "2.148.0.5/32", + "2.148.0.7/32", + "2.148.0.9/32", + "2.148.0.11/32", + "2.148.0.13/32", + "2.148.0.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.148.0.2/32", + "2.148.0.4/32", + "2.148.0.6/32", + "2.148.0.8/32", + "2.148.0.10/32", + "2.148.0.12/32", + "2.148.0.14/32", + "2.148.0.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.0.2/32", + "2.148.0.4/32", + "2.148.0.6/32", + "2.148.0.8/32", + "2.148.0.10/32", + "2.148.0.12/32", + "2.148.0.14/32", + "2.148.0.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.148.2.1/32", + "2.148.2.3/32", + "2.148.2.5/32", + "2.148.2.7/32", + "2.148.2.9/32", + "2.148.2.11/32", + "2.148.2.13/32", + "2.148.2.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.2.1/32", + "2.148.2.3/32", + "2.148.2.5/32", + "2.148.2.7/32", + "2.148.2.9/32", + "2.148.2.11/32", + "2.148.2.13/32", + "2.148.2.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.148.2.2/32", + "2.148.2.4/32", + "2.148.2.6/32", + "2.148.2.8/32", + "2.148.2.10/32", + "2.148.2.12/32", + "2.148.2.14/32", + "2.148.2.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.2.2/32", + "2.148.2.4/32", + "2.148.2.6/32", + "2.148.2.8/32", + "2.148.2.10/32", + "2.148.2.12/32", + "2.148.2.14/32", + "2.148.2.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.148.4.1/32", + "2.148.4.3/32", + "2.148.4.5/32", + "2.148.4.7/32", + "2.148.4.9/32", + "2.148.4.11/32", + "2.148.4.13/32", + "2.148.4.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.4.1/32", + "2.148.4.3/32", + "2.148.4.5/32", + "2.148.4.7/32", + "2.148.4.9/32", + "2.148.4.11/32", + "2.148.4.13/32", + "2.148.4.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.148.4.2/32", + "2.148.4.4/32", + "2.148.4.6/32", + "2.148.4.8/32", + "2.148.4.10/32", + "2.148.4.12/32", + "2.148.4.14/32", + "2.148.4.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.4.2/32", + "2.148.4.4/32", + "2.148.4.6/32", + "2.148.4.8/32", + "2.148.4.10/32", + "2.148.4.12/32", + "2.148.4.14/32", + "2.148.4.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.148.6.1/32", + "2.148.6.3/32", + "2.148.6.5/32", + "2.148.6.7/32", + "2.148.6.9/32", + "2.148.6.11/32", + "2.148.6.13/32", + "2.148.6.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.6.1/32", + "2.148.6.3/32", + "2.148.6.5/32", + "2.148.6.7/32", + "2.148.6.9/32", + "2.148.6.11/32", + "2.148.6.13/32", + "2.148.6.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.148.6.2/32", + "2.148.6.4/32", + "2.148.6.6/32", + "2.148.6.8/32", + "2.148.6.10/32", + "2.148.6.12/32", + "2.148.6.14/32", + "2.148.6.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.6.2/32", + "2.148.6.4/32", + "2.148.6.6/32", + "2.148.6.8/32", + "2.148.6.10/32", + "2.148.6.12/32", + "2.148.6.14/32", + "2.148.6.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "2.148.8.1/32", + "2.148.8.3/32", + "2.148.8.5/32", + "2.148.8.7/32", + "2.148.8.9/32", + "2.148.8.11/32", + "2.148.8.13/32", + "2.148.8.15/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.8.1/32", + "2.148.8.3/32", + "2.148.8.5/32", + "2.148.8.7/32", + "2.148.8.9/32", + "2.148.8.11/32", + "2.148.8.13/32", + "2.148.8.15/32", + "2.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "2.148.8.2/32", + "2.148.8.4/32", + "2.148.8.6/32", + "2.148.8.8/32", + "2.148.8.10/32", + "2.148.8.12/32", + "2.148.8.14/32", + "2.148.8.16/32", + "2.1.0.1/32" + ], + "dst_addrs": [ + "2.148.8.2/32", + "2.148.8.4/32", + "2.148.8.6/32", + "2.148.8.8/32", + "2.148.8.10/32", + "2.148.8.12/32", + "2.148.8.14/32", + "2.148.8.16/32", + "2.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "2.1.0.1/32", + "2.128.0.1/14", + "2.132.0.1/14", + "2.136.0.1/14" + ], + "dst_addrs": [ + "2.1.0.1/32", + "2.128.0.1/14", + "2.132.0.1/14", + "2.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3001": { + "acl-group-id": "acl-group-3001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.128.0.1/32", + "3.128.0.3/32", + "3.128.0.5/32", + "3.128.0.7/32", + "3.128.0.9/32", + "3.128.0.11/32", + "3.128.0.13/32", + "3.128.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.0.1/32", + "3.128.0.3/32", + "3.128.0.5/32", + "3.128.0.7/32", + "3.128.0.9/32", + "3.128.0.11/32", + "3.128.0.13/32", + "3.128.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.128.0.2/32", + "3.128.0.4/32", + "3.128.0.6/32", + "3.128.0.8/32", + "3.128.0.10/32", + "3.128.0.12/32", + "3.128.0.14/32", + "3.128.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.0.2/32", + "3.128.0.4/32", + "3.128.0.6/32", + "3.128.0.8/32", + "3.128.0.10/32", + "3.128.0.12/32", + "3.128.0.14/32", + "3.128.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.128.2.1/32", + "3.128.2.3/32", + "3.128.2.5/32", + "3.128.2.7/32", + "3.128.2.9/32", + "3.128.2.11/32", + "3.128.2.13/32", + "3.128.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.2.1/32", + "3.128.2.3/32", + "3.128.2.5/32", + "3.128.2.7/32", + "3.128.2.9/32", + "3.128.2.11/32", + "3.128.2.13/32", + "3.128.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.128.2.2/32", + "3.128.2.4/32", + "3.128.2.6/32", + "3.128.2.8/32", + "3.128.2.10/32", + "3.128.2.12/32", + "3.128.2.14/32", + "3.128.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.2.2/32", + "3.128.2.4/32", + "3.128.2.6/32", + "3.128.2.8/32", + "3.128.2.10/32", + "3.128.2.12/32", + "3.128.2.14/32", + "3.128.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.128.4.1/32", + "3.128.4.3/32", + "3.128.4.5/32", + "3.128.4.7/32", + "3.128.4.9/32", + "3.128.4.11/32", + "3.128.4.13/32", + "3.128.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.4.1/32", + "3.128.4.3/32", + "3.128.4.5/32", + "3.128.4.7/32", + "3.128.4.9/32", + "3.128.4.11/32", + "3.128.4.13/32", + "3.128.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.128.4.2/32", + "3.128.4.4/32", + "3.128.4.6/32", + "3.128.4.8/32", + "3.128.4.10/32", + "3.128.4.12/32", + "3.128.4.14/32", + "3.128.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.4.2/32", + "3.128.4.4/32", + "3.128.4.6/32", + "3.128.4.8/32", + "3.128.4.10/32", + "3.128.4.12/32", + "3.128.4.14/32", + "3.128.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.128.6.1/32", + "3.128.6.3/32", + "3.128.6.5/32", + "3.128.6.7/32", + "3.128.6.9/32", + "3.128.6.11/32", + "3.128.6.13/32", + "3.128.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.6.1/32", + "3.128.6.3/32", + "3.128.6.5/32", + "3.128.6.7/32", + "3.128.6.9/32", + "3.128.6.11/32", + "3.128.6.13/32", + "3.128.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.128.6.2/32", + "3.128.6.4/32", + "3.128.6.6/32", + "3.128.6.8/32", + "3.128.6.10/32", + "3.128.6.12/32", + "3.128.6.14/32", + "3.128.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.6.2/32", + "3.128.6.4/32", + "3.128.6.6/32", + "3.128.6.8/32", + "3.128.6.10/32", + "3.128.6.12/32", + "3.128.6.14/32", + "3.128.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.128.8.1/32", + "3.128.8.3/32", + "3.128.8.5/32", + "3.128.8.7/32", + "3.128.8.9/32", + "3.128.8.11/32", + "3.128.8.13/32", + "3.128.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.8.1/32", + "3.128.8.3/32", + "3.128.8.5/32", + "3.128.8.7/32", + "3.128.8.9/32", + "3.128.8.11/32", + "3.128.8.13/32", + "3.128.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.128.8.2/32", + "3.128.8.4/32", + "3.128.8.6/32", + "3.128.8.8/32", + "3.128.8.10/32", + "3.128.8.12/32", + "3.128.8.14/32", + "3.128.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.128.8.2/32", + "3.128.8.4/32", + "3.128.8.6/32", + "3.128.8.8/32", + "3.128.8.10/32", + "3.128.8.12/32", + "3.128.8.14/32", + "3.128.8.16/32", + "3.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3002": { + "acl-group-id": "acl-group-3002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.132.0.1/32", + "3.132.0.3/32", + "3.132.0.5/32", + "3.132.0.7/32", + "3.132.0.9/32", + "3.132.0.11/32", + "3.132.0.13/32", + "3.132.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.0.1/32", + "3.132.0.3/32", + "3.132.0.5/32", + "3.132.0.7/32", + "3.132.0.9/32", + "3.132.0.11/32", + "3.132.0.13/32", + "3.132.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.132.0.2/32", + "3.132.0.4/32", + "3.132.0.6/32", + "3.132.0.8/32", + "3.132.0.10/32", + "3.132.0.12/32", + "3.132.0.14/32", + "3.132.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.0.2/32", + "3.132.0.4/32", + "3.132.0.6/32", + "3.132.0.8/32", + "3.132.0.10/32", + "3.132.0.12/32", + "3.132.0.14/32", + "3.132.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.132.2.1/32", + "3.132.2.3/32", + "3.132.2.5/32", + "3.132.2.7/32", + "3.132.2.9/32", + "3.132.2.11/32", + "3.132.2.13/32", + "3.132.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.2.1/32", + "3.132.2.3/32", + "3.132.2.5/32", + "3.132.2.7/32", + "3.132.2.9/32", + "3.132.2.11/32", + "3.132.2.13/32", + "3.132.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.132.2.2/32", + "3.132.2.4/32", + "3.132.2.6/32", + "3.132.2.8/32", + "3.132.2.10/32", + "3.132.2.12/32", + "3.132.2.14/32", + "3.132.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.2.2/32", + "3.132.2.4/32", + "3.132.2.6/32", + "3.132.2.8/32", + "3.132.2.10/32", + "3.132.2.12/32", + "3.132.2.14/32", + "3.132.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.132.4.1/32", + "3.132.4.3/32", + "3.132.4.5/32", + "3.132.4.7/32", + "3.132.4.9/32", + "3.132.4.11/32", + "3.132.4.13/32", + "3.132.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.4.1/32", + "3.132.4.3/32", + "3.132.4.5/32", + "3.132.4.7/32", + "3.132.4.9/32", + "3.132.4.11/32", + "3.132.4.13/32", + "3.132.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.132.4.2/32", + "3.132.4.4/32", + "3.132.4.6/32", + "3.132.4.8/32", + "3.132.4.10/32", + "3.132.4.12/32", + "3.132.4.14/32", + "3.132.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.4.2/32", + "3.132.4.4/32", + "3.132.4.6/32", + "3.132.4.8/32", + "3.132.4.10/32", + "3.132.4.12/32", + "3.132.4.14/32", + "3.132.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.132.6.1/32", + "3.132.6.3/32", + "3.132.6.5/32", + "3.132.6.7/32", + "3.132.6.9/32", + "3.132.6.11/32", + "3.132.6.13/32", + "3.132.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.6.1/32", + "3.132.6.3/32", + "3.132.6.5/32", + "3.132.6.7/32", + "3.132.6.9/32", + "3.132.6.11/32", + "3.132.6.13/32", + "3.132.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.132.6.2/32", + "3.132.6.4/32", + "3.132.6.6/32", + "3.132.6.8/32", + "3.132.6.10/32", + "3.132.6.12/32", + "3.132.6.14/32", + "3.132.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.6.2/32", + "3.132.6.4/32", + "3.132.6.6/32", + "3.132.6.8/32", + "3.132.6.10/32", + "3.132.6.12/32", + "3.132.6.14/32", + "3.132.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.132.8.1/32", + "3.132.8.3/32", + "3.132.8.5/32", + "3.132.8.7/32", + "3.132.8.9/32", + "3.132.8.11/32", + "3.132.8.13/32", + "3.132.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.8.1/32", + "3.132.8.3/32", + "3.132.8.5/32", + "3.132.8.7/32", + "3.132.8.9/32", + "3.132.8.11/32", + "3.132.8.13/32", + "3.132.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.132.8.2/32", + "3.132.8.4/32", + "3.132.8.6/32", + "3.132.8.8/32", + "3.132.8.10/32", + "3.132.8.12/32", + "3.132.8.14/32", + "3.132.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.132.8.2/32", + "3.132.8.4/32", + "3.132.8.6/32", + "3.132.8.8/32", + "3.132.8.10/32", + "3.132.8.12/32", + "3.132.8.14/32", + "3.132.8.16/32", + "3.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3003": { + "acl-group-id": "acl-group-3003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.136.0.1/32", + "3.136.0.3/32", + "3.136.0.5/32", + "3.136.0.7/32", + "3.136.0.9/32", + "3.136.0.11/32", + "3.136.0.13/32", + "3.136.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.0.1/32", + "3.136.0.3/32", + "3.136.0.5/32", + "3.136.0.7/32", + "3.136.0.9/32", + "3.136.0.11/32", + "3.136.0.13/32", + "3.136.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.136.0.2/32", + "3.136.0.4/32", + "3.136.0.6/32", + "3.136.0.8/32", + "3.136.0.10/32", + "3.136.0.12/32", + "3.136.0.14/32", + "3.136.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.0.2/32", + "3.136.0.4/32", + "3.136.0.6/32", + "3.136.0.8/32", + "3.136.0.10/32", + "3.136.0.12/32", + "3.136.0.14/32", + "3.136.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.136.2.1/32", + "3.136.2.3/32", + "3.136.2.5/32", + "3.136.2.7/32", + "3.136.2.9/32", + "3.136.2.11/32", + "3.136.2.13/32", + "3.136.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.2.1/32", + "3.136.2.3/32", + "3.136.2.5/32", + "3.136.2.7/32", + "3.136.2.9/32", + "3.136.2.11/32", + "3.136.2.13/32", + "3.136.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.136.2.2/32", + "3.136.2.4/32", + "3.136.2.6/32", + "3.136.2.8/32", + "3.136.2.10/32", + "3.136.2.12/32", + "3.136.2.14/32", + "3.136.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.2.2/32", + "3.136.2.4/32", + "3.136.2.6/32", + "3.136.2.8/32", + "3.136.2.10/32", + "3.136.2.12/32", + "3.136.2.14/32", + "3.136.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.136.4.1/32", + "3.136.4.3/32", + "3.136.4.5/32", + "3.136.4.7/32", + "3.136.4.9/32", + "3.136.4.11/32", + "3.136.4.13/32", + "3.136.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.4.1/32", + "3.136.4.3/32", + "3.136.4.5/32", + "3.136.4.7/32", + "3.136.4.9/32", + "3.136.4.11/32", + "3.136.4.13/32", + "3.136.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.136.4.2/32", + "3.136.4.4/32", + "3.136.4.6/32", + "3.136.4.8/32", + "3.136.4.10/32", + "3.136.4.12/32", + "3.136.4.14/32", + "3.136.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.4.2/32", + "3.136.4.4/32", + "3.136.4.6/32", + "3.136.4.8/32", + "3.136.4.10/32", + "3.136.4.12/32", + "3.136.4.14/32", + "3.136.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.136.6.1/32", + "3.136.6.3/32", + "3.136.6.5/32", + "3.136.6.7/32", + "3.136.6.9/32", + "3.136.6.11/32", + "3.136.6.13/32", + "3.136.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.6.1/32", + "3.136.6.3/32", + "3.136.6.5/32", + "3.136.6.7/32", + "3.136.6.9/32", + "3.136.6.11/32", + "3.136.6.13/32", + "3.136.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.136.6.2/32", + "3.136.6.4/32", + "3.136.6.6/32", + "3.136.6.8/32", + "3.136.6.10/32", + "3.136.6.12/32", + "3.136.6.14/32", + "3.136.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.6.2/32", + "3.136.6.4/32", + "3.136.6.6/32", + "3.136.6.8/32", + "3.136.6.10/32", + "3.136.6.12/32", + "3.136.6.14/32", + "3.136.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.136.8.1/32", + "3.136.8.3/32", + "3.136.8.5/32", + "3.136.8.7/32", + "3.136.8.9/32", + "3.136.8.11/32", + "3.136.8.13/32", + "3.136.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.8.1/32", + "3.136.8.3/32", + "3.136.8.5/32", + "3.136.8.7/32", + "3.136.8.9/32", + "3.136.8.11/32", + "3.136.8.13/32", + "3.136.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.136.8.2/32", + "3.136.8.4/32", + "3.136.8.6/32", + "3.136.8.8/32", + "3.136.8.10/32", + "3.136.8.12/32", + "3.136.8.14/32", + "3.136.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.136.8.2/32", + "3.136.8.4/32", + "3.136.8.6/32", + "3.136.8.8/32", + "3.136.8.10/32", + "3.136.8.12/32", + "3.136.8.14/32", + "3.136.8.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "3.1.0.1/32", + "3.140.0.1/14", + "3.144.0.1/14", + "3.148.0.1/14" + ], + "dst_addrs": [ + "3.1.0.1/32", + "3.140.0.1/14", + "3.144.0.1/14", + "3.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3004": { + "acl-group-id": "acl-group-3004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.140.0.1/32", + "3.140.0.3/32", + "3.140.0.5/32", + "3.140.0.7/32", + "3.140.0.9/32", + "3.140.0.11/32", + "3.140.0.13/32", + "3.140.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.0.1/32", + "3.140.0.3/32", + "3.140.0.5/32", + "3.140.0.7/32", + "3.140.0.9/32", + "3.140.0.11/32", + "3.140.0.13/32", + "3.140.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.140.0.2/32", + "3.140.0.4/32", + "3.140.0.6/32", + "3.140.0.8/32", + "3.140.0.10/32", + "3.140.0.12/32", + "3.140.0.14/32", + "3.140.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.0.2/32", + "3.140.0.4/32", + "3.140.0.6/32", + "3.140.0.8/32", + "3.140.0.10/32", + "3.140.0.12/32", + "3.140.0.14/32", + "3.140.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.140.2.1/32", + "3.140.2.3/32", + "3.140.2.5/32", + "3.140.2.7/32", + "3.140.2.9/32", + "3.140.2.11/32", + "3.140.2.13/32", + "3.140.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.2.1/32", + "3.140.2.3/32", + "3.140.2.5/32", + "3.140.2.7/32", + "3.140.2.9/32", + "3.140.2.11/32", + "3.140.2.13/32", + "3.140.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.140.2.2/32", + "3.140.2.4/32", + "3.140.2.6/32", + "3.140.2.8/32", + "3.140.2.10/32", + "3.140.2.12/32", + "3.140.2.14/32", + "3.140.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.2.2/32", + "3.140.2.4/32", + "3.140.2.6/32", + "3.140.2.8/32", + "3.140.2.10/32", + "3.140.2.12/32", + "3.140.2.14/32", + "3.140.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.140.4.1/32", + "3.140.4.3/32", + "3.140.4.5/32", + "3.140.4.7/32", + "3.140.4.9/32", + "3.140.4.11/32", + "3.140.4.13/32", + "3.140.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.4.1/32", + "3.140.4.3/32", + "3.140.4.5/32", + "3.140.4.7/32", + "3.140.4.9/32", + "3.140.4.11/32", + "3.140.4.13/32", + "3.140.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.140.4.2/32", + "3.140.4.4/32", + "3.140.4.6/32", + "3.140.4.8/32", + "3.140.4.10/32", + "3.140.4.12/32", + "3.140.4.14/32", + "3.140.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.4.2/32", + "3.140.4.4/32", + "3.140.4.6/32", + "3.140.4.8/32", + "3.140.4.10/32", + "3.140.4.12/32", + "3.140.4.14/32", + "3.140.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.140.6.1/32", + "3.140.6.3/32", + "3.140.6.5/32", + "3.140.6.7/32", + "3.140.6.9/32", + "3.140.6.11/32", + "3.140.6.13/32", + "3.140.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.6.1/32", + "3.140.6.3/32", + "3.140.6.5/32", + "3.140.6.7/32", + "3.140.6.9/32", + "3.140.6.11/32", + "3.140.6.13/32", + "3.140.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.140.6.2/32", + "3.140.6.4/32", + "3.140.6.6/32", + "3.140.6.8/32", + "3.140.6.10/32", + "3.140.6.12/32", + "3.140.6.14/32", + "3.140.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.6.2/32", + "3.140.6.4/32", + "3.140.6.6/32", + "3.140.6.8/32", + "3.140.6.10/32", + "3.140.6.12/32", + "3.140.6.14/32", + "3.140.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.140.8.1/32", + "3.140.8.3/32", + "3.140.8.5/32", + "3.140.8.7/32", + "3.140.8.9/32", + "3.140.8.11/32", + "3.140.8.13/32", + "3.140.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.8.1/32", + "3.140.8.3/32", + "3.140.8.5/32", + "3.140.8.7/32", + "3.140.8.9/32", + "3.140.8.11/32", + "3.140.8.13/32", + "3.140.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.140.8.2/32", + "3.140.8.4/32", + "3.140.8.6/32", + "3.140.8.8/32", + "3.140.8.10/32", + "3.140.8.12/32", + "3.140.8.14/32", + "3.140.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.140.8.2/32", + "3.140.8.4/32", + "3.140.8.6/32", + "3.140.8.8/32", + "3.140.8.10/32", + "3.140.8.12/32", + "3.140.8.14/32", + "3.140.8.16/32", + "3.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3005": { + "acl-group-id": "acl-group-3005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.144.0.1/32", + "3.144.0.3/32", + "3.144.0.5/32", + "3.144.0.7/32", + "3.144.0.9/32", + "3.144.0.11/32", + "3.144.0.13/32", + "3.144.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.0.1/32", + "3.144.0.3/32", + "3.144.0.5/32", + "3.144.0.7/32", + "3.144.0.9/32", + "3.144.0.11/32", + "3.144.0.13/32", + "3.144.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.144.0.2/32", + "3.144.0.4/32", + "3.144.0.6/32", + "3.144.0.8/32", + "3.144.0.10/32", + "3.144.0.12/32", + "3.144.0.14/32", + "3.144.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.0.2/32", + "3.144.0.4/32", + "3.144.0.6/32", + "3.144.0.8/32", + "3.144.0.10/32", + "3.144.0.12/32", + "3.144.0.14/32", + "3.144.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.144.2.1/32", + "3.144.2.3/32", + "3.144.2.5/32", + "3.144.2.7/32", + "3.144.2.9/32", + "3.144.2.11/32", + "3.144.2.13/32", + "3.144.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.2.1/32", + "3.144.2.3/32", + "3.144.2.5/32", + "3.144.2.7/32", + "3.144.2.9/32", + "3.144.2.11/32", + "3.144.2.13/32", + "3.144.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.144.2.2/32", + "3.144.2.4/32", + "3.144.2.6/32", + "3.144.2.8/32", + "3.144.2.10/32", + "3.144.2.12/32", + "3.144.2.14/32", + "3.144.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.2.2/32", + "3.144.2.4/32", + "3.144.2.6/32", + "3.144.2.8/32", + "3.144.2.10/32", + "3.144.2.12/32", + "3.144.2.14/32", + "3.144.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.144.4.1/32", + "3.144.4.3/32", + "3.144.4.5/32", + "3.144.4.7/32", + "3.144.4.9/32", + "3.144.4.11/32", + "3.144.4.13/32", + "3.144.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.4.1/32", + "3.144.4.3/32", + "3.144.4.5/32", + "3.144.4.7/32", + "3.144.4.9/32", + "3.144.4.11/32", + "3.144.4.13/32", + "3.144.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.144.4.2/32", + "3.144.4.4/32", + "3.144.4.6/32", + "3.144.4.8/32", + "3.144.4.10/32", + "3.144.4.12/32", + "3.144.4.14/32", + "3.144.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.4.2/32", + "3.144.4.4/32", + "3.144.4.6/32", + "3.144.4.8/32", + "3.144.4.10/32", + "3.144.4.12/32", + "3.144.4.14/32", + "3.144.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.144.6.1/32", + "3.144.6.3/32", + "3.144.6.5/32", + "3.144.6.7/32", + "3.144.6.9/32", + "3.144.6.11/32", + "3.144.6.13/32", + "3.144.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.6.1/32", + "3.144.6.3/32", + "3.144.6.5/32", + "3.144.6.7/32", + "3.144.6.9/32", + "3.144.6.11/32", + "3.144.6.13/32", + "3.144.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.144.6.2/32", + "3.144.6.4/32", + "3.144.6.6/32", + "3.144.6.8/32", + "3.144.6.10/32", + "3.144.6.12/32", + "3.144.6.14/32", + "3.144.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.6.2/32", + "3.144.6.4/32", + "3.144.6.6/32", + "3.144.6.8/32", + "3.144.6.10/32", + "3.144.6.12/32", + "3.144.6.14/32", + "3.144.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.144.8.1/32", + "3.144.8.3/32", + "3.144.8.5/32", + "3.144.8.7/32", + "3.144.8.9/32", + "3.144.8.11/32", + "3.144.8.13/32", + "3.144.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.8.1/32", + "3.144.8.3/32", + "3.144.8.5/32", + "3.144.8.7/32", + "3.144.8.9/32", + "3.144.8.11/32", + "3.144.8.13/32", + "3.144.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.144.8.2/32", + "3.144.8.4/32", + "3.144.8.6/32", + "3.144.8.8/32", + "3.144.8.10/32", + "3.144.8.12/32", + "3.144.8.14/32", + "3.144.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.144.8.2/32", + "3.144.8.4/32", + "3.144.8.6/32", + "3.144.8.8/32", + "3.144.8.10/32", + "3.144.8.12/32", + "3.144.8.14/32", + "3.144.8.16/32", + "3.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:3:TABLE:3006": { + "acl-group-id": "acl-group-3006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.148.0.1/32", + "3.148.0.3/32", + "3.148.0.5/32", + "3.148.0.7/32", + "3.148.0.9/32", + "3.148.0.11/32", + "3.148.0.13/32", + "3.148.0.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.0.1/32", + "3.148.0.3/32", + "3.148.0.5/32", + "3.148.0.7/32", + "3.148.0.9/32", + "3.148.0.11/32", + "3.148.0.13/32", + "3.148.0.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.148.0.2/32", + "3.148.0.4/32", + "3.148.0.6/32", + "3.148.0.8/32", + "3.148.0.10/32", + "3.148.0.12/32", + "3.148.0.14/32", + "3.148.0.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.0.2/32", + "3.148.0.4/32", + "3.148.0.6/32", + "3.148.0.8/32", + "3.148.0.10/32", + "3.148.0.12/32", + "3.148.0.14/32", + "3.148.0.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.148.2.1/32", + "3.148.2.3/32", + "3.148.2.5/32", + "3.148.2.7/32", + "3.148.2.9/32", + "3.148.2.11/32", + "3.148.2.13/32", + "3.148.2.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.2.1/32", + "3.148.2.3/32", + "3.148.2.5/32", + "3.148.2.7/32", + "3.148.2.9/32", + "3.148.2.11/32", + "3.148.2.13/32", + "3.148.2.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.148.2.2/32", + "3.148.2.4/32", + "3.148.2.6/32", + "3.148.2.8/32", + "3.148.2.10/32", + "3.148.2.12/32", + "3.148.2.14/32", + "3.148.2.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.2.2/32", + "3.148.2.4/32", + "3.148.2.6/32", + "3.148.2.8/32", + "3.148.2.10/32", + "3.148.2.12/32", + "3.148.2.14/32", + "3.148.2.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.148.4.1/32", + "3.148.4.3/32", + "3.148.4.5/32", + "3.148.4.7/32", + "3.148.4.9/32", + "3.148.4.11/32", + "3.148.4.13/32", + "3.148.4.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.4.1/32", + "3.148.4.3/32", + "3.148.4.5/32", + "3.148.4.7/32", + "3.148.4.9/32", + "3.148.4.11/32", + "3.148.4.13/32", + "3.148.4.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.148.4.2/32", + "3.148.4.4/32", + "3.148.4.6/32", + "3.148.4.8/32", + "3.148.4.10/32", + "3.148.4.12/32", + "3.148.4.14/32", + "3.148.4.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.4.2/32", + "3.148.4.4/32", + "3.148.4.6/32", + "3.148.4.8/32", + "3.148.4.10/32", + "3.148.4.12/32", + "3.148.4.14/32", + "3.148.4.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.148.6.1/32", + "3.148.6.3/32", + "3.148.6.5/32", + "3.148.6.7/32", + "3.148.6.9/32", + "3.148.6.11/32", + "3.148.6.13/32", + "3.148.6.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.6.1/32", + "3.148.6.3/32", + "3.148.6.5/32", + "3.148.6.7/32", + "3.148.6.9/32", + "3.148.6.11/32", + "3.148.6.13/32", + "3.148.6.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.148.6.2/32", + "3.148.6.4/32", + "3.148.6.6/32", + "3.148.6.8/32", + "3.148.6.10/32", + "3.148.6.12/32", + "3.148.6.14/32", + "3.148.6.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.6.2/32", + "3.148.6.4/32", + "3.148.6.6/32", + "3.148.6.8/32", + "3.148.6.10/32", + "3.148.6.12/32", + "3.148.6.14/32", + "3.148.6.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "3.148.8.1/32", + "3.148.8.3/32", + "3.148.8.5/32", + "3.148.8.7/32", + "3.148.8.9/32", + "3.148.8.11/32", + "3.148.8.13/32", + "3.148.8.15/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.8.1/32", + "3.148.8.3/32", + "3.148.8.5/32", + "3.148.8.7/32", + "3.148.8.9/32", + "3.148.8.11/32", + "3.148.8.13/32", + "3.148.8.15/32", + "3.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "3.148.8.2/32", + "3.148.8.4/32", + "3.148.8.6/32", + "3.148.8.8/32", + "3.148.8.10/32", + "3.148.8.12/32", + "3.148.8.14/32", + "3.148.8.16/32", + "3.1.0.1/32" + ], + "dst_addrs": [ + "3.148.8.2/32", + "3.148.8.4/32", + "3.148.8.6/32", + "3.148.8.8/32", + "3.148.8.10/32", + "3.148.8.12/32", + "3.148.8.14/32", + "3.148.8.16/32", + "3.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "3.1.0.1/32", + "3.128.0.1/14", + "3.132.0.1/14", + "3.136.0.1/14" + ], + "dst_addrs": [ + "3.1.0.1/32", + "3.128.0.1/14", + "3.132.0.1/14", + "3.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4001": { + "acl-group-id": "acl-group-4001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.128.0.1/32", + "4.128.0.3/32", + "4.128.0.5/32", + "4.128.0.7/32", + "4.128.0.9/32", + "4.128.0.11/32", + "4.128.0.13/32", + "4.128.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.0.1/32", + "4.128.0.3/32", + "4.128.0.5/32", + "4.128.0.7/32", + "4.128.0.9/32", + "4.128.0.11/32", + "4.128.0.13/32", + "4.128.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.128.0.2/32", + "4.128.0.4/32", + "4.128.0.6/32", + "4.128.0.8/32", + "4.128.0.10/32", + "4.128.0.12/32", + "4.128.0.14/32", + "4.128.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.0.2/32", + "4.128.0.4/32", + "4.128.0.6/32", + "4.128.0.8/32", + "4.128.0.10/32", + "4.128.0.12/32", + "4.128.0.14/32", + "4.128.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.128.2.1/32", + "4.128.2.3/32", + "4.128.2.5/32", + "4.128.2.7/32", + "4.128.2.9/32", + "4.128.2.11/32", + "4.128.2.13/32", + "4.128.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.2.1/32", + "4.128.2.3/32", + "4.128.2.5/32", + "4.128.2.7/32", + "4.128.2.9/32", + "4.128.2.11/32", + "4.128.2.13/32", + "4.128.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.128.2.2/32", + "4.128.2.4/32", + "4.128.2.6/32", + "4.128.2.8/32", + "4.128.2.10/32", + "4.128.2.12/32", + "4.128.2.14/32", + "4.128.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.2.2/32", + "4.128.2.4/32", + "4.128.2.6/32", + "4.128.2.8/32", + "4.128.2.10/32", + "4.128.2.12/32", + "4.128.2.14/32", + "4.128.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.128.4.1/32", + "4.128.4.3/32", + "4.128.4.5/32", + "4.128.4.7/32", + "4.128.4.9/32", + "4.128.4.11/32", + "4.128.4.13/32", + "4.128.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.4.1/32", + "4.128.4.3/32", + "4.128.4.5/32", + "4.128.4.7/32", + "4.128.4.9/32", + "4.128.4.11/32", + "4.128.4.13/32", + "4.128.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.128.4.2/32", + "4.128.4.4/32", + "4.128.4.6/32", + "4.128.4.8/32", + "4.128.4.10/32", + "4.128.4.12/32", + "4.128.4.14/32", + "4.128.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.4.2/32", + "4.128.4.4/32", + "4.128.4.6/32", + "4.128.4.8/32", + "4.128.4.10/32", + "4.128.4.12/32", + "4.128.4.14/32", + "4.128.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.128.6.1/32", + "4.128.6.3/32", + "4.128.6.5/32", + "4.128.6.7/32", + "4.128.6.9/32", + "4.128.6.11/32", + "4.128.6.13/32", + "4.128.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.6.1/32", + "4.128.6.3/32", + "4.128.6.5/32", + "4.128.6.7/32", + "4.128.6.9/32", + "4.128.6.11/32", + "4.128.6.13/32", + "4.128.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.128.6.2/32", + "4.128.6.4/32", + "4.128.6.6/32", + "4.128.6.8/32", + "4.128.6.10/32", + "4.128.6.12/32", + "4.128.6.14/32", + "4.128.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.6.2/32", + "4.128.6.4/32", + "4.128.6.6/32", + "4.128.6.8/32", + "4.128.6.10/32", + "4.128.6.12/32", + "4.128.6.14/32", + "4.128.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.128.8.1/32", + "4.128.8.3/32", + "4.128.8.5/32", + "4.128.8.7/32", + "4.128.8.9/32", + "4.128.8.11/32", + "4.128.8.13/32", + "4.128.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.8.1/32", + "4.128.8.3/32", + "4.128.8.5/32", + "4.128.8.7/32", + "4.128.8.9/32", + "4.128.8.11/32", + "4.128.8.13/32", + "4.128.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.128.8.2/32", + "4.128.8.4/32", + "4.128.8.6/32", + "4.128.8.8/32", + "4.128.8.10/32", + "4.128.8.12/32", + "4.128.8.14/32", + "4.128.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.128.8.2/32", + "4.128.8.4/32", + "4.128.8.6/32", + "4.128.8.8/32", + "4.128.8.10/32", + "4.128.8.12/32", + "4.128.8.14/32", + "4.128.8.16/32", + "4.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4002": { + "acl-group-id": "acl-group-4002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.132.0.1/32", + "4.132.0.3/32", + "4.132.0.5/32", + "4.132.0.7/32", + "4.132.0.9/32", + "4.132.0.11/32", + "4.132.0.13/32", + "4.132.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.0.1/32", + "4.132.0.3/32", + "4.132.0.5/32", + "4.132.0.7/32", + "4.132.0.9/32", + "4.132.0.11/32", + "4.132.0.13/32", + "4.132.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.132.0.2/32", + "4.132.0.4/32", + "4.132.0.6/32", + "4.132.0.8/32", + "4.132.0.10/32", + "4.132.0.12/32", + "4.132.0.14/32", + "4.132.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.0.2/32", + "4.132.0.4/32", + "4.132.0.6/32", + "4.132.0.8/32", + "4.132.0.10/32", + "4.132.0.12/32", + "4.132.0.14/32", + "4.132.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.132.2.1/32", + "4.132.2.3/32", + "4.132.2.5/32", + "4.132.2.7/32", + "4.132.2.9/32", + "4.132.2.11/32", + "4.132.2.13/32", + "4.132.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.2.1/32", + "4.132.2.3/32", + "4.132.2.5/32", + "4.132.2.7/32", + "4.132.2.9/32", + "4.132.2.11/32", + "4.132.2.13/32", + "4.132.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.132.2.2/32", + "4.132.2.4/32", + "4.132.2.6/32", + "4.132.2.8/32", + "4.132.2.10/32", + "4.132.2.12/32", + "4.132.2.14/32", + "4.132.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.2.2/32", + "4.132.2.4/32", + "4.132.2.6/32", + "4.132.2.8/32", + "4.132.2.10/32", + "4.132.2.12/32", + "4.132.2.14/32", + "4.132.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.132.4.1/32", + "4.132.4.3/32", + "4.132.4.5/32", + "4.132.4.7/32", + "4.132.4.9/32", + "4.132.4.11/32", + "4.132.4.13/32", + "4.132.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.4.1/32", + "4.132.4.3/32", + "4.132.4.5/32", + "4.132.4.7/32", + "4.132.4.9/32", + "4.132.4.11/32", + "4.132.4.13/32", + "4.132.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.132.4.2/32", + "4.132.4.4/32", + "4.132.4.6/32", + "4.132.4.8/32", + "4.132.4.10/32", + "4.132.4.12/32", + "4.132.4.14/32", + "4.132.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.4.2/32", + "4.132.4.4/32", + "4.132.4.6/32", + "4.132.4.8/32", + "4.132.4.10/32", + "4.132.4.12/32", + "4.132.4.14/32", + "4.132.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.132.6.1/32", + "4.132.6.3/32", + "4.132.6.5/32", + "4.132.6.7/32", + "4.132.6.9/32", + "4.132.6.11/32", + "4.132.6.13/32", + "4.132.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.6.1/32", + "4.132.6.3/32", + "4.132.6.5/32", + "4.132.6.7/32", + "4.132.6.9/32", + "4.132.6.11/32", + "4.132.6.13/32", + "4.132.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.132.6.2/32", + "4.132.6.4/32", + "4.132.6.6/32", + "4.132.6.8/32", + "4.132.6.10/32", + "4.132.6.12/32", + "4.132.6.14/32", + "4.132.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.6.2/32", + "4.132.6.4/32", + "4.132.6.6/32", + "4.132.6.8/32", + "4.132.6.10/32", + "4.132.6.12/32", + "4.132.6.14/32", + "4.132.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.132.8.1/32", + "4.132.8.3/32", + "4.132.8.5/32", + "4.132.8.7/32", + "4.132.8.9/32", + "4.132.8.11/32", + "4.132.8.13/32", + "4.132.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.8.1/32", + "4.132.8.3/32", + "4.132.8.5/32", + "4.132.8.7/32", + "4.132.8.9/32", + "4.132.8.11/32", + "4.132.8.13/32", + "4.132.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.132.8.2/32", + "4.132.8.4/32", + "4.132.8.6/32", + "4.132.8.8/32", + "4.132.8.10/32", + "4.132.8.12/32", + "4.132.8.14/32", + "4.132.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.132.8.2/32", + "4.132.8.4/32", + "4.132.8.6/32", + "4.132.8.8/32", + "4.132.8.10/32", + "4.132.8.12/32", + "4.132.8.14/32", + "4.132.8.16/32", + "4.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4003": { + "acl-group-id": "acl-group-4003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.136.0.1/32", + "4.136.0.3/32", + "4.136.0.5/32", + "4.136.0.7/32", + "4.136.0.9/32", + "4.136.0.11/32", + "4.136.0.13/32", + "4.136.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.0.1/32", + "4.136.0.3/32", + "4.136.0.5/32", + "4.136.0.7/32", + "4.136.0.9/32", + "4.136.0.11/32", + "4.136.0.13/32", + "4.136.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.136.0.2/32", + "4.136.0.4/32", + "4.136.0.6/32", + "4.136.0.8/32", + "4.136.0.10/32", + "4.136.0.12/32", + "4.136.0.14/32", + "4.136.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.0.2/32", + "4.136.0.4/32", + "4.136.0.6/32", + "4.136.0.8/32", + "4.136.0.10/32", + "4.136.0.12/32", + "4.136.0.14/32", + "4.136.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.136.2.1/32", + "4.136.2.3/32", + "4.136.2.5/32", + "4.136.2.7/32", + "4.136.2.9/32", + "4.136.2.11/32", + "4.136.2.13/32", + "4.136.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.2.1/32", + "4.136.2.3/32", + "4.136.2.5/32", + "4.136.2.7/32", + "4.136.2.9/32", + "4.136.2.11/32", + "4.136.2.13/32", + "4.136.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.136.2.2/32", + "4.136.2.4/32", + "4.136.2.6/32", + "4.136.2.8/32", + "4.136.2.10/32", + "4.136.2.12/32", + "4.136.2.14/32", + "4.136.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.2.2/32", + "4.136.2.4/32", + "4.136.2.6/32", + "4.136.2.8/32", + "4.136.2.10/32", + "4.136.2.12/32", + "4.136.2.14/32", + "4.136.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.136.4.1/32", + "4.136.4.3/32", + "4.136.4.5/32", + "4.136.4.7/32", + "4.136.4.9/32", + "4.136.4.11/32", + "4.136.4.13/32", + "4.136.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.4.1/32", + "4.136.4.3/32", + "4.136.4.5/32", + "4.136.4.7/32", + "4.136.4.9/32", + "4.136.4.11/32", + "4.136.4.13/32", + "4.136.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.136.4.2/32", + "4.136.4.4/32", + "4.136.4.6/32", + "4.136.4.8/32", + "4.136.4.10/32", + "4.136.4.12/32", + "4.136.4.14/32", + "4.136.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.4.2/32", + "4.136.4.4/32", + "4.136.4.6/32", + "4.136.4.8/32", + "4.136.4.10/32", + "4.136.4.12/32", + "4.136.4.14/32", + "4.136.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.136.6.1/32", + "4.136.6.3/32", + "4.136.6.5/32", + "4.136.6.7/32", + "4.136.6.9/32", + "4.136.6.11/32", + "4.136.6.13/32", + "4.136.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.6.1/32", + "4.136.6.3/32", + "4.136.6.5/32", + "4.136.6.7/32", + "4.136.6.9/32", + "4.136.6.11/32", + "4.136.6.13/32", + "4.136.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.136.6.2/32", + "4.136.6.4/32", + "4.136.6.6/32", + "4.136.6.8/32", + "4.136.6.10/32", + "4.136.6.12/32", + "4.136.6.14/32", + "4.136.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.6.2/32", + "4.136.6.4/32", + "4.136.6.6/32", + "4.136.6.8/32", + "4.136.6.10/32", + "4.136.6.12/32", + "4.136.6.14/32", + "4.136.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.136.8.1/32", + "4.136.8.3/32", + "4.136.8.5/32", + "4.136.8.7/32", + "4.136.8.9/32", + "4.136.8.11/32", + "4.136.8.13/32", + "4.136.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.8.1/32", + "4.136.8.3/32", + "4.136.8.5/32", + "4.136.8.7/32", + "4.136.8.9/32", + "4.136.8.11/32", + "4.136.8.13/32", + "4.136.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.136.8.2/32", + "4.136.8.4/32", + "4.136.8.6/32", + "4.136.8.8/32", + "4.136.8.10/32", + "4.136.8.12/32", + "4.136.8.14/32", + "4.136.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.136.8.2/32", + "4.136.8.4/32", + "4.136.8.6/32", + "4.136.8.8/32", + "4.136.8.10/32", + "4.136.8.12/32", + "4.136.8.14/32", + "4.136.8.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "4.1.0.1/32", + "4.140.0.1/14", + "4.144.0.1/14", + "4.148.0.1/14" + ], + "dst_addrs": [ + "4.1.0.1/32", + "4.140.0.1/14", + "4.144.0.1/14", + "4.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4004": { + "acl-group-id": "acl-group-4004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.140.0.1/32", + "4.140.0.3/32", + "4.140.0.5/32", + "4.140.0.7/32", + "4.140.0.9/32", + "4.140.0.11/32", + "4.140.0.13/32", + "4.140.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.0.1/32", + "4.140.0.3/32", + "4.140.0.5/32", + "4.140.0.7/32", + "4.140.0.9/32", + "4.140.0.11/32", + "4.140.0.13/32", + "4.140.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.140.0.2/32", + "4.140.0.4/32", + "4.140.0.6/32", + "4.140.0.8/32", + "4.140.0.10/32", + "4.140.0.12/32", + "4.140.0.14/32", + "4.140.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.0.2/32", + "4.140.0.4/32", + "4.140.0.6/32", + "4.140.0.8/32", + "4.140.0.10/32", + "4.140.0.12/32", + "4.140.0.14/32", + "4.140.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.140.2.1/32", + "4.140.2.3/32", + "4.140.2.5/32", + "4.140.2.7/32", + "4.140.2.9/32", + "4.140.2.11/32", + "4.140.2.13/32", + "4.140.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.2.1/32", + "4.140.2.3/32", + "4.140.2.5/32", + "4.140.2.7/32", + "4.140.2.9/32", + "4.140.2.11/32", + "4.140.2.13/32", + "4.140.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.140.2.2/32", + "4.140.2.4/32", + "4.140.2.6/32", + "4.140.2.8/32", + "4.140.2.10/32", + "4.140.2.12/32", + "4.140.2.14/32", + "4.140.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.2.2/32", + "4.140.2.4/32", + "4.140.2.6/32", + "4.140.2.8/32", + "4.140.2.10/32", + "4.140.2.12/32", + "4.140.2.14/32", + "4.140.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.140.4.1/32", + "4.140.4.3/32", + "4.140.4.5/32", + "4.140.4.7/32", + "4.140.4.9/32", + "4.140.4.11/32", + "4.140.4.13/32", + "4.140.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.4.1/32", + "4.140.4.3/32", + "4.140.4.5/32", + "4.140.4.7/32", + "4.140.4.9/32", + "4.140.4.11/32", + "4.140.4.13/32", + "4.140.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.140.4.2/32", + "4.140.4.4/32", + "4.140.4.6/32", + "4.140.4.8/32", + "4.140.4.10/32", + "4.140.4.12/32", + "4.140.4.14/32", + "4.140.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.4.2/32", + "4.140.4.4/32", + "4.140.4.6/32", + "4.140.4.8/32", + "4.140.4.10/32", + "4.140.4.12/32", + "4.140.4.14/32", + "4.140.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.140.6.1/32", + "4.140.6.3/32", + "4.140.6.5/32", + "4.140.6.7/32", + "4.140.6.9/32", + "4.140.6.11/32", + "4.140.6.13/32", + "4.140.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.6.1/32", + "4.140.6.3/32", + "4.140.6.5/32", + "4.140.6.7/32", + "4.140.6.9/32", + "4.140.6.11/32", + "4.140.6.13/32", + "4.140.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.140.6.2/32", + "4.140.6.4/32", + "4.140.6.6/32", + "4.140.6.8/32", + "4.140.6.10/32", + "4.140.6.12/32", + "4.140.6.14/32", + "4.140.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.6.2/32", + "4.140.6.4/32", + "4.140.6.6/32", + "4.140.6.8/32", + "4.140.6.10/32", + "4.140.6.12/32", + "4.140.6.14/32", + "4.140.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.140.8.1/32", + "4.140.8.3/32", + "4.140.8.5/32", + "4.140.8.7/32", + "4.140.8.9/32", + "4.140.8.11/32", + "4.140.8.13/32", + "4.140.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.8.1/32", + "4.140.8.3/32", + "4.140.8.5/32", + "4.140.8.7/32", + "4.140.8.9/32", + "4.140.8.11/32", + "4.140.8.13/32", + "4.140.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.140.8.2/32", + "4.140.8.4/32", + "4.140.8.6/32", + "4.140.8.8/32", + "4.140.8.10/32", + "4.140.8.12/32", + "4.140.8.14/32", + "4.140.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.140.8.2/32", + "4.140.8.4/32", + "4.140.8.6/32", + "4.140.8.8/32", + "4.140.8.10/32", + "4.140.8.12/32", + "4.140.8.14/32", + "4.140.8.16/32", + "4.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4005": { + "acl-group-id": "acl-group-4005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.144.0.1/32", + "4.144.0.3/32", + "4.144.0.5/32", + "4.144.0.7/32", + "4.144.0.9/32", + "4.144.0.11/32", + "4.144.0.13/32", + "4.144.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.0.1/32", + "4.144.0.3/32", + "4.144.0.5/32", + "4.144.0.7/32", + "4.144.0.9/32", + "4.144.0.11/32", + "4.144.0.13/32", + "4.144.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.144.0.2/32", + "4.144.0.4/32", + "4.144.0.6/32", + "4.144.0.8/32", + "4.144.0.10/32", + "4.144.0.12/32", + "4.144.0.14/32", + "4.144.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.0.2/32", + "4.144.0.4/32", + "4.144.0.6/32", + "4.144.0.8/32", + "4.144.0.10/32", + "4.144.0.12/32", + "4.144.0.14/32", + "4.144.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.144.2.1/32", + "4.144.2.3/32", + "4.144.2.5/32", + "4.144.2.7/32", + "4.144.2.9/32", + "4.144.2.11/32", + "4.144.2.13/32", + "4.144.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.2.1/32", + "4.144.2.3/32", + "4.144.2.5/32", + "4.144.2.7/32", + "4.144.2.9/32", + "4.144.2.11/32", + "4.144.2.13/32", + "4.144.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.144.2.2/32", + "4.144.2.4/32", + "4.144.2.6/32", + "4.144.2.8/32", + "4.144.2.10/32", + "4.144.2.12/32", + "4.144.2.14/32", + "4.144.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.2.2/32", + "4.144.2.4/32", + "4.144.2.6/32", + "4.144.2.8/32", + "4.144.2.10/32", + "4.144.2.12/32", + "4.144.2.14/32", + "4.144.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.144.4.1/32", + "4.144.4.3/32", + "4.144.4.5/32", + "4.144.4.7/32", + "4.144.4.9/32", + "4.144.4.11/32", + "4.144.4.13/32", + "4.144.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.4.1/32", + "4.144.4.3/32", + "4.144.4.5/32", + "4.144.4.7/32", + "4.144.4.9/32", + "4.144.4.11/32", + "4.144.4.13/32", + "4.144.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.144.4.2/32", + "4.144.4.4/32", + "4.144.4.6/32", + "4.144.4.8/32", + "4.144.4.10/32", + "4.144.4.12/32", + "4.144.4.14/32", + "4.144.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.4.2/32", + "4.144.4.4/32", + "4.144.4.6/32", + "4.144.4.8/32", + "4.144.4.10/32", + "4.144.4.12/32", + "4.144.4.14/32", + "4.144.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.144.6.1/32", + "4.144.6.3/32", + "4.144.6.5/32", + "4.144.6.7/32", + "4.144.6.9/32", + "4.144.6.11/32", + "4.144.6.13/32", + "4.144.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.6.1/32", + "4.144.6.3/32", + "4.144.6.5/32", + "4.144.6.7/32", + "4.144.6.9/32", + "4.144.6.11/32", + "4.144.6.13/32", + "4.144.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.144.6.2/32", + "4.144.6.4/32", + "4.144.6.6/32", + "4.144.6.8/32", + "4.144.6.10/32", + "4.144.6.12/32", + "4.144.6.14/32", + "4.144.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.6.2/32", + "4.144.6.4/32", + "4.144.6.6/32", + "4.144.6.8/32", + "4.144.6.10/32", + "4.144.6.12/32", + "4.144.6.14/32", + "4.144.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.144.8.1/32", + "4.144.8.3/32", + "4.144.8.5/32", + "4.144.8.7/32", + "4.144.8.9/32", + "4.144.8.11/32", + "4.144.8.13/32", + "4.144.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.8.1/32", + "4.144.8.3/32", + "4.144.8.5/32", + "4.144.8.7/32", + "4.144.8.9/32", + "4.144.8.11/32", + "4.144.8.13/32", + "4.144.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.144.8.2/32", + "4.144.8.4/32", + "4.144.8.6/32", + "4.144.8.8/32", + "4.144.8.10/32", + "4.144.8.12/32", + "4.144.8.14/32", + "4.144.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.144.8.2/32", + "4.144.8.4/32", + "4.144.8.6/32", + "4.144.8.8/32", + "4.144.8.10/32", + "4.144.8.12/32", + "4.144.8.14/32", + "4.144.8.16/32", + "4.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:4:TABLE:4006": { + "acl-group-id": "acl-group-4006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.148.0.1/32", + "4.148.0.3/32", + "4.148.0.5/32", + "4.148.0.7/32", + "4.148.0.9/32", + "4.148.0.11/32", + "4.148.0.13/32", + "4.148.0.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.0.1/32", + "4.148.0.3/32", + "4.148.0.5/32", + "4.148.0.7/32", + "4.148.0.9/32", + "4.148.0.11/32", + "4.148.0.13/32", + "4.148.0.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.148.0.2/32", + "4.148.0.4/32", + "4.148.0.6/32", + "4.148.0.8/32", + "4.148.0.10/32", + "4.148.0.12/32", + "4.148.0.14/32", + "4.148.0.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.0.2/32", + "4.148.0.4/32", + "4.148.0.6/32", + "4.148.0.8/32", + "4.148.0.10/32", + "4.148.0.12/32", + "4.148.0.14/32", + "4.148.0.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.148.2.1/32", + "4.148.2.3/32", + "4.148.2.5/32", + "4.148.2.7/32", + "4.148.2.9/32", + "4.148.2.11/32", + "4.148.2.13/32", + "4.148.2.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.2.1/32", + "4.148.2.3/32", + "4.148.2.5/32", + "4.148.2.7/32", + "4.148.2.9/32", + "4.148.2.11/32", + "4.148.2.13/32", + "4.148.2.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.148.2.2/32", + "4.148.2.4/32", + "4.148.2.6/32", + "4.148.2.8/32", + "4.148.2.10/32", + "4.148.2.12/32", + "4.148.2.14/32", + "4.148.2.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.2.2/32", + "4.148.2.4/32", + "4.148.2.6/32", + "4.148.2.8/32", + "4.148.2.10/32", + "4.148.2.12/32", + "4.148.2.14/32", + "4.148.2.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.148.4.1/32", + "4.148.4.3/32", + "4.148.4.5/32", + "4.148.4.7/32", + "4.148.4.9/32", + "4.148.4.11/32", + "4.148.4.13/32", + "4.148.4.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.4.1/32", + "4.148.4.3/32", + "4.148.4.5/32", + "4.148.4.7/32", + "4.148.4.9/32", + "4.148.4.11/32", + "4.148.4.13/32", + "4.148.4.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.148.4.2/32", + "4.148.4.4/32", + "4.148.4.6/32", + "4.148.4.8/32", + "4.148.4.10/32", + "4.148.4.12/32", + "4.148.4.14/32", + "4.148.4.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.4.2/32", + "4.148.4.4/32", + "4.148.4.6/32", + "4.148.4.8/32", + "4.148.4.10/32", + "4.148.4.12/32", + "4.148.4.14/32", + "4.148.4.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.148.6.1/32", + "4.148.6.3/32", + "4.148.6.5/32", + "4.148.6.7/32", + "4.148.6.9/32", + "4.148.6.11/32", + "4.148.6.13/32", + "4.148.6.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.6.1/32", + "4.148.6.3/32", + "4.148.6.5/32", + "4.148.6.7/32", + "4.148.6.9/32", + "4.148.6.11/32", + "4.148.6.13/32", + "4.148.6.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.148.6.2/32", + "4.148.6.4/32", + "4.148.6.6/32", + "4.148.6.8/32", + "4.148.6.10/32", + "4.148.6.12/32", + "4.148.6.14/32", + "4.148.6.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.6.2/32", + "4.148.6.4/32", + "4.148.6.6/32", + "4.148.6.8/32", + "4.148.6.10/32", + "4.148.6.12/32", + "4.148.6.14/32", + "4.148.6.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "4.148.8.1/32", + "4.148.8.3/32", + "4.148.8.5/32", + "4.148.8.7/32", + "4.148.8.9/32", + "4.148.8.11/32", + "4.148.8.13/32", + "4.148.8.15/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.8.1/32", + "4.148.8.3/32", + "4.148.8.5/32", + "4.148.8.7/32", + "4.148.8.9/32", + "4.148.8.11/32", + "4.148.8.13/32", + "4.148.8.15/32", + "4.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "4.148.8.2/32", + "4.148.8.4/32", + "4.148.8.6/32", + "4.148.8.8/32", + "4.148.8.10/32", + "4.148.8.12/32", + "4.148.8.14/32", + "4.148.8.16/32", + "4.1.0.1/32" + ], + "dst_addrs": [ + "4.148.8.2/32", + "4.148.8.4/32", + "4.148.8.6/32", + "4.148.8.8/32", + "4.148.8.10/32", + "4.148.8.12/32", + "4.148.8.14/32", + "4.148.8.16/32", + "4.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "4.1.0.1/32", + "4.128.0.1/14", + "4.132.0.1/14", + "4.136.0.1/14" + ], + "dst_addrs": [ + "4.1.0.1/32", + "4.128.0.1/14", + "4.132.0.1/14", + "4.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:5:TABLE:5001": { + "acl-group-id": "acl-group-5001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.128.0.1/32", + "5.128.0.3/32", + "5.128.0.5/32", + "5.128.0.7/32", + "5.128.0.9/32", + "5.128.0.11/32", + "5.128.0.13/32", + "5.128.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.0.1/32", + "5.128.0.3/32", + "5.128.0.5/32", + "5.128.0.7/32", + "5.128.0.9/32", + "5.128.0.11/32", + "5.128.0.13/32", + "5.128.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.128.0.2/32", + "5.128.0.4/32", + "5.128.0.6/32", + "5.128.0.8/32", + "5.128.0.10/32", + "5.128.0.12/32", + "5.128.0.14/32", + "5.128.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.0.2/32", + "5.128.0.4/32", + "5.128.0.6/32", + "5.128.0.8/32", + "5.128.0.10/32", + "5.128.0.12/32", + "5.128.0.14/32", + "5.128.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.128.2.1/32", + "5.128.2.3/32", + "5.128.2.5/32", + "5.128.2.7/32", + "5.128.2.9/32", + "5.128.2.11/32", + "5.128.2.13/32", + "5.128.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.2.1/32", + "5.128.2.3/32", + "5.128.2.5/32", + "5.128.2.7/32", + "5.128.2.9/32", + "5.128.2.11/32", + "5.128.2.13/32", + "5.128.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.128.2.2/32", + "5.128.2.4/32", + "5.128.2.6/32", + "5.128.2.8/32", + "5.128.2.10/32", + "5.128.2.12/32", + "5.128.2.14/32", + "5.128.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.2.2/32", + "5.128.2.4/32", + "5.128.2.6/32", + "5.128.2.8/32", + "5.128.2.10/32", + "5.128.2.12/32", + "5.128.2.14/32", + "5.128.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.128.4.1/32", + "5.128.4.3/32", + "5.128.4.5/32", + "5.128.4.7/32", + "5.128.4.9/32", + "5.128.4.11/32", + "5.128.4.13/32", + "5.128.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.4.1/32", + "5.128.4.3/32", + "5.128.4.5/32", + "5.128.4.7/32", + "5.128.4.9/32", + "5.128.4.11/32", + "5.128.4.13/32", + "5.128.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.128.4.2/32", + "5.128.4.4/32", + "5.128.4.6/32", + "5.128.4.8/32", + "5.128.4.10/32", + "5.128.4.12/32", + "5.128.4.14/32", + "5.128.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.4.2/32", + "5.128.4.4/32", + "5.128.4.6/32", + "5.128.4.8/32", + "5.128.4.10/32", + "5.128.4.12/32", + "5.128.4.14/32", + "5.128.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.128.6.1/32", + "5.128.6.3/32", + "5.128.6.5/32", + "5.128.6.7/32", + "5.128.6.9/32", + "5.128.6.11/32", + "5.128.6.13/32", + "5.128.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.6.1/32", + "5.128.6.3/32", + "5.128.6.5/32", + "5.128.6.7/32", + "5.128.6.9/32", + "5.128.6.11/32", + "5.128.6.13/32", + "5.128.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.128.6.2/32", + "5.128.6.4/32", + "5.128.6.6/32", + "5.128.6.8/32", + "5.128.6.10/32", + "5.128.6.12/32", + "5.128.6.14/32", + "5.128.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.6.2/32", + "5.128.6.4/32", + "5.128.6.6/32", + "5.128.6.8/32", + "5.128.6.10/32", + "5.128.6.12/32", + "5.128.6.14/32", + "5.128.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.128.8.1/32", + "5.128.8.3/32", + "5.128.8.5/32", + "5.128.8.7/32", + "5.128.8.9/32", + "5.128.8.11/32", + "5.128.8.13/32", + "5.128.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.8.1/32", + "5.128.8.3/32", + "5.128.8.5/32", + "5.128.8.7/32", + "5.128.8.9/32", + "5.128.8.11/32", + "5.128.8.13/32", + "5.128.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.128.8.2/32", + "5.128.8.4/32", + "5.128.8.6/32", + "5.128.8.8/32", + "5.128.8.10/32", + "5.128.8.12/32", + "5.128.8.14/32", + "5.128.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.128.8.2/32", + "5.128.8.4/32", + "5.128.8.6/32", + "5.128.8.8/32", + "5.128.8.10/32", + "5.128.8.12/32", + "5.128.8.14/32", + "5.128.8.16/32", + "5.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:5:TABLE:5002": { + "acl-group-id": "acl-group-5002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.132.0.1/32", + "5.132.0.3/32", + "5.132.0.5/32", + "5.132.0.7/32", + "5.132.0.9/32", + "5.132.0.11/32", + "5.132.0.13/32", + "5.132.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.0.1/32", + "5.132.0.3/32", + "5.132.0.5/32", + "5.132.0.7/32", + "5.132.0.9/32", + "5.132.0.11/32", + "5.132.0.13/32", + "5.132.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.132.0.2/32", + "5.132.0.4/32", + "5.132.0.6/32", + "5.132.0.8/32", + "5.132.0.10/32", + "5.132.0.12/32", + "5.132.0.14/32", + "5.132.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.0.2/32", + "5.132.0.4/32", + "5.132.0.6/32", + "5.132.0.8/32", + "5.132.0.10/32", + "5.132.0.12/32", + "5.132.0.14/32", + "5.132.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.132.2.1/32", + "5.132.2.3/32", + "5.132.2.5/32", + "5.132.2.7/32", + "5.132.2.9/32", + "5.132.2.11/32", + "5.132.2.13/32", + "5.132.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.2.1/32", + "5.132.2.3/32", + "5.132.2.5/32", + "5.132.2.7/32", + "5.132.2.9/32", + "5.132.2.11/32", + "5.132.2.13/32", + "5.132.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.132.2.2/32", + "5.132.2.4/32", + "5.132.2.6/32", + "5.132.2.8/32", + "5.132.2.10/32", + "5.132.2.12/32", + "5.132.2.14/32", + "5.132.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.2.2/32", + "5.132.2.4/32", + "5.132.2.6/32", + "5.132.2.8/32", + "5.132.2.10/32", + "5.132.2.12/32", + "5.132.2.14/32", + "5.132.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.132.4.1/32", + "5.132.4.3/32", + "5.132.4.5/32", + "5.132.4.7/32", + "5.132.4.9/32", + "5.132.4.11/32", + "5.132.4.13/32", + "5.132.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.4.1/32", + "5.132.4.3/32", + "5.132.4.5/32", + "5.132.4.7/32", + "5.132.4.9/32", + "5.132.4.11/32", + "5.132.4.13/32", + "5.132.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.132.4.2/32", + "5.132.4.4/32", + "5.132.4.6/32", + "5.132.4.8/32", + "5.132.4.10/32", + "5.132.4.12/32", + "5.132.4.14/32", + "5.132.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.4.2/32", + "5.132.4.4/32", + "5.132.4.6/32", + "5.132.4.8/32", + "5.132.4.10/32", + "5.132.4.12/32", + "5.132.4.14/32", + "5.132.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.132.6.1/32", + "5.132.6.3/32", + "5.132.6.5/32", + "5.132.6.7/32", + "5.132.6.9/32", + "5.132.6.11/32", + "5.132.6.13/32", + "5.132.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.6.1/32", + "5.132.6.3/32", + "5.132.6.5/32", + "5.132.6.7/32", + "5.132.6.9/32", + "5.132.6.11/32", + "5.132.6.13/32", + "5.132.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.132.6.2/32", + "5.132.6.4/32", + "5.132.6.6/32", + "5.132.6.8/32", + "5.132.6.10/32", + "5.132.6.12/32", + "5.132.6.14/32", + "5.132.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.6.2/32", + "5.132.6.4/32", + "5.132.6.6/32", + "5.132.6.8/32", + "5.132.6.10/32", + "5.132.6.12/32", + "5.132.6.14/32", + "5.132.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.132.8.1/32", + "5.132.8.3/32", + "5.132.8.5/32", + "5.132.8.7/32", + "5.132.8.9/32", + "5.132.8.11/32", + "5.132.8.13/32", + "5.132.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.8.1/32", + "5.132.8.3/32", + "5.132.8.5/32", + "5.132.8.7/32", + "5.132.8.9/32", + "5.132.8.11/32", + "5.132.8.13/32", + "5.132.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.132.8.2/32", + "5.132.8.4/32", + "5.132.8.6/32", + "5.132.8.8/32", + "5.132.8.10/32", + "5.132.8.12/32", + "5.132.8.14/32", + "5.132.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.132.8.2/32", + "5.132.8.4/32", + "5.132.8.6/32", + "5.132.8.8/32", + "5.132.8.10/32", + "5.132.8.12/32", + "5.132.8.14/32", + "5.132.8.16/32", + "5.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:5:TABLE:5003": { + "acl-group-id": "acl-group-5003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.136.0.1/32", + "5.136.0.3/32", + "5.136.0.5/32", + "5.136.0.7/32", + "5.136.0.9/32", + "5.136.0.11/32", + "5.136.0.13/32", + "5.136.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.0.1/32", + "5.136.0.3/32", + "5.136.0.5/32", + "5.136.0.7/32", + "5.136.0.9/32", + "5.136.0.11/32", + "5.136.0.13/32", + "5.136.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.136.0.2/32", + "5.136.0.4/32", + "5.136.0.6/32", + "5.136.0.8/32", + "5.136.0.10/32", + "5.136.0.12/32", + "5.136.0.14/32", + "5.136.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.0.2/32", + "5.136.0.4/32", + "5.136.0.6/32", + "5.136.0.8/32", + "5.136.0.10/32", + "5.136.0.12/32", + "5.136.0.14/32", + "5.136.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.136.2.1/32", + "5.136.2.3/32", + "5.136.2.5/32", + "5.136.2.7/32", + "5.136.2.9/32", + "5.136.2.11/32", + "5.136.2.13/32", + "5.136.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.2.1/32", + "5.136.2.3/32", + "5.136.2.5/32", + "5.136.2.7/32", + "5.136.2.9/32", + "5.136.2.11/32", + "5.136.2.13/32", + "5.136.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.136.2.2/32", + "5.136.2.4/32", + "5.136.2.6/32", + "5.136.2.8/32", + "5.136.2.10/32", + "5.136.2.12/32", + "5.136.2.14/32", + "5.136.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.2.2/32", + "5.136.2.4/32", + "5.136.2.6/32", + "5.136.2.8/32", + "5.136.2.10/32", + "5.136.2.12/32", + "5.136.2.14/32", + "5.136.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.136.4.1/32", + "5.136.4.3/32", + "5.136.4.5/32", + "5.136.4.7/32", + "5.136.4.9/32", + "5.136.4.11/32", + "5.136.4.13/32", + "5.136.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.4.1/32", + "5.136.4.3/32", + "5.136.4.5/32", + "5.136.4.7/32", + "5.136.4.9/32", + "5.136.4.11/32", + "5.136.4.13/32", + "5.136.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.136.4.2/32", + "5.136.4.4/32", + "5.136.4.6/32", + "5.136.4.8/32", + "5.136.4.10/32", + "5.136.4.12/32", + "5.136.4.14/32", + "5.136.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.4.2/32", + "5.136.4.4/32", + "5.136.4.6/32", + "5.136.4.8/32", + "5.136.4.10/32", + "5.136.4.12/32", + "5.136.4.14/32", + "5.136.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.136.6.1/32", + "5.136.6.3/32", + "5.136.6.5/32", + "5.136.6.7/32", + "5.136.6.9/32", + "5.136.6.11/32", + "5.136.6.13/32", + "5.136.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.6.1/32", + "5.136.6.3/32", + "5.136.6.5/32", + "5.136.6.7/32", + "5.136.6.9/32", + "5.136.6.11/32", + "5.136.6.13/32", + "5.136.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.136.6.2/32", + "5.136.6.4/32", + "5.136.6.6/32", + "5.136.6.8/32", + "5.136.6.10/32", + "5.136.6.12/32", + "5.136.6.14/32", + "5.136.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.6.2/32", + "5.136.6.4/32", + "5.136.6.6/32", + "5.136.6.8/32", + "5.136.6.10/32", + "5.136.6.12/32", + "5.136.6.14/32", + "5.136.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.136.8.1/32", + "5.136.8.3/32", + "5.136.8.5/32", + "5.136.8.7/32", + "5.136.8.9/32", + "5.136.8.11/32", + "5.136.8.13/32", + "5.136.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.8.1/32", + "5.136.8.3/32", + "5.136.8.5/32", + "5.136.8.7/32", + "5.136.8.9/32", + "5.136.8.11/32", + "5.136.8.13/32", + "5.136.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.136.8.2/32", + "5.136.8.4/32", + "5.136.8.6/32", + "5.136.8.8/32", + "5.136.8.10/32", + "5.136.8.12/32", + "5.136.8.14/32", + "5.136.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.136.8.2/32", + "5.136.8.4/32", + "5.136.8.6/32", + "5.136.8.8/32", + "5.136.8.10/32", + "5.136.8.12/32", + "5.136.8.14/32", + "5.136.8.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "5.1.0.1/32", + "5.140.0.1/14", + "5.144.0.1/14", + "5.148.0.1/14" + ], + "dst_addrs": [ + "5.1.0.1/32", + "5.140.0.1/14", + "5.144.0.1/14", + "5.148.0.1/14" + ] + } + ] } - ], - "vpc": [ - { - "VPC:1": { - "vpc-id": "vpc-1", - "vni-key": 1, - "encap": "vxlan", - "address_spaces": [ - "1.1.0.1/32" - ] - } - }, - { - "VPC:101": { - "vpc-id": "vpc-101", - "vni-key": 101, - "encap": "vxlan", - "address_spaces": [ - "1.128.0.1/9" - ] - } - }, - { - "VPC:2": { - "vpc-id": "vpc-2", - "vni-key": 2, - "encap": "vxlan", - "address_spaces": [ - "2.1.0.1/32" - ] - } - }, - { - "VPC:102": { - "vpc-id": "vpc-102", - "vni-key": 102, - "encap": "vxlan", - "address_spaces": [ - "2.128.0.1/9" - ] - } - }, - { - "VPC:3": { - "vpc-id": "vpc-3", - "vni-key": 3, - "encap": "vxlan", - "address_spaces": [ - "3.1.0.1/32" - ] - } - }, - { - "VPC:103": { - "vpc-id": "vpc-103", - "vni-key": 103, - "encap": "vxlan", - "address_spaces": [ - "3.128.0.1/9" - ] - } - }, - { - "VPC:4": { - "vpc-id": "vpc-4", - "vni-key": 4, - "encap": "vxlan", - "address_spaces": [ - "4.1.0.1/32" - ] - } - }, - { - "VPC:104": { - "vpc-id": "vpc-104", - "vni-key": 104, - "encap": "vxlan", - "address_spaces": [ - "4.128.0.1/9" - ] - } - }, - { - "VPC:5": { - "vpc-id": "vpc-5", - "vni-key": 5, - "encap": "vxlan", - "address_spaces": [ - "5.1.0.1/32" - ] - } - }, - { - "VPC:105": { - "vpc-id": "vpc-105", - "vni-key": 105, - "encap": "vxlan", - "address_spaces": [ - "5.128.0.1/9" - ] - } - }, - { - "VPC:6": { - "vpc-id": "vpc-6", - "vni-key": 6, - "encap": "vxlan", - "address_spaces": [ - "6.1.0.1/32" - ] - } - }, - { - "VPC:106": { - "vpc-id": "vpc-106", - "vni-key": 106, - "encap": "vxlan", - "address_spaces": [ - "6.128.0.1/9" - ] - } - }, - { - "VPC:7": { - "vpc-id": "vpc-7", - "vni-key": 7, - "encap": "vxlan", - "address_spaces": [ - "7.1.0.1/32" - ] - } - }, - { - "VPC:107": { - "vpc-id": "vpc-107", - "vni-key": 107, - "encap": "vxlan", - "address_spaces": [ - "7.128.0.1/9" - ] - } - }, - { - "VPC:8": { - "vpc-id": "vpc-8", - "vni-key": 8, - "encap": "vxlan", - "address_spaces": [ - "8.1.0.1/32" - ] - } - }, - { - "VPC:108": { - "vpc-id": "vpc-108", - "vni-key": 108, - "encap": "vxlan", - "address_spaces": [ - "8.128.0.1/9" - ] - } + }, + { + "ACL-GROUP:ENI:5:TABLE:5004": { + "acl-group-id": "acl-group-5004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.140.0.1/32", + "5.140.0.3/32", + "5.140.0.5/32", + "5.140.0.7/32", + "5.140.0.9/32", + "5.140.0.11/32", + "5.140.0.13/32", + "5.140.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.0.1/32", + "5.140.0.3/32", + "5.140.0.5/32", + "5.140.0.7/32", + "5.140.0.9/32", + "5.140.0.11/32", + "5.140.0.13/32", + "5.140.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.140.0.2/32", + "5.140.0.4/32", + "5.140.0.6/32", + "5.140.0.8/32", + "5.140.0.10/32", + "5.140.0.12/32", + "5.140.0.14/32", + "5.140.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.0.2/32", + "5.140.0.4/32", + "5.140.0.6/32", + "5.140.0.8/32", + "5.140.0.10/32", + "5.140.0.12/32", + "5.140.0.14/32", + "5.140.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.140.2.1/32", + "5.140.2.3/32", + "5.140.2.5/32", + "5.140.2.7/32", + "5.140.2.9/32", + "5.140.2.11/32", + "5.140.2.13/32", + "5.140.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.2.1/32", + "5.140.2.3/32", + "5.140.2.5/32", + "5.140.2.7/32", + "5.140.2.9/32", + "5.140.2.11/32", + "5.140.2.13/32", + "5.140.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.140.2.2/32", + "5.140.2.4/32", + "5.140.2.6/32", + "5.140.2.8/32", + "5.140.2.10/32", + "5.140.2.12/32", + "5.140.2.14/32", + "5.140.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.2.2/32", + "5.140.2.4/32", + "5.140.2.6/32", + "5.140.2.8/32", + "5.140.2.10/32", + "5.140.2.12/32", + "5.140.2.14/32", + "5.140.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.140.4.1/32", + "5.140.4.3/32", + "5.140.4.5/32", + "5.140.4.7/32", + "5.140.4.9/32", + "5.140.4.11/32", + "5.140.4.13/32", + "5.140.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.4.1/32", + "5.140.4.3/32", + "5.140.4.5/32", + "5.140.4.7/32", + "5.140.4.9/32", + "5.140.4.11/32", + "5.140.4.13/32", + "5.140.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.140.4.2/32", + "5.140.4.4/32", + "5.140.4.6/32", + "5.140.4.8/32", + "5.140.4.10/32", + "5.140.4.12/32", + "5.140.4.14/32", + "5.140.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.4.2/32", + "5.140.4.4/32", + "5.140.4.6/32", + "5.140.4.8/32", + "5.140.4.10/32", + "5.140.4.12/32", + "5.140.4.14/32", + "5.140.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.140.6.1/32", + "5.140.6.3/32", + "5.140.6.5/32", + "5.140.6.7/32", + "5.140.6.9/32", + "5.140.6.11/32", + "5.140.6.13/32", + "5.140.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.6.1/32", + "5.140.6.3/32", + "5.140.6.5/32", + "5.140.6.7/32", + "5.140.6.9/32", + "5.140.6.11/32", + "5.140.6.13/32", + "5.140.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.140.6.2/32", + "5.140.6.4/32", + "5.140.6.6/32", + "5.140.6.8/32", + "5.140.6.10/32", + "5.140.6.12/32", + "5.140.6.14/32", + "5.140.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.6.2/32", + "5.140.6.4/32", + "5.140.6.6/32", + "5.140.6.8/32", + "5.140.6.10/32", + "5.140.6.12/32", + "5.140.6.14/32", + "5.140.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.140.8.1/32", + "5.140.8.3/32", + "5.140.8.5/32", + "5.140.8.7/32", + "5.140.8.9/32", + "5.140.8.11/32", + "5.140.8.13/32", + "5.140.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.8.1/32", + "5.140.8.3/32", + "5.140.8.5/32", + "5.140.8.7/32", + "5.140.8.9/32", + "5.140.8.11/32", + "5.140.8.13/32", + "5.140.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.140.8.2/32", + "5.140.8.4/32", + "5.140.8.6/32", + "5.140.8.8/32", + "5.140.8.10/32", + "5.140.8.12/32", + "5.140.8.14/32", + "5.140.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.140.8.2/32", + "5.140.8.4/32", + "5.140.8.6/32", + "5.140.8.8/32", + "5.140.8.10/32", + "5.140.8.12/32", + "5.140.8.14/32", + "5.140.8.16/32", + "5.1.0.1/32" + ] + } + ] } - ], - "vpc-mappings-routing-types": [ - [ - "vpc", - "privatelink", - "privatelinknsg" - ] - ], - "vpc-mappings": [ - { - "MAPPINGS:VPC:1": { - "vpc-id": "vpc-1", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.1.0.1", - "underlay-ip-address": "221.0.1.1", - "mac": "00:1A:C5:00:00:01" + }, + { + "ACL-GROUP:ENI:5:TABLE:5005": { + "acl-group-id": "acl-group-5005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.144.0.1/32", + "5.144.0.3/32", + "5.144.0.5/32", + "5.144.0.7/32", + "5.144.0.9/32", + "5.144.0.11/32", + "5.144.0.13/32", + "5.144.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.0.1/32", + "5.144.0.3/32", + "5.144.0.5/32", + "5.144.0.7/32", + "5.144.0.9/32", + "5.144.0.11/32", + "5.144.0.13/32", + "5.144.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.144.0.2/32", + "5.144.0.4/32", + "5.144.0.6/32", + "5.144.0.8/32", + "5.144.0.10/32", + "5.144.0.12/32", + "5.144.0.14/32", + "5.144.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.0.2/32", + "5.144.0.4/32", + "5.144.0.6/32", + "5.144.0.8/32", + "5.144.0.10/32", + "5.144.0.12/32", + "5.144.0.14/32", + "5.144.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.144.2.1/32", + "5.144.2.3/32", + "5.144.2.5/32", + "5.144.2.7/32", + "5.144.2.9/32", + "5.144.2.11/32", + "5.144.2.13/32", + "5.144.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.2.1/32", + "5.144.2.3/32", + "5.144.2.5/32", + "5.144.2.7/32", + "5.144.2.9/32", + "5.144.2.11/32", + "5.144.2.13/32", + "5.144.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.144.2.2/32", + "5.144.2.4/32", + "5.144.2.6/32", + "5.144.2.8/32", + "5.144.2.10/32", + "5.144.2.12/32", + "5.144.2.14/32", + "5.144.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.2.2/32", + "5.144.2.4/32", + "5.144.2.6/32", + "5.144.2.8/32", + "5.144.2.10/32", + "5.144.2.12/32", + "5.144.2.14/32", + "5.144.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.144.4.1/32", + "5.144.4.3/32", + "5.144.4.5/32", + "5.144.4.7/32", + "5.144.4.9/32", + "5.144.4.11/32", + "5.144.4.13/32", + "5.144.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.4.1/32", + "5.144.4.3/32", + "5.144.4.5/32", + "5.144.4.7/32", + "5.144.4.9/32", + "5.144.4.11/32", + "5.144.4.13/32", + "5.144.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.144.4.2/32", + "5.144.4.4/32", + "5.144.4.6/32", + "5.144.4.8/32", + "5.144.4.10/32", + "5.144.4.12/32", + "5.144.4.14/32", + "5.144.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.4.2/32", + "5.144.4.4/32", + "5.144.4.6/32", + "5.144.4.8/32", + "5.144.4.10/32", + "5.144.4.12/32", + "5.144.4.14/32", + "5.144.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.144.6.1/32", + "5.144.6.3/32", + "5.144.6.5/32", + "5.144.6.7/32", + "5.144.6.9/32", + "5.144.6.11/32", + "5.144.6.13/32", + "5.144.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.6.1/32", + "5.144.6.3/32", + "5.144.6.5/32", + "5.144.6.7/32", + "5.144.6.9/32", + "5.144.6.11/32", + "5.144.6.13/32", + "5.144.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.144.6.2/32", + "5.144.6.4/32", + "5.144.6.6/32", + "5.144.6.8/32", + "5.144.6.10/32", + "5.144.6.12/32", + "5.144.6.14/32", + "5.144.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.6.2/32", + "5.144.6.4/32", + "5.144.6.6/32", + "5.144.6.8/32", + "5.144.6.10/32", + "5.144.6.12/32", + "5.144.6.14/32", + "5.144.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.144.8.1/32", + "5.144.8.3/32", + "5.144.8.5/32", + "5.144.8.7/32", + "5.144.8.9/32", + "5.144.8.11/32", + "5.144.8.13/32", + "5.144.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.8.1/32", + "5.144.8.3/32", + "5.144.8.5/32", + "5.144.8.7/32", + "5.144.8.9/32", + "5.144.8.11/32", + "5.144.8.13/32", + "5.144.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.144.8.2/32", + "5.144.8.4/32", + "5.144.8.6/32", + "5.144.8.8/32", + "5.144.8.10/32", + "5.144.8.12/32", + "5.144.8.14/32", + "5.144.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.144.8.2/32", + "5.144.8.4/32", + "5.144.8.6/32", + "5.144.8.8/32", + "5.144.8.10/32", + "5.144.8.12/32", + "5.144.8.14/32", + "5.144.8.16/32", + "5.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:5:TABLE:5006": { + "acl-group-id": "acl-group-5006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.148.0.1/32", + "5.148.0.3/32", + "5.148.0.5/32", + "5.148.0.7/32", + "5.148.0.9/32", + "5.148.0.11/32", + "5.148.0.13/32", + "5.148.0.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.0.1/32", + "5.148.0.3/32", + "5.148.0.5/32", + "5.148.0.7/32", + "5.148.0.9/32", + "5.148.0.11/32", + "5.148.0.13/32", + "5.148.0.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.148.0.2/32", + "5.148.0.4/32", + "5.148.0.6/32", + "5.148.0.8/32", + "5.148.0.10/32", + "5.148.0.12/32", + "5.148.0.14/32", + "5.148.0.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.0.2/32", + "5.148.0.4/32", + "5.148.0.6/32", + "5.148.0.8/32", + "5.148.0.10/32", + "5.148.0.12/32", + "5.148.0.14/32", + "5.148.0.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.148.2.1/32", + "5.148.2.3/32", + "5.148.2.5/32", + "5.148.2.7/32", + "5.148.2.9/32", + "5.148.2.11/32", + "5.148.2.13/32", + "5.148.2.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.2.1/32", + "5.148.2.3/32", + "5.148.2.5/32", + "5.148.2.7/32", + "5.148.2.9/32", + "5.148.2.11/32", + "5.148.2.13/32", + "5.148.2.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.148.2.2/32", + "5.148.2.4/32", + "5.148.2.6/32", + "5.148.2.8/32", + "5.148.2.10/32", + "5.148.2.12/32", + "5.148.2.14/32", + "5.148.2.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.2.2/32", + "5.148.2.4/32", + "5.148.2.6/32", + "5.148.2.8/32", + "5.148.2.10/32", + "5.148.2.12/32", + "5.148.2.14/32", + "5.148.2.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.148.4.1/32", + "5.148.4.3/32", + "5.148.4.5/32", + "5.148.4.7/32", + "5.148.4.9/32", + "5.148.4.11/32", + "5.148.4.13/32", + "5.148.4.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.4.1/32", + "5.148.4.3/32", + "5.148.4.5/32", + "5.148.4.7/32", + "5.148.4.9/32", + "5.148.4.11/32", + "5.148.4.13/32", + "5.148.4.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.148.4.2/32", + "5.148.4.4/32", + "5.148.4.6/32", + "5.148.4.8/32", + "5.148.4.10/32", + "5.148.4.12/32", + "5.148.4.14/32", + "5.148.4.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.4.2/32", + "5.148.4.4/32", + "5.148.4.6/32", + "5.148.4.8/32", + "5.148.4.10/32", + "5.148.4.12/32", + "5.148.4.14/32", + "5.148.4.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.148.6.1/32", + "5.148.6.3/32", + "5.148.6.5/32", + "5.148.6.7/32", + "5.148.6.9/32", + "5.148.6.11/32", + "5.148.6.13/32", + "5.148.6.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.6.1/32", + "5.148.6.3/32", + "5.148.6.5/32", + "5.148.6.7/32", + "5.148.6.9/32", + "5.148.6.11/32", + "5.148.6.13/32", + "5.148.6.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.148.6.2/32", + "5.148.6.4/32", + "5.148.6.6/32", + "5.148.6.8/32", + "5.148.6.10/32", + "5.148.6.12/32", + "5.148.6.14/32", + "5.148.6.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.6.2/32", + "5.148.6.4/32", + "5.148.6.6/32", + "5.148.6.8/32", + "5.148.6.10/32", + "5.148.6.12/32", + "5.148.6.14/32", + "5.148.6.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "5.148.8.1/32", + "5.148.8.3/32", + "5.148.8.5/32", + "5.148.8.7/32", + "5.148.8.9/32", + "5.148.8.11/32", + "5.148.8.13/32", + "5.148.8.15/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.8.1/32", + "5.148.8.3/32", + "5.148.8.5/32", + "5.148.8.7/32", + "5.148.8.9/32", + "5.148.8.11/32", + "5.148.8.13/32", + "5.148.8.15/32", + "5.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "5.148.8.2/32", + "5.148.8.4/32", + "5.148.8.6/32", + "5.148.8.8/32", + "5.148.8.10/32", + "5.148.8.12/32", + "5.148.8.14/32", + "5.148.8.16/32", + "5.1.0.1/32" + ], + "dst_addrs": [ + "5.148.8.2/32", + "5.148.8.4/32", + "5.148.8.6/32", + "5.148.8.8/32", + "5.148.8.10/32", + "5.148.8.12/32", + "5.148.8.14/32", + "5.148.8.16/32", + "5.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "5.1.0.1/32", + "5.128.0.1/14", + "5.132.0.1/14", + "5.136.0.1/14" + ], + "dst_addrs": [ + "5.1.0.1/32", + "5.128.0.1/14", + "5.132.0.1/14", + "5.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6001": { + "acl-group-id": "acl-group-6001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.128.0.1/32", + "6.128.0.3/32", + "6.128.0.5/32", + "6.128.0.7/32", + "6.128.0.9/32", + "6.128.0.11/32", + "6.128.0.13/32", + "6.128.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.0.1/32", + "6.128.0.3/32", + "6.128.0.5/32", + "6.128.0.7/32", + "6.128.0.9/32", + "6.128.0.11/32", + "6.128.0.13/32", + "6.128.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.128.0.2/32", + "6.128.0.4/32", + "6.128.0.6/32", + "6.128.0.8/32", + "6.128.0.10/32", + "6.128.0.12/32", + "6.128.0.14/32", + "6.128.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.0.2/32", + "6.128.0.4/32", + "6.128.0.6/32", + "6.128.0.8/32", + "6.128.0.10/32", + "6.128.0.12/32", + "6.128.0.14/32", + "6.128.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.128.2.1/32", + "6.128.2.3/32", + "6.128.2.5/32", + "6.128.2.7/32", + "6.128.2.9/32", + "6.128.2.11/32", + "6.128.2.13/32", + "6.128.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.2.1/32", + "6.128.2.3/32", + "6.128.2.5/32", + "6.128.2.7/32", + "6.128.2.9/32", + "6.128.2.11/32", + "6.128.2.13/32", + "6.128.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.128.2.2/32", + "6.128.2.4/32", + "6.128.2.6/32", + "6.128.2.8/32", + "6.128.2.10/32", + "6.128.2.12/32", + "6.128.2.14/32", + "6.128.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.2.2/32", + "6.128.2.4/32", + "6.128.2.6/32", + "6.128.2.8/32", + "6.128.2.10/32", + "6.128.2.12/32", + "6.128.2.14/32", + "6.128.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.128.4.1/32", + "6.128.4.3/32", + "6.128.4.5/32", + "6.128.4.7/32", + "6.128.4.9/32", + "6.128.4.11/32", + "6.128.4.13/32", + "6.128.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.4.1/32", + "6.128.4.3/32", + "6.128.4.5/32", + "6.128.4.7/32", + "6.128.4.9/32", + "6.128.4.11/32", + "6.128.4.13/32", + "6.128.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.128.4.2/32", + "6.128.4.4/32", + "6.128.4.6/32", + "6.128.4.8/32", + "6.128.4.10/32", + "6.128.4.12/32", + "6.128.4.14/32", + "6.128.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.4.2/32", + "6.128.4.4/32", + "6.128.4.6/32", + "6.128.4.8/32", + "6.128.4.10/32", + "6.128.4.12/32", + "6.128.4.14/32", + "6.128.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.128.6.1/32", + "6.128.6.3/32", + "6.128.6.5/32", + "6.128.6.7/32", + "6.128.6.9/32", + "6.128.6.11/32", + "6.128.6.13/32", + "6.128.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.6.1/32", + "6.128.6.3/32", + "6.128.6.5/32", + "6.128.6.7/32", + "6.128.6.9/32", + "6.128.6.11/32", + "6.128.6.13/32", + "6.128.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.128.6.2/32", + "6.128.6.4/32", + "6.128.6.6/32", + "6.128.6.8/32", + "6.128.6.10/32", + "6.128.6.12/32", + "6.128.6.14/32", + "6.128.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.6.2/32", + "6.128.6.4/32", + "6.128.6.6/32", + "6.128.6.8/32", + "6.128.6.10/32", + "6.128.6.12/32", + "6.128.6.14/32", + "6.128.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.128.8.1/32", + "6.128.8.3/32", + "6.128.8.5/32", + "6.128.8.7/32", + "6.128.8.9/32", + "6.128.8.11/32", + "6.128.8.13/32", + "6.128.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.8.1/32", + "6.128.8.3/32", + "6.128.8.5/32", + "6.128.8.7/32", + "6.128.8.9/32", + "6.128.8.11/32", + "6.128.8.13/32", + "6.128.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.128.8.2/32", + "6.128.8.4/32", + "6.128.8.6/32", + "6.128.8.8/32", + "6.128.8.10/32", + "6.128.8.12/32", + "6.128.8.14/32", + "6.128.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.128.8.2/32", + "6.128.8.4/32", + "6.128.8.6/32", + "6.128.8.8/32", + "6.128.8.10/32", + "6.128.8.12/32", + "6.128.8.14/32", + "6.128.8.16/32", + "6.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6002": { + "acl-group-id": "acl-group-6002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.132.0.1/32", + "6.132.0.3/32", + "6.132.0.5/32", + "6.132.0.7/32", + "6.132.0.9/32", + "6.132.0.11/32", + "6.132.0.13/32", + "6.132.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.0.1/32", + "6.132.0.3/32", + "6.132.0.5/32", + "6.132.0.7/32", + "6.132.0.9/32", + "6.132.0.11/32", + "6.132.0.13/32", + "6.132.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.132.0.2/32", + "6.132.0.4/32", + "6.132.0.6/32", + "6.132.0.8/32", + "6.132.0.10/32", + "6.132.0.12/32", + "6.132.0.14/32", + "6.132.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.0.2/32", + "6.132.0.4/32", + "6.132.0.6/32", + "6.132.0.8/32", + "6.132.0.10/32", + "6.132.0.12/32", + "6.132.0.14/32", + "6.132.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.132.2.1/32", + "6.132.2.3/32", + "6.132.2.5/32", + "6.132.2.7/32", + "6.132.2.9/32", + "6.132.2.11/32", + "6.132.2.13/32", + "6.132.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.2.1/32", + "6.132.2.3/32", + "6.132.2.5/32", + "6.132.2.7/32", + "6.132.2.9/32", + "6.132.2.11/32", + "6.132.2.13/32", + "6.132.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.132.2.2/32", + "6.132.2.4/32", + "6.132.2.6/32", + "6.132.2.8/32", + "6.132.2.10/32", + "6.132.2.12/32", + "6.132.2.14/32", + "6.132.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.2.2/32", + "6.132.2.4/32", + "6.132.2.6/32", + "6.132.2.8/32", + "6.132.2.10/32", + "6.132.2.12/32", + "6.132.2.14/32", + "6.132.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.132.4.1/32", + "6.132.4.3/32", + "6.132.4.5/32", + "6.132.4.7/32", + "6.132.4.9/32", + "6.132.4.11/32", + "6.132.4.13/32", + "6.132.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.4.1/32", + "6.132.4.3/32", + "6.132.4.5/32", + "6.132.4.7/32", + "6.132.4.9/32", + "6.132.4.11/32", + "6.132.4.13/32", + "6.132.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.132.4.2/32", + "6.132.4.4/32", + "6.132.4.6/32", + "6.132.4.8/32", + "6.132.4.10/32", + "6.132.4.12/32", + "6.132.4.14/32", + "6.132.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.4.2/32", + "6.132.4.4/32", + "6.132.4.6/32", + "6.132.4.8/32", + "6.132.4.10/32", + "6.132.4.12/32", + "6.132.4.14/32", + "6.132.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.132.6.1/32", + "6.132.6.3/32", + "6.132.6.5/32", + "6.132.6.7/32", + "6.132.6.9/32", + "6.132.6.11/32", + "6.132.6.13/32", + "6.132.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.6.1/32", + "6.132.6.3/32", + "6.132.6.5/32", + "6.132.6.7/32", + "6.132.6.9/32", + "6.132.6.11/32", + "6.132.6.13/32", + "6.132.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.132.6.2/32", + "6.132.6.4/32", + "6.132.6.6/32", + "6.132.6.8/32", + "6.132.6.10/32", + "6.132.6.12/32", + "6.132.6.14/32", + "6.132.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.6.2/32", + "6.132.6.4/32", + "6.132.6.6/32", + "6.132.6.8/32", + "6.132.6.10/32", + "6.132.6.12/32", + "6.132.6.14/32", + "6.132.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.132.8.1/32", + "6.132.8.3/32", + "6.132.8.5/32", + "6.132.8.7/32", + "6.132.8.9/32", + "6.132.8.11/32", + "6.132.8.13/32", + "6.132.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.8.1/32", + "6.132.8.3/32", + "6.132.8.5/32", + "6.132.8.7/32", + "6.132.8.9/32", + "6.132.8.11/32", + "6.132.8.13/32", + "6.132.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.132.8.2/32", + "6.132.8.4/32", + "6.132.8.6/32", + "6.132.8.8/32", + "6.132.8.10/32", + "6.132.8.12/32", + "6.132.8.14/32", + "6.132.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.132.8.2/32", + "6.132.8.4/32", + "6.132.8.6/32", + "6.132.8.8/32", + "6.132.8.10/32", + "6.132.8.12/32", + "6.132.8.14/32", + "6.132.8.16/32", + "6.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6003": { + "acl-group-id": "acl-group-6003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.136.0.1/32", + "6.136.0.3/32", + "6.136.0.5/32", + "6.136.0.7/32", + "6.136.0.9/32", + "6.136.0.11/32", + "6.136.0.13/32", + "6.136.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.0.1/32", + "6.136.0.3/32", + "6.136.0.5/32", + "6.136.0.7/32", + "6.136.0.9/32", + "6.136.0.11/32", + "6.136.0.13/32", + "6.136.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.136.0.2/32", + "6.136.0.4/32", + "6.136.0.6/32", + "6.136.0.8/32", + "6.136.0.10/32", + "6.136.0.12/32", + "6.136.0.14/32", + "6.136.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.0.2/32", + "6.136.0.4/32", + "6.136.0.6/32", + "6.136.0.8/32", + "6.136.0.10/32", + "6.136.0.12/32", + "6.136.0.14/32", + "6.136.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.136.2.1/32", + "6.136.2.3/32", + "6.136.2.5/32", + "6.136.2.7/32", + "6.136.2.9/32", + "6.136.2.11/32", + "6.136.2.13/32", + "6.136.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.2.1/32", + "6.136.2.3/32", + "6.136.2.5/32", + "6.136.2.7/32", + "6.136.2.9/32", + "6.136.2.11/32", + "6.136.2.13/32", + "6.136.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.136.2.2/32", + "6.136.2.4/32", + "6.136.2.6/32", + "6.136.2.8/32", + "6.136.2.10/32", + "6.136.2.12/32", + "6.136.2.14/32", + "6.136.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.2.2/32", + "6.136.2.4/32", + "6.136.2.6/32", + "6.136.2.8/32", + "6.136.2.10/32", + "6.136.2.12/32", + "6.136.2.14/32", + "6.136.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.136.4.1/32", + "6.136.4.3/32", + "6.136.4.5/32", + "6.136.4.7/32", + "6.136.4.9/32", + "6.136.4.11/32", + "6.136.4.13/32", + "6.136.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.4.1/32", + "6.136.4.3/32", + "6.136.4.5/32", + "6.136.4.7/32", + "6.136.4.9/32", + "6.136.4.11/32", + "6.136.4.13/32", + "6.136.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.136.4.2/32", + "6.136.4.4/32", + "6.136.4.6/32", + "6.136.4.8/32", + "6.136.4.10/32", + "6.136.4.12/32", + "6.136.4.14/32", + "6.136.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.4.2/32", + "6.136.4.4/32", + "6.136.4.6/32", + "6.136.4.8/32", + "6.136.4.10/32", + "6.136.4.12/32", + "6.136.4.14/32", + "6.136.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.136.6.1/32", + "6.136.6.3/32", + "6.136.6.5/32", + "6.136.6.7/32", + "6.136.6.9/32", + "6.136.6.11/32", + "6.136.6.13/32", + "6.136.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.6.1/32", + "6.136.6.3/32", + "6.136.6.5/32", + "6.136.6.7/32", + "6.136.6.9/32", + "6.136.6.11/32", + "6.136.6.13/32", + "6.136.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.136.6.2/32", + "6.136.6.4/32", + "6.136.6.6/32", + "6.136.6.8/32", + "6.136.6.10/32", + "6.136.6.12/32", + "6.136.6.14/32", + "6.136.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.6.2/32", + "6.136.6.4/32", + "6.136.6.6/32", + "6.136.6.8/32", + "6.136.6.10/32", + "6.136.6.12/32", + "6.136.6.14/32", + "6.136.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.136.8.1/32", + "6.136.8.3/32", + "6.136.8.5/32", + "6.136.8.7/32", + "6.136.8.9/32", + "6.136.8.11/32", + "6.136.8.13/32", + "6.136.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.8.1/32", + "6.136.8.3/32", + "6.136.8.5/32", + "6.136.8.7/32", + "6.136.8.9/32", + "6.136.8.11/32", + "6.136.8.13/32", + "6.136.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.136.8.2/32", + "6.136.8.4/32", + "6.136.8.6/32", + "6.136.8.8/32", + "6.136.8.10/32", + "6.136.8.12/32", + "6.136.8.14/32", + "6.136.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.136.8.2/32", + "6.136.8.4/32", + "6.136.8.6/32", + "6.136.8.8/32", + "6.136.8.10/32", + "6.136.8.12/32", + "6.136.8.14/32", + "6.136.8.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "6.1.0.1/32", + "6.140.0.1/14", + "6.144.0.1/14", + "6.148.0.1/14" + ], + "dst_addrs": [ + "6.1.0.1/32", + "6.140.0.1/14", + "6.144.0.1/14", + "6.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6004": { + "acl-group-id": "acl-group-6004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.140.0.1/32", + "6.140.0.3/32", + "6.140.0.5/32", + "6.140.0.7/32", + "6.140.0.9/32", + "6.140.0.11/32", + "6.140.0.13/32", + "6.140.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.0.1/32", + "6.140.0.3/32", + "6.140.0.5/32", + "6.140.0.7/32", + "6.140.0.9/32", + "6.140.0.11/32", + "6.140.0.13/32", + "6.140.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.140.0.2/32", + "6.140.0.4/32", + "6.140.0.6/32", + "6.140.0.8/32", + "6.140.0.10/32", + "6.140.0.12/32", + "6.140.0.14/32", + "6.140.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.0.2/32", + "6.140.0.4/32", + "6.140.0.6/32", + "6.140.0.8/32", + "6.140.0.10/32", + "6.140.0.12/32", + "6.140.0.14/32", + "6.140.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.140.2.1/32", + "6.140.2.3/32", + "6.140.2.5/32", + "6.140.2.7/32", + "6.140.2.9/32", + "6.140.2.11/32", + "6.140.2.13/32", + "6.140.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.2.1/32", + "6.140.2.3/32", + "6.140.2.5/32", + "6.140.2.7/32", + "6.140.2.9/32", + "6.140.2.11/32", + "6.140.2.13/32", + "6.140.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.140.2.2/32", + "6.140.2.4/32", + "6.140.2.6/32", + "6.140.2.8/32", + "6.140.2.10/32", + "6.140.2.12/32", + "6.140.2.14/32", + "6.140.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.2.2/32", + "6.140.2.4/32", + "6.140.2.6/32", + "6.140.2.8/32", + "6.140.2.10/32", + "6.140.2.12/32", + "6.140.2.14/32", + "6.140.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.140.4.1/32", + "6.140.4.3/32", + "6.140.4.5/32", + "6.140.4.7/32", + "6.140.4.9/32", + "6.140.4.11/32", + "6.140.4.13/32", + "6.140.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.4.1/32", + "6.140.4.3/32", + "6.140.4.5/32", + "6.140.4.7/32", + "6.140.4.9/32", + "6.140.4.11/32", + "6.140.4.13/32", + "6.140.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.140.4.2/32", + "6.140.4.4/32", + "6.140.4.6/32", + "6.140.4.8/32", + "6.140.4.10/32", + "6.140.4.12/32", + "6.140.4.14/32", + "6.140.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.4.2/32", + "6.140.4.4/32", + "6.140.4.6/32", + "6.140.4.8/32", + "6.140.4.10/32", + "6.140.4.12/32", + "6.140.4.14/32", + "6.140.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.140.6.1/32", + "6.140.6.3/32", + "6.140.6.5/32", + "6.140.6.7/32", + "6.140.6.9/32", + "6.140.6.11/32", + "6.140.6.13/32", + "6.140.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.6.1/32", + "6.140.6.3/32", + "6.140.6.5/32", + "6.140.6.7/32", + "6.140.6.9/32", + "6.140.6.11/32", + "6.140.6.13/32", + "6.140.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.140.6.2/32", + "6.140.6.4/32", + "6.140.6.6/32", + "6.140.6.8/32", + "6.140.6.10/32", + "6.140.6.12/32", + "6.140.6.14/32", + "6.140.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.6.2/32", + "6.140.6.4/32", + "6.140.6.6/32", + "6.140.6.8/32", + "6.140.6.10/32", + "6.140.6.12/32", + "6.140.6.14/32", + "6.140.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.140.8.1/32", + "6.140.8.3/32", + "6.140.8.5/32", + "6.140.8.7/32", + "6.140.8.9/32", + "6.140.8.11/32", + "6.140.8.13/32", + "6.140.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.8.1/32", + "6.140.8.3/32", + "6.140.8.5/32", + "6.140.8.7/32", + "6.140.8.9/32", + "6.140.8.11/32", + "6.140.8.13/32", + "6.140.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.140.8.2/32", + "6.140.8.4/32", + "6.140.8.6/32", + "6.140.8.8/32", + "6.140.8.10/32", + "6.140.8.12/32", + "6.140.8.14/32", + "6.140.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.140.8.2/32", + "6.140.8.4/32", + "6.140.8.6/32", + "6.140.8.8/32", + "6.140.8.10/32", + "6.140.8.12/32", + "6.140.8.14/32", + "6.140.8.16/32", + "6.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6005": { + "acl-group-id": "acl-group-6005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.144.0.1/32", + "6.144.0.3/32", + "6.144.0.5/32", + "6.144.0.7/32", + "6.144.0.9/32", + "6.144.0.11/32", + "6.144.0.13/32", + "6.144.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.0.1/32", + "6.144.0.3/32", + "6.144.0.5/32", + "6.144.0.7/32", + "6.144.0.9/32", + "6.144.0.11/32", + "6.144.0.13/32", + "6.144.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.144.0.2/32", + "6.144.0.4/32", + "6.144.0.6/32", + "6.144.0.8/32", + "6.144.0.10/32", + "6.144.0.12/32", + "6.144.0.14/32", + "6.144.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.0.2/32", + "6.144.0.4/32", + "6.144.0.6/32", + "6.144.0.8/32", + "6.144.0.10/32", + "6.144.0.12/32", + "6.144.0.14/32", + "6.144.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.144.2.1/32", + "6.144.2.3/32", + "6.144.2.5/32", + "6.144.2.7/32", + "6.144.2.9/32", + "6.144.2.11/32", + "6.144.2.13/32", + "6.144.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.2.1/32", + "6.144.2.3/32", + "6.144.2.5/32", + "6.144.2.7/32", + "6.144.2.9/32", + "6.144.2.11/32", + "6.144.2.13/32", + "6.144.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.144.2.2/32", + "6.144.2.4/32", + "6.144.2.6/32", + "6.144.2.8/32", + "6.144.2.10/32", + "6.144.2.12/32", + "6.144.2.14/32", + "6.144.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.2.2/32", + "6.144.2.4/32", + "6.144.2.6/32", + "6.144.2.8/32", + "6.144.2.10/32", + "6.144.2.12/32", + "6.144.2.14/32", + "6.144.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.144.4.1/32", + "6.144.4.3/32", + "6.144.4.5/32", + "6.144.4.7/32", + "6.144.4.9/32", + "6.144.4.11/32", + "6.144.4.13/32", + "6.144.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.4.1/32", + "6.144.4.3/32", + "6.144.4.5/32", + "6.144.4.7/32", + "6.144.4.9/32", + "6.144.4.11/32", + "6.144.4.13/32", + "6.144.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.144.4.2/32", + "6.144.4.4/32", + "6.144.4.6/32", + "6.144.4.8/32", + "6.144.4.10/32", + "6.144.4.12/32", + "6.144.4.14/32", + "6.144.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.4.2/32", + "6.144.4.4/32", + "6.144.4.6/32", + "6.144.4.8/32", + "6.144.4.10/32", + "6.144.4.12/32", + "6.144.4.14/32", + "6.144.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.144.6.1/32", + "6.144.6.3/32", + "6.144.6.5/32", + "6.144.6.7/32", + "6.144.6.9/32", + "6.144.6.11/32", + "6.144.6.13/32", + "6.144.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.6.1/32", + "6.144.6.3/32", + "6.144.6.5/32", + "6.144.6.7/32", + "6.144.6.9/32", + "6.144.6.11/32", + "6.144.6.13/32", + "6.144.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.144.6.2/32", + "6.144.6.4/32", + "6.144.6.6/32", + "6.144.6.8/32", + "6.144.6.10/32", + "6.144.6.12/32", + "6.144.6.14/32", + "6.144.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.6.2/32", + "6.144.6.4/32", + "6.144.6.6/32", + "6.144.6.8/32", + "6.144.6.10/32", + "6.144.6.12/32", + "6.144.6.14/32", + "6.144.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.144.8.1/32", + "6.144.8.3/32", + "6.144.8.5/32", + "6.144.8.7/32", + "6.144.8.9/32", + "6.144.8.11/32", + "6.144.8.13/32", + "6.144.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.8.1/32", + "6.144.8.3/32", + "6.144.8.5/32", + "6.144.8.7/32", + "6.144.8.9/32", + "6.144.8.11/32", + "6.144.8.13/32", + "6.144.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.144.8.2/32", + "6.144.8.4/32", + "6.144.8.6/32", + "6.144.8.8/32", + "6.144.8.10/32", + "6.144.8.12/32", + "6.144.8.14/32", + "6.144.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.144.8.2/32", + "6.144.8.4/32", + "6.144.8.6/32", + "6.144.8.8/32", + "6.144.8.10/32", + "6.144.8.12/32", + "6.144.8.14/32", + "6.144.8.16/32", + "6.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:6:TABLE:6006": { + "acl-group-id": "acl-group-6006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.148.0.1/32", + "6.148.0.3/32", + "6.148.0.5/32", + "6.148.0.7/32", + "6.148.0.9/32", + "6.148.0.11/32", + "6.148.0.13/32", + "6.148.0.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.0.1/32", + "6.148.0.3/32", + "6.148.0.5/32", + "6.148.0.7/32", + "6.148.0.9/32", + "6.148.0.11/32", + "6.148.0.13/32", + "6.148.0.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.148.0.2/32", + "6.148.0.4/32", + "6.148.0.6/32", + "6.148.0.8/32", + "6.148.0.10/32", + "6.148.0.12/32", + "6.148.0.14/32", + "6.148.0.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.0.2/32", + "6.148.0.4/32", + "6.148.0.6/32", + "6.148.0.8/32", + "6.148.0.10/32", + "6.148.0.12/32", + "6.148.0.14/32", + "6.148.0.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.148.2.1/32", + "6.148.2.3/32", + "6.148.2.5/32", + "6.148.2.7/32", + "6.148.2.9/32", + "6.148.2.11/32", + "6.148.2.13/32", + "6.148.2.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.2.1/32", + "6.148.2.3/32", + "6.148.2.5/32", + "6.148.2.7/32", + "6.148.2.9/32", + "6.148.2.11/32", + "6.148.2.13/32", + "6.148.2.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.148.2.2/32", + "6.148.2.4/32", + "6.148.2.6/32", + "6.148.2.8/32", + "6.148.2.10/32", + "6.148.2.12/32", + "6.148.2.14/32", + "6.148.2.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.2.2/32", + "6.148.2.4/32", + "6.148.2.6/32", + "6.148.2.8/32", + "6.148.2.10/32", + "6.148.2.12/32", + "6.148.2.14/32", + "6.148.2.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.148.4.1/32", + "6.148.4.3/32", + "6.148.4.5/32", + "6.148.4.7/32", + "6.148.4.9/32", + "6.148.4.11/32", + "6.148.4.13/32", + "6.148.4.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.4.1/32", + "6.148.4.3/32", + "6.148.4.5/32", + "6.148.4.7/32", + "6.148.4.9/32", + "6.148.4.11/32", + "6.148.4.13/32", + "6.148.4.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.148.4.2/32", + "6.148.4.4/32", + "6.148.4.6/32", + "6.148.4.8/32", + "6.148.4.10/32", + "6.148.4.12/32", + "6.148.4.14/32", + "6.148.4.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.4.2/32", + "6.148.4.4/32", + "6.148.4.6/32", + "6.148.4.8/32", + "6.148.4.10/32", + "6.148.4.12/32", + "6.148.4.14/32", + "6.148.4.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.148.6.1/32", + "6.148.6.3/32", + "6.148.6.5/32", + "6.148.6.7/32", + "6.148.6.9/32", + "6.148.6.11/32", + "6.148.6.13/32", + "6.148.6.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.6.1/32", + "6.148.6.3/32", + "6.148.6.5/32", + "6.148.6.7/32", + "6.148.6.9/32", + "6.148.6.11/32", + "6.148.6.13/32", + "6.148.6.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.148.6.2/32", + "6.148.6.4/32", + "6.148.6.6/32", + "6.148.6.8/32", + "6.148.6.10/32", + "6.148.6.12/32", + "6.148.6.14/32", + "6.148.6.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.6.2/32", + "6.148.6.4/32", + "6.148.6.6/32", + "6.148.6.8/32", + "6.148.6.10/32", + "6.148.6.12/32", + "6.148.6.14/32", + "6.148.6.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "6.148.8.1/32", + "6.148.8.3/32", + "6.148.8.5/32", + "6.148.8.7/32", + "6.148.8.9/32", + "6.148.8.11/32", + "6.148.8.13/32", + "6.148.8.15/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.8.1/32", + "6.148.8.3/32", + "6.148.8.5/32", + "6.148.8.7/32", + "6.148.8.9/32", + "6.148.8.11/32", + "6.148.8.13/32", + "6.148.8.15/32", + "6.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "6.148.8.2/32", + "6.148.8.4/32", + "6.148.8.6/32", + "6.148.8.8/32", + "6.148.8.10/32", + "6.148.8.12/32", + "6.148.8.14/32", + "6.148.8.16/32", + "6.1.0.1/32" + ], + "dst_addrs": [ + "6.148.8.2/32", + "6.148.8.4/32", + "6.148.8.6/32", + "6.148.8.8/32", + "6.148.8.10/32", + "6.148.8.12/32", + "6.148.8.14/32", + "6.148.8.16/32", + "6.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "6.1.0.1/32", + "6.128.0.1/14", + "6.132.0.1/14", + "6.136.0.1/14" + ], + "dst_addrs": [ + "6.1.0.1/32", + "6.128.0.1/14", + "6.132.0.1/14", + "6.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7001": { + "acl-group-id": "acl-group-7001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.128.0.1/32", + "7.128.0.3/32", + "7.128.0.5/32", + "7.128.0.7/32", + "7.128.0.9/32", + "7.128.0.11/32", + "7.128.0.13/32", + "7.128.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.0.1/32", + "7.128.0.3/32", + "7.128.0.5/32", + "7.128.0.7/32", + "7.128.0.9/32", + "7.128.0.11/32", + "7.128.0.13/32", + "7.128.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.128.0.2/32", + "7.128.0.4/32", + "7.128.0.6/32", + "7.128.0.8/32", + "7.128.0.10/32", + "7.128.0.12/32", + "7.128.0.14/32", + "7.128.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.0.2/32", + "7.128.0.4/32", + "7.128.0.6/32", + "7.128.0.8/32", + "7.128.0.10/32", + "7.128.0.12/32", + "7.128.0.14/32", + "7.128.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.128.2.1/32", + "7.128.2.3/32", + "7.128.2.5/32", + "7.128.2.7/32", + "7.128.2.9/32", + "7.128.2.11/32", + "7.128.2.13/32", + "7.128.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.2.1/32", + "7.128.2.3/32", + "7.128.2.5/32", + "7.128.2.7/32", + "7.128.2.9/32", + "7.128.2.11/32", + "7.128.2.13/32", + "7.128.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.128.2.2/32", + "7.128.2.4/32", + "7.128.2.6/32", + "7.128.2.8/32", + "7.128.2.10/32", + "7.128.2.12/32", + "7.128.2.14/32", + "7.128.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.2.2/32", + "7.128.2.4/32", + "7.128.2.6/32", + "7.128.2.8/32", + "7.128.2.10/32", + "7.128.2.12/32", + "7.128.2.14/32", + "7.128.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.128.4.1/32", + "7.128.4.3/32", + "7.128.4.5/32", + "7.128.4.7/32", + "7.128.4.9/32", + "7.128.4.11/32", + "7.128.4.13/32", + "7.128.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.4.1/32", + "7.128.4.3/32", + "7.128.4.5/32", + "7.128.4.7/32", + "7.128.4.9/32", + "7.128.4.11/32", + "7.128.4.13/32", + "7.128.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.128.4.2/32", + "7.128.4.4/32", + "7.128.4.6/32", + "7.128.4.8/32", + "7.128.4.10/32", + "7.128.4.12/32", + "7.128.4.14/32", + "7.128.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.4.2/32", + "7.128.4.4/32", + "7.128.4.6/32", + "7.128.4.8/32", + "7.128.4.10/32", + "7.128.4.12/32", + "7.128.4.14/32", + "7.128.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.128.6.1/32", + "7.128.6.3/32", + "7.128.6.5/32", + "7.128.6.7/32", + "7.128.6.9/32", + "7.128.6.11/32", + "7.128.6.13/32", + "7.128.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.6.1/32", + "7.128.6.3/32", + "7.128.6.5/32", + "7.128.6.7/32", + "7.128.6.9/32", + "7.128.6.11/32", + "7.128.6.13/32", + "7.128.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.128.6.2/32", + "7.128.6.4/32", + "7.128.6.6/32", + "7.128.6.8/32", + "7.128.6.10/32", + "7.128.6.12/32", + "7.128.6.14/32", + "7.128.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.6.2/32", + "7.128.6.4/32", + "7.128.6.6/32", + "7.128.6.8/32", + "7.128.6.10/32", + "7.128.6.12/32", + "7.128.6.14/32", + "7.128.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.128.8.1/32", + "7.128.8.3/32", + "7.128.8.5/32", + "7.128.8.7/32", + "7.128.8.9/32", + "7.128.8.11/32", + "7.128.8.13/32", + "7.128.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.8.1/32", + "7.128.8.3/32", + "7.128.8.5/32", + "7.128.8.7/32", + "7.128.8.9/32", + "7.128.8.11/32", + "7.128.8.13/32", + "7.128.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.128.8.2/32", + "7.128.8.4/32", + "7.128.8.6/32", + "7.128.8.8/32", + "7.128.8.10/32", + "7.128.8.12/32", + "7.128.8.14/32", + "7.128.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.128.8.2/32", + "7.128.8.4/32", + "7.128.8.6/32", + "7.128.8.8/32", + "7.128.8.10/32", + "7.128.8.12/32", + "7.128.8.14/32", + "7.128.8.16/32", + "7.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7002": { + "acl-group-id": "acl-group-7002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.132.0.1/32", + "7.132.0.3/32", + "7.132.0.5/32", + "7.132.0.7/32", + "7.132.0.9/32", + "7.132.0.11/32", + "7.132.0.13/32", + "7.132.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.0.1/32", + "7.132.0.3/32", + "7.132.0.5/32", + "7.132.0.7/32", + "7.132.0.9/32", + "7.132.0.11/32", + "7.132.0.13/32", + "7.132.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.132.0.2/32", + "7.132.0.4/32", + "7.132.0.6/32", + "7.132.0.8/32", + "7.132.0.10/32", + "7.132.0.12/32", + "7.132.0.14/32", + "7.132.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.0.2/32", + "7.132.0.4/32", + "7.132.0.6/32", + "7.132.0.8/32", + "7.132.0.10/32", + "7.132.0.12/32", + "7.132.0.14/32", + "7.132.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.132.2.1/32", + "7.132.2.3/32", + "7.132.2.5/32", + "7.132.2.7/32", + "7.132.2.9/32", + "7.132.2.11/32", + "7.132.2.13/32", + "7.132.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.2.1/32", + "7.132.2.3/32", + "7.132.2.5/32", + "7.132.2.7/32", + "7.132.2.9/32", + "7.132.2.11/32", + "7.132.2.13/32", + "7.132.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.132.2.2/32", + "7.132.2.4/32", + "7.132.2.6/32", + "7.132.2.8/32", + "7.132.2.10/32", + "7.132.2.12/32", + "7.132.2.14/32", + "7.132.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.2.2/32", + "7.132.2.4/32", + "7.132.2.6/32", + "7.132.2.8/32", + "7.132.2.10/32", + "7.132.2.12/32", + "7.132.2.14/32", + "7.132.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.132.4.1/32", + "7.132.4.3/32", + "7.132.4.5/32", + "7.132.4.7/32", + "7.132.4.9/32", + "7.132.4.11/32", + "7.132.4.13/32", + "7.132.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.4.1/32", + "7.132.4.3/32", + "7.132.4.5/32", + "7.132.4.7/32", + "7.132.4.9/32", + "7.132.4.11/32", + "7.132.4.13/32", + "7.132.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.132.4.2/32", + "7.132.4.4/32", + "7.132.4.6/32", + "7.132.4.8/32", + "7.132.4.10/32", + "7.132.4.12/32", + "7.132.4.14/32", + "7.132.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.4.2/32", + "7.132.4.4/32", + "7.132.4.6/32", + "7.132.4.8/32", + "7.132.4.10/32", + "7.132.4.12/32", + "7.132.4.14/32", + "7.132.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.132.6.1/32", + "7.132.6.3/32", + "7.132.6.5/32", + "7.132.6.7/32", + "7.132.6.9/32", + "7.132.6.11/32", + "7.132.6.13/32", + "7.132.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.6.1/32", + "7.132.6.3/32", + "7.132.6.5/32", + "7.132.6.7/32", + "7.132.6.9/32", + "7.132.6.11/32", + "7.132.6.13/32", + "7.132.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.132.6.2/32", + "7.132.6.4/32", + "7.132.6.6/32", + "7.132.6.8/32", + "7.132.6.10/32", + "7.132.6.12/32", + "7.132.6.14/32", + "7.132.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.6.2/32", + "7.132.6.4/32", + "7.132.6.6/32", + "7.132.6.8/32", + "7.132.6.10/32", + "7.132.6.12/32", + "7.132.6.14/32", + "7.132.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.132.8.1/32", + "7.132.8.3/32", + "7.132.8.5/32", + "7.132.8.7/32", + "7.132.8.9/32", + "7.132.8.11/32", + "7.132.8.13/32", + "7.132.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.8.1/32", + "7.132.8.3/32", + "7.132.8.5/32", + "7.132.8.7/32", + "7.132.8.9/32", + "7.132.8.11/32", + "7.132.8.13/32", + "7.132.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.132.8.2/32", + "7.132.8.4/32", + "7.132.8.6/32", + "7.132.8.8/32", + "7.132.8.10/32", + "7.132.8.12/32", + "7.132.8.14/32", + "7.132.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.132.8.2/32", + "7.132.8.4/32", + "7.132.8.6/32", + "7.132.8.8/32", + "7.132.8.10/32", + "7.132.8.12/32", + "7.132.8.14/32", + "7.132.8.16/32", + "7.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7003": { + "acl-group-id": "acl-group-7003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.136.0.1/32", + "7.136.0.3/32", + "7.136.0.5/32", + "7.136.0.7/32", + "7.136.0.9/32", + "7.136.0.11/32", + "7.136.0.13/32", + "7.136.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.0.1/32", + "7.136.0.3/32", + "7.136.0.5/32", + "7.136.0.7/32", + "7.136.0.9/32", + "7.136.0.11/32", + "7.136.0.13/32", + "7.136.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.136.0.2/32", + "7.136.0.4/32", + "7.136.0.6/32", + "7.136.0.8/32", + "7.136.0.10/32", + "7.136.0.12/32", + "7.136.0.14/32", + "7.136.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.0.2/32", + "7.136.0.4/32", + "7.136.0.6/32", + "7.136.0.8/32", + "7.136.0.10/32", + "7.136.0.12/32", + "7.136.0.14/32", + "7.136.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.136.2.1/32", + "7.136.2.3/32", + "7.136.2.5/32", + "7.136.2.7/32", + "7.136.2.9/32", + "7.136.2.11/32", + "7.136.2.13/32", + "7.136.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.2.1/32", + "7.136.2.3/32", + "7.136.2.5/32", + "7.136.2.7/32", + "7.136.2.9/32", + "7.136.2.11/32", + "7.136.2.13/32", + "7.136.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.136.2.2/32", + "7.136.2.4/32", + "7.136.2.6/32", + "7.136.2.8/32", + "7.136.2.10/32", + "7.136.2.12/32", + "7.136.2.14/32", + "7.136.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.2.2/32", + "7.136.2.4/32", + "7.136.2.6/32", + "7.136.2.8/32", + "7.136.2.10/32", + "7.136.2.12/32", + "7.136.2.14/32", + "7.136.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.136.4.1/32", + "7.136.4.3/32", + "7.136.4.5/32", + "7.136.4.7/32", + "7.136.4.9/32", + "7.136.4.11/32", + "7.136.4.13/32", + "7.136.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.4.1/32", + "7.136.4.3/32", + "7.136.4.5/32", + "7.136.4.7/32", + "7.136.4.9/32", + "7.136.4.11/32", + "7.136.4.13/32", + "7.136.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.136.4.2/32", + "7.136.4.4/32", + "7.136.4.6/32", + "7.136.4.8/32", + "7.136.4.10/32", + "7.136.4.12/32", + "7.136.4.14/32", + "7.136.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.4.2/32", + "7.136.4.4/32", + "7.136.4.6/32", + "7.136.4.8/32", + "7.136.4.10/32", + "7.136.4.12/32", + "7.136.4.14/32", + "7.136.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.136.6.1/32", + "7.136.6.3/32", + "7.136.6.5/32", + "7.136.6.7/32", + "7.136.6.9/32", + "7.136.6.11/32", + "7.136.6.13/32", + "7.136.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.6.1/32", + "7.136.6.3/32", + "7.136.6.5/32", + "7.136.6.7/32", + "7.136.6.9/32", + "7.136.6.11/32", + "7.136.6.13/32", + "7.136.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.136.6.2/32", + "7.136.6.4/32", + "7.136.6.6/32", + "7.136.6.8/32", + "7.136.6.10/32", + "7.136.6.12/32", + "7.136.6.14/32", + "7.136.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.6.2/32", + "7.136.6.4/32", + "7.136.6.6/32", + "7.136.6.8/32", + "7.136.6.10/32", + "7.136.6.12/32", + "7.136.6.14/32", + "7.136.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.136.8.1/32", + "7.136.8.3/32", + "7.136.8.5/32", + "7.136.8.7/32", + "7.136.8.9/32", + "7.136.8.11/32", + "7.136.8.13/32", + "7.136.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.8.1/32", + "7.136.8.3/32", + "7.136.8.5/32", + "7.136.8.7/32", + "7.136.8.9/32", + "7.136.8.11/32", + "7.136.8.13/32", + "7.136.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.136.8.2/32", + "7.136.8.4/32", + "7.136.8.6/32", + "7.136.8.8/32", + "7.136.8.10/32", + "7.136.8.12/32", + "7.136.8.14/32", + "7.136.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.136.8.2/32", + "7.136.8.4/32", + "7.136.8.6/32", + "7.136.8.8/32", + "7.136.8.10/32", + "7.136.8.12/32", + "7.136.8.14/32", + "7.136.8.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "7.1.0.1/32", + "7.140.0.1/14", + "7.144.0.1/14", + "7.148.0.1/14" + ], + "dst_addrs": [ + "7.1.0.1/32", + "7.140.0.1/14", + "7.144.0.1/14", + "7.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7004": { + "acl-group-id": "acl-group-7004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.140.0.1/32", + "7.140.0.3/32", + "7.140.0.5/32", + "7.140.0.7/32", + "7.140.0.9/32", + "7.140.0.11/32", + "7.140.0.13/32", + "7.140.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.0.1/32", + "7.140.0.3/32", + "7.140.0.5/32", + "7.140.0.7/32", + "7.140.0.9/32", + "7.140.0.11/32", + "7.140.0.13/32", + "7.140.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.140.0.2/32", + "7.140.0.4/32", + "7.140.0.6/32", + "7.140.0.8/32", + "7.140.0.10/32", + "7.140.0.12/32", + "7.140.0.14/32", + "7.140.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.0.2/32", + "7.140.0.4/32", + "7.140.0.6/32", + "7.140.0.8/32", + "7.140.0.10/32", + "7.140.0.12/32", + "7.140.0.14/32", + "7.140.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.140.2.1/32", + "7.140.2.3/32", + "7.140.2.5/32", + "7.140.2.7/32", + "7.140.2.9/32", + "7.140.2.11/32", + "7.140.2.13/32", + "7.140.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.2.1/32", + "7.140.2.3/32", + "7.140.2.5/32", + "7.140.2.7/32", + "7.140.2.9/32", + "7.140.2.11/32", + "7.140.2.13/32", + "7.140.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.140.2.2/32", + "7.140.2.4/32", + "7.140.2.6/32", + "7.140.2.8/32", + "7.140.2.10/32", + "7.140.2.12/32", + "7.140.2.14/32", + "7.140.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.2.2/32", + "7.140.2.4/32", + "7.140.2.6/32", + "7.140.2.8/32", + "7.140.2.10/32", + "7.140.2.12/32", + "7.140.2.14/32", + "7.140.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.140.4.1/32", + "7.140.4.3/32", + "7.140.4.5/32", + "7.140.4.7/32", + "7.140.4.9/32", + "7.140.4.11/32", + "7.140.4.13/32", + "7.140.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.4.1/32", + "7.140.4.3/32", + "7.140.4.5/32", + "7.140.4.7/32", + "7.140.4.9/32", + "7.140.4.11/32", + "7.140.4.13/32", + "7.140.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.140.4.2/32", + "7.140.4.4/32", + "7.140.4.6/32", + "7.140.4.8/32", + "7.140.4.10/32", + "7.140.4.12/32", + "7.140.4.14/32", + "7.140.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.4.2/32", + "7.140.4.4/32", + "7.140.4.6/32", + "7.140.4.8/32", + "7.140.4.10/32", + "7.140.4.12/32", + "7.140.4.14/32", + "7.140.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.140.6.1/32", + "7.140.6.3/32", + "7.140.6.5/32", + "7.140.6.7/32", + "7.140.6.9/32", + "7.140.6.11/32", + "7.140.6.13/32", + "7.140.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.6.1/32", + "7.140.6.3/32", + "7.140.6.5/32", + "7.140.6.7/32", + "7.140.6.9/32", + "7.140.6.11/32", + "7.140.6.13/32", + "7.140.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.140.6.2/32", + "7.140.6.4/32", + "7.140.6.6/32", + "7.140.6.8/32", + "7.140.6.10/32", + "7.140.6.12/32", + "7.140.6.14/32", + "7.140.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.6.2/32", + "7.140.6.4/32", + "7.140.6.6/32", + "7.140.6.8/32", + "7.140.6.10/32", + "7.140.6.12/32", + "7.140.6.14/32", + "7.140.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.140.8.1/32", + "7.140.8.3/32", + "7.140.8.5/32", + "7.140.8.7/32", + "7.140.8.9/32", + "7.140.8.11/32", + "7.140.8.13/32", + "7.140.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.8.1/32", + "7.140.8.3/32", + "7.140.8.5/32", + "7.140.8.7/32", + "7.140.8.9/32", + "7.140.8.11/32", + "7.140.8.13/32", + "7.140.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.140.8.2/32", + "7.140.8.4/32", + "7.140.8.6/32", + "7.140.8.8/32", + "7.140.8.10/32", + "7.140.8.12/32", + "7.140.8.14/32", + "7.140.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.140.8.2/32", + "7.140.8.4/32", + "7.140.8.6/32", + "7.140.8.8/32", + "7.140.8.10/32", + "7.140.8.12/32", + "7.140.8.14/32", + "7.140.8.16/32", + "7.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7005": { + "acl-group-id": "acl-group-7005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.144.0.1/32", + "7.144.0.3/32", + "7.144.0.5/32", + "7.144.0.7/32", + "7.144.0.9/32", + "7.144.0.11/32", + "7.144.0.13/32", + "7.144.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.0.1/32", + "7.144.0.3/32", + "7.144.0.5/32", + "7.144.0.7/32", + "7.144.0.9/32", + "7.144.0.11/32", + "7.144.0.13/32", + "7.144.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.144.0.2/32", + "7.144.0.4/32", + "7.144.0.6/32", + "7.144.0.8/32", + "7.144.0.10/32", + "7.144.0.12/32", + "7.144.0.14/32", + "7.144.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.0.2/32", + "7.144.0.4/32", + "7.144.0.6/32", + "7.144.0.8/32", + "7.144.0.10/32", + "7.144.0.12/32", + "7.144.0.14/32", + "7.144.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.144.2.1/32", + "7.144.2.3/32", + "7.144.2.5/32", + "7.144.2.7/32", + "7.144.2.9/32", + "7.144.2.11/32", + "7.144.2.13/32", + "7.144.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.2.1/32", + "7.144.2.3/32", + "7.144.2.5/32", + "7.144.2.7/32", + "7.144.2.9/32", + "7.144.2.11/32", + "7.144.2.13/32", + "7.144.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.144.2.2/32", + "7.144.2.4/32", + "7.144.2.6/32", + "7.144.2.8/32", + "7.144.2.10/32", + "7.144.2.12/32", + "7.144.2.14/32", + "7.144.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.2.2/32", + "7.144.2.4/32", + "7.144.2.6/32", + "7.144.2.8/32", + "7.144.2.10/32", + "7.144.2.12/32", + "7.144.2.14/32", + "7.144.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.144.4.1/32", + "7.144.4.3/32", + "7.144.4.5/32", + "7.144.4.7/32", + "7.144.4.9/32", + "7.144.4.11/32", + "7.144.4.13/32", + "7.144.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.4.1/32", + "7.144.4.3/32", + "7.144.4.5/32", + "7.144.4.7/32", + "7.144.4.9/32", + "7.144.4.11/32", + "7.144.4.13/32", + "7.144.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.144.4.2/32", + "7.144.4.4/32", + "7.144.4.6/32", + "7.144.4.8/32", + "7.144.4.10/32", + "7.144.4.12/32", + "7.144.4.14/32", + "7.144.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.4.2/32", + "7.144.4.4/32", + "7.144.4.6/32", + "7.144.4.8/32", + "7.144.4.10/32", + "7.144.4.12/32", + "7.144.4.14/32", + "7.144.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.144.6.1/32", + "7.144.6.3/32", + "7.144.6.5/32", + "7.144.6.7/32", + "7.144.6.9/32", + "7.144.6.11/32", + "7.144.6.13/32", + "7.144.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.6.1/32", + "7.144.6.3/32", + "7.144.6.5/32", + "7.144.6.7/32", + "7.144.6.9/32", + "7.144.6.11/32", + "7.144.6.13/32", + "7.144.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.144.6.2/32", + "7.144.6.4/32", + "7.144.6.6/32", + "7.144.6.8/32", + "7.144.6.10/32", + "7.144.6.12/32", + "7.144.6.14/32", + "7.144.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.6.2/32", + "7.144.6.4/32", + "7.144.6.6/32", + "7.144.6.8/32", + "7.144.6.10/32", + "7.144.6.12/32", + "7.144.6.14/32", + "7.144.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.144.8.1/32", + "7.144.8.3/32", + "7.144.8.5/32", + "7.144.8.7/32", + "7.144.8.9/32", + "7.144.8.11/32", + "7.144.8.13/32", + "7.144.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.8.1/32", + "7.144.8.3/32", + "7.144.8.5/32", + "7.144.8.7/32", + "7.144.8.9/32", + "7.144.8.11/32", + "7.144.8.13/32", + "7.144.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.144.8.2/32", + "7.144.8.4/32", + "7.144.8.6/32", + "7.144.8.8/32", + "7.144.8.10/32", + "7.144.8.12/32", + "7.144.8.14/32", + "7.144.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.144.8.2/32", + "7.144.8.4/32", + "7.144.8.6/32", + "7.144.8.8/32", + "7.144.8.10/32", + "7.144.8.12/32", + "7.144.8.14/32", + "7.144.8.16/32", + "7.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:7:TABLE:7006": { + "acl-group-id": "acl-group-7006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.148.0.1/32", + "7.148.0.3/32", + "7.148.0.5/32", + "7.148.0.7/32", + "7.148.0.9/32", + "7.148.0.11/32", + "7.148.0.13/32", + "7.148.0.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.0.1/32", + "7.148.0.3/32", + "7.148.0.5/32", + "7.148.0.7/32", + "7.148.0.9/32", + "7.148.0.11/32", + "7.148.0.13/32", + "7.148.0.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.148.0.2/32", + "7.148.0.4/32", + "7.148.0.6/32", + "7.148.0.8/32", + "7.148.0.10/32", + "7.148.0.12/32", + "7.148.0.14/32", + "7.148.0.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.0.2/32", + "7.148.0.4/32", + "7.148.0.6/32", + "7.148.0.8/32", + "7.148.0.10/32", + "7.148.0.12/32", + "7.148.0.14/32", + "7.148.0.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.148.2.1/32", + "7.148.2.3/32", + "7.148.2.5/32", + "7.148.2.7/32", + "7.148.2.9/32", + "7.148.2.11/32", + "7.148.2.13/32", + "7.148.2.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.2.1/32", + "7.148.2.3/32", + "7.148.2.5/32", + "7.148.2.7/32", + "7.148.2.9/32", + "7.148.2.11/32", + "7.148.2.13/32", + "7.148.2.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.148.2.2/32", + "7.148.2.4/32", + "7.148.2.6/32", + "7.148.2.8/32", + "7.148.2.10/32", + "7.148.2.12/32", + "7.148.2.14/32", + "7.148.2.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.2.2/32", + "7.148.2.4/32", + "7.148.2.6/32", + "7.148.2.8/32", + "7.148.2.10/32", + "7.148.2.12/32", + "7.148.2.14/32", + "7.148.2.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.148.4.1/32", + "7.148.4.3/32", + "7.148.4.5/32", + "7.148.4.7/32", + "7.148.4.9/32", + "7.148.4.11/32", + "7.148.4.13/32", + "7.148.4.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.4.1/32", + "7.148.4.3/32", + "7.148.4.5/32", + "7.148.4.7/32", + "7.148.4.9/32", + "7.148.4.11/32", + "7.148.4.13/32", + "7.148.4.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.148.4.2/32", + "7.148.4.4/32", + "7.148.4.6/32", + "7.148.4.8/32", + "7.148.4.10/32", + "7.148.4.12/32", + "7.148.4.14/32", + "7.148.4.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.4.2/32", + "7.148.4.4/32", + "7.148.4.6/32", + "7.148.4.8/32", + "7.148.4.10/32", + "7.148.4.12/32", + "7.148.4.14/32", + "7.148.4.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.148.6.1/32", + "7.148.6.3/32", + "7.148.6.5/32", + "7.148.6.7/32", + "7.148.6.9/32", + "7.148.6.11/32", + "7.148.6.13/32", + "7.148.6.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.6.1/32", + "7.148.6.3/32", + "7.148.6.5/32", + "7.148.6.7/32", + "7.148.6.9/32", + "7.148.6.11/32", + "7.148.6.13/32", + "7.148.6.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.148.6.2/32", + "7.148.6.4/32", + "7.148.6.6/32", + "7.148.6.8/32", + "7.148.6.10/32", + "7.148.6.12/32", + "7.148.6.14/32", + "7.148.6.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.6.2/32", + "7.148.6.4/32", + "7.148.6.6/32", + "7.148.6.8/32", + "7.148.6.10/32", + "7.148.6.12/32", + "7.148.6.14/32", + "7.148.6.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "7.148.8.1/32", + "7.148.8.3/32", + "7.148.8.5/32", + "7.148.8.7/32", + "7.148.8.9/32", + "7.148.8.11/32", + "7.148.8.13/32", + "7.148.8.15/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.8.1/32", + "7.148.8.3/32", + "7.148.8.5/32", + "7.148.8.7/32", + "7.148.8.9/32", + "7.148.8.11/32", + "7.148.8.13/32", + "7.148.8.15/32", + "7.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "7.148.8.2/32", + "7.148.8.4/32", + "7.148.8.6/32", + "7.148.8.8/32", + "7.148.8.10/32", + "7.148.8.12/32", + "7.148.8.14/32", + "7.148.8.16/32", + "7.1.0.1/32" + ], + "dst_addrs": [ + "7.148.8.2/32", + "7.148.8.4/32", + "7.148.8.6/32", + "7.148.8.8/32", + "7.148.8.10/32", + "7.148.8.12/32", + "7.148.8.14/32", + "7.148.8.16/32", + "7.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "7.1.0.1/32", + "7.128.0.1/14", + "7.132.0.1/14", + "7.136.0.1/14" + ], + "dst_addrs": [ + "7.1.0.1/32", + "7.128.0.1/14", + "7.132.0.1/14", + "7.136.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8001": { + "acl-group-id": "acl-group-8001", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.128.0.1/32", + "8.128.0.3/32", + "8.128.0.5/32", + "8.128.0.7/32", + "8.128.0.9/32", + "8.128.0.11/32", + "8.128.0.13/32", + "8.128.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.0.1/32", + "8.128.0.3/32", + "8.128.0.5/32", + "8.128.0.7/32", + "8.128.0.9/32", + "8.128.0.11/32", + "8.128.0.13/32", + "8.128.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.128.0.2/32", + "8.128.0.4/32", + "8.128.0.6/32", + "8.128.0.8/32", + "8.128.0.10/32", + "8.128.0.12/32", + "8.128.0.14/32", + "8.128.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.0.2/32", + "8.128.0.4/32", + "8.128.0.6/32", + "8.128.0.8/32", + "8.128.0.10/32", + "8.128.0.12/32", + "8.128.0.14/32", + "8.128.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.128.2.1/32", + "8.128.2.3/32", + "8.128.2.5/32", + "8.128.2.7/32", + "8.128.2.9/32", + "8.128.2.11/32", + "8.128.2.13/32", + "8.128.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.2.1/32", + "8.128.2.3/32", + "8.128.2.5/32", + "8.128.2.7/32", + "8.128.2.9/32", + "8.128.2.11/32", + "8.128.2.13/32", + "8.128.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.128.2.2/32", + "8.128.2.4/32", + "8.128.2.6/32", + "8.128.2.8/32", + "8.128.2.10/32", + "8.128.2.12/32", + "8.128.2.14/32", + "8.128.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.2.2/32", + "8.128.2.4/32", + "8.128.2.6/32", + "8.128.2.8/32", + "8.128.2.10/32", + "8.128.2.12/32", + "8.128.2.14/32", + "8.128.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.128.4.1/32", + "8.128.4.3/32", + "8.128.4.5/32", + "8.128.4.7/32", + "8.128.4.9/32", + "8.128.4.11/32", + "8.128.4.13/32", + "8.128.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.4.1/32", + "8.128.4.3/32", + "8.128.4.5/32", + "8.128.4.7/32", + "8.128.4.9/32", + "8.128.4.11/32", + "8.128.4.13/32", + "8.128.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.128.4.2/32", + "8.128.4.4/32", + "8.128.4.6/32", + "8.128.4.8/32", + "8.128.4.10/32", + "8.128.4.12/32", + "8.128.4.14/32", + "8.128.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.4.2/32", + "8.128.4.4/32", + "8.128.4.6/32", + "8.128.4.8/32", + "8.128.4.10/32", + "8.128.4.12/32", + "8.128.4.14/32", + "8.128.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.128.6.1/32", + "8.128.6.3/32", + "8.128.6.5/32", + "8.128.6.7/32", + "8.128.6.9/32", + "8.128.6.11/32", + "8.128.6.13/32", + "8.128.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.6.1/32", + "8.128.6.3/32", + "8.128.6.5/32", + "8.128.6.7/32", + "8.128.6.9/32", + "8.128.6.11/32", + "8.128.6.13/32", + "8.128.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.128.6.2/32", + "8.128.6.4/32", + "8.128.6.6/32", + "8.128.6.8/32", + "8.128.6.10/32", + "8.128.6.12/32", + "8.128.6.14/32", + "8.128.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.6.2/32", + "8.128.6.4/32", + "8.128.6.6/32", + "8.128.6.8/32", + "8.128.6.10/32", + "8.128.6.12/32", + "8.128.6.14/32", + "8.128.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.128.8.1/32", + "8.128.8.3/32", + "8.128.8.5/32", + "8.128.8.7/32", + "8.128.8.9/32", + "8.128.8.11/32", + "8.128.8.13/32", + "8.128.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.8.1/32", + "8.128.8.3/32", + "8.128.8.5/32", + "8.128.8.7/32", + "8.128.8.9/32", + "8.128.8.11/32", + "8.128.8.13/32", + "8.128.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.128.8.2/32", + "8.128.8.4/32", + "8.128.8.6/32", + "8.128.8.8/32", + "8.128.8.10/32", + "8.128.8.12/32", + "8.128.8.14/32", + "8.128.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.128.8.2/32", + "8.128.8.4/32", + "8.128.8.6/32", + "8.128.8.8/32", + "8.128.8.10/32", + "8.128.8.12/32", + "8.128.8.14/32", + "8.128.8.16/32", + "8.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8002": { + "acl-group-id": "acl-group-8002", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.132.0.1/32", + "8.132.0.3/32", + "8.132.0.5/32", + "8.132.0.7/32", + "8.132.0.9/32", + "8.132.0.11/32", + "8.132.0.13/32", + "8.132.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.0.1/32", + "8.132.0.3/32", + "8.132.0.5/32", + "8.132.0.7/32", + "8.132.0.9/32", + "8.132.0.11/32", + "8.132.0.13/32", + "8.132.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.132.0.2/32", + "8.132.0.4/32", + "8.132.0.6/32", + "8.132.0.8/32", + "8.132.0.10/32", + "8.132.0.12/32", + "8.132.0.14/32", + "8.132.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.0.2/32", + "8.132.0.4/32", + "8.132.0.6/32", + "8.132.0.8/32", + "8.132.0.10/32", + "8.132.0.12/32", + "8.132.0.14/32", + "8.132.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.132.2.1/32", + "8.132.2.3/32", + "8.132.2.5/32", + "8.132.2.7/32", + "8.132.2.9/32", + "8.132.2.11/32", + "8.132.2.13/32", + "8.132.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.2.1/32", + "8.132.2.3/32", + "8.132.2.5/32", + "8.132.2.7/32", + "8.132.2.9/32", + "8.132.2.11/32", + "8.132.2.13/32", + "8.132.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.132.2.2/32", + "8.132.2.4/32", + "8.132.2.6/32", + "8.132.2.8/32", + "8.132.2.10/32", + "8.132.2.12/32", + "8.132.2.14/32", + "8.132.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.2.2/32", + "8.132.2.4/32", + "8.132.2.6/32", + "8.132.2.8/32", + "8.132.2.10/32", + "8.132.2.12/32", + "8.132.2.14/32", + "8.132.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.132.4.1/32", + "8.132.4.3/32", + "8.132.4.5/32", + "8.132.4.7/32", + "8.132.4.9/32", + "8.132.4.11/32", + "8.132.4.13/32", + "8.132.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.4.1/32", + "8.132.4.3/32", + "8.132.4.5/32", + "8.132.4.7/32", + "8.132.4.9/32", + "8.132.4.11/32", + "8.132.4.13/32", + "8.132.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.132.4.2/32", + "8.132.4.4/32", + "8.132.4.6/32", + "8.132.4.8/32", + "8.132.4.10/32", + "8.132.4.12/32", + "8.132.4.14/32", + "8.132.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.4.2/32", + "8.132.4.4/32", + "8.132.4.6/32", + "8.132.4.8/32", + "8.132.4.10/32", + "8.132.4.12/32", + "8.132.4.14/32", + "8.132.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.132.6.1/32", + "8.132.6.3/32", + "8.132.6.5/32", + "8.132.6.7/32", + "8.132.6.9/32", + "8.132.6.11/32", + "8.132.6.13/32", + "8.132.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.6.1/32", + "8.132.6.3/32", + "8.132.6.5/32", + "8.132.6.7/32", + "8.132.6.9/32", + "8.132.6.11/32", + "8.132.6.13/32", + "8.132.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.132.6.2/32", + "8.132.6.4/32", + "8.132.6.6/32", + "8.132.6.8/32", + "8.132.6.10/32", + "8.132.6.12/32", + "8.132.6.14/32", + "8.132.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.6.2/32", + "8.132.6.4/32", + "8.132.6.6/32", + "8.132.6.8/32", + "8.132.6.10/32", + "8.132.6.12/32", + "8.132.6.14/32", + "8.132.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.132.8.1/32", + "8.132.8.3/32", + "8.132.8.5/32", + "8.132.8.7/32", + "8.132.8.9/32", + "8.132.8.11/32", + "8.132.8.13/32", + "8.132.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.8.1/32", + "8.132.8.3/32", + "8.132.8.5/32", + "8.132.8.7/32", + "8.132.8.9/32", + "8.132.8.11/32", + "8.132.8.13/32", + "8.132.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.132.8.2/32", + "8.132.8.4/32", + "8.132.8.6/32", + "8.132.8.8/32", + "8.132.8.10/32", + "8.132.8.12/32", + "8.132.8.14/32", + "8.132.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.132.8.2/32", + "8.132.8.4/32", + "8.132.8.6/32", + "8.132.8.8/32", + "8.132.8.10/32", + "8.132.8.12/32", + "8.132.8.14/32", + "8.132.8.16/32", + "8.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8003": { + "acl-group-id": "acl-group-8003", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.136.0.1/32", + "8.136.0.3/32", + "8.136.0.5/32", + "8.136.0.7/32", + "8.136.0.9/32", + "8.136.0.11/32", + "8.136.0.13/32", + "8.136.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.0.1/32", + "8.136.0.3/32", + "8.136.0.5/32", + "8.136.0.7/32", + "8.136.0.9/32", + "8.136.0.11/32", + "8.136.0.13/32", + "8.136.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.136.0.2/32", + "8.136.0.4/32", + "8.136.0.6/32", + "8.136.0.8/32", + "8.136.0.10/32", + "8.136.0.12/32", + "8.136.0.14/32", + "8.136.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.0.2/32", + "8.136.0.4/32", + "8.136.0.6/32", + "8.136.0.8/32", + "8.136.0.10/32", + "8.136.0.12/32", + "8.136.0.14/32", + "8.136.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.136.2.1/32", + "8.136.2.3/32", + "8.136.2.5/32", + "8.136.2.7/32", + "8.136.2.9/32", + "8.136.2.11/32", + "8.136.2.13/32", + "8.136.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.2.1/32", + "8.136.2.3/32", + "8.136.2.5/32", + "8.136.2.7/32", + "8.136.2.9/32", + "8.136.2.11/32", + "8.136.2.13/32", + "8.136.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.136.2.2/32", + "8.136.2.4/32", + "8.136.2.6/32", + "8.136.2.8/32", + "8.136.2.10/32", + "8.136.2.12/32", + "8.136.2.14/32", + "8.136.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.2.2/32", + "8.136.2.4/32", + "8.136.2.6/32", + "8.136.2.8/32", + "8.136.2.10/32", + "8.136.2.12/32", + "8.136.2.14/32", + "8.136.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.136.4.1/32", + "8.136.4.3/32", + "8.136.4.5/32", + "8.136.4.7/32", + "8.136.4.9/32", + "8.136.4.11/32", + "8.136.4.13/32", + "8.136.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.4.1/32", + "8.136.4.3/32", + "8.136.4.5/32", + "8.136.4.7/32", + "8.136.4.9/32", + "8.136.4.11/32", + "8.136.4.13/32", + "8.136.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.136.4.2/32", + "8.136.4.4/32", + "8.136.4.6/32", + "8.136.4.8/32", + "8.136.4.10/32", + "8.136.4.12/32", + "8.136.4.14/32", + "8.136.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.4.2/32", + "8.136.4.4/32", + "8.136.4.6/32", + "8.136.4.8/32", + "8.136.4.10/32", + "8.136.4.12/32", + "8.136.4.14/32", + "8.136.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.136.6.1/32", + "8.136.6.3/32", + "8.136.6.5/32", + "8.136.6.7/32", + "8.136.6.9/32", + "8.136.6.11/32", + "8.136.6.13/32", + "8.136.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.6.1/32", + "8.136.6.3/32", + "8.136.6.5/32", + "8.136.6.7/32", + "8.136.6.9/32", + "8.136.6.11/32", + "8.136.6.13/32", + "8.136.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.136.6.2/32", + "8.136.6.4/32", + "8.136.6.6/32", + "8.136.6.8/32", + "8.136.6.10/32", + "8.136.6.12/32", + "8.136.6.14/32", + "8.136.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.6.2/32", + "8.136.6.4/32", + "8.136.6.6/32", + "8.136.6.8/32", + "8.136.6.10/32", + "8.136.6.12/32", + "8.136.6.14/32", + "8.136.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.136.8.1/32", + "8.136.8.3/32", + "8.136.8.5/32", + "8.136.8.7/32", + "8.136.8.9/32", + "8.136.8.11/32", + "8.136.8.13/32", + "8.136.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.8.1/32", + "8.136.8.3/32", + "8.136.8.5/32", + "8.136.8.7/32", + "8.136.8.9/32", + "8.136.8.11/32", + "8.136.8.13/32", + "8.136.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.136.8.2/32", + "8.136.8.4/32", + "8.136.8.6/32", + "8.136.8.8/32", + "8.136.8.10/32", + "8.136.8.12/32", + "8.136.8.14/32", + "8.136.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.136.8.2/32", + "8.136.8.4/32", + "8.136.8.6/32", + "8.136.8.8/32", + "8.136.8.10/32", + "8.136.8.12/32", + "8.136.8.14/32", + "8.136.8.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "8.1.0.1/32", + "8.140.0.1/14", + "8.144.0.1/14", + "8.148.0.1/14" + ], + "dst_addrs": [ + "8.1.0.1/32", + "8.140.0.1/14", + "8.144.0.1/14", + "8.148.0.1/14" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8004": { + "acl-group-id": "acl-group-8004", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.140.0.1/32", + "8.140.0.3/32", + "8.140.0.5/32", + "8.140.0.7/32", + "8.140.0.9/32", + "8.140.0.11/32", + "8.140.0.13/32", + "8.140.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.0.1/32", + "8.140.0.3/32", + "8.140.0.5/32", + "8.140.0.7/32", + "8.140.0.9/32", + "8.140.0.11/32", + "8.140.0.13/32", + "8.140.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.140.0.2/32", + "8.140.0.4/32", + "8.140.0.6/32", + "8.140.0.8/32", + "8.140.0.10/32", + "8.140.0.12/32", + "8.140.0.14/32", + "8.140.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.0.2/32", + "8.140.0.4/32", + "8.140.0.6/32", + "8.140.0.8/32", + "8.140.0.10/32", + "8.140.0.12/32", + "8.140.0.14/32", + "8.140.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.140.2.1/32", + "8.140.2.3/32", + "8.140.2.5/32", + "8.140.2.7/32", + "8.140.2.9/32", + "8.140.2.11/32", + "8.140.2.13/32", + "8.140.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.2.1/32", + "8.140.2.3/32", + "8.140.2.5/32", + "8.140.2.7/32", + "8.140.2.9/32", + "8.140.2.11/32", + "8.140.2.13/32", + "8.140.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.140.2.2/32", + "8.140.2.4/32", + "8.140.2.6/32", + "8.140.2.8/32", + "8.140.2.10/32", + "8.140.2.12/32", + "8.140.2.14/32", + "8.140.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.2.2/32", + "8.140.2.4/32", + "8.140.2.6/32", + "8.140.2.8/32", + "8.140.2.10/32", + "8.140.2.12/32", + "8.140.2.14/32", + "8.140.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.140.4.1/32", + "8.140.4.3/32", + "8.140.4.5/32", + "8.140.4.7/32", + "8.140.4.9/32", + "8.140.4.11/32", + "8.140.4.13/32", + "8.140.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.4.1/32", + "8.140.4.3/32", + "8.140.4.5/32", + "8.140.4.7/32", + "8.140.4.9/32", + "8.140.4.11/32", + "8.140.4.13/32", + "8.140.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.140.4.2/32", + "8.140.4.4/32", + "8.140.4.6/32", + "8.140.4.8/32", + "8.140.4.10/32", + "8.140.4.12/32", + "8.140.4.14/32", + "8.140.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.4.2/32", + "8.140.4.4/32", + "8.140.4.6/32", + "8.140.4.8/32", + "8.140.4.10/32", + "8.140.4.12/32", + "8.140.4.14/32", + "8.140.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.140.6.1/32", + "8.140.6.3/32", + "8.140.6.5/32", + "8.140.6.7/32", + "8.140.6.9/32", + "8.140.6.11/32", + "8.140.6.13/32", + "8.140.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.6.1/32", + "8.140.6.3/32", + "8.140.6.5/32", + "8.140.6.7/32", + "8.140.6.9/32", + "8.140.6.11/32", + "8.140.6.13/32", + "8.140.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.140.6.2/32", + "8.140.6.4/32", + "8.140.6.6/32", + "8.140.6.8/32", + "8.140.6.10/32", + "8.140.6.12/32", + "8.140.6.14/32", + "8.140.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.6.2/32", + "8.140.6.4/32", + "8.140.6.6/32", + "8.140.6.8/32", + "8.140.6.10/32", + "8.140.6.12/32", + "8.140.6.14/32", + "8.140.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.140.8.1/32", + "8.140.8.3/32", + "8.140.8.5/32", + "8.140.8.7/32", + "8.140.8.9/32", + "8.140.8.11/32", + "8.140.8.13/32", + "8.140.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.8.1/32", + "8.140.8.3/32", + "8.140.8.5/32", + "8.140.8.7/32", + "8.140.8.9/32", + "8.140.8.11/32", + "8.140.8.13/32", + "8.140.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.140.8.2/32", + "8.140.8.4/32", + "8.140.8.6/32", + "8.140.8.8/32", + "8.140.8.10/32", + "8.140.8.12/32", + "8.140.8.14/32", + "8.140.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.140.8.2/32", + "8.140.8.4/32", + "8.140.8.6/32", + "8.140.8.8/32", + "8.140.8.10/32", + "8.140.8.12/32", + "8.140.8.14/32", + "8.140.8.16/32", + "8.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8005": { + "acl-group-id": "acl-group-8005", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.144.0.1/32", + "8.144.0.3/32", + "8.144.0.5/32", + "8.144.0.7/32", + "8.144.0.9/32", + "8.144.0.11/32", + "8.144.0.13/32", + "8.144.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.0.1/32", + "8.144.0.3/32", + "8.144.0.5/32", + "8.144.0.7/32", + "8.144.0.9/32", + "8.144.0.11/32", + "8.144.0.13/32", + "8.144.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.144.0.2/32", + "8.144.0.4/32", + "8.144.0.6/32", + "8.144.0.8/32", + "8.144.0.10/32", + "8.144.0.12/32", + "8.144.0.14/32", + "8.144.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.0.2/32", + "8.144.0.4/32", + "8.144.0.6/32", + "8.144.0.8/32", + "8.144.0.10/32", + "8.144.0.12/32", + "8.144.0.14/32", + "8.144.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.144.2.1/32", + "8.144.2.3/32", + "8.144.2.5/32", + "8.144.2.7/32", + "8.144.2.9/32", + "8.144.2.11/32", + "8.144.2.13/32", + "8.144.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.2.1/32", + "8.144.2.3/32", + "8.144.2.5/32", + "8.144.2.7/32", + "8.144.2.9/32", + "8.144.2.11/32", + "8.144.2.13/32", + "8.144.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.144.2.2/32", + "8.144.2.4/32", + "8.144.2.6/32", + "8.144.2.8/32", + "8.144.2.10/32", + "8.144.2.12/32", + "8.144.2.14/32", + "8.144.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.2.2/32", + "8.144.2.4/32", + "8.144.2.6/32", + "8.144.2.8/32", + "8.144.2.10/32", + "8.144.2.12/32", + "8.144.2.14/32", + "8.144.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.144.4.1/32", + "8.144.4.3/32", + "8.144.4.5/32", + "8.144.4.7/32", + "8.144.4.9/32", + "8.144.4.11/32", + "8.144.4.13/32", + "8.144.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.4.1/32", + "8.144.4.3/32", + "8.144.4.5/32", + "8.144.4.7/32", + "8.144.4.9/32", + "8.144.4.11/32", + "8.144.4.13/32", + "8.144.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.144.4.2/32", + "8.144.4.4/32", + "8.144.4.6/32", + "8.144.4.8/32", + "8.144.4.10/32", + "8.144.4.12/32", + "8.144.4.14/32", + "8.144.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.4.2/32", + "8.144.4.4/32", + "8.144.4.6/32", + "8.144.4.8/32", + "8.144.4.10/32", + "8.144.4.12/32", + "8.144.4.14/32", + "8.144.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.144.6.1/32", + "8.144.6.3/32", + "8.144.6.5/32", + "8.144.6.7/32", + "8.144.6.9/32", + "8.144.6.11/32", + "8.144.6.13/32", + "8.144.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.6.1/32", + "8.144.6.3/32", + "8.144.6.5/32", + "8.144.6.7/32", + "8.144.6.9/32", + "8.144.6.11/32", + "8.144.6.13/32", + "8.144.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.144.6.2/32", + "8.144.6.4/32", + "8.144.6.6/32", + "8.144.6.8/32", + "8.144.6.10/32", + "8.144.6.12/32", + "8.144.6.14/32", + "8.144.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.6.2/32", + "8.144.6.4/32", + "8.144.6.6/32", + "8.144.6.8/32", + "8.144.6.10/32", + "8.144.6.12/32", + "8.144.6.14/32", + "8.144.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.144.8.1/32", + "8.144.8.3/32", + "8.144.8.5/32", + "8.144.8.7/32", + "8.144.8.9/32", + "8.144.8.11/32", + "8.144.8.13/32", + "8.144.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.8.1/32", + "8.144.8.3/32", + "8.144.8.5/32", + "8.144.8.7/32", + "8.144.8.9/32", + "8.144.8.11/32", + "8.144.8.13/32", + "8.144.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.144.8.2/32", + "8.144.8.4/32", + "8.144.8.6/32", + "8.144.8.8/32", + "8.144.8.10/32", + "8.144.8.12/32", + "8.144.8.14/32", + "8.144.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.144.8.2/32", + "8.144.8.4/32", + "8.144.8.6/32", + "8.144.8.8/32", + "8.144.8.10/32", + "8.144.8.12/32", + "8.144.8.14/32", + "8.144.8.16/32", + "8.1.0.1/32" + ] + } + ] + } + }, + { + "ACL-GROUP:ENI:8:TABLE:8006": { + "acl-group-id": "acl-group-8006", + "ip_version": "IPv4", + "rules": [ + { + "priority": 1, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.148.0.1/32", + "8.148.0.3/32", + "8.148.0.5/32", + "8.148.0.7/32", + "8.148.0.9/32", + "8.148.0.11/32", + "8.148.0.13/32", + "8.148.0.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.0.1/32", + "8.148.0.3/32", + "8.148.0.5/32", + "8.148.0.7/32", + "8.148.0.9/32", + "8.148.0.11/32", + "8.148.0.13/32", + "8.148.0.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 2, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.148.0.2/32", + "8.148.0.4/32", + "8.148.0.6/32", + "8.148.0.8/32", + "8.148.0.10/32", + "8.148.0.12/32", + "8.148.0.14/32", + "8.148.0.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.0.2/32", + "8.148.0.4/32", + "8.148.0.6/32", + "8.148.0.8/32", + "8.148.0.10/32", + "8.148.0.12/32", + "8.148.0.14/32", + "8.148.0.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 3, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.148.2.1/32", + "8.148.2.3/32", + "8.148.2.5/32", + "8.148.2.7/32", + "8.148.2.9/32", + "8.148.2.11/32", + "8.148.2.13/32", + "8.148.2.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.2.1/32", + "8.148.2.3/32", + "8.148.2.5/32", + "8.148.2.7/32", + "8.148.2.9/32", + "8.148.2.11/32", + "8.148.2.13/32", + "8.148.2.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 4, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.148.2.2/32", + "8.148.2.4/32", + "8.148.2.6/32", + "8.148.2.8/32", + "8.148.2.10/32", + "8.148.2.12/32", + "8.148.2.14/32", + "8.148.2.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.2.2/32", + "8.148.2.4/32", + "8.148.2.6/32", + "8.148.2.8/32", + "8.148.2.10/32", + "8.148.2.12/32", + "8.148.2.14/32", + "8.148.2.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 5, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.148.4.1/32", + "8.148.4.3/32", + "8.148.4.5/32", + "8.148.4.7/32", + "8.148.4.9/32", + "8.148.4.11/32", + "8.148.4.13/32", + "8.148.4.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.4.1/32", + "8.148.4.3/32", + "8.148.4.5/32", + "8.148.4.7/32", + "8.148.4.9/32", + "8.148.4.11/32", + "8.148.4.13/32", + "8.148.4.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 6, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.148.4.2/32", + "8.148.4.4/32", + "8.148.4.6/32", + "8.148.4.8/32", + "8.148.4.10/32", + "8.148.4.12/32", + "8.148.4.14/32", + "8.148.4.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.4.2/32", + "8.148.4.4/32", + "8.148.4.6/32", + "8.148.4.8/32", + "8.148.4.10/32", + "8.148.4.12/32", + "8.148.4.14/32", + "8.148.4.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 7, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.148.6.1/32", + "8.148.6.3/32", + "8.148.6.5/32", + "8.148.6.7/32", + "8.148.6.9/32", + "8.148.6.11/32", + "8.148.6.13/32", + "8.148.6.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.6.1/32", + "8.148.6.3/32", + "8.148.6.5/32", + "8.148.6.7/32", + "8.148.6.9/32", + "8.148.6.11/32", + "8.148.6.13/32", + "8.148.6.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 8, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.148.6.2/32", + "8.148.6.4/32", + "8.148.6.6/32", + "8.148.6.8/32", + "8.148.6.10/32", + "8.148.6.12/32", + "8.148.6.14/32", + "8.148.6.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.6.2/32", + "8.148.6.4/32", + "8.148.6.6/32", + "8.148.6.8/32", + "8.148.6.10/32", + "8.148.6.12/32", + "8.148.6.14/32", + "8.148.6.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 9, + "action": "allow", + "terminating": false, + "src_addrs": [ + "8.148.8.1/32", + "8.148.8.3/32", + "8.148.8.5/32", + "8.148.8.7/32", + "8.148.8.9/32", + "8.148.8.11/32", + "8.148.8.13/32", + "8.148.8.15/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.8.1/32", + "8.148.8.3/32", + "8.148.8.5/32", + "8.148.8.7/32", + "8.148.8.9/32", + "8.148.8.11/32", + "8.148.8.13/32", + "8.148.8.15/32", + "8.1.0.1/32" + ] + }, + { + "priority": 10, + "action": "deny", + "terminating": true, + "src_addrs": [ + "8.148.8.2/32", + "8.148.8.4/32", + "8.148.8.6/32", + "8.148.8.8/32", + "8.148.8.10/32", + "8.148.8.12/32", + "8.148.8.14/32", + "8.148.8.16/32", + "8.1.0.1/32" + ], + "dst_addrs": [ + "8.148.8.2/32", + "8.148.8.4/32", + "8.148.8.6/32", + "8.148.8.8/32", + "8.148.8.10/32", + "8.148.8.12/32", + "8.148.8.14/32", + "8.148.8.16/32", + "8.1.0.1/32" + ] + }, + { + "priority": 11, + "action": "allow", + "terminating": "true", + "src_addrs": [ + "8.1.0.1/32", + "8.128.0.1/14", + "8.132.0.1/14", + "8.136.0.1/14" + ], + "dst_addrs": [ + "8.1.0.1/32", + "8.128.0.1/14", + "8.132.0.1/14", + "8.136.0.1/14" + ] + } + ] + } + } +], + "vpc": +[ + { + "VPC:1": { + "vpc-id": "vpc-1", + "vni-key": 1, + "encap": "vxlan", + "address_spaces": [ + "1.1.0.1/32" + ] + } + }, + { + "VPC:101": { + "vpc-id": "vpc-101", + "vni-key": 101, + "encap": "vxlan", + "address_spaces": [ + "1.128.0.1/9" + ] + } + }, + { + "VPC:2": { + "vpc-id": "vpc-2", + "vni-key": 2, + "encap": "vxlan", + "address_spaces": [ + "2.1.0.1/32" + ] + } + }, + { + "VPC:102": { + "vpc-id": "vpc-102", + "vni-key": 102, + "encap": "vxlan", + "address_spaces": [ + "2.128.0.1/9" + ] + } + }, + { + "VPC:3": { + "vpc-id": "vpc-3", + "vni-key": 3, + "encap": "vxlan", + "address_spaces": [ + "3.1.0.1/32" + ] + } + }, + { + "VPC:103": { + "vpc-id": "vpc-103", + "vni-key": 103, + "encap": "vxlan", + "address_spaces": [ + "3.128.0.1/9" + ] + } + }, + { + "VPC:4": { + "vpc-id": "vpc-4", + "vni-key": 4, + "encap": "vxlan", + "address_spaces": [ + "4.1.0.1/32" + ] + } + }, + { + "VPC:104": { + "vpc-id": "vpc-104", + "vni-key": 104, + "encap": "vxlan", + "address_spaces": [ + "4.128.0.1/9" + ] + } + }, + { + "VPC:5": { + "vpc-id": "vpc-5", + "vni-key": 5, + "encap": "vxlan", + "address_spaces": [ + "5.1.0.1/32" + ] + } + }, + { + "VPC:105": { + "vpc-id": "vpc-105", + "vni-key": 105, + "encap": "vxlan", + "address_spaces": [ + "5.128.0.1/9" + ] + } + }, + { + "VPC:6": { + "vpc-id": "vpc-6", + "vni-key": 6, + "encap": "vxlan", + "address_spaces": [ + "6.1.0.1/32" + ] + } + }, + { + "VPC:106": { + "vpc-id": "vpc-106", + "vni-key": 106, + "encap": "vxlan", + "address_spaces": [ + "6.128.0.1/9" + ] + } + }, + { + "VPC:7": { + "vpc-id": "vpc-7", + "vni-key": 7, + "encap": "vxlan", + "address_spaces": [ + "7.1.0.1/32" + ] + } + }, + { + "VPC:107": { + "vpc-id": "vpc-107", + "vni-key": 107, + "encap": "vxlan", + "address_spaces": [ + "7.128.0.1/9" + ] + } + }, + { + "VPC:8": { + "vpc-id": "vpc-8", + "vni-key": 8, + "encap": "vxlan", + "address_spaces": [ + "8.1.0.1/32" + ] + } + }, + { + "VPC:108": { + "vpc-id": "vpc-108", + "vni-key": 108, + "encap": "vxlan", + "address_spaces": [ + "8.128.0.1/9" + ] + } + } +], + "vpc-mappings-routing-types": +[ + "vpc", + "privatelink", + "privatelinknsg" +], + "vpc-mappings": +[ + { + "MAPPINGS:VPC:1": { + "vpc-id": "vpc-1", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.1.0.1", + "underlay-ip-address": "221.0.1.1", + "mac": "00:1A:C5:00:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:101": { + "vpc-id": "vpc-101", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.128.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:80:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.132.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:84:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.136.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:88:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.140.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:8C:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.144.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:90:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.0.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.0.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.1.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.1.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.2.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.2.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.3.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.3.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.4.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.4.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.5.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.5.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.6.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.6.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.7.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.7.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.8.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.8.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.9.1", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "1.148.9.2", + "underlay-ip-address": "221.0.2.101", + "mac": "00:1B:6E:94:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:2": { + "vpc-id": "vpc-2", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.1.0.1", + "underlay-ip-address": "221.0.1.2", + "mac": "00:1A:C5:18:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:102": { + "vpc-id": "vpc-102", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.128.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:98:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.132.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:9C:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.136.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.140.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A4:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.144.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:A8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.0.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.0.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.1.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.1.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.2.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.2.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.3.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.3.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.4.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.4.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.5.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.5.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.6.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.6.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.7.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.7.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.8.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.8.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.9.1", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "2.148.9.2", + "underlay-ip-address": "221.0.2.102", + "mac": "00:1B:6E:AC:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:3": { + "vpc-id": "vpc-3", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.1.0.1", + "underlay-ip-address": "221.0.1.3", + "mac": "00:1A:C5:30:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:103": { + "vpc-id": "vpc-103", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.128.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.132.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B4:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.136.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:B8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.140.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:BC:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.144.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.0.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.0.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.1.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.1.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.2.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.2.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.3.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.3.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.4.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.4.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.5.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.5.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.6.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.6.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.7.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.7.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.8.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.8.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.9.1", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "3.148.9.2", + "underlay-ip-address": "221.0.2.103", + "mac": "00:1B:6E:C4:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:4": { + "vpc-id": "vpc-4", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.1.0.1", + "underlay-ip-address": "221.0.1.4", + "mac": "00:1A:C5:48:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:104": { + "vpc-id": "vpc-104", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.128.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:C8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.132.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:CC:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.136.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.140.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D4:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.144.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:D8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.0.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.0.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.1.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.1.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.2.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.2.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.3.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.3.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.4.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.4.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.5.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.5.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.6.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.6.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.7.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.7.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.8.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.8.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.9.1", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "4.148.9.2", + "underlay-ip-address": "221.0.2.104", + "mac": "00:1B:6E:DC:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:5": { + "vpc-id": "vpc-5", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.1.0.1", + "underlay-ip-address": "221.0.1.5", + "mac": "00:1A:C5:60:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:105": { + "vpc-id": "vpc-105", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.128.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.132.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E4:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.136.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:E8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.140.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:EC:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.144.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F0:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.0.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.0.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.1.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.1.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.2.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.2.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.3.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.3.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.4.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.4.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.5.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.5.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.6.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.6.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.7.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.7.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.8.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.8.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.9.1", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "5.148.9.2", + "underlay-ip-address": "221.0.2.105", + "mac": "00:1B:6E:F4:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:6": { + "vpc-id": "vpc-6", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.1.0.1", + "underlay-ip-address": "221.0.1.6", + "mac": "00:1A:C5:78:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:106": { + "vpc-id": "vpc-106", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.128.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:F8:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.132.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6E:FC:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.136.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:00:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.140.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:04:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.144.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:08:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.0.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.0.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.1.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.1.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.2.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.2.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.3.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.3.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.4.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.4.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.5.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.5.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.6.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.6.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.7.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.7.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.8.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.8.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.9.1", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "6.148.9.2", + "underlay-ip-address": "221.0.2.106", + "mac": "00:1B:6F:0C:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:7": { + "vpc-id": "vpc-7", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.1.0.1", + "underlay-ip-address": "221.0.1.7", + "mac": "00:1A:C5:90:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:107": { + "vpc-id": "vpc-107", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.128.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:10:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.132.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:14:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.136.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:18:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.140.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:1C:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.144.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:20:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.0.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.0.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.1.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.1.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.2.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.2.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.3.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.3.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.4.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.4.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.5.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.5.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.6.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.6.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.7.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.7.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.8.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.8.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.9.1", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "7.148.9.2", + "underlay-ip-address": "221.0.2.107", + "mac": "00:1B:6F:24:09:02" + } + ] + } + }, + { + "MAPPINGS:VPC:8": { + "vpc-id": "vpc-8", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.1.0.1", + "underlay-ip-address": "221.0.1.8", + "mac": "00:1A:C5:A8:00:01" + } + ] + } + }, + { + "MAPPINGS:VPC:108": { + "vpc-id": "vpc-108", + "mappings": [ + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.128.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:28:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.132.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:2C:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.136.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:30:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.140.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:34:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.144.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:38:09:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.0.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:00:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.0.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:00:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.1.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:01:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.1.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:01:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.2.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:02:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.2.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:02:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.3.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:03:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.3.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:03:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.4.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:04:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.4.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:04:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.5.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:05:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.5.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:05:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.6.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:06:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.6.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:06:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.7.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:07:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.7.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:07:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.8.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:08:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.8.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:08:02" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.9.1", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:09:01" + }, + { + "routing-type": "vpc-direct", + "overlay-ip-address": "8.148.9.2", + "underlay-ip-address": "221.0.2.108", + "mac": "00:1B:6F:3C:09:02" + } + ] + } + } +], + "routing-appliances": +[ + { + "ROUTING-APPLIANCE:1": { + "appliance-id": "appliance-1", + "routing-appliance-id": 1, + "routing-appliance-addresses": [ + "1.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 1 + } + }, + { + "ROUTING-APPLIANCE:101": { + "appliance-id": "appliance-101", + "routing-appliance-id": 101, + "routing-appliance-addresses": [ + "1.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 101 + } + }, + { + "ROUTING-APPLIANCE:2": { + "appliance-id": "appliance-2", + "routing-appliance-id": 2, + "routing-appliance-addresses": [ + "2.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 2 + } + }, + { + "ROUTING-APPLIANCE:102": { + "appliance-id": "appliance-102", + "routing-appliance-id": 102, + "routing-appliance-addresses": [ + "2.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 102 + } + }, + { + "ROUTING-APPLIANCE:3": { + "appliance-id": "appliance-3", + "routing-appliance-id": 3, + "routing-appliance-addresses": [ + "3.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 3 + } + }, + { + "ROUTING-APPLIANCE:103": { + "appliance-id": "appliance-103", + "routing-appliance-id": 103, + "routing-appliance-addresses": [ + "3.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 103 + } + }, + { + "ROUTING-APPLIANCE:4": { + "appliance-id": "appliance-4", + "routing-appliance-id": 4, + "routing-appliance-addresses": [ + "4.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 4 + } + }, + { + "ROUTING-APPLIANCE:104": { + "appliance-id": "appliance-104", + "routing-appliance-id": 104, + "routing-appliance-addresses": [ + "4.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 104 + } + }, + { + "ROUTING-APPLIANCE:5": { + "appliance-id": "appliance-5", + "routing-appliance-id": 5, + "routing-appliance-addresses": [ + "5.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 5 + } + }, + { + "ROUTING-APPLIANCE:105": { + "appliance-id": "appliance-105", + "routing-appliance-id": 105, + "routing-appliance-addresses": [ + "5.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 105 + } + }, + { + "ROUTING-APPLIANCE:6": { + "appliance-id": "appliance-6", + "routing-appliance-id": 6, + "routing-appliance-addresses": [ + "6.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 6 + } + }, + { + "ROUTING-APPLIANCE:106": { + "appliance-id": "appliance-106", + "routing-appliance-id": 106, + "routing-appliance-addresses": [ + "6.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 106 + } + }, + { + "ROUTING-APPLIANCE:7": { + "appliance-id": "appliance-7", + "routing-appliance-id": 7, + "routing-appliance-addresses": [ + "7.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 7 + } + }, + { + "ROUTING-APPLIANCE:107": { + "appliance-id": "appliance-107", + "routing-appliance-id": 107, + "routing-appliance-addresses": [ + "7.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 107 + } + }, + { + "ROUTING-APPLIANCE:8": { + "appliance-id": "appliance-8", + "routing-appliance-id": 8, + "routing-appliance-addresses": [ + "8.1.0.1/32" + ], + "encap-type": "vxlan", + "vni-key": 8 + } + }, + { + "ROUTING-APPLIANCE:108": { + "appliance-id": "appliance-108", + "routing-appliance-id": 108, + "routing-appliance-addresses": [ + "8.128.0.1/9" + ], + "encap-type": "vxlan", + "vni-key": 108 + } + } +], + "route-tables": +[ + { + "ROUTE-TABLE:1": { + "route-table-id": "route-table-1", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "1.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-1" } - ] - } - }, - { - "MAPPINGS:VPC:101": { - "vpc-id": "vpc-101", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.0.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.0.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.1.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.1.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.2.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.2.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.3.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.3.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.4.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.4.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.5.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.5.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.6.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.6.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.7.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.7.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.8.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.8.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.9.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.128.9.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:80:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.0.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.0.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.1.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.1.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.2.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.2.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.3.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.3.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.4.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.4.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.5.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.5.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.6.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.6.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.7.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.7.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.8.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.8.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.9.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.132.9.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:84:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.0.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.0.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.1.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.1.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.2.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.2.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.3.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.3.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.4.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.4.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.5.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.5.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.6.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.6.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.7.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.7.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.8.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.8.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.9.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.136.9.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:88:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.0.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.0.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.1.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.1.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.2.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.2.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.3.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.3.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.4.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.4.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.5.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.5.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.6.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.6.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.7.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.7.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.8.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.8.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.9.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.140.9.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:8C:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.0.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.0.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.1.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.1.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.2.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.2.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.3.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.3.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.4.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.4.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.5.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.5.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.6.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.6.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.7.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.7.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.8.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.8.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.9.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.144.9.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:90:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.0.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.0.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.1.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.1.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.2.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.2.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.3.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.3.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.4.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.4.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.5.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.5.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.6.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.6.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.7.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.7.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.8.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.8.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.9.1", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "1.148.9.2", - "underlay-ip-address": "221.0.2.101", - "mac": "00:1B:6E:94:09:02" + }, + { + "ip-prefixes": [ + "1.128.0.0/31", + "1.128.0.3/32", + "1.128.0.4/31", + "1.128.0.7/32", + "1.128.1.0/31", + "1.128.1.3/32", + "1.128.1.4/31", + "1.128.1.7/32", + "1.128.2.0/31", + "1.128.2.3/32", + "1.128.2.4/31", + "1.128.2.7/32", + "1.128.3.0/31", + "1.128.3.3/32", + "1.128.3.4/31", + "1.128.3.7/32", + "1.128.4.0/31", + "1.128.4.3/32", + "1.128.4.4/31", + "1.128.4.7/32", + "1.128.5.0/31", + "1.128.5.3/32", + "1.128.5.4/31", + "1.128.5.7/32", + "1.128.6.0/31", + "1.128.6.3/32", + "1.128.6.4/31", + "1.128.6.7/32", + "1.128.7.0/31", + "1.128.7.3/32", + "1.128.7.4/31", + "1.128.7.7/32", + "1.128.8.0/31", + "1.128.8.3/32", + "1.128.8.4/31", + "1.128.8.7/32", + "1.128.9.0/31", + "1.128.9.3/32", + "1.128.9.4/31", + "1.128.9.7/32", + "1.132.0.0/31", + "1.132.0.3/32", + "1.132.0.4/31", + "1.132.0.7/32", + "1.132.1.0/31", + "1.132.1.3/32", + "1.132.1.4/31", + "1.132.1.7/32", + "1.132.2.0/31", + "1.132.2.3/32", + "1.132.2.4/31", + "1.132.2.7/32", + "1.132.3.0/31", + "1.132.3.3/32", + "1.132.3.4/31", + "1.132.3.7/32", + "1.132.4.0/31", + "1.132.4.3/32", + "1.132.4.4/31", + "1.132.4.7/32", + "1.132.5.0/31", + "1.132.5.3/32", + "1.132.5.4/31", + "1.132.5.7/32", + "1.132.6.0/31", + "1.132.6.3/32", + "1.132.6.4/31", + "1.132.6.7/32", + "1.132.7.0/31", + "1.132.7.3/32", + "1.132.7.4/31", + "1.132.7.7/32", + "1.132.8.0/31", + "1.132.8.3/32", + "1.132.8.4/31", + "1.132.8.7/32", + "1.132.9.0/31", + "1.132.9.3/32", + "1.132.9.4/31", + "1.132.9.7/32", + "1.136.0.0/31", + "1.136.0.3/32", + "1.136.0.4/31", + "1.136.0.7/32", + "1.136.1.0/31", + "1.136.1.3/32", + "1.136.1.4/31", + "1.136.1.7/32", + "1.136.2.0/31", + "1.136.2.3/32", + "1.136.2.4/31", + "1.136.2.7/32", + "1.136.3.0/31", + "1.136.3.3/32", + "1.136.3.4/31", + "1.136.3.7/32", + "1.136.4.0/31", + "1.136.4.3/32", + "1.136.4.4/31", + "1.136.4.7/32", + "1.136.5.0/31", + "1.136.5.3/32", + "1.136.5.4/31", + "1.136.5.7/32", + "1.136.6.0/31", + "1.136.6.3/32", + "1.136.6.4/31", + "1.136.6.7/32", + "1.136.7.0/31", + "1.136.7.3/32", + "1.136.7.4/31", + "1.136.7.7/32", + "1.136.8.0/31", + "1.136.8.3/32", + "1.136.8.4/31", + "1.136.8.7/32", + "1.136.9.0/31", + "1.136.9.3/32", + "1.136.9.4/31", + "1.136.9.7/32", + "1.140.0.0/31", + "1.140.0.3/32", + "1.140.0.4/31", + "1.140.0.7/32", + "1.140.1.0/31", + "1.140.1.3/32", + "1.140.1.4/31", + "1.140.1.7/32", + "1.140.2.0/31", + "1.140.2.3/32", + "1.140.2.4/31", + "1.140.2.7/32", + "1.140.3.0/31", + "1.140.3.3/32", + "1.140.3.4/31", + "1.140.3.7/32", + "1.140.4.0/31", + "1.140.4.3/32", + "1.140.4.4/31", + "1.140.4.7/32", + "1.140.5.0/31", + "1.140.5.3/32", + "1.140.5.4/31", + "1.140.5.7/32", + "1.140.6.0/31", + "1.140.6.3/32", + "1.140.6.4/31", + "1.140.6.7/32", + "1.140.7.0/31", + "1.140.7.3/32", + "1.140.7.4/31", + "1.140.7.7/32", + "1.140.8.0/31", + "1.140.8.3/32", + "1.140.8.4/31", + "1.140.8.7/32", + "1.140.9.0/31", + "1.140.9.3/32", + "1.140.9.4/31", + "1.140.9.7/32", + "1.144.0.0/31", + "1.144.0.3/32", + "1.144.0.4/31", + "1.144.0.7/32", + "1.144.1.0/31", + "1.144.1.3/32", + "1.144.1.4/31", + "1.144.1.7/32", + "1.144.2.0/31", + "1.144.2.3/32", + "1.144.2.4/31", + "1.144.2.7/32", + "1.144.3.0/31", + "1.144.3.3/32", + "1.144.3.4/31", + "1.144.3.7/32", + "1.144.4.0/31", + "1.144.4.3/32", + "1.144.4.4/31", + "1.144.4.7/32", + "1.144.5.0/31", + "1.144.5.3/32", + "1.144.5.4/31", + "1.144.5.7/32", + "1.144.6.0/31", + "1.144.6.3/32", + "1.144.6.4/31", + "1.144.6.7/32", + "1.144.7.0/31", + "1.144.7.3/32", + "1.144.7.4/31", + "1.144.7.7/32", + "1.144.8.0/31", + "1.144.8.3/32", + "1.144.8.4/31", + "1.144.8.7/32", + "1.144.9.0/31", + "1.144.9.3/32", + "1.144.9.4/31", + "1.144.9.7/32", + "1.148.0.0/31", + "1.148.0.3/32", + "1.148.0.4/31", + "1.148.0.7/32", + "1.148.1.0/31", + "1.148.1.3/32", + "1.148.1.4/31", + "1.148.1.7/32", + "1.148.2.0/31", + "1.148.2.3/32", + "1.148.2.4/31", + "1.148.2.7/32", + "1.148.3.0/31", + "1.148.3.3/32", + "1.148.3.4/31", + "1.148.3.7/32", + "1.148.4.0/31", + "1.148.4.3/32", + "1.148.4.4/31", + "1.148.4.7/32", + "1.148.5.0/31", + "1.148.5.3/32", + "1.148.5.4/31", + "1.148.5.7/32", + "1.148.6.0/31", + "1.148.6.3/32", + "1.148.6.4/31", + "1.148.6.7/32", + "1.148.7.0/31", + "1.148.7.3/32", + "1.148.7.4/31", + "1.148.7.7/32", + "1.148.8.0/31", + "1.148.8.3/32", + "1.148.8.4/31", + "1.148.8.7/32", + "1.148.9.0/31", + "1.148.9.3/32", + "1.148.9.4/31", + "1.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-101" } - ] - } - }, - { - "MAPPINGS:VPC:2": { - "vpc-id": "vpc-2", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.1.0.1", - "underlay-ip-address": "221.0.1.2", - "mac": "00:1A:C5:18:00:01" + } + ] + } + }, + { + "ROUTE-TABLE:2": { + "route-table-id": "route-table-2", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "2.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-2" } - ] - } - }, - { - "MAPPINGS:VPC:102": { - "vpc-id": "vpc-102", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.0.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.0.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.1.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.1.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.2.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.2.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.3.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.3.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.4.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.4.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.5.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.5.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.6.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.6.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.7.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.7.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.8.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.8.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.9.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.128.9.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:98:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.0.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.0.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.1.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.1.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.2.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.2.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.3.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.3.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.4.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.4.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.5.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.5.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.6.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.6.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.7.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.7.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.8.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.8.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.9.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.132.9.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:9C:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.0.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.0.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.1.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.1.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.2.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.2.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.3.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.3.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.4.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.4.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.5.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.5.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.6.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.6.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.7.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.7.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.8.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.8.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.9.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.136.9.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A0:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.0.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.0.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.1.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.1.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.2.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.2.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.3.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.3.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.4.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.4.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.5.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.5.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.6.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.6.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.7.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.7.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.8.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.8.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.9.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.140.9.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A4:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.0.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.0.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.1.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.1.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.2.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.2.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.3.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.3.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.4.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.4.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.5.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.5.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.6.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.6.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.7.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.7.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.8.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.8.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.9.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.144.9.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:A8:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.0.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.0.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.1.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.1.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.2.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.2.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.3.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.3.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.4.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.4.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.5.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.5.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.6.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.6.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.7.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.7.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.8.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.8.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.9.1", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "2.148.9.2", - "underlay-ip-address": "221.0.2.102", - "mac": "00:1B:6E:AC:09:02" + }, + { + "ip-prefixes": [ + "2.128.0.0/31", + "2.128.0.3/32", + "2.128.0.4/31", + "2.128.0.7/32", + "2.128.1.0/31", + "2.128.1.3/32", + "2.128.1.4/31", + "2.128.1.7/32", + "2.128.2.0/31", + "2.128.2.3/32", + "2.128.2.4/31", + "2.128.2.7/32", + "2.128.3.0/31", + "2.128.3.3/32", + "2.128.3.4/31", + "2.128.3.7/32", + "2.128.4.0/31", + "2.128.4.3/32", + "2.128.4.4/31", + "2.128.4.7/32", + "2.128.5.0/31", + "2.128.5.3/32", + "2.128.5.4/31", + "2.128.5.7/32", + "2.128.6.0/31", + "2.128.6.3/32", + "2.128.6.4/31", + "2.128.6.7/32", + "2.128.7.0/31", + "2.128.7.3/32", + "2.128.7.4/31", + "2.128.7.7/32", + "2.128.8.0/31", + "2.128.8.3/32", + "2.128.8.4/31", + "2.128.8.7/32", + "2.128.9.0/31", + "2.128.9.3/32", + "2.128.9.4/31", + "2.128.9.7/32", + "2.132.0.0/31", + "2.132.0.3/32", + "2.132.0.4/31", + "2.132.0.7/32", + "2.132.1.0/31", + "2.132.1.3/32", + "2.132.1.4/31", + "2.132.1.7/32", + "2.132.2.0/31", + "2.132.2.3/32", + "2.132.2.4/31", + "2.132.2.7/32", + "2.132.3.0/31", + "2.132.3.3/32", + "2.132.3.4/31", + "2.132.3.7/32", + "2.132.4.0/31", + "2.132.4.3/32", + "2.132.4.4/31", + "2.132.4.7/32", + "2.132.5.0/31", + "2.132.5.3/32", + "2.132.5.4/31", + "2.132.5.7/32", + "2.132.6.0/31", + "2.132.6.3/32", + "2.132.6.4/31", + "2.132.6.7/32", + "2.132.7.0/31", + "2.132.7.3/32", + "2.132.7.4/31", + "2.132.7.7/32", + "2.132.8.0/31", + "2.132.8.3/32", + "2.132.8.4/31", + "2.132.8.7/32", + "2.132.9.0/31", + "2.132.9.3/32", + "2.132.9.4/31", + "2.132.9.7/32", + "2.136.0.0/31", + "2.136.0.3/32", + "2.136.0.4/31", + "2.136.0.7/32", + "2.136.1.0/31", + "2.136.1.3/32", + "2.136.1.4/31", + "2.136.1.7/32", + "2.136.2.0/31", + "2.136.2.3/32", + "2.136.2.4/31", + "2.136.2.7/32", + "2.136.3.0/31", + "2.136.3.3/32", + "2.136.3.4/31", + "2.136.3.7/32", + "2.136.4.0/31", + "2.136.4.3/32", + "2.136.4.4/31", + "2.136.4.7/32", + "2.136.5.0/31", + "2.136.5.3/32", + "2.136.5.4/31", + "2.136.5.7/32", + "2.136.6.0/31", + "2.136.6.3/32", + "2.136.6.4/31", + "2.136.6.7/32", + "2.136.7.0/31", + "2.136.7.3/32", + "2.136.7.4/31", + "2.136.7.7/32", + "2.136.8.0/31", + "2.136.8.3/32", + "2.136.8.4/31", + "2.136.8.7/32", + "2.136.9.0/31", + "2.136.9.3/32", + "2.136.9.4/31", + "2.136.9.7/32", + "2.140.0.0/31", + "2.140.0.3/32", + "2.140.0.4/31", + "2.140.0.7/32", + "2.140.1.0/31", + "2.140.1.3/32", + "2.140.1.4/31", + "2.140.1.7/32", + "2.140.2.0/31", + "2.140.2.3/32", + "2.140.2.4/31", + "2.140.2.7/32", + "2.140.3.0/31", + "2.140.3.3/32", + "2.140.3.4/31", + "2.140.3.7/32", + "2.140.4.0/31", + "2.140.4.3/32", + "2.140.4.4/31", + "2.140.4.7/32", + "2.140.5.0/31", + "2.140.5.3/32", + "2.140.5.4/31", + "2.140.5.7/32", + "2.140.6.0/31", + "2.140.6.3/32", + "2.140.6.4/31", + "2.140.6.7/32", + "2.140.7.0/31", + "2.140.7.3/32", + "2.140.7.4/31", + "2.140.7.7/32", + "2.140.8.0/31", + "2.140.8.3/32", + "2.140.8.4/31", + "2.140.8.7/32", + "2.140.9.0/31", + "2.140.9.3/32", + "2.140.9.4/31", + "2.140.9.7/32", + "2.144.0.0/31", + "2.144.0.3/32", + "2.144.0.4/31", + "2.144.0.7/32", + "2.144.1.0/31", + "2.144.1.3/32", + "2.144.1.4/31", + "2.144.1.7/32", + "2.144.2.0/31", + "2.144.2.3/32", + "2.144.2.4/31", + "2.144.2.7/32", + "2.144.3.0/31", + "2.144.3.3/32", + "2.144.3.4/31", + "2.144.3.7/32", + "2.144.4.0/31", + "2.144.4.3/32", + "2.144.4.4/31", + "2.144.4.7/32", + "2.144.5.0/31", + "2.144.5.3/32", + "2.144.5.4/31", + "2.144.5.7/32", + "2.144.6.0/31", + "2.144.6.3/32", + "2.144.6.4/31", + "2.144.6.7/32", + "2.144.7.0/31", + "2.144.7.3/32", + "2.144.7.4/31", + "2.144.7.7/32", + "2.144.8.0/31", + "2.144.8.3/32", + "2.144.8.4/31", + "2.144.8.7/32", + "2.144.9.0/31", + "2.144.9.3/32", + "2.144.9.4/31", + "2.144.9.7/32", + "2.148.0.0/31", + "2.148.0.3/32", + "2.148.0.4/31", + "2.148.0.7/32", + "2.148.1.0/31", + "2.148.1.3/32", + "2.148.1.4/31", + "2.148.1.7/32", + "2.148.2.0/31", + "2.148.2.3/32", + "2.148.2.4/31", + "2.148.2.7/32", + "2.148.3.0/31", + "2.148.3.3/32", + "2.148.3.4/31", + "2.148.3.7/32", + "2.148.4.0/31", + "2.148.4.3/32", + "2.148.4.4/31", + "2.148.4.7/32", + "2.148.5.0/31", + "2.148.5.3/32", + "2.148.5.4/31", + "2.148.5.7/32", + "2.148.6.0/31", + "2.148.6.3/32", + "2.148.6.4/31", + "2.148.6.7/32", + "2.148.7.0/31", + "2.148.7.3/32", + "2.148.7.4/31", + "2.148.7.7/32", + "2.148.8.0/31", + "2.148.8.3/32", + "2.148.8.4/31", + "2.148.8.7/32", + "2.148.9.0/31", + "2.148.9.3/32", + "2.148.9.4/31", + "2.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-102" } - ] - } - }, - { - "MAPPINGS:VPC:3": { - "vpc-id": "vpc-3", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.1.0.1", - "underlay-ip-address": "221.0.1.3", - "mac": "00:1A:C5:30:00:01" + } + ] + } + }, + { + "ROUTE-TABLE:3": { + "route-table-id": "route-table-3", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "3.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-3" } - ] - } - }, - { - "MAPPINGS:VPC:103": { - "vpc-id": "vpc-103", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.0.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.0.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.1.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.1.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.2.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.2.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.3.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.3.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.4.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.4.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.5.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.5.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.6.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.6.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.7.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.7.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.8.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.8.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.9.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.128.9.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B0:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.0.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.0.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.1.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.1.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.2.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.2.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.3.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.3.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.4.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.4.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.5.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.5.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.6.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.6.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.7.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.7.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.8.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.8.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.9.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.132.9.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B4:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.0.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.0.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.1.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.1.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.2.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.2.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.3.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.3.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.4.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.4.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.5.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.5.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.6.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.6.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.7.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.7.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.8.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.8.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.9.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.136.9.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:B8:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.0.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.0.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.1.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.1.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.2.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.2.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.3.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.3.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.4.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.4.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.5.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.5.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.6.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.6.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.7.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.7.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.8.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.8.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.9.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.140.9.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:BC:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.0.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.0.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.1.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.1.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.2.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.2.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.3.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.3.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.4.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.4.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.5.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.5.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.6.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.6.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.7.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.7.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.8.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.8.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.9.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.144.9.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C0:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.0.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.0.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.1.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.1.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.2.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.2.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.3.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.3.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.4.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.4.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.5.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.5.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.6.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.6.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.7.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.7.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.8.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.8.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.9.1", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "3.148.9.2", - "underlay-ip-address": "221.0.2.103", - "mac": "00:1B:6E:C4:09:02" + }, + { + "ip-prefixes": [ + "3.128.0.0/31", + "3.128.0.3/32", + "3.128.0.4/31", + "3.128.0.7/32", + "3.128.1.0/31", + "3.128.1.3/32", + "3.128.1.4/31", + "3.128.1.7/32", + "3.128.2.0/31", + "3.128.2.3/32", + "3.128.2.4/31", + "3.128.2.7/32", + "3.128.3.0/31", + "3.128.3.3/32", + "3.128.3.4/31", + "3.128.3.7/32", + "3.128.4.0/31", + "3.128.4.3/32", + "3.128.4.4/31", + "3.128.4.7/32", + "3.128.5.0/31", + "3.128.5.3/32", + "3.128.5.4/31", + "3.128.5.7/32", + "3.128.6.0/31", + "3.128.6.3/32", + "3.128.6.4/31", + "3.128.6.7/32", + "3.128.7.0/31", + "3.128.7.3/32", + "3.128.7.4/31", + "3.128.7.7/32", + "3.128.8.0/31", + "3.128.8.3/32", + "3.128.8.4/31", + "3.128.8.7/32", + "3.128.9.0/31", + "3.128.9.3/32", + "3.128.9.4/31", + "3.128.9.7/32", + "3.132.0.0/31", + "3.132.0.3/32", + "3.132.0.4/31", + "3.132.0.7/32", + "3.132.1.0/31", + "3.132.1.3/32", + "3.132.1.4/31", + "3.132.1.7/32", + "3.132.2.0/31", + "3.132.2.3/32", + "3.132.2.4/31", + "3.132.2.7/32", + "3.132.3.0/31", + "3.132.3.3/32", + "3.132.3.4/31", + "3.132.3.7/32", + "3.132.4.0/31", + "3.132.4.3/32", + "3.132.4.4/31", + "3.132.4.7/32", + "3.132.5.0/31", + "3.132.5.3/32", + "3.132.5.4/31", + "3.132.5.7/32", + "3.132.6.0/31", + "3.132.6.3/32", + "3.132.6.4/31", + "3.132.6.7/32", + "3.132.7.0/31", + "3.132.7.3/32", + "3.132.7.4/31", + "3.132.7.7/32", + "3.132.8.0/31", + "3.132.8.3/32", + "3.132.8.4/31", + "3.132.8.7/32", + "3.132.9.0/31", + "3.132.9.3/32", + "3.132.9.4/31", + "3.132.9.7/32", + "3.136.0.0/31", + "3.136.0.3/32", + "3.136.0.4/31", + "3.136.0.7/32", + "3.136.1.0/31", + "3.136.1.3/32", + "3.136.1.4/31", + "3.136.1.7/32", + "3.136.2.0/31", + "3.136.2.3/32", + "3.136.2.4/31", + "3.136.2.7/32", + "3.136.3.0/31", + "3.136.3.3/32", + "3.136.3.4/31", + "3.136.3.7/32", + "3.136.4.0/31", + "3.136.4.3/32", + "3.136.4.4/31", + "3.136.4.7/32", + "3.136.5.0/31", + "3.136.5.3/32", + "3.136.5.4/31", + "3.136.5.7/32", + "3.136.6.0/31", + "3.136.6.3/32", + "3.136.6.4/31", + "3.136.6.7/32", + "3.136.7.0/31", + "3.136.7.3/32", + "3.136.7.4/31", + "3.136.7.7/32", + "3.136.8.0/31", + "3.136.8.3/32", + "3.136.8.4/31", + "3.136.8.7/32", + "3.136.9.0/31", + "3.136.9.3/32", + "3.136.9.4/31", + "3.136.9.7/32", + "3.140.0.0/31", + "3.140.0.3/32", + "3.140.0.4/31", + "3.140.0.7/32", + "3.140.1.0/31", + "3.140.1.3/32", + "3.140.1.4/31", + "3.140.1.7/32", + "3.140.2.0/31", + "3.140.2.3/32", + "3.140.2.4/31", + "3.140.2.7/32", + "3.140.3.0/31", + "3.140.3.3/32", + "3.140.3.4/31", + "3.140.3.7/32", + "3.140.4.0/31", + "3.140.4.3/32", + "3.140.4.4/31", + "3.140.4.7/32", + "3.140.5.0/31", + "3.140.5.3/32", + "3.140.5.4/31", + "3.140.5.7/32", + "3.140.6.0/31", + "3.140.6.3/32", + "3.140.6.4/31", + "3.140.6.7/32", + "3.140.7.0/31", + "3.140.7.3/32", + "3.140.7.4/31", + "3.140.7.7/32", + "3.140.8.0/31", + "3.140.8.3/32", + "3.140.8.4/31", + "3.140.8.7/32", + "3.140.9.0/31", + "3.140.9.3/32", + "3.140.9.4/31", + "3.140.9.7/32", + "3.144.0.0/31", + "3.144.0.3/32", + "3.144.0.4/31", + "3.144.0.7/32", + "3.144.1.0/31", + "3.144.1.3/32", + "3.144.1.4/31", + "3.144.1.7/32", + "3.144.2.0/31", + "3.144.2.3/32", + "3.144.2.4/31", + "3.144.2.7/32", + "3.144.3.0/31", + "3.144.3.3/32", + "3.144.3.4/31", + "3.144.3.7/32", + "3.144.4.0/31", + "3.144.4.3/32", + "3.144.4.4/31", + "3.144.4.7/32", + "3.144.5.0/31", + "3.144.5.3/32", + "3.144.5.4/31", + "3.144.5.7/32", + "3.144.6.0/31", + "3.144.6.3/32", + "3.144.6.4/31", + "3.144.6.7/32", + "3.144.7.0/31", + "3.144.7.3/32", + "3.144.7.4/31", + "3.144.7.7/32", + "3.144.8.0/31", + "3.144.8.3/32", + "3.144.8.4/31", + "3.144.8.7/32", + "3.144.9.0/31", + "3.144.9.3/32", + "3.144.9.4/31", + "3.144.9.7/32", + "3.148.0.0/31", + "3.148.0.3/32", + "3.148.0.4/31", + "3.148.0.7/32", + "3.148.1.0/31", + "3.148.1.3/32", + "3.148.1.4/31", + "3.148.1.7/32", + "3.148.2.0/31", + "3.148.2.3/32", + "3.148.2.4/31", + "3.148.2.7/32", + "3.148.3.0/31", + "3.148.3.3/32", + "3.148.3.4/31", + "3.148.3.7/32", + "3.148.4.0/31", + "3.148.4.3/32", + "3.148.4.4/31", + "3.148.4.7/32", + "3.148.5.0/31", + "3.148.5.3/32", + "3.148.5.4/31", + "3.148.5.7/32", + "3.148.6.0/31", + "3.148.6.3/32", + "3.148.6.4/31", + "3.148.6.7/32", + "3.148.7.0/31", + "3.148.7.3/32", + "3.148.7.4/31", + "3.148.7.7/32", + "3.148.8.0/31", + "3.148.8.3/32", + "3.148.8.4/31", + "3.148.8.7/32", + "3.148.9.0/31", + "3.148.9.3/32", + "3.148.9.4/31", + "3.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-103" } - ] - } - }, - { - "MAPPINGS:VPC:4": { - "vpc-id": "vpc-4", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.1.0.1", - "underlay-ip-address": "221.0.1.4", - "mac": "00:1A:C5:48:00:01" + } + ] + } + }, + { + "ROUTE-TABLE:4": { + "route-table-id": "route-table-4", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "4.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-4" } - ] - } - }, - { - "MAPPINGS:VPC:104": { - "vpc-id": "vpc-104", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.0.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.0.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.1.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.1.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.2.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.2.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.3.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.3.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.4.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.4.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.5.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.5.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.6.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.6.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.7.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.7.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.8.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.8.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.9.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.128.9.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:C8:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.0.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.0.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.1.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.1.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.2.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.2.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.3.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.3.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.4.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.4.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.5.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.5.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.6.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.6.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.7.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.7.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.8.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.8.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.9.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.132.9.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:CC:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.0.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.0.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.1.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.1.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.2.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.2.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.3.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.3.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.4.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.4.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.5.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.5.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.6.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.6.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.7.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.7.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.8.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.8.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.9.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.136.9.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D0:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.0.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.0.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.1.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.1.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.2.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.2.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.3.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.3.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.4.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.4.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.5.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.5.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.6.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.6.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.7.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.7.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.8.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.8.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.9.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.140.9.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D4:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.0.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.0.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.1.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.1.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.2.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.2.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.3.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.3.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.4.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.4.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.5.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.5.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.6.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.6.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.7.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.7.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.8.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.8.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.9.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.144.9.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:D8:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.0.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.0.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.1.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.1.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.2.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.2.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.3.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.3.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.4.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.4.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.5.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.5.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.6.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.6.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.7.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.7.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.8.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.8.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.9.1", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "4.148.9.2", - "underlay-ip-address": "221.0.2.104", - "mac": "00:1B:6E:DC:09:02" + }, + { + "ip-prefixes": [ + "4.128.0.0/31", + "4.128.0.3/32", + "4.128.0.4/31", + "4.128.0.7/32", + "4.128.1.0/31", + "4.128.1.3/32", + "4.128.1.4/31", + "4.128.1.7/32", + "4.128.2.0/31", + "4.128.2.3/32", + "4.128.2.4/31", + "4.128.2.7/32", + "4.128.3.0/31", + "4.128.3.3/32", + "4.128.3.4/31", + "4.128.3.7/32", + "4.128.4.0/31", + "4.128.4.3/32", + "4.128.4.4/31", + "4.128.4.7/32", + "4.128.5.0/31", + "4.128.5.3/32", + "4.128.5.4/31", + "4.128.5.7/32", + "4.128.6.0/31", + "4.128.6.3/32", + "4.128.6.4/31", + "4.128.6.7/32", + "4.128.7.0/31", + "4.128.7.3/32", + "4.128.7.4/31", + "4.128.7.7/32", + "4.128.8.0/31", + "4.128.8.3/32", + "4.128.8.4/31", + "4.128.8.7/32", + "4.128.9.0/31", + "4.128.9.3/32", + "4.128.9.4/31", + "4.128.9.7/32", + "4.132.0.0/31", + "4.132.0.3/32", + "4.132.0.4/31", + "4.132.0.7/32", + "4.132.1.0/31", + "4.132.1.3/32", + "4.132.1.4/31", + "4.132.1.7/32", + "4.132.2.0/31", + "4.132.2.3/32", + "4.132.2.4/31", + "4.132.2.7/32", + "4.132.3.0/31", + "4.132.3.3/32", + "4.132.3.4/31", + "4.132.3.7/32", + "4.132.4.0/31", + "4.132.4.3/32", + "4.132.4.4/31", + "4.132.4.7/32", + "4.132.5.0/31", + "4.132.5.3/32", + "4.132.5.4/31", + "4.132.5.7/32", + "4.132.6.0/31", + "4.132.6.3/32", + "4.132.6.4/31", + "4.132.6.7/32", + "4.132.7.0/31", + "4.132.7.3/32", + "4.132.7.4/31", + "4.132.7.7/32", + "4.132.8.0/31", + "4.132.8.3/32", + "4.132.8.4/31", + "4.132.8.7/32", + "4.132.9.0/31", + "4.132.9.3/32", + "4.132.9.4/31", + "4.132.9.7/32", + "4.136.0.0/31", + "4.136.0.3/32", + "4.136.0.4/31", + "4.136.0.7/32", + "4.136.1.0/31", + "4.136.1.3/32", + "4.136.1.4/31", + "4.136.1.7/32", + "4.136.2.0/31", + "4.136.2.3/32", + "4.136.2.4/31", + "4.136.2.7/32", + "4.136.3.0/31", + "4.136.3.3/32", + "4.136.3.4/31", + "4.136.3.7/32", + "4.136.4.0/31", + "4.136.4.3/32", + "4.136.4.4/31", + "4.136.4.7/32", + "4.136.5.0/31", + "4.136.5.3/32", + "4.136.5.4/31", + "4.136.5.7/32", + "4.136.6.0/31", + "4.136.6.3/32", + "4.136.6.4/31", + "4.136.6.7/32", + "4.136.7.0/31", + "4.136.7.3/32", + "4.136.7.4/31", + "4.136.7.7/32", + "4.136.8.0/31", + "4.136.8.3/32", + "4.136.8.4/31", + "4.136.8.7/32", + "4.136.9.0/31", + "4.136.9.3/32", + "4.136.9.4/31", + "4.136.9.7/32", + "4.140.0.0/31", + "4.140.0.3/32", + "4.140.0.4/31", + "4.140.0.7/32", + "4.140.1.0/31", + "4.140.1.3/32", + "4.140.1.4/31", + "4.140.1.7/32", + "4.140.2.0/31", + "4.140.2.3/32", + "4.140.2.4/31", + "4.140.2.7/32", + "4.140.3.0/31", + "4.140.3.3/32", + "4.140.3.4/31", + "4.140.3.7/32", + "4.140.4.0/31", + "4.140.4.3/32", + "4.140.4.4/31", + "4.140.4.7/32", + "4.140.5.0/31", + "4.140.5.3/32", + "4.140.5.4/31", + "4.140.5.7/32", + "4.140.6.0/31", + "4.140.6.3/32", + "4.140.6.4/31", + "4.140.6.7/32", + "4.140.7.0/31", + "4.140.7.3/32", + "4.140.7.4/31", + "4.140.7.7/32", + "4.140.8.0/31", + "4.140.8.3/32", + "4.140.8.4/31", + "4.140.8.7/32", + "4.140.9.0/31", + "4.140.9.3/32", + "4.140.9.4/31", + "4.140.9.7/32", + "4.144.0.0/31", + "4.144.0.3/32", + "4.144.0.4/31", + "4.144.0.7/32", + "4.144.1.0/31", + "4.144.1.3/32", + "4.144.1.4/31", + "4.144.1.7/32", + "4.144.2.0/31", + "4.144.2.3/32", + "4.144.2.4/31", + "4.144.2.7/32", + "4.144.3.0/31", + "4.144.3.3/32", + "4.144.3.4/31", + "4.144.3.7/32", + "4.144.4.0/31", + "4.144.4.3/32", + "4.144.4.4/31", + "4.144.4.7/32", + "4.144.5.0/31", + "4.144.5.3/32", + "4.144.5.4/31", + "4.144.5.7/32", + "4.144.6.0/31", + "4.144.6.3/32", + "4.144.6.4/31", + "4.144.6.7/32", + "4.144.7.0/31", + "4.144.7.3/32", + "4.144.7.4/31", + "4.144.7.7/32", + "4.144.8.0/31", + "4.144.8.3/32", + "4.144.8.4/31", + "4.144.8.7/32", + "4.144.9.0/31", + "4.144.9.3/32", + "4.144.9.4/31", + "4.144.9.7/32", + "4.148.0.0/31", + "4.148.0.3/32", + "4.148.0.4/31", + "4.148.0.7/32", + "4.148.1.0/31", + "4.148.1.3/32", + "4.148.1.4/31", + "4.148.1.7/32", + "4.148.2.0/31", + "4.148.2.3/32", + "4.148.2.4/31", + "4.148.2.7/32", + "4.148.3.0/31", + "4.148.3.3/32", + "4.148.3.4/31", + "4.148.3.7/32", + "4.148.4.0/31", + "4.148.4.3/32", + "4.148.4.4/31", + "4.148.4.7/32", + "4.148.5.0/31", + "4.148.5.3/32", + "4.148.5.4/31", + "4.148.5.7/32", + "4.148.6.0/31", + "4.148.6.3/32", + "4.148.6.4/31", + "4.148.6.7/32", + "4.148.7.0/31", + "4.148.7.3/32", + "4.148.7.4/31", + "4.148.7.7/32", + "4.148.8.0/31", + "4.148.8.3/32", + "4.148.8.4/31", + "4.148.8.7/32", + "4.148.9.0/31", + "4.148.9.3/32", + "4.148.9.4/31", + "4.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-104" } - ] - } - }, - { - "MAPPINGS:VPC:5": { - "vpc-id": "vpc-5", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.1.0.1", - "underlay-ip-address": "221.0.1.5", - "mac": "00:1A:C5:60:00:01" + } + ] + } + }, + { + "ROUTE-TABLE:5": { + "route-table-id": "route-table-5", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "5.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-5" } - ] - } - }, - { - "MAPPINGS:VPC:105": { - "vpc-id": "vpc-105", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.0.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.0.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.1.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.1.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.2.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.2.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.3.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.3.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.4.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.4.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.5.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.5.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.6.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.6.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.7.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.7.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.8.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.8.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.9.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.128.9.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E0:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.0.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.0.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.1.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.1.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.2.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.2.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.3.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.3.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.4.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.4.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.5.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.5.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.6.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.6.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.7.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.7.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.8.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.8.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.9.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.132.9.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E4:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.0.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.0.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.1.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.1.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.2.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.2.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.3.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.3.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.4.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.4.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.5.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.5.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.6.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.6.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.7.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.7.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.8.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.8.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.9.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.136.9.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:E8:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.0.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.0.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.1.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.1.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.2.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.2.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.3.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.3.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.4.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.4.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.5.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.5.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.6.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.6.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.7.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.7.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.8.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.8.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.9.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.140.9.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:EC:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.0.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.0.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.1.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.1.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.2.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.2.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.3.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.3.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.4.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.4.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.5.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.5.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.6.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.6.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.7.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.7.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.8.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.8.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.9.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.144.9.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F0:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.0.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.0.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.1.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.1.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.2.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.2.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.3.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.3.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.4.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.4.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.5.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.5.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.6.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.6.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.7.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.7.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.8.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.8.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.9.1", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "5.148.9.2", - "underlay-ip-address": "221.0.2.105", - "mac": "00:1B:6E:F4:09:02" + }, + { + "ip-prefixes": [ + "5.128.0.0/31", + "5.128.0.3/32", + "5.128.0.4/31", + "5.128.0.7/32", + "5.128.1.0/31", + "5.128.1.3/32", + "5.128.1.4/31", + "5.128.1.7/32", + "5.128.2.0/31", + "5.128.2.3/32", + "5.128.2.4/31", + "5.128.2.7/32", + "5.128.3.0/31", + "5.128.3.3/32", + "5.128.3.4/31", + "5.128.3.7/32", + "5.128.4.0/31", + "5.128.4.3/32", + "5.128.4.4/31", + "5.128.4.7/32", + "5.128.5.0/31", + "5.128.5.3/32", + "5.128.5.4/31", + "5.128.5.7/32", + "5.128.6.0/31", + "5.128.6.3/32", + "5.128.6.4/31", + "5.128.6.7/32", + "5.128.7.0/31", + "5.128.7.3/32", + "5.128.7.4/31", + "5.128.7.7/32", + "5.128.8.0/31", + "5.128.8.3/32", + "5.128.8.4/31", + "5.128.8.7/32", + "5.128.9.0/31", + "5.128.9.3/32", + "5.128.9.4/31", + "5.128.9.7/32", + "5.132.0.0/31", + "5.132.0.3/32", + "5.132.0.4/31", + "5.132.0.7/32", + "5.132.1.0/31", + "5.132.1.3/32", + "5.132.1.4/31", + "5.132.1.7/32", + "5.132.2.0/31", + "5.132.2.3/32", + "5.132.2.4/31", + "5.132.2.7/32", + "5.132.3.0/31", + "5.132.3.3/32", + "5.132.3.4/31", + "5.132.3.7/32", + "5.132.4.0/31", + "5.132.4.3/32", + "5.132.4.4/31", + "5.132.4.7/32", + "5.132.5.0/31", + "5.132.5.3/32", + "5.132.5.4/31", + "5.132.5.7/32", + "5.132.6.0/31", + "5.132.6.3/32", + "5.132.6.4/31", + "5.132.6.7/32", + "5.132.7.0/31", + "5.132.7.3/32", + "5.132.7.4/31", + "5.132.7.7/32", + "5.132.8.0/31", + "5.132.8.3/32", + "5.132.8.4/31", + "5.132.8.7/32", + "5.132.9.0/31", + "5.132.9.3/32", + "5.132.9.4/31", + "5.132.9.7/32", + "5.136.0.0/31", + "5.136.0.3/32", + "5.136.0.4/31", + "5.136.0.7/32", + "5.136.1.0/31", + "5.136.1.3/32", + "5.136.1.4/31", + "5.136.1.7/32", + "5.136.2.0/31", + "5.136.2.3/32", + "5.136.2.4/31", + "5.136.2.7/32", + "5.136.3.0/31", + "5.136.3.3/32", + "5.136.3.4/31", + "5.136.3.7/32", + "5.136.4.0/31", + "5.136.4.3/32", + "5.136.4.4/31", + "5.136.4.7/32", + "5.136.5.0/31", + "5.136.5.3/32", + "5.136.5.4/31", + "5.136.5.7/32", + "5.136.6.0/31", + "5.136.6.3/32", + "5.136.6.4/31", + "5.136.6.7/32", + "5.136.7.0/31", + "5.136.7.3/32", + "5.136.7.4/31", + "5.136.7.7/32", + "5.136.8.0/31", + "5.136.8.3/32", + "5.136.8.4/31", + "5.136.8.7/32", + "5.136.9.0/31", + "5.136.9.3/32", + "5.136.9.4/31", + "5.136.9.7/32", + "5.140.0.0/31", + "5.140.0.3/32", + "5.140.0.4/31", + "5.140.0.7/32", + "5.140.1.0/31", + "5.140.1.3/32", + "5.140.1.4/31", + "5.140.1.7/32", + "5.140.2.0/31", + "5.140.2.3/32", + "5.140.2.4/31", + "5.140.2.7/32", + "5.140.3.0/31", + "5.140.3.3/32", + "5.140.3.4/31", + "5.140.3.7/32", + "5.140.4.0/31", + "5.140.4.3/32", + "5.140.4.4/31", + "5.140.4.7/32", + "5.140.5.0/31", + "5.140.5.3/32", + "5.140.5.4/31", + "5.140.5.7/32", + "5.140.6.0/31", + "5.140.6.3/32", + "5.140.6.4/31", + "5.140.6.7/32", + "5.140.7.0/31", + "5.140.7.3/32", + "5.140.7.4/31", + "5.140.7.7/32", + "5.140.8.0/31", + "5.140.8.3/32", + "5.140.8.4/31", + "5.140.8.7/32", + "5.140.9.0/31", + "5.140.9.3/32", + "5.140.9.4/31", + "5.140.9.7/32", + "5.144.0.0/31", + "5.144.0.3/32", + "5.144.0.4/31", + "5.144.0.7/32", + "5.144.1.0/31", + "5.144.1.3/32", + "5.144.1.4/31", + "5.144.1.7/32", + "5.144.2.0/31", + "5.144.2.3/32", + "5.144.2.4/31", + "5.144.2.7/32", + "5.144.3.0/31", + "5.144.3.3/32", + "5.144.3.4/31", + "5.144.3.7/32", + "5.144.4.0/31", + "5.144.4.3/32", + "5.144.4.4/31", + "5.144.4.7/32", + "5.144.5.0/31", + "5.144.5.3/32", + "5.144.5.4/31", + "5.144.5.7/32", + "5.144.6.0/31", + "5.144.6.3/32", + "5.144.6.4/31", + "5.144.6.7/32", + "5.144.7.0/31", + "5.144.7.3/32", + "5.144.7.4/31", + "5.144.7.7/32", + "5.144.8.0/31", + "5.144.8.3/32", + "5.144.8.4/31", + "5.144.8.7/32", + "5.144.9.0/31", + "5.144.9.3/32", + "5.144.9.4/31", + "5.144.9.7/32", + "5.148.0.0/31", + "5.148.0.3/32", + "5.148.0.4/31", + "5.148.0.7/32", + "5.148.1.0/31", + "5.148.1.3/32", + "5.148.1.4/31", + "5.148.1.7/32", + "5.148.2.0/31", + "5.148.2.3/32", + "5.148.2.4/31", + "5.148.2.7/32", + "5.148.3.0/31", + "5.148.3.3/32", + "5.148.3.4/31", + "5.148.3.7/32", + "5.148.4.0/31", + "5.148.4.3/32", + "5.148.4.4/31", + "5.148.4.7/32", + "5.148.5.0/31", + "5.148.5.3/32", + "5.148.5.4/31", + "5.148.5.7/32", + "5.148.6.0/31", + "5.148.6.3/32", + "5.148.6.4/31", + "5.148.6.7/32", + "5.148.7.0/31", + "5.148.7.3/32", + "5.148.7.4/31", + "5.148.7.7/32", + "5.148.8.0/31", + "5.148.8.3/32", + "5.148.8.4/31", + "5.148.8.7/32", + "5.148.9.0/31", + "5.148.9.3/32", + "5.148.9.4/31", + "5.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-105" } - ] - } - }, - { - "MAPPINGS:VPC:6": { - "vpc-id": "vpc-6", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.1.0.1", - "underlay-ip-address": "221.0.1.6", - "mac": "00:1A:C5:78:00:01" + } + ] + } + }, + { + "ROUTE-TABLE:6": { + "route-table-id": "route-table-6", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "6.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-6" } - ] - } - }, - { - "MAPPINGS:VPC:106": { - "vpc-id": "vpc-106", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.0.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.0.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.1.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.1.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.2.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.2.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.3.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.3.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.4.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.4.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.5.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.5.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.6.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.6.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.7.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.7.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.8.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.8.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.9.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.128.9.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:F8:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.0.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.0.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.1.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.1.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.2.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.2.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.3.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.3.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.4.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.4.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.5.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.5.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.6.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.6.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.7.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.7.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.8.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.8.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.9.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.132.9.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6E:FC:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.0.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.0.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.1.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.1.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.2.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.2.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.3.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.3.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.4.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.4.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.5.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.5.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.6.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.6.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.7.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.7.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.8.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.8.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.9.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.136.9.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:00:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.0.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.0.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.1.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.1.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.2.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.2.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.3.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.3.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.4.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.4.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.5.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.5.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.6.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.6.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.7.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.7.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.8.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.8.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.9.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.140.9.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:04:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.0.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.0.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.1.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.1.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.2.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.2.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.3.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.3.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.4.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.4.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.5.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.5.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.6.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.6.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.7.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.7.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.8.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.8.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.9.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.144.9.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:08:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.0.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.0.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.1.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.1.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.2.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.2.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.3.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.3.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.4.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.4.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.5.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.5.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.6.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.6.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.7.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.7.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.8.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.8.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.9.1", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "6.148.9.2", - "underlay-ip-address": "221.0.2.106", - "mac": "00:1B:6F:0C:09:02" + }, + { + "ip-prefixes": [ + "6.128.0.0/31", + "6.128.0.3/32", + "6.128.0.4/31", + "6.128.0.7/32", + "6.128.1.0/31", + "6.128.1.3/32", + "6.128.1.4/31", + "6.128.1.7/32", + "6.128.2.0/31", + "6.128.2.3/32", + "6.128.2.4/31", + "6.128.2.7/32", + "6.128.3.0/31", + "6.128.3.3/32", + "6.128.3.4/31", + "6.128.3.7/32", + "6.128.4.0/31", + "6.128.4.3/32", + "6.128.4.4/31", + "6.128.4.7/32", + "6.128.5.0/31", + "6.128.5.3/32", + "6.128.5.4/31", + "6.128.5.7/32", + "6.128.6.0/31", + "6.128.6.3/32", + "6.128.6.4/31", + "6.128.6.7/32", + "6.128.7.0/31", + "6.128.7.3/32", + "6.128.7.4/31", + "6.128.7.7/32", + "6.128.8.0/31", + "6.128.8.3/32", + "6.128.8.4/31", + "6.128.8.7/32", + "6.128.9.0/31", + "6.128.9.3/32", + "6.128.9.4/31", + "6.128.9.7/32", + "6.132.0.0/31", + "6.132.0.3/32", + "6.132.0.4/31", + "6.132.0.7/32", + "6.132.1.0/31", + "6.132.1.3/32", + "6.132.1.4/31", + "6.132.1.7/32", + "6.132.2.0/31", + "6.132.2.3/32", + "6.132.2.4/31", + "6.132.2.7/32", + "6.132.3.0/31", + "6.132.3.3/32", + "6.132.3.4/31", + "6.132.3.7/32", + "6.132.4.0/31", + "6.132.4.3/32", + "6.132.4.4/31", + "6.132.4.7/32", + "6.132.5.0/31", + "6.132.5.3/32", + "6.132.5.4/31", + "6.132.5.7/32", + "6.132.6.0/31", + "6.132.6.3/32", + "6.132.6.4/31", + "6.132.6.7/32", + "6.132.7.0/31", + "6.132.7.3/32", + "6.132.7.4/31", + "6.132.7.7/32", + "6.132.8.0/31", + "6.132.8.3/32", + "6.132.8.4/31", + "6.132.8.7/32", + "6.132.9.0/31", + "6.132.9.3/32", + "6.132.9.4/31", + "6.132.9.7/32", + "6.136.0.0/31", + "6.136.0.3/32", + "6.136.0.4/31", + "6.136.0.7/32", + "6.136.1.0/31", + "6.136.1.3/32", + "6.136.1.4/31", + "6.136.1.7/32", + "6.136.2.0/31", + "6.136.2.3/32", + "6.136.2.4/31", + "6.136.2.7/32", + "6.136.3.0/31", + "6.136.3.3/32", + "6.136.3.4/31", + "6.136.3.7/32", + "6.136.4.0/31", + "6.136.4.3/32", + "6.136.4.4/31", + "6.136.4.7/32", + "6.136.5.0/31", + "6.136.5.3/32", + "6.136.5.4/31", + "6.136.5.7/32", + "6.136.6.0/31", + "6.136.6.3/32", + "6.136.6.4/31", + "6.136.6.7/32", + "6.136.7.0/31", + "6.136.7.3/32", + "6.136.7.4/31", + "6.136.7.7/32", + "6.136.8.0/31", + "6.136.8.3/32", + "6.136.8.4/31", + "6.136.8.7/32", + "6.136.9.0/31", + "6.136.9.3/32", + "6.136.9.4/31", + "6.136.9.7/32", + "6.140.0.0/31", + "6.140.0.3/32", + "6.140.0.4/31", + "6.140.0.7/32", + "6.140.1.0/31", + "6.140.1.3/32", + "6.140.1.4/31", + "6.140.1.7/32", + "6.140.2.0/31", + "6.140.2.3/32", + "6.140.2.4/31", + "6.140.2.7/32", + "6.140.3.0/31", + "6.140.3.3/32", + "6.140.3.4/31", + "6.140.3.7/32", + "6.140.4.0/31", + "6.140.4.3/32", + "6.140.4.4/31", + "6.140.4.7/32", + "6.140.5.0/31", + "6.140.5.3/32", + "6.140.5.4/31", + "6.140.5.7/32", + "6.140.6.0/31", + "6.140.6.3/32", + "6.140.6.4/31", + "6.140.6.7/32", + "6.140.7.0/31", + "6.140.7.3/32", + "6.140.7.4/31", + "6.140.7.7/32", + "6.140.8.0/31", + "6.140.8.3/32", + "6.140.8.4/31", + "6.140.8.7/32", + "6.140.9.0/31", + "6.140.9.3/32", + "6.140.9.4/31", + "6.140.9.7/32", + "6.144.0.0/31", + "6.144.0.3/32", + "6.144.0.4/31", + "6.144.0.7/32", + "6.144.1.0/31", + "6.144.1.3/32", + "6.144.1.4/31", + "6.144.1.7/32", + "6.144.2.0/31", + "6.144.2.3/32", + "6.144.2.4/31", + "6.144.2.7/32", + "6.144.3.0/31", + "6.144.3.3/32", + "6.144.3.4/31", + "6.144.3.7/32", + "6.144.4.0/31", + "6.144.4.3/32", + "6.144.4.4/31", + "6.144.4.7/32", + "6.144.5.0/31", + "6.144.5.3/32", + "6.144.5.4/31", + "6.144.5.7/32", + "6.144.6.0/31", + "6.144.6.3/32", + "6.144.6.4/31", + "6.144.6.7/32", + "6.144.7.0/31", + "6.144.7.3/32", + "6.144.7.4/31", + "6.144.7.7/32", + "6.144.8.0/31", + "6.144.8.3/32", + "6.144.8.4/31", + "6.144.8.7/32", + "6.144.9.0/31", + "6.144.9.3/32", + "6.144.9.4/31", + "6.144.9.7/32", + "6.148.0.0/31", + "6.148.0.3/32", + "6.148.0.4/31", + "6.148.0.7/32", + "6.148.1.0/31", + "6.148.1.3/32", + "6.148.1.4/31", + "6.148.1.7/32", + "6.148.2.0/31", + "6.148.2.3/32", + "6.148.2.4/31", + "6.148.2.7/32", + "6.148.3.0/31", + "6.148.3.3/32", + "6.148.3.4/31", + "6.148.3.7/32", + "6.148.4.0/31", + "6.148.4.3/32", + "6.148.4.4/31", + "6.148.4.7/32", + "6.148.5.0/31", + "6.148.5.3/32", + "6.148.5.4/31", + "6.148.5.7/32", + "6.148.6.0/31", + "6.148.6.3/32", + "6.148.6.4/31", + "6.148.6.7/32", + "6.148.7.0/31", + "6.148.7.3/32", + "6.148.7.4/31", + "6.148.7.7/32", + "6.148.8.0/31", + "6.148.8.3/32", + "6.148.8.4/31", + "6.148.8.7/32", + "6.148.9.0/31", + "6.148.9.3/32", + "6.148.9.4/31", + "6.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-106" } - ] - } - }, - { - "MAPPINGS:VPC:7": { - "vpc-id": "vpc-7", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.1.0.1", - "underlay-ip-address": "221.0.1.7", - "mac": "00:1A:C5:90:00:01" + } + ] + } + }, + { + "ROUTE-TABLE:7": { + "route-table-id": "route-table-7", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "7.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-7" } - ] - } - }, - { - "MAPPINGS:VPC:107": { - "vpc-id": "vpc-107", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.0.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.0.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.1.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.1.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.2.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.2.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.3.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.3.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.4.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.4.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.5.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.5.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.6.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.6.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.7.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.7.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.8.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.8.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.9.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.128.9.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:10:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.0.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.0.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.1.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.1.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.2.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.2.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.3.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.3.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.4.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.4.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.5.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.5.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.6.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.6.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.7.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.7.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.8.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.8.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.9.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.132.9.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:14:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.0.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.0.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.1.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.1.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.2.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.2.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.3.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.3.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.4.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.4.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.5.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.5.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.6.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.6.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.7.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.7.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.8.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.8.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.9.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.136.9.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:18:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.0.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.0.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.1.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.1.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.2.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.2.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.3.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.3.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.4.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.4.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.5.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.5.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.6.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.6.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.7.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.7.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.8.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.8.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.9.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.140.9.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:1C:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.0.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.0.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.1.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.1.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.2.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.2.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.3.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.3.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.4.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.4.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.5.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.5.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.6.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.6.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.7.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.7.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.8.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.8.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.9.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.144.9.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:20:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.0.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.0.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.1.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.1.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.2.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.2.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.3.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.3.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.4.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.4.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.5.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.5.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.6.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.6.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.7.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.7.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.8.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.8.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.9.1", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "7.148.9.2", - "underlay-ip-address": "221.0.2.107", - "mac": "00:1B:6F:24:09:02" + }, + { + "ip-prefixes": [ + "7.128.0.0/31", + "7.128.0.3/32", + "7.128.0.4/31", + "7.128.0.7/32", + "7.128.1.0/31", + "7.128.1.3/32", + "7.128.1.4/31", + "7.128.1.7/32", + "7.128.2.0/31", + "7.128.2.3/32", + "7.128.2.4/31", + "7.128.2.7/32", + "7.128.3.0/31", + "7.128.3.3/32", + "7.128.3.4/31", + "7.128.3.7/32", + "7.128.4.0/31", + "7.128.4.3/32", + "7.128.4.4/31", + "7.128.4.7/32", + "7.128.5.0/31", + "7.128.5.3/32", + "7.128.5.4/31", + "7.128.5.7/32", + "7.128.6.0/31", + "7.128.6.3/32", + "7.128.6.4/31", + "7.128.6.7/32", + "7.128.7.0/31", + "7.128.7.3/32", + "7.128.7.4/31", + "7.128.7.7/32", + "7.128.8.0/31", + "7.128.8.3/32", + "7.128.8.4/31", + "7.128.8.7/32", + "7.128.9.0/31", + "7.128.9.3/32", + "7.128.9.4/31", + "7.128.9.7/32", + "7.132.0.0/31", + "7.132.0.3/32", + "7.132.0.4/31", + "7.132.0.7/32", + "7.132.1.0/31", + "7.132.1.3/32", + "7.132.1.4/31", + "7.132.1.7/32", + "7.132.2.0/31", + "7.132.2.3/32", + "7.132.2.4/31", + "7.132.2.7/32", + "7.132.3.0/31", + "7.132.3.3/32", + "7.132.3.4/31", + "7.132.3.7/32", + "7.132.4.0/31", + "7.132.4.3/32", + "7.132.4.4/31", + "7.132.4.7/32", + "7.132.5.0/31", + "7.132.5.3/32", + "7.132.5.4/31", + "7.132.5.7/32", + "7.132.6.0/31", + "7.132.6.3/32", + "7.132.6.4/31", + "7.132.6.7/32", + "7.132.7.0/31", + "7.132.7.3/32", + "7.132.7.4/31", + "7.132.7.7/32", + "7.132.8.0/31", + "7.132.8.3/32", + "7.132.8.4/31", + "7.132.8.7/32", + "7.132.9.0/31", + "7.132.9.3/32", + "7.132.9.4/31", + "7.132.9.7/32", + "7.136.0.0/31", + "7.136.0.3/32", + "7.136.0.4/31", + "7.136.0.7/32", + "7.136.1.0/31", + "7.136.1.3/32", + "7.136.1.4/31", + "7.136.1.7/32", + "7.136.2.0/31", + "7.136.2.3/32", + "7.136.2.4/31", + "7.136.2.7/32", + "7.136.3.0/31", + "7.136.3.3/32", + "7.136.3.4/31", + "7.136.3.7/32", + "7.136.4.0/31", + "7.136.4.3/32", + "7.136.4.4/31", + "7.136.4.7/32", + "7.136.5.0/31", + "7.136.5.3/32", + "7.136.5.4/31", + "7.136.5.7/32", + "7.136.6.0/31", + "7.136.6.3/32", + "7.136.6.4/31", + "7.136.6.7/32", + "7.136.7.0/31", + "7.136.7.3/32", + "7.136.7.4/31", + "7.136.7.7/32", + "7.136.8.0/31", + "7.136.8.3/32", + "7.136.8.4/31", + "7.136.8.7/32", + "7.136.9.0/31", + "7.136.9.3/32", + "7.136.9.4/31", + "7.136.9.7/32", + "7.140.0.0/31", + "7.140.0.3/32", + "7.140.0.4/31", + "7.140.0.7/32", + "7.140.1.0/31", + "7.140.1.3/32", + "7.140.1.4/31", + "7.140.1.7/32", + "7.140.2.0/31", + "7.140.2.3/32", + "7.140.2.4/31", + "7.140.2.7/32", + "7.140.3.0/31", + "7.140.3.3/32", + "7.140.3.4/31", + "7.140.3.7/32", + "7.140.4.0/31", + "7.140.4.3/32", + "7.140.4.4/31", + "7.140.4.7/32", + "7.140.5.0/31", + "7.140.5.3/32", + "7.140.5.4/31", + "7.140.5.7/32", + "7.140.6.0/31", + "7.140.6.3/32", + "7.140.6.4/31", + "7.140.6.7/32", + "7.140.7.0/31", + "7.140.7.3/32", + "7.140.7.4/31", + "7.140.7.7/32", + "7.140.8.0/31", + "7.140.8.3/32", + "7.140.8.4/31", + "7.140.8.7/32", + "7.140.9.0/31", + "7.140.9.3/32", + "7.140.9.4/31", + "7.140.9.7/32", + "7.144.0.0/31", + "7.144.0.3/32", + "7.144.0.4/31", + "7.144.0.7/32", + "7.144.1.0/31", + "7.144.1.3/32", + "7.144.1.4/31", + "7.144.1.7/32", + "7.144.2.0/31", + "7.144.2.3/32", + "7.144.2.4/31", + "7.144.2.7/32", + "7.144.3.0/31", + "7.144.3.3/32", + "7.144.3.4/31", + "7.144.3.7/32", + "7.144.4.0/31", + "7.144.4.3/32", + "7.144.4.4/31", + "7.144.4.7/32", + "7.144.5.0/31", + "7.144.5.3/32", + "7.144.5.4/31", + "7.144.5.7/32", + "7.144.6.0/31", + "7.144.6.3/32", + "7.144.6.4/31", + "7.144.6.7/32", + "7.144.7.0/31", + "7.144.7.3/32", + "7.144.7.4/31", + "7.144.7.7/32", + "7.144.8.0/31", + "7.144.8.3/32", + "7.144.8.4/31", + "7.144.8.7/32", + "7.144.9.0/31", + "7.144.9.3/32", + "7.144.9.4/31", + "7.144.9.7/32", + "7.148.0.0/31", + "7.148.0.3/32", + "7.148.0.4/31", + "7.148.0.7/32", + "7.148.1.0/31", + "7.148.1.3/32", + "7.148.1.4/31", + "7.148.1.7/32", + "7.148.2.0/31", + "7.148.2.3/32", + "7.148.2.4/31", + "7.148.2.7/32", + "7.148.3.0/31", + "7.148.3.3/32", + "7.148.3.4/31", + "7.148.3.7/32", + "7.148.4.0/31", + "7.148.4.3/32", + "7.148.4.4/31", + "7.148.4.7/32", + "7.148.5.0/31", + "7.148.5.3/32", + "7.148.5.4/31", + "7.148.5.7/32", + "7.148.6.0/31", + "7.148.6.3/32", + "7.148.6.4/31", + "7.148.6.7/32", + "7.148.7.0/31", + "7.148.7.3/32", + "7.148.7.4/31", + "7.148.7.7/32", + "7.148.8.0/31", + "7.148.8.3/32", + "7.148.8.4/31", + "7.148.8.7/32", + "7.148.9.0/31", + "7.148.9.3/32", + "7.148.9.4/31", + "7.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-107" } - ] - } - }, - { - "MAPPINGS:VPC:8": { - "vpc-id": "vpc-8", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.1.0.1", - "underlay-ip-address": "221.0.1.8", - "mac": "00:1A:C5:A8:00:01" + } + ] + } + }, + { + "ROUTE-TABLE:8": { + "route-table-id": "route-table-8", + "ip-version": "IPv4", + "routes": [ + { + "ip-prefixes": [ + "8.1.0.1/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-8" } - ] - } - }, - { - "MAPPINGS:VPC:108": { - "vpc-id": "vpc-108", - "mappings": [ - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.0.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.0.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.1.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.1.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.2.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.2.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.3.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.3.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.4.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.4.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.5.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.5.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.6.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.6.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.7.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.7.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.8.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.8.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.9.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.128.9.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:28:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.0.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.0.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.1.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.1.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.2.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.2.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.3.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.3.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.4.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.4.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.5.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.5.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.6.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.6.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.7.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.7.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.8.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.8.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.9.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.132.9.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:2C:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.0.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.0.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.1.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.1.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.2.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.2.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.3.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.3.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.4.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.4.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.5.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.5.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.6.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.6.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.7.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.7.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.8.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.8.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.9.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.136.9.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:30:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.0.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.0.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.1.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.1.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.2.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.2.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.3.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.3.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.4.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.4.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.5.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.5.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.6.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.6.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.7.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.7.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.8.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.8.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.9.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.140.9.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:34:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.0.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.0.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.1.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.1.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.2.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.2.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.3.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.3.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.4.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.4.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.5.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.5.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.6.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.6.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.7.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.7.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.8.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.8.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.9.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.144.9.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:38:09:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.0.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:00:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.0.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:00:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.1.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:01:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.1.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:01:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.2.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:02:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.2.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:02:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.3.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:03:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.3.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:03:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.4.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:04:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.4.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:04:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.5.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:05:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.5.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:05:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.6.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:06:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.6.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:06:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.7.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:07:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.7.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:07:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.8.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:08:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.8.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:08:02" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.9.1", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:09:01" - }, - { - "routing-type": "vpc-direct", - "overlay-ip-address": "8.148.9.2", - "underlay-ip-address": "221.0.2.108", - "mac": "00:1B:6F:3C:09:02" + }, + { + "ip-prefixes": [ + "8.128.0.0/31", + "8.128.0.3/32", + "8.128.0.4/31", + "8.128.0.7/32", + "8.128.1.0/31", + "8.128.1.3/32", + "8.128.1.4/31", + "8.128.1.7/32", + "8.128.2.0/31", + "8.128.2.3/32", + "8.128.2.4/31", + "8.128.2.7/32", + "8.128.3.0/31", + "8.128.3.3/32", + "8.128.3.4/31", + "8.128.3.7/32", + "8.128.4.0/31", + "8.128.4.3/32", + "8.128.4.4/31", + "8.128.4.7/32", + "8.128.5.0/31", + "8.128.5.3/32", + "8.128.5.4/31", + "8.128.5.7/32", + "8.128.6.0/31", + "8.128.6.3/32", + "8.128.6.4/31", + "8.128.6.7/32", + "8.128.7.0/31", + "8.128.7.3/32", + "8.128.7.4/31", + "8.128.7.7/32", + "8.128.8.0/31", + "8.128.8.3/32", + "8.128.8.4/31", + "8.128.8.7/32", + "8.128.9.0/31", + "8.128.9.3/32", + "8.128.9.4/31", + "8.128.9.7/32", + "8.132.0.0/31", + "8.132.0.3/32", + "8.132.0.4/31", + "8.132.0.7/32", + "8.132.1.0/31", + "8.132.1.3/32", + "8.132.1.4/31", + "8.132.1.7/32", + "8.132.2.0/31", + "8.132.2.3/32", + "8.132.2.4/31", + "8.132.2.7/32", + "8.132.3.0/31", + "8.132.3.3/32", + "8.132.3.4/31", + "8.132.3.7/32", + "8.132.4.0/31", + "8.132.4.3/32", + "8.132.4.4/31", + "8.132.4.7/32", + "8.132.5.0/31", + "8.132.5.3/32", + "8.132.5.4/31", + "8.132.5.7/32", + "8.132.6.0/31", + "8.132.6.3/32", + "8.132.6.4/31", + "8.132.6.7/32", + "8.132.7.0/31", + "8.132.7.3/32", + "8.132.7.4/31", + "8.132.7.7/32", + "8.132.8.0/31", + "8.132.8.3/32", + "8.132.8.4/31", + "8.132.8.7/32", + "8.132.9.0/31", + "8.132.9.3/32", + "8.132.9.4/31", + "8.132.9.7/32", + "8.136.0.0/31", + "8.136.0.3/32", + "8.136.0.4/31", + "8.136.0.7/32", + "8.136.1.0/31", + "8.136.1.3/32", + "8.136.1.4/31", + "8.136.1.7/32", + "8.136.2.0/31", + "8.136.2.3/32", + "8.136.2.4/31", + "8.136.2.7/32", + "8.136.3.0/31", + "8.136.3.3/32", + "8.136.3.4/31", + "8.136.3.7/32", + "8.136.4.0/31", + "8.136.4.3/32", + "8.136.4.4/31", + "8.136.4.7/32", + "8.136.5.0/31", + "8.136.5.3/32", + "8.136.5.4/31", + "8.136.5.7/32", + "8.136.6.0/31", + "8.136.6.3/32", + "8.136.6.4/31", + "8.136.6.7/32", + "8.136.7.0/31", + "8.136.7.3/32", + "8.136.7.4/31", + "8.136.7.7/32", + "8.136.8.0/31", + "8.136.8.3/32", + "8.136.8.4/31", + "8.136.8.7/32", + "8.136.9.0/31", + "8.136.9.3/32", + "8.136.9.4/31", + "8.136.9.7/32", + "8.140.0.0/31", + "8.140.0.3/32", + "8.140.0.4/31", + "8.140.0.7/32", + "8.140.1.0/31", + "8.140.1.3/32", + "8.140.1.4/31", + "8.140.1.7/32", + "8.140.2.0/31", + "8.140.2.3/32", + "8.140.2.4/31", + "8.140.2.7/32", + "8.140.3.0/31", + "8.140.3.3/32", + "8.140.3.4/31", + "8.140.3.7/32", + "8.140.4.0/31", + "8.140.4.3/32", + "8.140.4.4/31", + "8.140.4.7/32", + "8.140.5.0/31", + "8.140.5.3/32", + "8.140.5.4/31", + "8.140.5.7/32", + "8.140.6.0/31", + "8.140.6.3/32", + "8.140.6.4/31", + "8.140.6.7/32", + "8.140.7.0/31", + "8.140.7.3/32", + "8.140.7.4/31", + "8.140.7.7/32", + "8.140.8.0/31", + "8.140.8.3/32", + "8.140.8.4/31", + "8.140.8.7/32", + "8.140.9.0/31", + "8.140.9.3/32", + "8.140.9.4/31", + "8.140.9.7/32", + "8.144.0.0/31", + "8.144.0.3/32", + "8.144.0.4/31", + "8.144.0.7/32", + "8.144.1.0/31", + "8.144.1.3/32", + "8.144.1.4/31", + "8.144.1.7/32", + "8.144.2.0/31", + "8.144.2.3/32", + "8.144.2.4/31", + "8.144.2.7/32", + "8.144.3.0/31", + "8.144.3.3/32", + "8.144.3.4/31", + "8.144.3.7/32", + "8.144.4.0/31", + "8.144.4.3/32", + "8.144.4.4/31", + "8.144.4.7/32", + "8.144.5.0/31", + "8.144.5.3/32", + "8.144.5.4/31", + "8.144.5.7/32", + "8.144.6.0/31", + "8.144.6.3/32", + "8.144.6.4/31", + "8.144.6.7/32", + "8.144.7.0/31", + "8.144.7.3/32", + "8.144.7.4/31", + "8.144.7.7/32", + "8.144.8.0/31", + "8.144.8.3/32", + "8.144.8.4/31", + "8.144.8.7/32", + "8.144.9.0/31", + "8.144.9.3/32", + "8.144.9.4/31", + "8.144.9.7/32", + "8.148.0.0/31", + "8.148.0.3/32", + "8.148.0.4/31", + "8.148.0.7/32", + "8.148.1.0/31", + "8.148.1.3/32", + "8.148.1.4/31", + "8.148.1.7/32", + "8.148.2.0/31", + "8.148.2.3/32", + "8.148.2.4/31", + "8.148.2.7/32", + "8.148.3.0/31", + "8.148.3.3/32", + "8.148.3.4/31", + "8.148.3.7/32", + "8.148.4.0/31", + "8.148.4.3/32", + "8.148.4.4/31", + "8.148.4.7/32", + "8.148.5.0/31", + "8.148.5.3/32", + "8.148.5.4/31", + "8.148.5.7/32", + "8.148.6.0/31", + "8.148.6.3/32", + "8.148.6.4/31", + "8.148.6.7/32", + "8.148.7.0/31", + "8.148.7.3/32", + "8.148.7.4/31", + "8.148.7.7/32", + "8.148.8.0/31", + "8.148.8.3/32", + "8.148.8.4/31", + "8.148.8.7/32", + "8.148.9.0/31", + "8.148.9.3/32", + "8.148.9.4/31", + "8.148.9.7/32" + ], + "action": { + "routing-type": "vpc", + "vpc-id": "vpc-108" } - ] - } + } + ] } - ], - "routing-appliances": [ - { - "ROUTING-APPLIANCE:1": { - "appliance-id": "appliance-1", - "routing-appliance-id": 1, - "routing-appliance-addresses": [ - "1.1.0.1/32" - ], - "encap-type": "vxlan", - "vni-key": 1 - } - }, - { - "ROUTING-APPLIANCE:101": { - "appliance-id": "appliance-101", - "routing-appliance-id": 101, - "routing-appliance-addresses": [ - "1.128.0.1/9" - ], - "encap-type": "vxlan", - "vni-key": 101 - } - }, - { - "ROUTING-APPLIANCE:2": { - "appliance-id": "appliance-2", - "routing-appliance-id": 2, - "routing-appliance-addresses": [ - "2.1.0.1/32" - ], - "encap-type": "vxlan", - "vni-key": 2 - } - }, - { - "ROUTING-APPLIANCE:102": { - "appliance-id": "appliance-102", - "routing-appliance-id": 102, - "routing-appliance-addresses": [ - "2.128.0.1/9" - ], - "encap-type": "vxlan", - "vni-key": 102 - } - }, - { - "ROUTING-APPLIANCE:3": { - "appliance-id": "appliance-3", - "routing-appliance-id": 3, - "routing-appliance-addresses": [ - "3.1.0.1/32" - ], - "encap-type": "vxlan", - "vni-key": 3 - } - }, - { - "ROUTING-APPLIANCE:103": { - "appliance-id": "appliance-103", - "routing-appliance-id": 103, - "routing-appliance-addresses": [ - "3.128.0.1/9" - ], - "encap-type": "vxlan", - "vni-key": 103 - } - }, - { - "ROUTING-APPLIANCE:4": { - "appliance-id": "appliance-4", - "routing-appliance-id": 4, - "routing-appliance-addresses": [ - "4.1.0.1/32" - ], - "encap-type": "vxlan", - "vni-key": 4 - } - }, - { - "ROUTING-APPLIANCE:104": { - "appliance-id": "appliance-104", - "routing-appliance-id": 104, - "routing-appliance-addresses": [ - "4.128.0.1/9" - ], - "encap-type": "vxlan", - "vni-key": 104 - } - }, - { - "ROUTING-APPLIANCE:5": { - "appliance-id": "appliance-5", - "routing-appliance-id": 5, - "routing-appliance-addresses": [ - "5.1.0.1/32" - ], - "encap-type": "vxlan", - "vni-key": 5 - } - }, - { - "ROUTING-APPLIANCE:105": { - "appliance-id": "appliance-105", - "routing-appliance-id": 105, - "routing-appliance-addresses": [ - "5.128.0.1/9" - ], - "encap-type": "vxlan", - "vni-key": 105 - } - }, - { - "ROUTING-APPLIANCE:6": { - "appliance-id": "appliance-6", - "routing-appliance-id": 6, - "routing-appliance-addresses": [ - "6.1.0.1/32" - ], - "encap-type": "vxlan", - "vni-key": 6 - } - }, - { - "ROUTING-APPLIANCE:106": { - "appliance-id": "appliance-106", - "routing-appliance-id": 106, - "routing-appliance-addresses": [ - "6.128.0.1/9" - ], - "encap-type": "vxlan", - "vni-key": 106 - } - }, - { - "ROUTING-APPLIANCE:7": { - "appliance-id": "appliance-7", - "routing-appliance-id": 7, - "routing-appliance-addresses": [ - "7.1.0.1/32" - ], - "encap-type": "vxlan", - "vni-key": 7 - } - }, - { - "ROUTING-APPLIANCE:107": { - "appliance-id": "appliance-107", - "routing-appliance-id": 107, - "routing-appliance-addresses": [ - "7.128.0.1/9" - ], - "encap-type": "vxlan", - "vni-key": 107 - } - }, - { - "ROUTING-APPLIANCE:8": { - "appliance-id": "appliance-8", - "routing-appliance-id": 8, - "routing-appliance-addresses": [ - "8.1.0.1/32" - ], - "encap-type": "vxlan", - "vni-key": 8 - } - }, - { - "ROUTING-APPLIANCE:108": { - "appliance-id": "appliance-108", - "routing-appliance-id": 108, - "routing-appliance-addresses": [ - "8.128.0.1/9" - ], - "encap-type": "vxlan", - "vni-key": 108 - } + } +], + "prefix-tags": +[ + { + "PREFIX-TAG:VPC:1": { + "prefix-tag-id": "1", + "prefix-tag-number": 1, + "ip-prefixes-ipv4": [ + "1.1.0.1/32" + ] } - ], - "route-tables": [ - { - "ROUTE-TABLE:1": { - "route-table-id": "route-table-1", - "ip-version": "IPv4", - "routes": [ - { - "ip-prefixes": [ - "1.1.0.1/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-1" - } - }, - { - "ip-prefixes": [ - "1.128.0.0/31", - "1.128.0.3/32", - "1.128.0.4/31", - "1.128.0.7/32", - "1.128.1.0/31", - "1.128.1.3/32", - "1.128.1.4/31", - "1.128.1.7/32", - "1.128.2.0/31", - "1.128.2.3/32", - "1.128.2.4/31", - "1.128.2.7/32", - "1.128.3.0/31", - "1.128.3.3/32", - "1.128.3.4/31", - "1.128.3.7/32", - "1.128.4.0/31", - "1.128.4.3/32", - "1.128.4.4/31", - "1.128.4.7/32", - "1.128.5.0/31", - "1.128.5.3/32", - "1.128.5.4/31", - "1.128.5.7/32", - "1.128.6.0/31", - "1.128.6.3/32", - "1.128.6.4/31", - "1.128.6.7/32", - "1.128.7.0/31", - "1.128.7.3/32", - "1.128.7.4/31", - "1.128.7.7/32", - "1.128.8.0/31", - "1.128.8.3/32", - "1.128.8.4/31", - "1.128.8.7/32", - "1.128.9.0/31", - "1.128.9.3/32", - "1.128.9.4/31", - "1.128.9.7/32", - "1.132.0.0/31", - "1.132.0.3/32", - "1.132.0.4/31", - "1.132.0.7/32", - "1.132.1.0/31", - "1.132.1.3/32", - "1.132.1.4/31", - "1.132.1.7/32", - "1.132.2.0/31", - "1.132.2.3/32", - "1.132.2.4/31", - "1.132.2.7/32", - "1.132.3.0/31", - "1.132.3.3/32", - "1.132.3.4/31", - "1.132.3.7/32", - "1.132.4.0/31", - "1.132.4.3/32", - "1.132.4.4/31", - "1.132.4.7/32", - "1.132.5.0/31", - "1.132.5.3/32", - "1.132.5.4/31", - "1.132.5.7/32", - "1.132.6.0/31", - "1.132.6.3/32", - "1.132.6.4/31", - "1.132.6.7/32", - "1.132.7.0/31", - "1.132.7.3/32", - "1.132.7.4/31", - "1.132.7.7/32", - "1.132.8.0/31", - "1.132.8.3/32", - "1.132.8.4/31", - "1.132.8.7/32", - "1.132.9.0/31", - "1.132.9.3/32", - "1.132.9.4/31", - "1.132.9.7/32", - "1.136.0.0/31", - "1.136.0.3/32", - "1.136.0.4/31", - "1.136.0.7/32", - "1.136.1.0/31", - "1.136.1.3/32", - "1.136.1.4/31", - "1.136.1.7/32", - "1.136.2.0/31", - "1.136.2.3/32", - "1.136.2.4/31", - "1.136.2.7/32", - "1.136.3.0/31", - "1.136.3.3/32", - "1.136.3.4/31", - "1.136.3.7/32", - "1.136.4.0/31", - "1.136.4.3/32", - "1.136.4.4/31", - "1.136.4.7/32", - "1.136.5.0/31", - "1.136.5.3/32", - "1.136.5.4/31", - "1.136.5.7/32", - "1.136.6.0/31", - "1.136.6.3/32", - "1.136.6.4/31", - "1.136.6.7/32", - "1.136.7.0/31", - "1.136.7.3/32", - "1.136.7.4/31", - "1.136.7.7/32", - "1.136.8.0/31", - "1.136.8.3/32", - "1.136.8.4/31", - "1.136.8.7/32", - "1.136.9.0/31", - "1.136.9.3/32", - "1.136.9.4/31", - "1.136.9.7/32", - "1.140.0.0/31", - "1.140.0.3/32", - "1.140.0.4/31", - "1.140.0.7/32", - "1.140.1.0/31", - "1.140.1.3/32", - "1.140.1.4/31", - "1.140.1.7/32", - "1.140.2.0/31", - "1.140.2.3/32", - "1.140.2.4/31", - "1.140.2.7/32", - "1.140.3.0/31", - "1.140.3.3/32", - "1.140.3.4/31", - "1.140.3.7/32", - "1.140.4.0/31", - "1.140.4.3/32", - "1.140.4.4/31", - "1.140.4.7/32", - "1.140.5.0/31", - "1.140.5.3/32", - "1.140.5.4/31", - "1.140.5.7/32", - "1.140.6.0/31", - "1.140.6.3/32", - "1.140.6.4/31", - "1.140.6.7/32", - "1.140.7.0/31", - "1.140.7.3/32", - "1.140.7.4/31", - "1.140.7.7/32", - "1.140.8.0/31", - "1.140.8.3/32", - "1.140.8.4/31", - "1.140.8.7/32", - "1.140.9.0/31", - "1.140.9.3/32", - "1.140.9.4/31", - "1.140.9.7/32", - "1.144.0.0/31", - "1.144.0.3/32", - "1.144.0.4/31", - "1.144.0.7/32", - "1.144.1.0/31", - "1.144.1.3/32", - "1.144.1.4/31", - "1.144.1.7/32", - "1.144.2.0/31", - "1.144.2.3/32", - "1.144.2.4/31", - "1.144.2.7/32", - "1.144.3.0/31", - "1.144.3.3/32", - "1.144.3.4/31", - "1.144.3.7/32", - "1.144.4.0/31", - "1.144.4.3/32", - "1.144.4.4/31", - "1.144.4.7/32", - "1.144.5.0/31", - "1.144.5.3/32", - "1.144.5.4/31", - "1.144.5.7/32", - "1.144.6.0/31", - "1.144.6.3/32", - "1.144.6.4/31", - "1.144.6.7/32", - "1.144.7.0/31", - "1.144.7.3/32", - "1.144.7.4/31", - "1.144.7.7/32", - "1.144.8.0/31", - "1.144.8.3/32", - "1.144.8.4/31", - "1.144.8.7/32", - "1.144.9.0/31", - "1.144.9.3/32", - "1.144.9.4/31", - "1.144.9.7/32", - "1.148.0.0/31", - "1.148.0.3/32", - "1.148.0.4/31", - "1.148.0.7/32", - "1.148.1.0/31", - "1.148.1.3/32", - "1.148.1.4/31", - "1.148.1.7/32", - "1.148.2.0/31", - "1.148.2.3/32", - "1.148.2.4/31", - "1.148.2.7/32", - "1.148.3.0/31", - "1.148.3.3/32", - "1.148.3.4/31", - "1.148.3.7/32", - "1.148.4.0/31", - "1.148.4.3/32", - "1.148.4.4/31", - "1.148.4.7/32", - "1.148.5.0/31", - "1.148.5.3/32", - "1.148.5.4/31", - "1.148.5.7/32", - "1.148.6.0/31", - "1.148.6.3/32", - "1.148.6.4/31", - "1.148.6.7/32", - "1.148.7.0/31", - "1.148.7.3/32", - "1.148.7.4/31", - "1.148.7.7/32", - "1.148.8.0/31", - "1.148.8.3/32", - "1.148.8.4/31", - "1.148.8.7/32", - "1.148.9.0/31", - "1.148.9.3/32", - "1.148.9.4/31", - "1.148.9.7/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-101" - } - } - ] - } - }, - { - "ROUTE-TABLE:2": { - "route-table-id": "route-table-2", - "ip-version": "IPv4", - "routes": [ - { - "ip-prefixes": [ - "2.1.0.1/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-2" - } - }, - { - "ip-prefixes": [ - "2.128.0.0/31", - "2.128.0.3/32", - "2.128.0.4/31", - "2.128.0.7/32", - "2.128.1.0/31", - "2.128.1.3/32", - "2.128.1.4/31", - "2.128.1.7/32", - "2.128.2.0/31", - "2.128.2.3/32", - "2.128.2.4/31", - "2.128.2.7/32", - "2.128.3.0/31", - "2.128.3.3/32", - "2.128.3.4/31", - "2.128.3.7/32", - "2.128.4.0/31", - "2.128.4.3/32", - "2.128.4.4/31", - "2.128.4.7/32", - "2.128.5.0/31", - "2.128.5.3/32", - "2.128.5.4/31", - "2.128.5.7/32", - "2.128.6.0/31", - "2.128.6.3/32", - "2.128.6.4/31", - "2.128.6.7/32", - "2.128.7.0/31", - "2.128.7.3/32", - "2.128.7.4/31", - "2.128.7.7/32", - "2.128.8.0/31", - "2.128.8.3/32", - "2.128.8.4/31", - "2.128.8.7/32", - "2.128.9.0/31", - "2.128.9.3/32", - "2.128.9.4/31", - "2.128.9.7/32", - "2.132.0.0/31", - "2.132.0.3/32", - "2.132.0.4/31", - "2.132.0.7/32", - "2.132.1.0/31", - "2.132.1.3/32", - "2.132.1.4/31", - "2.132.1.7/32", - "2.132.2.0/31", - "2.132.2.3/32", - "2.132.2.4/31", - "2.132.2.7/32", - "2.132.3.0/31", - "2.132.3.3/32", - "2.132.3.4/31", - "2.132.3.7/32", - "2.132.4.0/31", - "2.132.4.3/32", - "2.132.4.4/31", - "2.132.4.7/32", - "2.132.5.0/31", - "2.132.5.3/32", - "2.132.5.4/31", - "2.132.5.7/32", - "2.132.6.0/31", - "2.132.6.3/32", - "2.132.6.4/31", - "2.132.6.7/32", - "2.132.7.0/31", - "2.132.7.3/32", - "2.132.7.4/31", - "2.132.7.7/32", - "2.132.8.0/31", - "2.132.8.3/32", - "2.132.8.4/31", - "2.132.8.7/32", - "2.132.9.0/31", - "2.132.9.3/32", - "2.132.9.4/31", - "2.132.9.7/32", - "2.136.0.0/31", - "2.136.0.3/32", - "2.136.0.4/31", - "2.136.0.7/32", - "2.136.1.0/31", - "2.136.1.3/32", - "2.136.1.4/31", - "2.136.1.7/32", - "2.136.2.0/31", - "2.136.2.3/32", - "2.136.2.4/31", - "2.136.2.7/32", - "2.136.3.0/31", - "2.136.3.3/32", - "2.136.3.4/31", - "2.136.3.7/32", - "2.136.4.0/31", - "2.136.4.3/32", - "2.136.4.4/31", - "2.136.4.7/32", - "2.136.5.0/31", - "2.136.5.3/32", - "2.136.5.4/31", - "2.136.5.7/32", - "2.136.6.0/31", - "2.136.6.3/32", - "2.136.6.4/31", - "2.136.6.7/32", - "2.136.7.0/31", - "2.136.7.3/32", - "2.136.7.4/31", - "2.136.7.7/32", - "2.136.8.0/31", - "2.136.8.3/32", - "2.136.8.4/31", - "2.136.8.7/32", - "2.136.9.0/31", - "2.136.9.3/32", - "2.136.9.4/31", - "2.136.9.7/32", - "2.140.0.0/31", - "2.140.0.3/32", - "2.140.0.4/31", - "2.140.0.7/32", - "2.140.1.0/31", - "2.140.1.3/32", - "2.140.1.4/31", - "2.140.1.7/32", - "2.140.2.0/31", - "2.140.2.3/32", - "2.140.2.4/31", - "2.140.2.7/32", - "2.140.3.0/31", - "2.140.3.3/32", - "2.140.3.4/31", - "2.140.3.7/32", - "2.140.4.0/31", - "2.140.4.3/32", - "2.140.4.4/31", - "2.140.4.7/32", - "2.140.5.0/31", - "2.140.5.3/32", - "2.140.5.4/31", - "2.140.5.7/32", - "2.140.6.0/31", - "2.140.6.3/32", - "2.140.6.4/31", - "2.140.6.7/32", - "2.140.7.0/31", - "2.140.7.3/32", - "2.140.7.4/31", - "2.140.7.7/32", - "2.140.8.0/31", - "2.140.8.3/32", - "2.140.8.4/31", - "2.140.8.7/32", - "2.140.9.0/31", - "2.140.9.3/32", - "2.140.9.4/31", - "2.140.9.7/32", - "2.144.0.0/31", - "2.144.0.3/32", - "2.144.0.4/31", - "2.144.0.7/32", - "2.144.1.0/31", - "2.144.1.3/32", - "2.144.1.4/31", - "2.144.1.7/32", - "2.144.2.0/31", - "2.144.2.3/32", - "2.144.2.4/31", - "2.144.2.7/32", - "2.144.3.0/31", - "2.144.3.3/32", - "2.144.3.4/31", - "2.144.3.7/32", - "2.144.4.0/31", - "2.144.4.3/32", - "2.144.4.4/31", - "2.144.4.7/32", - "2.144.5.0/31", - "2.144.5.3/32", - "2.144.5.4/31", - "2.144.5.7/32", - "2.144.6.0/31", - "2.144.6.3/32", - "2.144.6.4/31", - "2.144.6.7/32", - "2.144.7.0/31", - "2.144.7.3/32", - "2.144.7.4/31", - "2.144.7.7/32", - "2.144.8.0/31", - "2.144.8.3/32", - "2.144.8.4/31", - "2.144.8.7/32", - "2.144.9.0/31", - "2.144.9.3/32", - "2.144.9.4/31", - "2.144.9.7/32", - "2.148.0.0/31", - "2.148.0.3/32", - "2.148.0.4/31", - "2.148.0.7/32", - "2.148.1.0/31", - "2.148.1.3/32", - "2.148.1.4/31", - "2.148.1.7/32", - "2.148.2.0/31", - "2.148.2.3/32", - "2.148.2.4/31", - "2.148.2.7/32", - "2.148.3.0/31", - "2.148.3.3/32", - "2.148.3.4/31", - "2.148.3.7/32", - "2.148.4.0/31", - "2.148.4.3/32", - "2.148.4.4/31", - "2.148.4.7/32", - "2.148.5.0/31", - "2.148.5.3/32", - "2.148.5.4/31", - "2.148.5.7/32", - "2.148.6.0/31", - "2.148.6.3/32", - "2.148.6.4/31", - "2.148.6.7/32", - "2.148.7.0/31", - "2.148.7.3/32", - "2.148.7.4/31", - "2.148.7.7/32", - "2.148.8.0/31", - "2.148.8.3/32", - "2.148.8.4/31", - "2.148.8.7/32", - "2.148.9.0/31", - "2.148.9.3/32", - "2.148.9.4/31", - "2.148.9.7/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-102" - } - } - ] - } - }, - { - "ROUTE-TABLE:3": { - "route-table-id": "route-table-3", - "ip-version": "IPv4", - "routes": [ - { - "ip-prefixes": [ - "3.1.0.1/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-3" - } - }, - { - "ip-prefixes": [ - "3.128.0.0/31", - "3.128.0.3/32", - "3.128.0.4/31", - "3.128.0.7/32", - "3.128.1.0/31", - "3.128.1.3/32", - "3.128.1.4/31", - "3.128.1.7/32", - "3.128.2.0/31", - "3.128.2.3/32", - "3.128.2.4/31", - "3.128.2.7/32", - "3.128.3.0/31", - "3.128.3.3/32", - "3.128.3.4/31", - "3.128.3.7/32", - "3.128.4.0/31", - "3.128.4.3/32", - "3.128.4.4/31", - "3.128.4.7/32", - "3.128.5.0/31", - "3.128.5.3/32", - "3.128.5.4/31", - "3.128.5.7/32", - "3.128.6.0/31", - "3.128.6.3/32", - "3.128.6.4/31", - "3.128.6.7/32", - "3.128.7.0/31", - "3.128.7.3/32", - "3.128.7.4/31", - "3.128.7.7/32", - "3.128.8.0/31", - "3.128.8.3/32", - "3.128.8.4/31", - "3.128.8.7/32", - "3.128.9.0/31", - "3.128.9.3/32", - "3.128.9.4/31", - "3.128.9.7/32", - "3.132.0.0/31", - "3.132.0.3/32", - "3.132.0.4/31", - "3.132.0.7/32", - "3.132.1.0/31", - "3.132.1.3/32", - "3.132.1.4/31", - "3.132.1.7/32", - "3.132.2.0/31", - "3.132.2.3/32", - "3.132.2.4/31", - "3.132.2.7/32", - "3.132.3.0/31", - "3.132.3.3/32", - "3.132.3.4/31", - "3.132.3.7/32", - "3.132.4.0/31", - "3.132.4.3/32", - "3.132.4.4/31", - "3.132.4.7/32", - "3.132.5.0/31", - "3.132.5.3/32", - "3.132.5.4/31", - "3.132.5.7/32", - "3.132.6.0/31", - "3.132.6.3/32", - "3.132.6.4/31", - "3.132.6.7/32", - "3.132.7.0/31", - "3.132.7.3/32", - "3.132.7.4/31", - "3.132.7.7/32", - "3.132.8.0/31", - "3.132.8.3/32", - "3.132.8.4/31", - "3.132.8.7/32", - "3.132.9.0/31", - "3.132.9.3/32", - "3.132.9.4/31", - "3.132.9.7/32", - "3.136.0.0/31", - "3.136.0.3/32", - "3.136.0.4/31", - "3.136.0.7/32", - "3.136.1.0/31", - "3.136.1.3/32", - "3.136.1.4/31", - "3.136.1.7/32", - "3.136.2.0/31", - "3.136.2.3/32", - "3.136.2.4/31", - "3.136.2.7/32", - "3.136.3.0/31", - "3.136.3.3/32", - "3.136.3.4/31", - "3.136.3.7/32", - "3.136.4.0/31", - "3.136.4.3/32", - "3.136.4.4/31", - "3.136.4.7/32", - "3.136.5.0/31", - "3.136.5.3/32", - "3.136.5.4/31", - "3.136.5.7/32", - "3.136.6.0/31", - "3.136.6.3/32", - "3.136.6.4/31", - "3.136.6.7/32", - "3.136.7.0/31", - "3.136.7.3/32", - "3.136.7.4/31", - "3.136.7.7/32", - "3.136.8.0/31", - "3.136.8.3/32", - "3.136.8.4/31", - "3.136.8.7/32", - "3.136.9.0/31", - "3.136.9.3/32", - "3.136.9.4/31", - "3.136.9.7/32", - "3.140.0.0/31", - "3.140.0.3/32", - "3.140.0.4/31", - "3.140.0.7/32", - "3.140.1.0/31", - "3.140.1.3/32", - "3.140.1.4/31", - "3.140.1.7/32", - "3.140.2.0/31", - "3.140.2.3/32", - "3.140.2.4/31", - "3.140.2.7/32", - "3.140.3.0/31", - "3.140.3.3/32", - "3.140.3.4/31", - "3.140.3.7/32", - "3.140.4.0/31", - "3.140.4.3/32", - "3.140.4.4/31", - "3.140.4.7/32", - "3.140.5.0/31", - "3.140.5.3/32", - "3.140.5.4/31", - "3.140.5.7/32", - "3.140.6.0/31", - "3.140.6.3/32", - "3.140.6.4/31", - "3.140.6.7/32", - "3.140.7.0/31", - "3.140.7.3/32", - "3.140.7.4/31", - "3.140.7.7/32", - "3.140.8.0/31", - "3.140.8.3/32", - "3.140.8.4/31", - "3.140.8.7/32", - "3.140.9.0/31", - "3.140.9.3/32", - "3.140.9.4/31", - "3.140.9.7/32", - "3.144.0.0/31", - "3.144.0.3/32", - "3.144.0.4/31", - "3.144.0.7/32", - "3.144.1.0/31", - "3.144.1.3/32", - "3.144.1.4/31", - "3.144.1.7/32", - "3.144.2.0/31", - "3.144.2.3/32", - "3.144.2.4/31", - "3.144.2.7/32", - "3.144.3.0/31", - "3.144.3.3/32", - "3.144.3.4/31", - "3.144.3.7/32", - "3.144.4.0/31", - "3.144.4.3/32", - "3.144.4.4/31", - "3.144.4.7/32", - "3.144.5.0/31", - "3.144.5.3/32", - "3.144.5.4/31", - "3.144.5.7/32", - "3.144.6.0/31", - "3.144.6.3/32", - "3.144.6.4/31", - "3.144.6.7/32", - "3.144.7.0/31", - "3.144.7.3/32", - "3.144.7.4/31", - "3.144.7.7/32", - "3.144.8.0/31", - "3.144.8.3/32", - "3.144.8.4/31", - "3.144.8.7/32", - "3.144.9.0/31", - "3.144.9.3/32", - "3.144.9.4/31", - "3.144.9.7/32", - "3.148.0.0/31", - "3.148.0.3/32", - "3.148.0.4/31", - "3.148.0.7/32", - "3.148.1.0/31", - "3.148.1.3/32", - "3.148.1.4/31", - "3.148.1.7/32", - "3.148.2.0/31", - "3.148.2.3/32", - "3.148.2.4/31", - "3.148.2.7/32", - "3.148.3.0/31", - "3.148.3.3/32", - "3.148.3.4/31", - "3.148.3.7/32", - "3.148.4.0/31", - "3.148.4.3/32", - "3.148.4.4/31", - "3.148.4.7/32", - "3.148.5.0/31", - "3.148.5.3/32", - "3.148.5.4/31", - "3.148.5.7/32", - "3.148.6.0/31", - "3.148.6.3/32", - "3.148.6.4/31", - "3.148.6.7/32", - "3.148.7.0/31", - "3.148.7.3/32", - "3.148.7.4/31", - "3.148.7.7/32", - "3.148.8.0/31", - "3.148.8.3/32", - "3.148.8.4/31", - "3.148.8.7/32", - "3.148.9.0/31", - "3.148.9.3/32", - "3.148.9.4/31", - "3.148.9.7/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-103" - } - } - ] - } - }, - { - "ROUTE-TABLE:4": { - "route-table-id": "route-table-4", - "ip-version": "IPv4", - "routes": [ - { - "ip-prefixes": [ - "4.1.0.1/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-4" - } - }, - { - "ip-prefixes": [ - "4.128.0.0/31", - "4.128.0.3/32", - "4.128.0.4/31", - "4.128.0.7/32", - "4.128.1.0/31", - "4.128.1.3/32", - "4.128.1.4/31", - "4.128.1.7/32", - "4.128.2.0/31", - "4.128.2.3/32", - "4.128.2.4/31", - "4.128.2.7/32", - "4.128.3.0/31", - "4.128.3.3/32", - "4.128.3.4/31", - "4.128.3.7/32", - "4.128.4.0/31", - "4.128.4.3/32", - "4.128.4.4/31", - "4.128.4.7/32", - "4.128.5.0/31", - "4.128.5.3/32", - "4.128.5.4/31", - "4.128.5.7/32", - "4.128.6.0/31", - "4.128.6.3/32", - "4.128.6.4/31", - "4.128.6.7/32", - "4.128.7.0/31", - "4.128.7.3/32", - "4.128.7.4/31", - "4.128.7.7/32", - "4.128.8.0/31", - "4.128.8.3/32", - "4.128.8.4/31", - "4.128.8.7/32", - "4.128.9.0/31", - "4.128.9.3/32", - "4.128.9.4/31", - "4.128.9.7/32", - "4.132.0.0/31", - "4.132.0.3/32", - "4.132.0.4/31", - "4.132.0.7/32", - "4.132.1.0/31", - "4.132.1.3/32", - "4.132.1.4/31", - "4.132.1.7/32", - "4.132.2.0/31", - "4.132.2.3/32", - "4.132.2.4/31", - "4.132.2.7/32", - "4.132.3.0/31", - "4.132.3.3/32", - "4.132.3.4/31", - "4.132.3.7/32", - "4.132.4.0/31", - "4.132.4.3/32", - "4.132.4.4/31", - "4.132.4.7/32", - "4.132.5.0/31", - "4.132.5.3/32", - "4.132.5.4/31", - "4.132.5.7/32", - "4.132.6.0/31", - "4.132.6.3/32", - "4.132.6.4/31", - "4.132.6.7/32", - "4.132.7.0/31", - "4.132.7.3/32", - "4.132.7.4/31", - "4.132.7.7/32", - "4.132.8.0/31", - "4.132.8.3/32", - "4.132.8.4/31", - "4.132.8.7/32", - "4.132.9.0/31", - "4.132.9.3/32", - "4.132.9.4/31", - "4.132.9.7/32", - "4.136.0.0/31", - "4.136.0.3/32", - "4.136.0.4/31", - "4.136.0.7/32", - "4.136.1.0/31", - "4.136.1.3/32", - "4.136.1.4/31", - "4.136.1.7/32", - "4.136.2.0/31", - "4.136.2.3/32", - "4.136.2.4/31", - "4.136.2.7/32", - "4.136.3.0/31", - "4.136.3.3/32", - "4.136.3.4/31", - "4.136.3.7/32", - "4.136.4.0/31", - "4.136.4.3/32", - "4.136.4.4/31", - "4.136.4.7/32", - "4.136.5.0/31", - "4.136.5.3/32", - "4.136.5.4/31", - "4.136.5.7/32", - "4.136.6.0/31", - "4.136.6.3/32", - "4.136.6.4/31", - "4.136.6.7/32", - "4.136.7.0/31", - "4.136.7.3/32", - "4.136.7.4/31", - "4.136.7.7/32", - "4.136.8.0/31", - "4.136.8.3/32", - "4.136.8.4/31", - "4.136.8.7/32", - "4.136.9.0/31", - "4.136.9.3/32", - "4.136.9.4/31", - "4.136.9.7/32", - "4.140.0.0/31", - "4.140.0.3/32", - "4.140.0.4/31", - "4.140.0.7/32", - "4.140.1.0/31", - "4.140.1.3/32", - "4.140.1.4/31", - "4.140.1.7/32", - "4.140.2.0/31", - "4.140.2.3/32", - "4.140.2.4/31", - "4.140.2.7/32", - "4.140.3.0/31", - "4.140.3.3/32", - "4.140.3.4/31", - "4.140.3.7/32", - "4.140.4.0/31", - "4.140.4.3/32", - "4.140.4.4/31", - "4.140.4.7/32", - "4.140.5.0/31", - "4.140.5.3/32", - "4.140.5.4/31", - "4.140.5.7/32", - "4.140.6.0/31", - "4.140.6.3/32", - "4.140.6.4/31", - "4.140.6.7/32", - "4.140.7.0/31", - "4.140.7.3/32", - "4.140.7.4/31", - "4.140.7.7/32", - "4.140.8.0/31", - "4.140.8.3/32", - "4.140.8.4/31", - "4.140.8.7/32", - "4.140.9.0/31", - "4.140.9.3/32", - "4.140.9.4/31", - "4.140.9.7/32", - "4.144.0.0/31", - "4.144.0.3/32", - "4.144.0.4/31", - "4.144.0.7/32", - "4.144.1.0/31", - "4.144.1.3/32", - "4.144.1.4/31", - "4.144.1.7/32", - "4.144.2.0/31", - "4.144.2.3/32", - "4.144.2.4/31", - "4.144.2.7/32", - "4.144.3.0/31", - "4.144.3.3/32", - "4.144.3.4/31", - "4.144.3.7/32", - "4.144.4.0/31", - "4.144.4.3/32", - "4.144.4.4/31", - "4.144.4.7/32", - "4.144.5.0/31", - "4.144.5.3/32", - "4.144.5.4/31", - "4.144.5.7/32", - "4.144.6.0/31", - "4.144.6.3/32", - "4.144.6.4/31", - "4.144.6.7/32", - "4.144.7.0/31", - "4.144.7.3/32", - "4.144.7.4/31", - "4.144.7.7/32", - "4.144.8.0/31", - "4.144.8.3/32", - "4.144.8.4/31", - "4.144.8.7/32", - "4.144.9.0/31", - "4.144.9.3/32", - "4.144.9.4/31", - "4.144.9.7/32", - "4.148.0.0/31", - "4.148.0.3/32", - "4.148.0.4/31", - "4.148.0.7/32", - "4.148.1.0/31", - "4.148.1.3/32", - "4.148.1.4/31", - "4.148.1.7/32", - "4.148.2.0/31", - "4.148.2.3/32", - "4.148.2.4/31", - "4.148.2.7/32", - "4.148.3.0/31", - "4.148.3.3/32", - "4.148.3.4/31", - "4.148.3.7/32", - "4.148.4.0/31", - "4.148.4.3/32", - "4.148.4.4/31", - "4.148.4.7/32", - "4.148.5.0/31", - "4.148.5.3/32", - "4.148.5.4/31", - "4.148.5.7/32", - "4.148.6.0/31", - "4.148.6.3/32", - "4.148.6.4/31", - "4.148.6.7/32", - "4.148.7.0/31", - "4.148.7.3/32", - "4.148.7.4/31", - "4.148.7.7/32", - "4.148.8.0/31", - "4.148.8.3/32", - "4.148.8.4/31", - "4.148.8.7/32", - "4.148.9.0/31", - "4.148.9.3/32", - "4.148.9.4/31", - "4.148.9.7/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-104" - } - } - ] - } - }, - { - "ROUTE-TABLE:5": { - "route-table-id": "route-table-5", - "ip-version": "IPv4", - "routes": [ - { - "ip-prefixes": [ - "5.1.0.1/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-5" - } - }, - { - "ip-prefixes": [ - "5.128.0.0/31", - "5.128.0.3/32", - "5.128.0.4/31", - "5.128.0.7/32", - "5.128.1.0/31", - "5.128.1.3/32", - "5.128.1.4/31", - "5.128.1.7/32", - "5.128.2.0/31", - "5.128.2.3/32", - "5.128.2.4/31", - "5.128.2.7/32", - "5.128.3.0/31", - "5.128.3.3/32", - "5.128.3.4/31", - "5.128.3.7/32", - "5.128.4.0/31", - "5.128.4.3/32", - "5.128.4.4/31", - "5.128.4.7/32", - "5.128.5.0/31", - "5.128.5.3/32", - "5.128.5.4/31", - "5.128.5.7/32", - "5.128.6.0/31", - "5.128.6.3/32", - "5.128.6.4/31", - "5.128.6.7/32", - "5.128.7.0/31", - "5.128.7.3/32", - "5.128.7.4/31", - "5.128.7.7/32", - "5.128.8.0/31", - "5.128.8.3/32", - "5.128.8.4/31", - "5.128.8.7/32", - "5.128.9.0/31", - "5.128.9.3/32", - "5.128.9.4/31", - "5.128.9.7/32", - "5.132.0.0/31", - "5.132.0.3/32", - "5.132.0.4/31", - "5.132.0.7/32", - "5.132.1.0/31", - "5.132.1.3/32", - "5.132.1.4/31", - "5.132.1.7/32", - "5.132.2.0/31", - "5.132.2.3/32", - "5.132.2.4/31", - "5.132.2.7/32", - "5.132.3.0/31", - "5.132.3.3/32", - "5.132.3.4/31", - "5.132.3.7/32", - "5.132.4.0/31", - "5.132.4.3/32", - "5.132.4.4/31", - "5.132.4.7/32", - "5.132.5.0/31", - "5.132.5.3/32", - "5.132.5.4/31", - "5.132.5.7/32", - "5.132.6.0/31", - "5.132.6.3/32", - "5.132.6.4/31", - "5.132.6.7/32", - "5.132.7.0/31", - "5.132.7.3/32", - "5.132.7.4/31", - "5.132.7.7/32", - "5.132.8.0/31", - "5.132.8.3/32", - "5.132.8.4/31", - "5.132.8.7/32", - "5.132.9.0/31", - "5.132.9.3/32", - "5.132.9.4/31", - "5.132.9.7/32", - "5.136.0.0/31", - "5.136.0.3/32", - "5.136.0.4/31", - "5.136.0.7/32", - "5.136.1.0/31", - "5.136.1.3/32", - "5.136.1.4/31", - "5.136.1.7/32", - "5.136.2.0/31", - "5.136.2.3/32", - "5.136.2.4/31", - "5.136.2.7/32", - "5.136.3.0/31", - "5.136.3.3/32", - "5.136.3.4/31", - "5.136.3.7/32", - "5.136.4.0/31", - "5.136.4.3/32", - "5.136.4.4/31", - "5.136.4.7/32", - "5.136.5.0/31", - "5.136.5.3/32", - "5.136.5.4/31", - "5.136.5.7/32", - "5.136.6.0/31", - "5.136.6.3/32", - "5.136.6.4/31", - "5.136.6.7/32", - "5.136.7.0/31", - "5.136.7.3/32", - "5.136.7.4/31", - "5.136.7.7/32", - "5.136.8.0/31", - "5.136.8.3/32", - "5.136.8.4/31", - "5.136.8.7/32", - "5.136.9.0/31", - "5.136.9.3/32", - "5.136.9.4/31", - "5.136.9.7/32", - "5.140.0.0/31", - "5.140.0.3/32", - "5.140.0.4/31", - "5.140.0.7/32", - "5.140.1.0/31", - "5.140.1.3/32", - "5.140.1.4/31", - "5.140.1.7/32", - "5.140.2.0/31", - "5.140.2.3/32", - "5.140.2.4/31", - "5.140.2.7/32", - "5.140.3.0/31", - "5.140.3.3/32", - "5.140.3.4/31", - "5.140.3.7/32", - "5.140.4.0/31", - "5.140.4.3/32", - "5.140.4.4/31", - "5.140.4.7/32", - "5.140.5.0/31", - "5.140.5.3/32", - "5.140.5.4/31", - "5.140.5.7/32", - "5.140.6.0/31", - "5.140.6.3/32", - "5.140.6.4/31", - "5.140.6.7/32", - "5.140.7.0/31", - "5.140.7.3/32", - "5.140.7.4/31", - "5.140.7.7/32", - "5.140.8.0/31", - "5.140.8.3/32", - "5.140.8.4/31", - "5.140.8.7/32", - "5.140.9.0/31", - "5.140.9.3/32", - "5.140.9.4/31", - "5.140.9.7/32", - "5.144.0.0/31", - "5.144.0.3/32", - "5.144.0.4/31", - "5.144.0.7/32", - "5.144.1.0/31", - "5.144.1.3/32", - "5.144.1.4/31", - "5.144.1.7/32", - "5.144.2.0/31", - "5.144.2.3/32", - "5.144.2.4/31", - "5.144.2.7/32", - "5.144.3.0/31", - "5.144.3.3/32", - "5.144.3.4/31", - "5.144.3.7/32", - "5.144.4.0/31", - "5.144.4.3/32", - "5.144.4.4/31", - "5.144.4.7/32", - "5.144.5.0/31", - "5.144.5.3/32", - "5.144.5.4/31", - "5.144.5.7/32", - "5.144.6.0/31", - "5.144.6.3/32", - "5.144.6.4/31", - "5.144.6.7/32", - "5.144.7.0/31", - "5.144.7.3/32", - "5.144.7.4/31", - "5.144.7.7/32", - "5.144.8.0/31", - "5.144.8.3/32", - "5.144.8.4/31", - "5.144.8.7/32", - "5.144.9.0/31", - "5.144.9.3/32", - "5.144.9.4/31", - "5.144.9.7/32", - "5.148.0.0/31", - "5.148.0.3/32", - "5.148.0.4/31", - "5.148.0.7/32", - "5.148.1.0/31", - "5.148.1.3/32", - "5.148.1.4/31", - "5.148.1.7/32", - "5.148.2.0/31", - "5.148.2.3/32", - "5.148.2.4/31", - "5.148.2.7/32", - "5.148.3.0/31", - "5.148.3.3/32", - "5.148.3.4/31", - "5.148.3.7/32", - "5.148.4.0/31", - "5.148.4.3/32", - "5.148.4.4/31", - "5.148.4.7/32", - "5.148.5.0/31", - "5.148.5.3/32", - "5.148.5.4/31", - "5.148.5.7/32", - "5.148.6.0/31", - "5.148.6.3/32", - "5.148.6.4/31", - "5.148.6.7/32", - "5.148.7.0/31", - "5.148.7.3/32", - "5.148.7.4/31", - "5.148.7.7/32", - "5.148.8.0/31", - "5.148.8.3/32", - "5.148.8.4/31", - "5.148.8.7/32", - "5.148.9.0/31", - "5.148.9.3/32", - "5.148.9.4/31", - "5.148.9.7/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-105" - } - } - ] - } - }, - { - "ROUTE-TABLE:6": { - "route-table-id": "route-table-6", - "ip-version": "IPv4", - "routes": [ - { - "ip-prefixes": [ - "6.1.0.1/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-6" - } - }, - { - "ip-prefixes": [ - "6.128.0.0/31", - "6.128.0.3/32", - "6.128.0.4/31", - "6.128.0.7/32", - "6.128.1.0/31", - "6.128.1.3/32", - "6.128.1.4/31", - "6.128.1.7/32", - "6.128.2.0/31", - "6.128.2.3/32", - "6.128.2.4/31", - "6.128.2.7/32", - "6.128.3.0/31", - "6.128.3.3/32", - "6.128.3.4/31", - "6.128.3.7/32", - "6.128.4.0/31", - "6.128.4.3/32", - "6.128.4.4/31", - "6.128.4.7/32", - "6.128.5.0/31", - "6.128.5.3/32", - "6.128.5.4/31", - "6.128.5.7/32", - "6.128.6.0/31", - "6.128.6.3/32", - "6.128.6.4/31", - "6.128.6.7/32", - "6.128.7.0/31", - "6.128.7.3/32", - "6.128.7.4/31", - "6.128.7.7/32", - "6.128.8.0/31", - "6.128.8.3/32", - "6.128.8.4/31", - "6.128.8.7/32", - "6.128.9.0/31", - "6.128.9.3/32", - "6.128.9.4/31", - "6.128.9.7/32", - "6.132.0.0/31", - "6.132.0.3/32", - "6.132.0.4/31", - "6.132.0.7/32", - "6.132.1.0/31", - "6.132.1.3/32", - "6.132.1.4/31", - "6.132.1.7/32", - "6.132.2.0/31", - "6.132.2.3/32", - "6.132.2.4/31", - "6.132.2.7/32", - "6.132.3.0/31", - "6.132.3.3/32", - "6.132.3.4/31", - "6.132.3.7/32", - "6.132.4.0/31", - "6.132.4.3/32", - "6.132.4.4/31", - "6.132.4.7/32", - "6.132.5.0/31", - "6.132.5.3/32", - "6.132.5.4/31", - "6.132.5.7/32", - "6.132.6.0/31", - "6.132.6.3/32", - "6.132.6.4/31", - "6.132.6.7/32", - "6.132.7.0/31", - "6.132.7.3/32", - "6.132.7.4/31", - "6.132.7.7/32", - "6.132.8.0/31", - "6.132.8.3/32", - "6.132.8.4/31", - "6.132.8.7/32", - "6.132.9.0/31", - "6.132.9.3/32", - "6.132.9.4/31", - "6.132.9.7/32", - "6.136.0.0/31", - "6.136.0.3/32", - "6.136.0.4/31", - "6.136.0.7/32", - "6.136.1.0/31", - "6.136.1.3/32", - "6.136.1.4/31", - "6.136.1.7/32", - "6.136.2.0/31", - "6.136.2.3/32", - "6.136.2.4/31", - "6.136.2.7/32", - "6.136.3.0/31", - "6.136.3.3/32", - "6.136.3.4/31", - "6.136.3.7/32", - "6.136.4.0/31", - "6.136.4.3/32", - "6.136.4.4/31", - "6.136.4.7/32", - "6.136.5.0/31", - "6.136.5.3/32", - "6.136.5.4/31", - "6.136.5.7/32", - "6.136.6.0/31", - "6.136.6.3/32", - "6.136.6.4/31", - "6.136.6.7/32", - "6.136.7.0/31", - "6.136.7.3/32", - "6.136.7.4/31", - "6.136.7.7/32", - "6.136.8.0/31", - "6.136.8.3/32", - "6.136.8.4/31", - "6.136.8.7/32", - "6.136.9.0/31", - "6.136.9.3/32", - "6.136.9.4/31", - "6.136.9.7/32", - "6.140.0.0/31", - "6.140.0.3/32", - "6.140.0.4/31", - "6.140.0.7/32", - "6.140.1.0/31", - "6.140.1.3/32", - "6.140.1.4/31", - "6.140.1.7/32", - "6.140.2.0/31", - "6.140.2.3/32", - "6.140.2.4/31", - "6.140.2.7/32", - "6.140.3.0/31", - "6.140.3.3/32", - "6.140.3.4/31", - "6.140.3.7/32", - "6.140.4.0/31", - "6.140.4.3/32", - "6.140.4.4/31", - "6.140.4.7/32", - "6.140.5.0/31", - "6.140.5.3/32", - "6.140.5.4/31", - "6.140.5.7/32", - "6.140.6.0/31", - "6.140.6.3/32", - "6.140.6.4/31", - "6.140.6.7/32", - "6.140.7.0/31", - "6.140.7.3/32", - "6.140.7.4/31", - "6.140.7.7/32", - "6.140.8.0/31", - "6.140.8.3/32", - "6.140.8.4/31", - "6.140.8.7/32", - "6.140.9.0/31", - "6.140.9.3/32", - "6.140.9.4/31", - "6.140.9.7/32", - "6.144.0.0/31", - "6.144.0.3/32", - "6.144.0.4/31", - "6.144.0.7/32", - "6.144.1.0/31", - "6.144.1.3/32", - "6.144.1.4/31", - "6.144.1.7/32", - "6.144.2.0/31", - "6.144.2.3/32", - "6.144.2.4/31", - "6.144.2.7/32", - "6.144.3.0/31", - "6.144.3.3/32", - "6.144.3.4/31", - "6.144.3.7/32", - "6.144.4.0/31", - "6.144.4.3/32", - "6.144.4.4/31", - "6.144.4.7/32", - "6.144.5.0/31", - "6.144.5.3/32", - "6.144.5.4/31", - "6.144.5.7/32", - "6.144.6.0/31", - "6.144.6.3/32", - "6.144.6.4/31", - "6.144.6.7/32", - "6.144.7.0/31", - "6.144.7.3/32", - "6.144.7.4/31", - "6.144.7.7/32", - "6.144.8.0/31", - "6.144.8.3/32", - "6.144.8.4/31", - "6.144.8.7/32", - "6.144.9.0/31", - "6.144.9.3/32", - "6.144.9.4/31", - "6.144.9.7/32", - "6.148.0.0/31", - "6.148.0.3/32", - "6.148.0.4/31", - "6.148.0.7/32", - "6.148.1.0/31", - "6.148.1.3/32", - "6.148.1.4/31", - "6.148.1.7/32", - "6.148.2.0/31", - "6.148.2.3/32", - "6.148.2.4/31", - "6.148.2.7/32", - "6.148.3.0/31", - "6.148.3.3/32", - "6.148.3.4/31", - "6.148.3.7/32", - "6.148.4.0/31", - "6.148.4.3/32", - "6.148.4.4/31", - "6.148.4.7/32", - "6.148.5.0/31", - "6.148.5.3/32", - "6.148.5.4/31", - "6.148.5.7/32", - "6.148.6.0/31", - "6.148.6.3/32", - "6.148.6.4/31", - "6.148.6.7/32", - "6.148.7.0/31", - "6.148.7.3/32", - "6.148.7.4/31", - "6.148.7.7/32", - "6.148.8.0/31", - "6.148.8.3/32", - "6.148.8.4/31", - "6.148.8.7/32", - "6.148.9.0/31", - "6.148.9.3/32", - "6.148.9.4/31", - "6.148.9.7/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-106" - } - } - ] - } - }, - { - "ROUTE-TABLE:7": { - "route-table-id": "route-table-7", - "ip-version": "IPv4", - "routes": [ - { - "ip-prefixes": [ - "7.1.0.1/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-7" - } - }, - { - "ip-prefixes": [ - "7.128.0.0/31", - "7.128.0.3/32", - "7.128.0.4/31", - "7.128.0.7/32", - "7.128.1.0/31", - "7.128.1.3/32", - "7.128.1.4/31", - "7.128.1.7/32", - "7.128.2.0/31", - "7.128.2.3/32", - "7.128.2.4/31", - "7.128.2.7/32", - "7.128.3.0/31", - "7.128.3.3/32", - "7.128.3.4/31", - "7.128.3.7/32", - "7.128.4.0/31", - "7.128.4.3/32", - "7.128.4.4/31", - "7.128.4.7/32", - "7.128.5.0/31", - "7.128.5.3/32", - "7.128.5.4/31", - "7.128.5.7/32", - "7.128.6.0/31", - "7.128.6.3/32", - "7.128.6.4/31", - "7.128.6.7/32", - "7.128.7.0/31", - "7.128.7.3/32", - "7.128.7.4/31", - "7.128.7.7/32", - "7.128.8.0/31", - "7.128.8.3/32", - "7.128.8.4/31", - "7.128.8.7/32", - "7.128.9.0/31", - "7.128.9.3/32", - "7.128.9.4/31", - "7.128.9.7/32", - "7.132.0.0/31", - "7.132.0.3/32", - "7.132.0.4/31", - "7.132.0.7/32", - "7.132.1.0/31", - "7.132.1.3/32", - "7.132.1.4/31", - "7.132.1.7/32", - "7.132.2.0/31", - "7.132.2.3/32", - "7.132.2.4/31", - "7.132.2.7/32", - "7.132.3.0/31", - "7.132.3.3/32", - "7.132.3.4/31", - "7.132.3.7/32", - "7.132.4.0/31", - "7.132.4.3/32", - "7.132.4.4/31", - "7.132.4.7/32", - "7.132.5.0/31", - "7.132.5.3/32", - "7.132.5.4/31", - "7.132.5.7/32", - "7.132.6.0/31", - "7.132.6.3/32", - "7.132.6.4/31", - "7.132.6.7/32", - "7.132.7.0/31", - "7.132.7.3/32", - "7.132.7.4/31", - "7.132.7.7/32", - "7.132.8.0/31", - "7.132.8.3/32", - "7.132.8.4/31", - "7.132.8.7/32", - "7.132.9.0/31", - "7.132.9.3/32", - "7.132.9.4/31", - "7.132.9.7/32", - "7.136.0.0/31", - "7.136.0.3/32", - "7.136.0.4/31", - "7.136.0.7/32", - "7.136.1.0/31", - "7.136.1.3/32", - "7.136.1.4/31", - "7.136.1.7/32", - "7.136.2.0/31", - "7.136.2.3/32", - "7.136.2.4/31", - "7.136.2.7/32", - "7.136.3.0/31", - "7.136.3.3/32", - "7.136.3.4/31", - "7.136.3.7/32", - "7.136.4.0/31", - "7.136.4.3/32", - "7.136.4.4/31", - "7.136.4.7/32", - "7.136.5.0/31", - "7.136.5.3/32", - "7.136.5.4/31", - "7.136.5.7/32", - "7.136.6.0/31", - "7.136.6.3/32", - "7.136.6.4/31", - "7.136.6.7/32", - "7.136.7.0/31", - "7.136.7.3/32", - "7.136.7.4/31", - "7.136.7.7/32", - "7.136.8.0/31", - "7.136.8.3/32", - "7.136.8.4/31", - "7.136.8.7/32", - "7.136.9.0/31", - "7.136.9.3/32", - "7.136.9.4/31", - "7.136.9.7/32", - "7.140.0.0/31", - "7.140.0.3/32", - "7.140.0.4/31", - "7.140.0.7/32", - "7.140.1.0/31", - "7.140.1.3/32", - "7.140.1.4/31", - "7.140.1.7/32", - "7.140.2.0/31", - "7.140.2.3/32", - "7.140.2.4/31", - "7.140.2.7/32", - "7.140.3.0/31", - "7.140.3.3/32", - "7.140.3.4/31", - "7.140.3.7/32", - "7.140.4.0/31", - "7.140.4.3/32", - "7.140.4.4/31", - "7.140.4.7/32", - "7.140.5.0/31", - "7.140.5.3/32", - "7.140.5.4/31", - "7.140.5.7/32", - "7.140.6.0/31", - "7.140.6.3/32", - "7.140.6.4/31", - "7.140.6.7/32", - "7.140.7.0/31", - "7.140.7.3/32", - "7.140.7.4/31", - "7.140.7.7/32", - "7.140.8.0/31", - "7.140.8.3/32", - "7.140.8.4/31", - "7.140.8.7/32", - "7.140.9.0/31", - "7.140.9.3/32", - "7.140.9.4/31", - "7.140.9.7/32", - "7.144.0.0/31", - "7.144.0.3/32", - "7.144.0.4/31", - "7.144.0.7/32", - "7.144.1.0/31", - "7.144.1.3/32", - "7.144.1.4/31", - "7.144.1.7/32", - "7.144.2.0/31", - "7.144.2.3/32", - "7.144.2.4/31", - "7.144.2.7/32", - "7.144.3.0/31", - "7.144.3.3/32", - "7.144.3.4/31", - "7.144.3.7/32", - "7.144.4.0/31", - "7.144.4.3/32", - "7.144.4.4/31", - "7.144.4.7/32", - "7.144.5.0/31", - "7.144.5.3/32", - "7.144.5.4/31", - "7.144.5.7/32", - "7.144.6.0/31", - "7.144.6.3/32", - "7.144.6.4/31", - "7.144.6.7/32", - "7.144.7.0/31", - "7.144.7.3/32", - "7.144.7.4/31", - "7.144.7.7/32", - "7.144.8.0/31", - "7.144.8.3/32", - "7.144.8.4/31", - "7.144.8.7/32", - "7.144.9.0/31", - "7.144.9.3/32", - "7.144.9.4/31", - "7.144.9.7/32", - "7.148.0.0/31", - "7.148.0.3/32", - "7.148.0.4/31", - "7.148.0.7/32", - "7.148.1.0/31", - "7.148.1.3/32", - "7.148.1.4/31", - "7.148.1.7/32", - "7.148.2.0/31", - "7.148.2.3/32", - "7.148.2.4/31", - "7.148.2.7/32", - "7.148.3.0/31", - "7.148.3.3/32", - "7.148.3.4/31", - "7.148.3.7/32", - "7.148.4.0/31", - "7.148.4.3/32", - "7.148.4.4/31", - "7.148.4.7/32", - "7.148.5.0/31", - "7.148.5.3/32", - "7.148.5.4/31", - "7.148.5.7/32", - "7.148.6.0/31", - "7.148.6.3/32", - "7.148.6.4/31", - "7.148.6.7/32", - "7.148.7.0/31", - "7.148.7.3/32", - "7.148.7.4/31", - "7.148.7.7/32", - "7.148.8.0/31", - "7.148.8.3/32", - "7.148.8.4/31", - "7.148.8.7/32", - "7.148.9.0/31", - "7.148.9.3/32", - "7.148.9.4/31", - "7.148.9.7/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-107" - } - } - ] - } - }, - { - "ROUTE-TABLE:8": { - "route-table-id": "route-table-8", - "ip-version": "IPv4", - "routes": [ - { - "ip-prefixes": [ - "8.1.0.1/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-8" - } - }, - { - "ip-prefixes": [ - "8.128.0.0/31", - "8.128.0.3/32", - "8.128.0.4/31", - "8.128.0.7/32", - "8.128.1.0/31", - "8.128.1.3/32", - "8.128.1.4/31", - "8.128.1.7/32", - "8.128.2.0/31", - "8.128.2.3/32", - "8.128.2.4/31", - "8.128.2.7/32", - "8.128.3.0/31", - "8.128.3.3/32", - "8.128.3.4/31", - "8.128.3.7/32", - "8.128.4.0/31", - "8.128.4.3/32", - "8.128.4.4/31", - "8.128.4.7/32", - "8.128.5.0/31", - "8.128.5.3/32", - "8.128.5.4/31", - "8.128.5.7/32", - "8.128.6.0/31", - "8.128.6.3/32", - "8.128.6.4/31", - "8.128.6.7/32", - "8.128.7.0/31", - "8.128.7.3/32", - "8.128.7.4/31", - "8.128.7.7/32", - "8.128.8.0/31", - "8.128.8.3/32", - "8.128.8.4/31", - "8.128.8.7/32", - "8.128.9.0/31", - "8.128.9.3/32", - "8.128.9.4/31", - "8.128.9.7/32", - "8.132.0.0/31", - "8.132.0.3/32", - "8.132.0.4/31", - "8.132.0.7/32", - "8.132.1.0/31", - "8.132.1.3/32", - "8.132.1.4/31", - "8.132.1.7/32", - "8.132.2.0/31", - "8.132.2.3/32", - "8.132.2.4/31", - "8.132.2.7/32", - "8.132.3.0/31", - "8.132.3.3/32", - "8.132.3.4/31", - "8.132.3.7/32", - "8.132.4.0/31", - "8.132.4.3/32", - "8.132.4.4/31", - "8.132.4.7/32", - "8.132.5.0/31", - "8.132.5.3/32", - "8.132.5.4/31", - "8.132.5.7/32", - "8.132.6.0/31", - "8.132.6.3/32", - "8.132.6.4/31", - "8.132.6.7/32", - "8.132.7.0/31", - "8.132.7.3/32", - "8.132.7.4/31", - "8.132.7.7/32", - "8.132.8.0/31", - "8.132.8.3/32", - "8.132.8.4/31", - "8.132.8.7/32", - "8.132.9.0/31", - "8.132.9.3/32", - "8.132.9.4/31", - "8.132.9.7/32", - "8.136.0.0/31", - "8.136.0.3/32", - "8.136.0.4/31", - "8.136.0.7/32", - "8.136.1.0/31", - "8.136.1.3/32", - "8.136.1.4/31", - "8.136.1.7/32", - "8.136.2.0/31", - "8.136.2.3/32", - "8.136.2.4/31", - "8.136.2.7/32", - "8.136.3.0/31", - "8.136.3.3/32", - "8.136.3.4/31", - "8.136.3.7/32", - "8.136.4.0/31", - "8.136.4.3/32", - "8.136.4.4/31", - "8.136.4.7/32", - "8.136.5.0/31", - "8.136.5.3/32", - "8.136.5.4/31", - "8.136.5.7/32", - "8.136.6.0/31", - "8.136.6.3/32", - "8.136.6.4/31", - "8.136.6.7/32", - "8.136.7.0/31", - "8.136.7.3/32", - "8.136.7.4/31", - "8.136.7.7/32", - "8.136.8.0/31", - "8.136.8.3/32", - "8.136.8.4/31", - "8.136.8.7/32", - "8.136.9.0/31", - "8.136.9.3/32", - "8.136.9.4/31", - "8.136.9.7/32", - "8.140.0.0/31", - "8.140.0.3/32", - "8.140.0.4/31", - "8.140.0.7/32", - "8.140.1.0/31", - "8.140.1.3/32", - "8.140.1.4/31", - "8.140.1.7/32", - "8.140.2.0/31", - "8.140.2.3/32", - "8.140.2.4/31", - "8.140.2.7/32", - "8.140.3.0/31", - "8.140.3.3/32", - "8.140.3.4/31", - "8.140.3.7/32", - "8.140.4.0/31", - "8.140.4.3/32", - "8.140.4.4/31", - "8.140.4.7/32", - "8.140.5.0/31", - "8.140.5.3/32", - "8.140.5.4/31", - "8.140.5.7/32", - "8.140.6.0/31", - "8.140.6.3/32", - "8.140.6.4/31", - "8.140.6.7/32", - "8.140.7.0/31", - "8.140.7.3/32", - "8.140.7.4/31", - "8.140.7.7/32", - "8.140.8.0/31", - "8.140.8.3/32", - "8.140.8.4/31", - "8.140.8.7/32", - "8.140.9.0/31", - "8.140.9.3/32", - "8.140.9.4/31", - "8.140.9.7/32", - "8.144.0.0/31", - "8.144.0.3/32", - "8.144.0.4/31", - "8.144.0.7/32", - "8.144.1.0/31", - "8.144.1.3/32", - "8.144.1.4/31", - "8.144.1.7/32", - "8.144.2.0/31", - "8.144.2.3/32", - "8.144.2.4/31", - "8.144.2.7/32", - "8.144.3.0/31", - "8.144.3.3/32", - "8.144.3.4/31", - "8.144.3.7/32", - "8.144.4.0/31", - "8.144.4.3/32", - "8.144.4.4/31", - "8.144.4.7/32", - "8.144.5.0/31", - "8.144.5.3/32", - "8.144.5.4/31", - "8.144.5.7/32", - "8.144.6.0/31", - "8.144.6.3/32", - "8.144.6.4/31", - "8.144.6.7/32", - "8.144.7.0/31", - "8.144.7.3/32", - "8.144.7.4/31", - "8.144.7.7/32", - "8.144.8.0/31", - "8.144.8.3/32", - "8.144.8.4/31", - "8.144.8.7/32", - "8.144.9.0/31", - "8.144.9.3/32", - "8.144.9.4/31", - "8.144.9.7/32", - "8.148.0.0/31", - "8.148.0.3/32", - "8.148.0.4/31", - "8.148.0.7/32", - "8.148.1.0/31", - "8.148.1.3/32", - "8.148.1.4/31", - "8.148.1.7/32", - "8.148.2.0/31", - "8.148.2.3/32", - "8.148.2.4/31", - "8.148.2.7/32", - "8.148.3.0/31", - "8.148.3.3/32", - "8.148.3.4/31", - "8.148.3.7/32", - "8.148.4.0/31", - "8.148.4.3/32", - "8.148.4.4/31", - "8.148.4.7/32", - "8.148.5.0/31", - "8.148.5.3/32", - "8.148.5.4/31", - "8.148.5.7/32", - "8.148.6.0/31", - "8.148.6.3/32", - "8.148.6.4/31", - "8.148.6.7/32", - "8.148.7.0/31", - "8.148.7.3/32", - "8.148.7.4/31", - "8.148.7.7/32", - "8.148.8.0/31", - "8.148.8.3/32", - "8.148.8.4/31", - "8.148.8.7/32", - "8.148.9.0/31", - "8.148.9.3/32", - "8.148.9.4/31", - "8.148.9.7/32" - ], - "action": { - "routing-type": "vpc", - "vpc-id": "vpc-108" - } - } - ] - } + }, + { + "PREFIX-TAG:VPC:101": { + "prefix-tag-id": "101", + "prefix-tag-number": 101, + "ip-prefixes-ipv4": [ + "1.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:2": { + "prefix-tag-id": "2", + "prefix-tag-number": 2, + "ip-prefixes-ipv4": [ + "2.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:102": { + "prefix-tag-id": "102", + "prefix-tag-number": 102, + "ip-prefixes-ipv4": [ + "2.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:3": { + "prefix-tag-id": "3", + "prefix-tag-number": 3, + "ip-prefixes-ipv4": [ + "3.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:103": { + "prefix-tag-id": "103", + "prefix-tag-number": 103, + "ip-prefixes-ipv4": [ + "3.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:4": { + "prefix-tag-id": "4", + "prefix-tag-number": 4, + "ip-prefixes-ipv4": [ + "4.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:104": { + "prefix-tag-id": "104", + "prefix-tag-number": 104, + "ip-prefixes-ipv4": [ + "4.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:5": { + "prefix-tag-id": "5", + "prefix-tag-number": 5, + "ip-prefixes-ipv4": [ + "5.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:105": { + "prefix-tag-id": "105", + "prefix-tag-number": 105, + "ip-prefixes-ipv4": [ + "5.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:6": { + "prefix-tag-id": "6", + "prefix-tag-number": 6, + "ip-prefixes-ipv4": [ + "6.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:106": { + "prefix-tag-id": "106", + "prefix-tag-number": 106, + "ip-prefixes-ipv4": [ + "6.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:7": { + "prefix-tag-id": "7", + "prefix-tag-number": 7, + "ip-prefixes-ipv4": [ + "7.1.0.1/32" + ] + } + }, + { + "PREFIX-TAG:VPC:107": { + "prefix-tag-id": "107", + "prefix-tag-number": 107, + "ip-prefixes-ipv4": [ + "7.128.0.1/9" + ] + } + }, + { + "PREFIX-TAG:VPC:8": { + "prefix-tag-id": "8", + "prefix-tag-number": 8, + "ip-prefixes-ipv4": [ + "8.1.0.1/32" + ] } - ], - "prefix-tags": [ - { - "PREFIX-TAG:VPC:1": { - "prefix-tag-id": "1", - "prefix-tag-number": 1, - "ip-prefixes-ipv4": [ - "1.1.0.1/32" - ] - } - }, - { - "PREFIX-TAG:VPC:101": { - "prefix-tag-id": "101", - "prefix-tag-number": 101, - "ip-prefixes-ipv4": [ - "1.128.0.1/9" - ] - } - }, - { - "PREFIX-TAG:VPC:2": { - "prefix-tag-id": "2", - "prefix-tag-number": 2, - "ip-prefixes-ipv4": [ - "2.1.0.1/32" - ] - } - }, - { - "PREFIX-TAG:VPC:102": { - "prefix-tag-id": "102", - "prefix-tag-number": 102, - "ip-prefixes-ipv4": [ - "2.128.0.1/9" - ] - } - }, - { - "PREFIX-TAG:VPC:3": { - "prefix-tag-id": "3", - "prefix-tag-number": 3, - "ip-prefixes-ipv4": [ - "3.1.0.1/32" - ] - } - }, - { - "PREFIX-TAG:VPC:103": { - "prefix-tag-id": "103", - "prefix-tag-number": 103, - "ip-prefixes-ipv4": [ - "3.128.0.1/9" - ] - } - }, - { - "PREFIX-TAG:VPC:4": { - "prefix-tag-id": "4", - "prefix-tag-number": 4, - "ip-prefixes-ipv4": [ - "4.1.0.1/32" - ] - } - }, - { - "PREFIX-TAG:VPC:104": { - "prefix-tag-id": "104", - "prefix-tag-number": 104, - "ip-prefixes-ipv4": [ - "4.128.0.1/9" - ] - } - }, - { - "PREFIX-TAG:VPC:5": { - "prefix-tag-id": "5", - "prefix-tag-number": 5, - "ip-prefixes-ipv4": [ - "5.1.0.1/32" - ] - } - }, - { - "PREFIX-TAG:VPC:105": { - "prefix-tag-id": "105", - "prefix-tag-number": 105, - "ip-prefixes-ipv4": [ - "5.128.0.1/9" - ] - } - }, - { - "PREFIX-TAG:VPC:6": { - "prefix-tag-id": "6", - "prefix-tag-number": 6, - "ip-prefixes-ipv4": [ - "6.1.0.1/32" - ] - } - }, - { - "PREFIX-TAG:VPC:106": { - "prefix-tag-id": "106", - "prefix-tag-number": 106, - "ip-prefixes-ipv4": [ - "6.128.0.1/9" - ] - } - }, - { - "PREFIX-TAG:VPC:7": { - "prefix-tag-id": "7", - "prefix-tag-number": 7, - "ip-prefixes-ipv4": [ - "7.1.0.1/32" - ] - } - }, - { - "PREFIX-TAG:VPC:107": { - "prefix-tag-id": "107", - "prefix-tag-number": 107, - "ip-prefixes-ipv4": [ - "7.128.0.1/9" - ] - } - }, - { - "PREFIX-TAG:VPC:8": { - "prefix-tag-id": "8", - "prefix-tag-number": 8, - "ip-prefixes-ipv4": [ - "8.1.0.1/32" - ] - } - }, - { - "PREFIX-TAG:VPC:108": { - "prefix-tag-id": "108", - "prefix-tag-number": 108, - "ip-prefixes-ipv4": [ - "8.128.0.1/9" - ] - } + }, + { + "PREFIX-TAG:VPC:108": { + "prefix-tag-id": "108", + "prefix-tag-number": 108, + "ip-prefixes-ipv4": [ + "8.128.0.1/9" + ] } - ] -} \ No newline at end of file + } +] +}