From a84890d214202b553af1086e273461c4947e931d Mon Sep 17 00:00:00 2001 From: Pelle Koster <pelle.koster@geant.org> Date: Wed, 26 Feb 2025 10:40:18 +0100 Subject: [PATCH 1/2] POL1-884: additional information for handling gws indirect services for nokia routers --- inventory_provider/nokia.py | 11 + inventory_provider/routes/common.py | 13 + inventory_provider/routes/poller.py | 147 +- inventory_provider/tasks/worker.py | 11 + ...t0.ams.nl.lab.office.geant.net-netconf.xml | 46792 +++++++++++----- test/test_general_poller_routes.py | 45 +- test/test_nokia.py | 178 +- test/test_worker.py | 33 +- 8 files changed, 32776 insertions(+), 14454 deletions(-) diff --git a/inventory_provider/nokia.py b/inventory_provider/nokia.py index 564c28ab..43c7ba24 100644 --- a/inventory_provider/nokia.py +++ b/inventory_provider/nokia.py @@ -443,3 +443,14 @@ def get_all_vprn_peers(netconf_config): def get_all_bgp_peers(netconf_config): yield from get_router_peers(netconf_config) yield from get_all_vprn_peers(netconf_config) + + +def get_gws_indirect_filters(netconf_config): + for sap in netconf_config.xpath( + 'configure/service/vprn[service-name/text()="IAS"]' + "/interface/sap[egress/filter/ip]" + ): + yield { + "interface": sap.find("sap-id").text, + "ip_filter": sap.find("egress/filter/ip").text, + } diff --git a/inventory_provider/routes/common.py b/inventory_provider/routes/common.py index 3f37d0b4..f7f0513e 100644 --- a/inventory_provider/routes/common.py +++ b/inventory_provider/routes/common.py @@ -320,6 +320,19 @@ def load_snmp_indexes(config, hostname=None, use_next_redis=False): return result +def load_gws_indirect_ip_filters(config, hostname="*", use_next_redis=False): + prefix = "nokia-ip-filters:" + key_pattern = prefix + hostname + + return { + (doc["key"][len(prefix):], ifc): ipf + for doc in load_json_docs( + config_params=config, key_pattern=key_pattern, use_next_redis=use_next_redis + ) + for ifc, ipf in doc['value'].items() + } + + def distribute_jobs_across_workers( worker_proc, jobs, input_ctx, num_threads=10): """ diff --git a/inventory_provider/routes/poller.py b/inventory_provider/routes/poller.py index 3b9eec5c..c61f2377 100644 --- a/inventory_provider/routes/poller.py +++ b/inventory_provider/routes/poller.py @@ -75,11 +75,11 @@ support method: _get_dashboards """ from collections import defaultdict from enum import Enum, auto +import functools import itertools import json import logging import re -from functools import partial from typing import Dict from flask import Blueprint, Response, current_app, request, jsonify @@ -195,7 +195,6 @@ INTERFACE_LIST_SCHEMA = { 'description': {'type': 'string'}, 'snmp-index': { 'type': 'integer', - 'minimum': 1 }, 'bundle': { 'type': 'array', @@ -436,7 +435,9 @@ SERVICES_LIST_SCHEMA = { 'interface': {'type': 'string'}, 'type': {'type': 'string'}, 'status': {'type': 'string'}, - 'snmp': {'$ref': '#/definitions/snmp-info'} + 'snmp': {'$ref': '#/definitions/snmp-info'}, + 'vendor': {'type': 'string'}, + 'ip_filter': {'type': ['string', 'null']}, }, 'required': [ 'id', 'name', 'customer', @@ -1027,12 +1028,21 @@ def get_netdash_equipment(config, use_next_redis=False) -> Dict[str, str]: return json.loads(r.get('netdash').decode('utf-8')) -def load_error_report_interfaces( - config, hostname=None, use_next_redis=False -): - interfaces = _load_interfaces(config, hostname, use_next_redis=use_next_redis) +def vendor_getter(config, use_next_redis=False): netdash_equipment = get_netdash_equipment(config, use_next_redis) + def get_vendor(router: str): + return netdash_equipment.get( + router, "nokia" if router.startswith("rt0") else "juniper" + ) + + return get_vendor + + +def load_error_report_interfaces(config, hostname=None, use_next_redis=False): + interfaces = _load_interfaces(config, hostname, use_next_redis=use_next_redis) + get_vendor = vendor_getter(config, use_next_redis) + def filter_interface(interface: dict): description = interface["description"].lower() name = interface["name"].lower() @@ -1047,11 +1057,6 @@ def load_error_report_interfaces( and not re.match(r".*\.\d+$", name) ) - def get_vendor(router: str): - return netdash_equipment.get( - router, "nokia" if router.startswith("rt0") else "juniper" - ) - def transform_interface(interface: dict) -> Dict: return { "router": interface["router"], @@ -1513,18 +1518,58 @@ def _get_services_internal(service_type=None): :return: service list, json-serialized to a string """ - return_all = common.get_bool_request_arg('all', True) - include_snmp = common.get_bool_request_arg('snmp', False) + return_all = common.get_bool_request_arg("all", True) + include_snmp = common.get_bool_request_arg("snmp", False) + include_vendor = common.get_bool_request_arg("vendor", False) + include_ip_filter = common.get_bool_request_arg("ip_filter", False) + + cache_key = ( + f"classifier-cache:poller:services:{service_type}" + if service_type + else "classifier-cache:poller:services:all-types" + ) + + if return_all: + cache_key = f"{cache_key}:all" + if include_snmp: + cache_key = f"{cache_key}:snmp" + if include_vendor: + cache_key = f"{cache_key}:vendor" + if include_ip_filter: + cache_key = f"{cache_key}:ip_filter" + + redis = common.get_current_redis() + result = _ignore_cache_or_retrieve(request, cache_key, redis) + if result: + return result + + config = current_app.config["INVENTORY_PROVIDER_CONFIG"] def _services(): key_pattern = f'ims:services:{service_type}:*' \ if service_type else 'ims:services:*' for doc in common.load_json_docs( - config_params=current_app.config['INVENTORY_PROVIDER_CONFIG'], - key_pattern=key_pattern, - num_threads=20): - yield doc['value'] + config_params=config, key_pattern=key_pattern, num_threads=20 + ): + yield doc["value"] + + def _wanted_in_output(s): + return return_all or (s["status"].lower() == "operational") + + def _format_services(s): + return { + "id": s["id"], + "name": s["name"], + "customer": s["project"], + "speed": s["speed_value"], + "pop": s["here"]["pop"]["name"], + "hostname": common.ims_equipment_to_hostname(s["here"]["equipment"]), + "interface": s["here"]["port"].lower(), + "type": s["type"], + "status": s["status"], + "original": s, + } def _add_snmp(s, all_snmp_info): snmp_interfaces = all_snmp_info.get(s['hostname'], {}) @@ -1549,49 +1594,45 @@ def _get_services_internal(service_type=None): ] return s - def _wanted_in_output(s): - return return_all or (s['status'].lower() == 'operational') + get_vendor = vendor_getter(config) - def _format_services(s): - return { - 'id': s['id'], - 'name': s['name'], - 'customer': s['project'], - 'speed': s['speed_value'], - 'pop': s['here']['pop']['name'], - 'hostname': common.ims_equipment_to_hostname( - s['here']['equipment']), - 'interface': s['here']['port'].lower(), - 'type': s['type'], - 'status': s['status'] - } + def _add_vendor(s): + if not include_vendor: + return s + s["vendor"] = get_vendor(s["hostname"]) + return s - cache_key = f'classifier-cache:poller:services:{service_type}' \ - if service_type else 'classifier-cache:poller:services:all-types' + def _add_ip_filter(s, all_ip_filters): + s["ip_filter"] = all_ip_filters.get((s["hostname"], s["interface"])) + return s - if return_all: - cache_key = f'{cache_key}:all' + def _strip_original(s): + s.pop("original", None) + return s + + result = _services() + result = filter(_wanted_in_output, result) + result = map(_format_services, result) if include_snmp: - cache_key = f'{cache_key}:snmp' + all_snmp_info = common.load_snmp_indexes(config) + result = map(functools.partial(_add_snmp, all_snmp_info=all_snmp_info), result) + if include_vendor: + result = map(_add_vendor, result) + if include_ip_filter: + all_ip_filters = common.load_gws_indirect_ip_filters(config) + result = map( + functools.partial(_add_ip_filter, all_ip_filters=all_ip_filters), result + ) - redis = common.get_current_redis() - result = _ignore_cache_or_retrieve(request, cache_key, redis) + result = map(_strip_original, result) + result = list(result) if not result: - result = _services() - result = filter(_wanted_in_output, result) - result = map(_format_services, result) - if include_snmp: - all_snmp_info = common.load_snmp_indexes(current_app.config['INVENTORY_PROVIDER_CONFIG']) - result = map(partial(_add_snmp, all_snmp_info=all_snmp_info), result) - result = list(result) - - if not result: - return None + return None - # cache this data for the next call - result = json.dumps(result) - redis.set(cache_key, result) + # cache this data for the next call + result = json.dumps(result) + redis.set(cache_key, result) return result diff --git a/inventory_provider/tasks/worker.py b/inventory_provider/tasks/worker.py index 90a1cb86..d9a6fedf 100644 --- a/inventory_provider/tasks/worker.py +++ b/inventory_provider/tasks/worker.py @@ -623,6 +623,7 @@ def _reload_router_config_nokia( snmp_refresh_interfaces_nokia(hostname, state_doc, communities, r, info_callback) refresh_nokia_bgp_peers(hostname, netconf_doc) snmp_refresh_peerings_nokia(hostname, communities) + refresh_nokia_gws_indirect_ip_filters(hostname, netconf_doc, r) def refresh_epipe_to_sap_mappings(hostname, netconf, redis): @@ -886,6 +887,16 @@ def refresh_nokia_bgp_peers(hostname, netconf): r.set(f'nokia-peerings:hosts:{hostname}', json.dumps(host_peerings)) +@log_task_entry_and_exit +def refresh_nokia_gws_indirect_ip_filters(hostname, netconf, r): + result = { + sap["interface"]: sap["ip_filter"] + for sap in nokia.get_gws_indirect_filters(netconf) + } + if result: + r.set(f"nokia-ip-filters:{hostname}", json.dumps(result)) + + @app.task(base=InventoryTask, bind=True, name='reload_lab_router_juniper') @log_task_entry_and_exit def reload_lab_router_config_juniper(self, hostname): diff --git a/test/data/nokia/rt0.ams.nl.lab.office.geant.net-netconf.xml b/test/data/nokia/rt0.ams.nl.lab.office.geant.net-netconf.xml index 2ab66cee..17122e62 100644 --- a/test/data/nokia/rt0.ams.nl.lab.office.geant.net-netconf.xml +++ b/test/data/nokia/rt0.ams.nl.lab.office.geant.net-netconf.xml @@ -1,14350 +1,32502 @@ -<data xmlns="urn:ietf:params:xml:ns:netconf:base:1.0"> - <configure> - <card> - <slot-number>1</slot-number> - <admin-state>enable</admin-state> - <card-type>xcm2-7s</card-type> - <mda> - <mda-slot>1</mda-slot> - <admin-state>enable</admin-state> - <mda-type>x2-s36-800g-qsfpdd-12.0t</mda-type> - <level>cr9600g</level> - </mda> - </card> - <card> - <slot-number>2</slot-number> - <admin-state>enable</admin-state> - <card-type>xcm2-7s</card-type> - <mda> - <mda-slot>1</mda-slot> - <admin-state>enable</admin-state> - <mda-type>x2-s36-800g-qsfpdd-12.0t</mda-type> - <level>cr9600g</level> - </mda> - </card> - <cflowd> - <cache-size>2000000</cache-size> - <enhanced-distribution>true</enhanced-distribution> - <overflow>1</overflow> - <template-retransmit>300</template-retransmit> - <active-flow-timeout>60</active-flow-timeout> - <inactive-flow-timeout>60</inactive-flow-timeout> - <sample-profile> - <profile-id>1</profile-id> - <sample-rate>300</sample-rate> - <metering-process>fp-accelerated</metering-process> - </sample-profile> - <collector> - <ip-address>172.16.100.90</ip-address> - <port>7711</port> - <admin-state>enable</admin-state> - <template-set>mpls-ip</template-set> - <version>10</version> - </collector> - <collector> - <ip-address>208.76.14.251</ip-address> - <port>20013</port> - <admin-state>enable</admin-state> - <template-set>mpls-ip</template-set> - <version>10</version> - </collector> - </cflowd> - <chassis> - <chassis-class>router</chassis-class> - <chassis-number>1</chassis-number> - <power-shelf> - <power-shelf-id>1</power-shelf-id> - <admin-state>enable</admin-state> - <power-shelf-type>ps-b10-shelf-ac/hv</power-shelf-type> - <power-module> - <power-module-id>1</power-module-id> - <admin-state>enable</admin-state> - <power-module-type>ps-b-ac/hv-6000</power-module-type> - </power-module> - <power-module> - <power-module-id>2</power-module-id> - <admin-state>enable</admin-state> - <power-module-type>ps-b-ac/hv-6000</power-module-type> - </power-module> - <power-module> - <power-module-id>3</power-module-id> - <admin-state>enable</admin-state> - <power-module-type>ps-b-ac/hv-6000</power-module-type> - </power-module> - <power-module> - <power-module-id>4</power-module-id> - <admin-state>enable</admin-state> - <power-module-type>ps-b-ac/hv-6000</power-module-type> - </power-module> - <power-module> - <power-module-id>5</power-module-id> - <admin-state>enable</admin-state> - <power-module-type>ps-b-ac/hv-6000</power-module-type> - </power-module> - <power-module> - <power-module-id>6</power-module-id> - <admin-state>enable</admin-state> - <power-module-type>ps-b-ac/hv-6000</power-module-type> - </power-module> - <power-module> - <power-module-id>7</power-module-id> - <admin-state>enable</admin-state> - <power-module-type>ps-b-ac/hv-6000</power-module-type> - </power-module> - <power-module> - <power-module-id>8</power-module-id> - <admin-state>enable</admin-state> - <power-module-type>ps-b-ac/hv-6000</power-module-type> - </power-module> - <power-module> - <power-module-id>9</power-module-id> - <admin-state>enable</admin-state> - <power-module-type>ps-b-ac/hv-6000</power-module-type> - </power-module> - <power-module> - <power-module-id>10</power-module-id> - <admin-state>enable</admin-state> - <power-module-type>ps-b-ac/hv-6000</power-module-type> - </power-module> - </power-shelf> - </chassis> - <filter> - <match-list> - <protocol-list> - <protocol-list-name>EDGE_TUNNEL_PROTOCOLS</protocol-list-name> - <protocol> - <protocol-id>94</protocol-id> - </protocol> - <protocol> - <protocol-id>gre</protocol-id> - </protocol> - </protocol-list> - <protocol-list> - <protocol-list-name>MULTICAST_IPV6_PROTOCOLS</protocol-list-name> - <protocol> - <protocol-id>58</protocol-id> - </protocol> - <protocol> - <protocol-id>pim</protocol-id> - </protocol> - </protocol-list> - <protocol-list> - <protocol-list-name>MULTICAST_PROTOCOLS</protocol-list-name> - <protocol> - <protocol-id>igmp</protocol-id> - </protocol> - <protocol> - <protocol-id>pim</protocol-id> - </protocol> - </protocol-list> - <ip-prefix-list> - <prefix-list-name>BGP_PEERS_BASE</prefix-list-name> - <description>BGP Peers configured under Base instance</description> - <apply-path> - <bgp-peers> - <criterion-index>1</criterion-index> - <group>.*</group> - <neighbor>.*</neighbor> - <router-instance>Base</router-instance> - </bgp-peers> - <bgp-peers> - <criterion-index>2</criterion-index> - <group>.*</group> - <neighbor>.*</neighbor> - <router-instance>IAS</router-instance> - </bgp-peers> - <bgp-peers> - <criterion-index>3</criterion-index> - <group>.*</group> - <neighbor>.*</neighbor> - <router-instance>LHCONE_L3VPN</router-instance> - </bgp-peers> - </apply-path> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>BOGONS_LIST</prefix-list-name> - <description>ipv4 BOGONS</description> - <prefix> - <ip-prefix>0.0.0.0/8</ip-prefix> - </prefix> - <prefix> - <ip-prefix>10.0.0.0/8</ip-prefix> - </prefix> - <prefix> - <ip-prefix>100.64.0.0/10</ip-prefix> - </prefix> - <prefix> - <ip-prefix>127.0.0.0/8</ip-prefix> - </prefix> - <prefix> - <ip-prefix>169.254.0.0/16</ip-prefix> - </prefix> - <prefix> - <ip-prefix>172.16.0.0/12</ip-prefix> - </prefix> - <prefix> - <ip-prefix>192.0.0.0/24</ip-prefix> - </prefix> - <prefix> - <ip-prefix>192.0.2.0/24</ip-prefix> - </prefix> - <prefix> - <ip-prefix>192.168.0.0/16</ip-prefix> - </prefix> - <prefix> - <ip-prefix>198.18.0.0/15</ip-prefix> - </prefix> - <prefix> - <ip-prefix>198.51.100.0/24</ip-prefix> - </prefix> - <prefix> - <ip-prefix>203.0.113.0/24</ip-prefix> - </prefix> - <prefix> - <ip-prefix>224.0.0.0/3</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>COMMUNITY_NTP</prefix-list-name> - <description>Community hosted NTPs</description> - <prefix> - <ip-prefix>192.53.103.108/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>192.87.106.2/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>193.62.22.66/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>193.204.114.233/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>195.113.144.201/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>EUMETSAT_DATA_DFN</prefix-list-name> - <prefix> - <ip-prefix>193.17.9.3/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>193.17.9.5/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>212.201.139.66/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>EXTERNAL_GRE</prefix-list-name> - <description>Placeholder_for_customers_that_require_GRE</description> - <prefix> - <ip-prefix>0.0.0.0/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>EXTERNAL_IGMP</prefix-list-name> - <description>Placeholder_for_customers_that_require_IGMP</description> - <prefix> - <ip-prefix>0.0.0.0/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_ADDRESS_SPACE</prefix-list-name> - <description>GEANT address space for traceroute and rsvp in CPM filters</description> - <prefix> - <ip-prefix>62.40.96.0/19</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_BRIAN</prefix-list-name> - <description>Geant Brian hosts</description> - <prefix> - <ip-prefix>83.97.93.52/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.154/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.155/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.245/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.246/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.9/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.10/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.11/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.12/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_CORE</prefix-list-name> - <description>Used_in_IP_EDGE_IN filter</description> - <prefix> - <ip-prefix>62.40.96.0/23</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.98.0/24</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_DASHBOARD</prefix-list-name> - <description>Geant dashboard hosts</description> - <prefix> - <ip-prefix>62.40.114.3/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.114.19/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.151/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.152/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.153/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.204/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.239/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.244/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.248/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.51/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.52/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.97/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.98/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_DC</prefix-list-name> - <description>GEANT DC Space for use in CPM filters</description> - <prefix> - <ip-prefix>62.40.120.134/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.120.136/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.121.121/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.15/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.116/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.129/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.130/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_DC_VRRP</prefix-list-name> - <description>GEANT DC VRRP Space for use in CPM filters</description> - <prefix> - <ip-prefix>224.0.0.18/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_DNS</prefix-list-name> - <description>GEANT DNS SERVERS for use in CPM filters</description> - <prefix> - <ip-prefix>62.40.104.250/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.106.9/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.116.114/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.116.122/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.200/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_GAP</prefix-list-name> - <description>Geant GAP hosts</description> - <prefix> - <ip-prefix>62.40.111.0/24</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.177/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_GAP_GSO_UAT</prefix-list-name> - <description>GAP UAT GSO VMs</description> - <prefix> - <ip-prefix>83.97.92.185/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.226/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.241/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_IMS</prefix-list-name> - <description>Geant IMS hosts</description> - <prefix> - <ip-prefix>83.97.94.123/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.124/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.125/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.109/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_JUMP_SERVERS</prefix-list-name> - <description>Geant Jump Servers hosts</description> - <prefix> - <ip-prefix>83.97.94.114/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_LIBRENMS</prefix-list-name> - <description>Geant LibreNMS hosts</description> - <prefix> - <ip-prefix>62.40.111.47/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.37/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_LOOKING_GLASS</prefix-list-name> - <description>Geant looking-glass hosts</description> - <prefix> - <ip-prefix>83.97.92.82/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.141/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.39/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.62/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.134/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.135/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.136/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.137/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.138/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.139/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_NE_SERVERS</prefix-list-name> - <description>Geant NE Servers hosts</description> - <prefix> - <ip-prefix>62.40.112.32/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.136/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.182/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_NTP</prefix-list-name> - <description>Geant NTPs</description> - <prefix> - <ip-prefix>62.40.97.11/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.97.12/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.97.14/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.123.21/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.123.23/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.123.103/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_OC_SERVERS</prefix-list-name> - <description>Geant OC Servers hosts</description> - <prefix> - <ip-prefix>83.97.92.61/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.87/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.92/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.99/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.23/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.37/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_OFFICE_NETWORKS</prefix-list-name> - <description>Amsterdam and Cambridge Networks</description> - <prefix> - <ip-prefix>62.40.101.0/24</ip-prefix> - </prefix> - <prefix> - <ip-prefix>195.169.24.128/25</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_RANCID</prefix-list-name> - <description>Geant RANCID hosts</description> - <prefix> - <ip-prefix>83.97.92.216/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.217/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.220/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_ROUTERS</prefix-list-name> - <description>GEANT router-loopbacks and system address for use in CPM filters</description> - <prefix> - <ip-prefix>62.40.96.0/23</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.119.0/27</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_SNMP</prefix-list-name> - <description>GEANT SNMP HOSTS for use in CPM filters</description> - <prefix> - <ip-prefix>62.40.100.166/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.100.190/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.100.198/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.114.3/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.114.18/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.114.19/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.120.90/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.122.138/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.61/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.79/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.92/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.94/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.99/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.183/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.219/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.92.228/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.39/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.52/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.53/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.59/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.122/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.123/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.137/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.151/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.152/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.153/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.154/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.155/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.204/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.239/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.244/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.248/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.249/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.93.251/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.1/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.2/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.9/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.14/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.15/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.51/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.52/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.97/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.98/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.181/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.185/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.188/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.245/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.94.246/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.9/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.10/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.11/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>83.97.95.12/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>193.177.128.0/22</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_SNMP_UAT</prefix-list-name> - <description>GAP UAT LNMS instance</description> - <prefix> - <ip-prefix>62.40.111.47/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_VPN_NETWORKS</prefix-list-name> - <description>All VPN networks allowed</description> - <prefix> - <ip-prefix>62.40.99.129/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.112.128/27</ip-prefix> - </prefix> - <prefix> - <ip-prefix>195.169.24.28/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>195.169.24.96/27</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>GEANT_VULN_SCANNER</prefix-list-name> - <description>Geant vulnerability scanners</description> - <prefix> - <ip-prefix>83.97.93.49/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>MULTICAST_GROUP_RANGES</prefix-list-name> - <description>Multicast_ipv4_group range</description> - <prefix> - <ip-prefix>224.0.0.0/4</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>NOMIOS_SUPPORT</prefix-list-name> - <description>Nomios hosts allowed for support</description> - <prefix> - <ip-prefix>83.97.93.238/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>PUBLIC_NTP</prefix-list-name> - <description>Publicly available NTPs</description> - <prefix> - <ip-prefix>216.239.35.0/32</ip-prefix> - </prefix> - <prefix> - <ip-prefix>216.239.35.4/32</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>TOOLS_KENTIK</prefix-list-name> - <description>Kentik SNMP pollers</description> - <prefix> - <ip-prefix>209.50.158.0/23</ip-prefix> - </prefix> - </ip-prefix-list> - <ip-prefix-list> - <prefix-list-name>TWAMP_CLIENTS</prefix-list-name> - <description>TWAMP Clients</description> - <prefix> - <ip-prefix>62.40.98.0/24</ip-prefix> - </prefix> - <prefix> - <ip-prefix>62.40.119.64/26</ip-prefix> - </prefix> - </ip-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>BGP_PEERS_BASE</prefix-list-name> - <description>BGP Peers configured under Base instance</description> - <apply-path> - <bgp-peers> - <criterion-index>1</criterion-index> - <group>.*</group> - <neighbor>.*</neighbor> - <router-instance>Base</router-instance> - </bgp-peers> - <bgp-peers> - <criterion-index>2</criterion-index> - <group>.*</group> - <neighbor>.*</neighbor> - <router-instance>IAS</router-instance> - </bgp-peers> - <bgp-peers> - <criterion-index>3</criterion-index> - <group>.*</group> - <neighbor>.*</neighbor> - <router-instance>LHCONE_L3VPN</router-instance> - </bgp-peers> - </apply-path> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>BOGONS_LIST6</prefix-list-name> - <prefix> - <ipv6-prefix>::/8</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>100::/8</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>200::/7</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>400::/7</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>600::/7</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>800::/5</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>1000::/4</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2000::/16</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>3fff::/16</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>4000::/3</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>6000::/3</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>8000::/3</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>a000::/3</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>c000::/3</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>e000::/4</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>f000::/5</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>f800::/6</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>fc00::/7</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>fe00::/9</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>fec0::/10</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_ADDRESS_SPACE</prefix-list-name> - <description>GEANT address space for traceroute and rsvp in CPM filters</description> - <prefix> - <ipv6-prefix>2001:798::/32</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_BRIAN</prefix-list-name> - <prefix> - <ipv6-prefix>2001:798:3::11d/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::148/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::190/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::29e/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::29f/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::2b1/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::2b2/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::2b3/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::2b4/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_CORE</prefix-list-name> - <description>Used_in_IP_EDGE_IN filter</description> - <prefix> - <ipv6-prefix>2001:798:aa:1::/64</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:cc::/48</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_DASHBOARD</prefix-list-name> - <description>Geant dashboard hosts</description> - <prefix> - <ipv6-prefix>2001:798:3::18d/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::18e/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::18f/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::1d6/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::208/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::209/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::234/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::236/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::237/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::23f/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::245/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:bb:2a::4/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:bb:2b::4/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_DNS</prefix-list-name> - <description>GEANT DNS SERVERS for use in CPM filters</description> - <prefix> - <ipv6-prefix>2001:798:3::1ba/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:bb:4d::2/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:ee:f::2/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:ee:10::2/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_GAP</prefix-list-name> - <description>Geant GAP hosts</description> - <prefix> - <ipv6-prefix>2001:798:3::318/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_GAP_GSO_UAT</prefix-list-name> - <description>GAP UAT GSO VMs</description> - <prefix> - <ipv6-prefix>2001:798:3::45/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::49/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::4b/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_IMS</prefix-list-name> - <description>Geant IMS hosts</description> - <prefix> - <ipv6-prefix>2001:798:3::251/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::252/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::253/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_IPV6_DC_VRRP</prefix-list-name> - <description>GEANT DC VRRP Space for use in CPM IPV6-filters</description> - <prefix> - <ipv6-prefix>ff02::12/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_IPV6_NETWORKS</prefix-list-name> - <description>IPv6 networks for the use in CPM filters</description> - <prefix> - <ipv6-prefix>2001:798::/32</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:799:cb2::/48</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_JUMP_SERVERS</prefix-list-name> - <description>Geant Jump Servers hosts</description> - <prefix> - <ipv6-prefix>2001:798:3::246/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_LIBRENMS</prefix-list-name> - <description>Geant LibreNMS hosts</description> - <prefix> - <ipv6-prefix>2001:798:3::317/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_LOOKING_GLASS</prefix-list-name> - <description>Geant looking-glass hosts</description> - <prefix> - <ipv6-prefix>2001:798:3::25c/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::25d/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::25e/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::25f/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::260/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::261/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_NE_SERVERS</prefix-list-name> - <description>Geant NE Servers hosts</description> - <prefix> - <ipv6-prefix>2001:798:3::a0/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::288/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_OC_SERVERS</prefix-list-name> - <description>Geant OC Servers hosts</description> - <prefix> - <ipv6-prefix>2001:798:3::55/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::6f/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::7b/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::83/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::12b/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::139/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_OFFICE_NETWORKS</prefix-list-name> - <description>Amsterdam and Cambridge Networks</description> - <prefix> - <ipv6-prefix>2001:610:9d8:4::/64</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:799:cb2:101::/64</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_RANCID</prefix-list-name> - <description>Geant RANCID hosts</description> - <prefix> - <ipv6-prefix>2001:798:3::117/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::118/128</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:3::128/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_ROUTERS</prefix-list-name> - <description>GEANT router-loopbacks and system address for use in CPM filters</description> - <prefix> - <ipv6-prefix>2001:798:aa:1::/64</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_VPN_NETWORKS</prefix-list-name> - <description>All VPN networks allowed</description> - <prefix> - <ipv6-prefix>2001:610:9d8:7::/64</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:610:9d8:14::/64</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:798:4:8::/112</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>2001:799:cb2:6::/64</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>GEANT_VULN_SCANNER</prefix-list-name> - <description>Geant vulnerability scanners</description> - <prefix> - <ipv6-prefix>2001:798:3::145/128</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>IPV6_ND</prefix-list-name> - <description>IPv6 specific dest addresses for ND</description> - <prefix> - <ipv6-prefix>fe80::/10</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>ff02::/123</ipv6-prefix> - </prefix> - <prefix> - <ipv6-prefix>ff02::1:ff00:0/104</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <ipv6-prefix-list> - <prefix-list-name>MULTICAST_GROUP_RANGES</prefix-list-name> - <description>Multicast_ipv6_group range</description> - <prefix> - <ipv6-prefix>ff00::/8</ipv6-prefix> - </prefix> - </ipv6-prefix-list> - <port-list> - <port-list-name>CPMF_V4-BFD-DST_PORTS</port-list-name> - <range> - <start>3784</start> - <end>3785</end> - </range> - </port-list> - <port-list> - <port-list-name>CPMF_V4-BGP_PEERS_BASE-PORTS</port-list-name> - <port> - <value>179</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V4-DNS-PORTS</port-list-name> - <port> - <value>53</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V4-MICRO_BFD-DST_PORTS</port-list-name> - <port> - <value>6784</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V4-MULTIHOP-BFD-DST_PORTS</port-list-name> - <port> - <value>4784</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V4-NETCONF-PORTS</port-list-name> - <port> - <value>830</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V4-NTP-PORTS</port-list-name> - <port> - <value>123</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V4-RADIUS-PORT_RANGE</port-list-name> - <range> - <start>1812</start> - <end>1813</end> - </range> - </port-list> - <port-list> - <port-list-name>CPMF_V4-SNMP-PORTS</port-list-name> - <port> - <value>161</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V4-SSH-DST_PORTS</port-list-name> - <port> - <value>22</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V4-TRACEROUTE-PORT_RANGE</port-list-name> - <range> - <start>33434</start> - <end>33534</end> - </range> - </port-list> - <port-list> - <port-list-name>CPMF_V4-TWAMP-DST_PORT_RANGE</port-list-name> - <range> - <start>10000</start> - <end>65535</end> - </range> - </port-list> - <port-list> - <port-list-name>CPMF_V4-TWAMP_682-PORTS</port-list-name> - <port> - <value>862</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V4_RPKI_PORTS</port-list-name> - <port> - <value>3323</value> - </port> - <port> - <value>8282</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V6-BFD-DST_PORTS</port-list-name> - <range> - <start>3784</start> - <end>3785</end> - </range> - </port-list> - <port-list> - <port-list-name>CPMF_V6-BGP_PEERS_BASE-PORTS</port-list-name> - <port> - <value>179</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V6-MULTIHOP-BFD-DST_PORTS</port-list-name> - <port> - <value>4784</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V6-NETCONF-PORTS</port-list-name> - <port> - <value>830</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V6-SSH-DST_PORTS</port-list-name> - <port> - <value>22</value> - </port> - </port-list> - <port-list> - <port-list-name>CPMF_V6-TRACEROUTE-PORT_RANGE</port-list-name> - <range> - <start>33434</start> - <end>33534</end> - </range> - </port-list> - </match-list> - <ip-filter> - <filter-name>DFN_IN</filter-name> - <default-action>accept</default-action> - <scope>template</scope> - <chain-to-system-filter>false</chain-to-system-filter> - <entry> - <entry-id>100</entry-id> - <description>CUSTOMER Multicast traffic</description> - <match> - <protocol-list>MULTICAST_PROTOCOLS</protocol-list> - <ip> - <ip-prefix-list>EUMETSAT_DATA_DFN</ip-prefix-list> - </ip> - </match> - <action> - <accept/> - </action> - </entry> - <embed> - <filter> - <name>IP_EDGE_IN</name> - <offset>1000</offset> - </filter> - <flowspec> - <offset>10000</offset> - <router-instance>Base</router-instance> - </flowspec> - </embed> - </ip-filter> - <ip-filter> - <filter-name>DFN_OUT</filter-name> - <default-action>accept</default-action> - <scope>template</scope> - <chain-to-system-filter>false</chain-to-system-filter> - <embed> - <filter> - <name>IP_EDGE_OUT</name> - <offset>1000</offset> - </filter> - </embed> - </ip-filter> - <ip-filter> - <filter-name>IP_EDGE_IN</filter-name> - <scope>embedded</scope> - <entry> - <entry-id>10</entry-id> - <description>Filter Bogons at edge</description> - <match> - <ip> - <ip-prefix-list>BOGONS_LIST</ip-prefix-list> - </ip> - </match> - <action> - <drop/> - </action> - </entry> - <entry> - <entry-id>20</entry-id> - <description>BGP traffic</description> - <match> - <protocol>tcp</protocol> - <ip> - <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> - </ip> - <port> - <eq>179</eq> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>30</entry-id> - <description>BFD traffic</description> - <match> - <protocol>udp</protocol> - <ip> - <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> - </ip> - <port> - <port-list>CPMF_V4-MICRO_BFD-DST_PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>35</entry-id> - <description>Tunnel-accept</description> - <match> - <protocol-list>EDGE_TUNNEL_PROTOCOLS</protocol-list> - <ip> - <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> - </ip> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>37</entry-id> - <description>SNMP-allow</description> - <match> - <protocol>udp</protocol> - <ip> - <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> - </ip> - <port> - <eq>161</eq> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>40</entry-id> - <description>ICMP_rate_limit</description> - <match> - <protocol>icmp</protocol> - <ip> - <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> - </ip> - </match> - <action> - <accept/> - <rate-limit> - <pir>10000</pir> - </rate-limit> - </action> - </entry> - <entry> - <entry-id>50</entry-id> - <description>UDP-traceroute rate-limit</description> - <match> - <protocol>udp</protocol> - <ip> - <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> - </ip> - <port> - <port-list>CPMF_V4-TRACEROUTE-PORT_RANGE</port-list> - </port> - </match> - <action> - <accept/> - <rate-limit> - <pir>10000</pir> - </rate-limit> - </action> - </entry> - <entry> - <entry-id>60</entry-id> - <description>CORE-/configure filter</description> - <match> - <ip> - <ip-prefix-list>GEANT_CORE</ip-prefix-list> - </ip> - </match> - <action> - <drop/> - </action> - </entry> - <entry> - <entry-id>70</entry-id> - <description>Spoof /configure filter</description> - <match> - <ip> - <ip-prefix-list>GEANT_VPN_NETWORKS</ip-prefix-list> - </ip> - </match> - <action> - <drop/> - </action> - </entry> - </ip-filter> - <ip-filter> - <filter-name>IP_EDGE_OUT</filter-name> - <scope>embedded</scope> - <entry> - <entry-id>10</entry-id> - <description>Allow Multicast_groups</description> - <match> - <ip> - <ip-prefix-list>MULTICAST_GROUP_RANGES</ip-prefix-list> - </ip> - </match> - <action> - <accept/> - </action> - </entry> - </ip-filter> - <ipv6-filter> - <filter-name>DFN_IN</filter-name> - <default-action>accept</default-action> - <scope>template</scope> - <chain-to-system-filter>false</chain-to-system-filter> - <entry> - <entry-id>100</entry-id> - <description>CUSTOMER Multicastv6 traffic</description> - <match> - <next-header-list>MULTICAST_IPV6_PROTOCOLS</next-header-list> - </match> - <action> - <accept/> - </action> - </entry> - <embed> - <filter> - <name>IP_EDGE_IN</name> - <offset>2000</offset> - </filter> - <flowspec> - <offset>20000</offset> - <router-instance>Base</router-instance> - </flowspec> - </embed> - </ipv6-filter> - <ipv6-filter> - <filter-name>DFN_OUT</filter-name> - <default-action>accept</default-action> - <scope>template</scope> - <chain-to-system-filter>false</chain-to-system-filter> - <embed> - <filter> - <name>IP_EDGE_OUT</name> - <offset>2000</offset> - </filter> - </embed> - </ipv6-filter> - <ipv6-filter> - <filter-name>IP_EDGE_IN</filter-name> - <scope>embedded</scope> - <entry> - <entry-id>10</entry-id> - <description>filter Bogons at edge</description> - <match> - <ip> - <ipv6-prefix-list>BOGONS_LIST6</ipv6-prefix-list> - </ip> - </match> - <action> - <drop/> - </action> - </entry> - <entry> - <entry-id>20</entry-id> - <description>BGP traffic</description> - <match> - <next-header>tcp</next-header> - <ip> - <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> - </ip> - <port> - <eq>179</eq> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>30</entry-id> - <description>BFD traffic</description> - <match> - <next-header>udp</next-header> - <ip> - <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> - </ip> - <port> - <port-list>CPMF_V6-BFD-DST_PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>40</entry-id> - <description>ICMPV6_rate_limit</description> - <match> - <next-header>icmp</next-header> - <ip> - <ipv6-prefix-list>GEANT_ADDRESS_SPACE</ipv6-prefix-list> - </ip> - </match> - <action> - <accept/> - <rate-limit> - <pir>10000</pir> - </rate-limit> - </action> - </entry> - <entry> - <entry-id>50</entry-id> - <description>UDP-traceroute rate-limit</description> - <match> - <next-header>udp</next-header> - <ip> - <ipv6-prefix-list>GEANT_ADDRESS_SPACE</ipv6-prefix-list> - </ip> - <port> - <port-list>CPMF_V6-TRACEROUTE-PORT_RANGE</port-list> - </port> - </match> - <action> - <accept/> - <rate-limit> - <pir>10000</pir> - </rate-limit> - </action> - </entry> - <entry> - <entry-id>60</entry-id> - <description>CORE-/configure filter</description> - <match> - <ip> - <ipv6-prefix-list>GEANT_CORE</ipv6-prefix-list> - </ip> - </match> - <action> - <drop/> - </action> - </entry> - <entry> - <entry-id>70</entry-id> - <description>Spoof /configure filter</description> - <match> - <ip> - <ipv6-prefix-list>GEANT_VPN_NETWORKS</ipv6-prefix-list> - </ip> - </match> - <action> - <drop/> - </action> - </entry> - </ipv6-filter> - <ipv6-filter> - <filter-name>IP_EDGE_OUT</filter-name> - <scope>embedded</scope> - <entry> - <entry-id>10</entry-id> - <description>Allow Multicast_groups</description> - <match> - <ip> - <ipv6-prefix-list>MULTICAST_GROUP_RANGES</ipv6-prefix-list> - </ip> - </match> - <action> - <accept/> - </action> - </entry> - </ipv6-filter> - <md-auto-id> - <filter-id-range> - <start>10</start> - <end>50000</end> - </filter-id-range> - </md-auto-id> - </filter> - <lag> - <lag-name>lag-1</lag-name> - <admin-state>enable</admin-state> - <description>LAG INFRASTRUCTURE BACKBONE $GA-11002 | AMS-AMS</description> - <mode>network</mode> - <lacp> - <mode>active</mode> - <administrative-key>1</administrative-key> - </lacp> - <port> - <port-id>1/1/c2/1</port-id> - </port> - </lag> - <lag> - <lag-name>lag-2</lag-name> - <admin-state>enable</admin-state> - <description>LAG INFRASTRUCTURE BACKBONE $LGA-000111 | AMS-LON</description> - <mode>network</mode> - <lacp> - <mode>active</mode> - <administrative-key>2</administrative-key> - </lacp> - <port> - <port-id>1/1/c5/1</port-id> - </port> - </lag> - <lag> - <lag-name>lag-4</lag-name> - <admin-state>enable</admin-state> - <description>LAG INFRASTRUCTURE BACKBONE $LGA-0001211 | AMS-BIL</description> - <mode>network</mode> - <lacp> - <mode>active</mode> - <administrative-key>4</administrative-key> - </lacp> - <port> - <port-id>1/1/c8/1</port-id> - </port> - </lag> - <lag> - <lag-name>lag-5</lag-name> - <admin-state>enable</admin-state> - <description>LAG INFRASTRUCTURE BACKBONE $LGA-0001551 | AMS-AMS</description> - <mode>network</mode> - <lacp> - <mode>active</mode> - <administrative-key>5</administrative-key> - </lacp> - <port> - <port-id>1/1/c11/1</port-id> - </port> - <port> - <port-id>2/1/c11/1</port-id> - </port> - </lag> - <lag> - <lag-name>lag-6</lag-name> - <admin-state>enable</admin-state> - <description>LAG INFRASTRUCTURE BACKBONE $LGA-000011 | AMS-ATH</description> - <mode>network</mode> - <lacp> - <mode>active</mode> - <administrative-key>6</administrative-key> - </lacp> - <port> - <port-id>2/1/c8/1</port-id> - </port> - </lag> - <lag> - <lag-name>lag-11</lag-name> - <admin-state>enable</admin-state> - <description>SVR_GLOBAL CUST_DFN_AP1 |as680</description> - <encap-type>dot1q</encap-type> - <mode>access</mode> - <port-threshold> - <value>0</value> - <action>down</action> - </port-threshold> - <lacp> - <mode>active</mode> - <administrative-key>11</administrative-key> - </lacp> - <port> - <port-id>1/1/c2/3</port-id> - </port> - </lag> - <log> - <file> - <file-policy-name>20</file-policy-name> - <description>MESSAGES</description> - <rollover>1440</rollover> - <retention>360</retention> - <compact-flash-location> - <primary>cf3</primary> - <backup>cf2</backup> - </compact-flash-location> - </file> - <file> - <file-policy-name>22</file-policy-name> - <description>commit_log</description> - </file> - <filter> - <filter-name>22</filter-name> - <named-entry> - <entry-name>commit_log</entry-name> - <action>forward</action> - <match> - <message> - <eq>commit</eq> - </message> - </match> - </named-entry> - </filter> - <filter> - <filter-name>60</filter-name> - <named-entry> - <entry-name>CHASSIS</entry-name> - <action>forward</action> - <match> - <application> - <eq>chassis</eq> - </application> - </match> - </named-entry> - <named-entry> - <entry-name>PORT</entry-name> - <action>forward</action> - <match> - <application> - <eq>port</eq> - </application> - </match> - </named-entry> - <named-entry> - <entry-name>LAG</entry-name> - <action>forward</action> - <match> - <application> - <eq>lag</eq> - </application> - </match> - </named-entry> - <named-entry> - <entry-name>ISIS</entry-name> - <action>forward</action> - <match> - <application> - <eq>isis</eq> - </application> - </match> - </named-entry> - <named-entry> - <entry-name>BGP</entry-name> - <action>forward</action> - <match> - <application> - <eq>bgp</eq> - </application> - </match> - </named-entry> - </filter> - <filter> - <filter-name>1001</filter-name> - <named-entry> - <entry-name>10</entry-name> - <description>Collect only events of major severity or higher</description> - <action>forward</action> - <match> - <severity> - <gte>major</gte> - </severity> - </match> - </named-entry> - </filter> - <log-id> - <name>1</name> - <admin-state>enable</admin-state> - <description>splunk-par-forwarder.geant.net</description> - <source> - <main>true</main> - <security>true</security> - <change>true</change> - <debug>true</debug> - </source> - <destination> - <syslog>1</syslog> - </destination> - </log-id> - <log-id> - <name>20</name> - <admin-state>enable</admin-state> - <description>MESSAGES</description> - <source> - <main>true</main> - <security>true</security> - <change>true</change> - </source> - <destination> - <file>20</file> - </destination> - </log-id> - <log-id> - <name>22</name> - <admin-state>enable</admin-state> - <description>commit_log</description> - <filter>22</filter> - <source> - <main>true</main> - </source> - <destination> - <file>22</file> - </destination> - </log-id> - <log-id> - <name>60</name> - <admin-state>enable</admin-state> - <description>geantnms</description> - <filter>60</filter> - <source> - <main>true</main> - </source> - <destination> - <snmp> - </snmp> - </destination> - </log-id> - <log-id> - <name>99</name> - <description>Default System Log</description> - <source> - <main>true</main> - </source> - <destination> - <memory> - <max-entries>500</max-entries> - </memory> - </destination> - </log-id> - <log-id> - <name>100</name> - <description>Default Serious Errors Log</description> - <filter>1001</filter> - <source> - <main>true</main> - </source> - <destination> - <memory> - <max-entries>500</max-entries> - </memory> - </destination> - </log-id> - <snmp-trap-group> - <log-name>60</log-name> - <description>geantnms</description> - <trap-target> - <name>prod-noc-alarms01</name> - <address>62.40.114.3</address> - <version>snmpv2c</version> - <notify-community>geantnms</notify-community> - </trap-target> - <trap-target> - <name>prod-noc-alarms02</name> - <address>62.40.114.19</address> - <version>snmpv2c</version> - <notify-community>geantnms</notify-community> - </trap-target> - <trap-target> - <name>prod-noc-alarms03</name> - <address>62.40.114.18</address> - <version>snmpv2c</version> - <notify-community>geantnms</notify-community> - </trap-target> - <trap-target> - <name>prod-noc-alarms04</name> - <address>62.40.114.2</address> - <version>snmpv2c</version> - <notify-community>geantnms</notify-community> - </trap-target> - <trap-target> - <name>test-noc-alarms01</name> - <address>83.97.92.228</address> - <version>snmpv2c</version> - <notify-community>geantnms</notify-community> - </trap-target> - <trap-target> - <name>test-noc-alarms02</name> - <address>83.97.93.53</address> - <version>snmpv2c</version> - <notify-community>geantnms</notify-community> - </trap-target> - <trap-target> - <name>test-noc-alarms03</name> - <address>83.97.94.185</address> - <version>snmpv2c</version> - <notify-community>geantnms</notify-community> - </trap-target> - <trap-target> - <name>uat-noc-alarms01</name> - <address>83.97.93.151</address> - <version>snmpv2c</version> - <notify-community>geantnms</notify-community> - </trap-target> - <trap-target> - <name>uat-noc-alarms02</name> - <address>83.97.94.51</address> - <version>snmpv2c</version> - <notify-community>geantnms</notify-community> - </trap-target> - <trap-target> - <name>uat-noc-alarms03</name> - <address>83.97.94.188</address> - <version>snmpv2c</version> - <notify-community>geantnms</notify-community> - </trap-target> - </snmp-trap-group> - <syslog> - <syslog-name>1</syslog-name> - <description>splunk-par-forwarder.geant.net</description> - <address>83.97.94.11</address> - <facility>local7</facility> - <severity>debug</severity> - <log-prefix>rt0.ams.nl</log-prefix> - </syslog> - </log> - <oam-pm> - <bin-group> - <bin-group-id>2</bin-group-id> - <admin-state>enable</admin-state> - </bin-group> - <session> - <session-name>rt0.ams.nl--rt0.lon.uk</session-name> - <bin-group>2</bin-group> - <ip> - <destination>62.40.119.91</destination> - <destination-udp-port>64364</destination-udp-port> - <source>62.40.119.90</source> - <twamp-light> - <admin-state>enable</admin-state> - <test-id>2</test-id> - <interval>1000</interval> - <pad-size>10</pad-size> - <record-stats>delay-and-loss</record-stats> - </twamp-light> - </ip> - </session> - </oam-pm> - <policy-options> - <as-path> - <name>AS_PRIVATE</name> - <expression>.* (0|64512-65535|4200000000-4294967295) .*</expression> - </as-path> - <as-path> - <name>AS_SELF</name> - <expression>.*(20965|21320).*</expression> - </as-path> - <community> - <name>GEANT_ANYCAST</name> - <member> - <member>20965:2</member> - </member> - </community> - <community> - <name>GEANT_DFN_BLOCK</name> - <member> - <member>64512:680</member> - </member> - </community> - <community> - <name>GEANT_DUMMY</name> - <member> - <member>20965:65000</member> - </member> - </community> - <community> - <name>GEANT_GOOGLE</name> - <member> - <member>20965:15169</member> - </member> - </community> - <community> - <name>GEANT_IXPEERS</name> - <member> - <member>20965:3</member> - </member> - </community> - <community> - <name>GEANT_LOW_PREF</name> - <member> - <member>20965:1</member> - </member> - </community> - <community> - <name>GEANT_NREN_AMS</name> - <member> - <member>21320:64913</member> - </member> - </community> - <community> - <name>GEANT_NRN</name> - <member> - <member>20965:155</member> - </member> - </community> - <community> - <name>GEANT_PEERS</name> - <member> - <member>20965:4</member> - </member> - </community> - <community> - <name>GEANT_PEER_RE</name> - <member> - <member>20965:65530</member> - </member> - </community> - <community> - <name>GEANT_REDIRIS_BLOCK</name> - <member> - <member>64512:766</member> - </member> - </community> - <community> - <name>GEANT_RTBH</name> - <member> - <member>20965:8</member> - </member> - </community> - <community> - <name>IAS_AGGREGATE_ROUTES</name> - <member> - <member>21320:64912</member> - </member> - </community> - <community> - <name>NO_EXPORT</name> - <member> - <member>65535:65281</member> - </member> - </community> - <community> - <name>ORIGIN_VALIDATION_STATE_INVALID</name> - <member> - <member>ext:4300:2</member> - </member> - </community> - <community> - <name>ORIGIN_VALIDATION_STATE_UNKNOWN</name> - <member> - <member>ext:4300:1</member> - </member> - </community> - <community> - <name>ORIGIN_VALIDATION_STATE_VALID</name> - <member> - <member>ext:4300:0</member> - </member> - </community> - <community> - <name>TE_BLOCK_ALL_PUBLIC_PEERS</name> - <member> - <member>64512:65532</member> - </member> - </community> - <community> - <name>TE_BLOCK_PEERS_2</name> - <member> - <member>64512:65533</member> - </member> - </community> - <community> - <name>TE_PRIVATE_COMMUNITIES</name> - <member> - <member>^(64[6-9][0-9][0-9]|65[0-4][0-9][0-9]|655[0-2][0-9]|6553[0-5]).*$</member> - </member> - </community> - <prefix-list> - <name>BOGONS</name> - <prefix> - <ip-prefix>0.0.0.0/0</ip-prefix> - <type>exact</type> - </prefix> - <prefix> - <ip-prefix>0.0.0.0/8</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>10.0.0.0/8</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>100.64.0.0/10</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>127.0.0.0/8</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>169.254.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>172.16.0.0/12</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.0.0.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.0.2.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.168.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>198.18.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>198.51.100.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>203.0.113.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>224.0.0.0/3</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>::/0</ip-prefix> - <type>exact</type> - </prefix> - <prefix> - <ip-prefix>::/96</ip-prefix> - <type>exact</type> - </prefix> - <prefix> - <ip-prefix>::1/128</ip-prefix> - <type>exact</type> - </prefix> - <prefix> - <ip-prefix>::ffff:0.0.0.0/96</ip-prefix> - <type>exact</type> - </prefix> - <prefix> - <ip-prefix>100::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:10::/28</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:db8::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>3ffe::/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>fc00::/7</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>fe80::/10</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>fec0::/10</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>ff00::/8</ip-prefix> - <type>longer</type> - </prefix> - </prefix-list> - <prefix-list> - <name>DFN_PREFIXES</name> - <prefix> - <ip-prefix>5.10.8.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>5.34.224.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>5.34.224.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>5.34.225.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>5.34.226.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>5.34.227.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>5.34.228.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>5.34.229.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>5.34.230.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>5.34.231.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>5.199.176.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>23.128.24.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>27.50.0.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>31.47.80.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>39.0.1.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>45.12.171.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>45.12.192.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>45.90.132.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>62.141.160.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>77.87.224.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>77.87.224.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>77.87.228.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.245.144.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.245.144.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.245.145.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.245.146.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.245.147.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.245.148.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.245.152.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.245.156.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.245.159.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.112.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.112.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.113.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.114.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.115.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.116.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.117.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.118.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.119.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.120.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.121.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.122.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.123.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.124.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.125.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.126.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.20.127.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.192.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.192.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.193.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.194.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.195.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.196.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.197.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.198.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.199.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.200.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.201.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.202.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.203.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.204.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.205.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.206.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.90.207.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>82.195.64.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>83.143.0.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.64.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.65.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.66.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.67.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.69.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.70.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.74.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.75.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.76.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.79.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.80.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.81.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.82.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.83.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.85.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.86.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.88.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.90.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.91.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.92.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.205.95.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.246.64.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>85.208.24.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>85.238.132.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>85.238.136.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>87.77.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>88.133.240.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>88.133.248.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>91.243.70.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.175.144.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.175.146.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.175.152.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.175.153.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.175.154.0/25</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.175.154.128/28</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.128.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.128.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.129.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.130.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.131.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.132.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.133.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.134.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.135.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.136.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.137.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.138.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.139.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.140.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.141.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.142.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.184.143.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>94.125.72.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>103.1.0.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>103.1.4.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>106.0.1.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>109.70.192.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>109.235.224.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>128.7.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>128.140.208.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>128.176.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.13.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.26.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.69.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.70.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.143.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.187.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.206.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.217.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.0.0/17</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.128.0/17</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.128.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.192.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.193.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.194.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.196.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.200.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.202.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.208.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.210.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.212.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.213.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.217.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.233.224.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>129.247.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.73.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.75.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.83.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.133.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.149.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.183.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.193.96.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.193.96.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.193.97.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.193.98.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.193.99.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.193.100.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.193.101.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.193.102.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.193.103.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.255.104.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.159.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.169.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.169.169.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.173.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.244.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.245.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.188.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.220.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.234.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.246.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>132.151.25.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>132.176.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>132.180.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>132.187.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>132.195.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>132.199.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>132.230.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>132.231.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>132.252.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.1.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.2.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.28.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.30.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.34.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.60.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.61.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.76.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.91.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.94.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.95.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.96.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.99.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.99.235.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.100.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.102.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.103.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.104.0.0/14</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.104.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.104.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.105.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.106.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.106.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.107.195.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.107.202.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.107.209.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.107.216.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.107.225.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.107.226.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.108.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.109.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.110.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.130.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.147.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.155.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.169.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.171.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.171.0.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.171.64.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.176.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>134.245.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>136.156.96.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>136.172.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>137.193.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>137.226.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>137.248.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>137.250.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>137.251.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>138.244.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>138.246.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.6.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.11.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.13.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.17.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.18.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.18.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.19.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.20.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.30.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.75.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.174.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.191.184.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>140.181.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.2.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.3.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.4.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.4.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.5.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.5.96.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.7.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.9.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.10.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.12.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.13.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.14.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.16.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.17.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.18.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.18.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.19.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.20.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.21.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.22.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.23.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.24.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.24.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.25.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.27.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.28.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.30.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.31.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.32.0.0/14</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.32.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.33.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.34.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.34.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.35.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.37.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.38.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.38.12.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.39.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.40.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.41.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.42.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.42.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.43.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.44.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.44.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.45.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.46.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.47.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.48.0.0/13</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.48.0.0/14</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.48.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.49.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.50.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.51.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.52.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.53.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.54.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.54.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.55.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.56.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.56.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.57.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.58.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.58.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.59.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.60.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.60.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.61.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.62.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.62.0.0/17</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.63.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.64.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.64.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.65.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.66.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.67.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.68.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.68.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.69.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.70.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.70.128.0/17</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.71.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.72.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.72.0.0/17</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.72.128.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.74.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.74.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.75.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.76.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.78.0.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.78.64.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.78.96.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.78.104.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.78.112.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.78.192.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.79.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.80.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.82.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.82.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.83.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.84.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.87.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.89.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.99.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>141.100.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>143.93.160.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>143.93.244.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>144.41.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>146.107.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>146.140.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>147.142.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>147.172.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>149.201.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>149.201.0.0/17</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>149.201.104.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>149.201.128.0/17</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>149.203.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>149.205.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>149.217.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>149.220.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>149.222.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.0.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.8.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.10.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.11.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.12.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.16.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.19.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.20.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.20.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.21.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.23.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.24.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.28.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.32.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.40.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.44.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.44.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.45.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.46.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.48.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.52.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.54.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.56.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.58.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.60.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.61.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.62.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.64.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.68.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.70.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.72.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.76.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.79.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.80.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.80.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.83.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.87.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.88.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.92.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.92.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.94.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.96.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.96.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.100.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.102.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.103.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.104.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.108.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.109.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.110.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.112.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.114.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.116.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.116.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.119.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.120.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.124.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.124.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.126.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.128.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.133.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.134.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.142.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.142.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.143.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.144.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.146.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.148.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.149.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.150.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.150.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.151.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.152.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.156.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.158.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.160.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.168.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.168.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.169.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.176.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.180.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.180.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.181.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.182.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.184.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.185.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.186.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.188.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.192.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.192.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.196.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.200.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.200.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.202.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.204.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.206.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.207.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.208.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.210.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.212.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.212.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.216.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.219.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.220.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.224.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.224.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.224.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.227.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.228.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.230.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.232.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.234.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.235.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.236.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.240.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.241.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.242.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.244.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.248.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.250.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.253.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.254.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.96.255.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.0.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.0.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.8.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.10.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.11.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.12.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.14.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.15.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.16.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.17.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.19.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.21.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.22.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.22.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.26.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.27.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.28.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.33.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.63.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.64.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.69.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.111.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.113.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.114.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.128.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.130.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.131.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.132.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.133.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.134.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.135.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.136.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.137.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.148.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.166.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.172.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.174.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.176.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.178.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.179.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.180.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.185.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.187.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>153.97.188.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>155.250.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>157.180.228.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>157.180.232.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>160.45.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>161.42.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>163.165.192.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>163.165.193.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>163.165.210.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>163.165.212.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>178.213.77.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.29.188.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.29.189.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.29.190.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.35.208.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.36.44.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.55.124.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.58.36.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.73.20.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.73.20.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.73.22.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.73.22.0/25</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.73.22.128/25</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.73.23.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.75.148.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.75.148.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.75.148.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.75.149.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.75.150.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.75.151.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.80.168.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.86.232.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.86.232.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.86.232.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.86.233.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.86.234.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.86.234.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.86.235.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.94.36.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.94.36.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.94.37.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.94.38.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.94.39.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.118.144.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.134.84.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.149.212.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.151.152.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.174.4.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.174.4.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.193.144.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.199.216.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.219.244.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.229.244.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.231.132.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.237.152.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.237.153.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.237.154.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.237.155.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.240.116.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.1.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.32.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.32.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.32.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.33.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.34.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.35.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.36.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.36.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.37.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.38.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.39.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.40.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.40.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.41.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.42.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.43.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.44.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.44.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.45.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.46.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.74.47.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.232.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.232.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.232.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.232.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.233.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.234.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.234.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.235.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.236.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.236.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.236.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.237.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.238.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.238.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>188.95.239.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.12.81.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.26.174.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.26.176.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.26.192.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.63.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.64.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.66.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.68.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.72.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.149.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.150.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.151.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.152.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.153.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.35.229.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.41.227.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.42.63.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.42.64.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.42.143.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.5.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.6.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.7.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.8.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.9.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.10.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.11.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.12.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.13.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.14.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.15.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.16.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.17.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.18.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.19.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.20.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.22.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.23.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.24.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.25.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.26.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.27.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.28.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.29.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.30.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.32.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.36.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.37.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.40.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.81.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.82.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.84.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.88.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.44.90.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.48.107.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.52.0.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.52.32.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.52.48.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.52.50.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.53.103.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.54.34.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.54.41.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.54.42.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.54.49.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.54.60.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.55.188.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.55.197.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.55.244.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.67.189.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.67.200.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.67.208.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.67.218.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.68.165.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.68.166.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.68.168.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.68.211.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.68.212.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.68.254.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.73.34.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.145.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.146.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.148.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.154.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.157.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.170.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.172.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.176.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.241.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.245.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.246.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.76.248.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.82.241.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.88.97.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.88.108.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.146.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.148.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.149.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.150.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.152.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.154.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.156.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.157.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.158.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.160.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.161.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.162.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.164.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.164.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.165.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.166.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.167.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.168.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.169.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.170.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.171.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.172.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.172.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.173.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.174.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.174.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.175.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.102.176.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.107.235.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.107.236.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.23.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.24.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.26.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.30.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.32.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.32.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.33.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.34.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.35.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.36.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.40.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.44.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.45.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.46.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.48.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.51.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.52.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.52.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.54.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.64.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.67.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.68.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.69.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.70.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.71.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.108.72.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.13.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.19.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.27.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.31.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.44.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.48.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.76.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.101.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.115.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.116.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.134.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.135.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.175.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.177.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.202.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.109.234.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.25.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.26.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.28.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.237.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.239.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.240.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.243.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.244.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.245.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.246.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.248.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.250.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.251.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.253.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.124.254.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.1.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.2.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.7.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.8.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.15.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.16.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.18.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.23.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.26.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.28.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.28.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.30.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.31.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.129.51.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.160.142.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.166.56.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.16.4.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.16.112.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.16.168.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.16.176.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.17.8.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.17.8.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.17.9.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.17.10.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.17.11.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.17.22.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.17.232.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.17.236.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.17.240.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.17.240.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.32.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.32.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.48.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.64.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.71.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.72.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.74.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.76.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.78.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.79.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.112.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.113.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.22.114.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.23.168.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.23.248.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.23.254.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.24.80.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.24.128.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.25.16.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.25.32.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.30.3.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.30.18.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.30.80.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.30.80.0/25</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.30.80.128/25</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.30.112.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.43.29.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.100.227.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.102.25.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.104.174.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.108.176.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.149.8.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.164.246.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.174.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.0.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.9.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.12.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.13.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.16.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.32.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.64.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.129.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.130.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.132.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.136.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.144.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.152.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.154.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.156.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.160.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.165.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.166.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.168.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.176.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.196.192.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.0.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.4.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.8.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.20.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.28.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.32.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.64.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.68.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.70.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.80.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.85.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.86.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.94.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.112.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.120.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.130.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.132.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.136.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.149.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.152.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.157.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.160.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.160.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.168.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.180.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.200.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.212.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.197.224.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.13.135.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.15.138.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.15.139.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.26.188.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.26.188.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.26.190.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.35.108.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.39.180.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.49.61.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.76.43.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.76.223.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.76.232.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.76.234.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.94.0.0/15</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.113.96.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.113.208.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.153.219.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.187.160.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.187.162.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.12.38.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.13.40.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.37.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.39.222.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.60.186.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.72.96.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.74.160.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.88.209.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.248.67.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.44.192.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.32.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.32.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.33.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.34.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.35.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.36.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.37.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.38.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.39.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.40.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.41.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.42.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.43.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.44.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.45.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.46.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.47.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.48.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.49.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.50.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.51.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.52.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.53.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.54.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.55.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.56.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.57.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.58.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.59.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.60.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.61.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.62.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.101.63.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.201.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.237.168.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>213.152.96.0/19</ip-prefix> - <type>longer</type> - </prefix> - </prefix-list> - <prefix-list> - <name>DFN_PREFIXES_V6</name> - <prefix> - <ip-prefix>2001:638::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:638:30d::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:678:540::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:678:da0::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:678:da4::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:678:da8::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:678:dac::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:134::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:34c::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:61c::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:6c4::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:a20::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:1364::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:1b60::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:2184::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:2414::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:295c::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:2acc::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7c0::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7c0::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7c0:2310::/44</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ee00::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ee01::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ee02::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ee03::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ee04::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ee05::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ef00::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ef01::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ef02::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ef03::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ef04::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ef05::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fb01:100::/56</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fb01:200::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fd02::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fd05::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe00::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe01::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe02::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe03::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe04::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe05::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe06::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe07::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe0a::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe0b::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe0c::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe0d::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe0e::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe0f::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe10::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe12::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe13::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe14::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe15::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe16::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe17::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe18::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe19::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:fe20::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff00::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff01::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff02::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff03::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff04::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff05::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff06::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff07::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff0a::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff0b::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff0c::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff0d::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff0e::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff0f::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff10::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff12::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff13::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff14::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff15::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff16::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff17::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff18::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff19::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7fb:ff20::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:a38::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:41b8::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:4ca0::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:4ca0::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:4cf0::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:4cf8::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:1398::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:1398::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:139b::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:139b:ffff::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:139c::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:4700::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:4700:dead::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:5ba0::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:8a60::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:a200::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a01:a460::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a01:a780::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a02:778::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a02:1318::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a02:c6a0::/30</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a02:d480::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a02:d480:240::/42</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a02:d480:700::/42</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a02:d600::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:80::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:4b20::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:4b20::/30</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:4b20::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:4b21::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:4b22::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:4b27:d000::/36</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:63c0::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:6880::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:2c10::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:2c14::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:3410::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:3810::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:3824::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4404::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4410::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4414::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4420::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4424::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4480::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4484::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4810::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4814::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4c80::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:4c84::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:5460::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:5464::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:5470::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:db80:5474::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a04:dfc0::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a05:3e00::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a05:3e00::/30</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a05:3e04::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a05:3e05::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a05:3e06::/31</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a05:d880::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a05:d880:1::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a05:d880:2::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a05:d880:3::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a05:d880:4::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a06:93c0::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a06:93c0::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a06:93c0:1::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a06:93c0:2::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a06:93c0:3::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a06:93c1:129::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a06:ec00::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a09:1480::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a09:1480::/40</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a09:1480:100::/40</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a09:80c0::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0a:6200::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0a:a3c0::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0a:a3c0::/44</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0b:7900::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0b:f040::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0c:7500::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0d:de00::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0e:3c0::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0e:bb00::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a12:e140::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a13:dd80::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a13:df80:1340::/44</ip-prefix> - <type>longer</type> - </prefix> - </prefix-list> - <prefix-list> - <name>GEANT_ANYCAST</name> - <prefix> - <ip-prefix>192.33.14.0/24</ip-prefix> - <type>exact</type> - </prefix> - <prefix> - <ip-prefix>192.58.128.0/24</ip-prefix> - <type>exact</type> - </prefix> - <prefix> - <ip-prefix>194.0.1.0/24</ip-prefix> - <type>exact</type> - </prefix> - <prefix> - <ip-prefix>194.0.2.0/24</ip-prefix> - <type>exact</type> - </prefix> - <prefix> - <ip-prefix>2001:678:4::/48</ip-prefix> - <type>exact</type> - </prefix> - <prefix> - <ip-prefix>2001:678:5::/48</ip-prefix> - <type>exact</type> - </prefix> - </prefix-list> - <prefix-list> - <name>IX_PREFIXES</name> - <prefix> - <ip-prefix>80.81.192.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.249.208.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>91.210.16.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.1.47.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.1.192.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.6.36.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.65.185.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.188.137.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.203.0.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.66.224.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.29.66.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:1::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:4::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:b:100::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:14::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:18::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:1c:24a::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:30::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:35::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:36::/64</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:a0::/64</ip-prefix> - <type>longer</type> - </prefix> - </prefix-list> - <prefix-list> - <name>LHCONE_PTP_ALLOW_EXACT</name> - <prefix> - <ip-prefix>62.40.126.0/24</ip-prefix> - <type>exact</type> - </prefix> - </prefix-list> - <prefix-list> - <name>PTP_ROUTES_DENY_SPECIFIC</name> - <prefix> - <ip-prefix>62.40.103.0/25</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>62.40.126.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:798:111:1::/64</ip-prefix> - <type>longer</type> - </prefix> - </prefix-list> - <prefix-list> - <name>REDIRIS_PREFIXES</name> - <prefix> - <ip-prefix>31.3.112.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>45.93.208.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>45.93.208.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>45.93.210.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>62.204.192.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>74.116.176.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>74.116.176.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>74.116.178.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>74.116.179.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.73.144.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.73.144.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.73.152.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.73.154.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.73.156.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>80.73.159.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>81.89.32.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.88.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.89.0.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>84.89.128.0/17</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>85.119.192.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>85.119.192.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>85.119.196.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>91.208.95.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>91.213.30.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>91.216.12.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>91.230.250.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.188.48.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>93.188.52.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>130.206.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.0.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.1.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.2.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.4.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.8.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.16.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.32.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.32.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.43.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.48.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.50.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.53.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.54.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.56.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.60.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.61.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.63.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.67.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.72.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.75.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.79.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.80.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.81.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.82.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.82.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.83.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.86.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.92.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.95.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.96.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.102.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.103.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.104.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.105.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.106.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.106.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.108.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.110.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.112.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.116.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.117.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.118.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.123.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.124.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.124.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.126.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.128.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.133.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.135.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.136.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.137.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.138.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.139.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.141.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.143.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.144.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.145.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.146.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.147.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.148.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.149.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.151.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.152.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.154.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.160.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.161.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.162.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.163.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.164.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.166.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.167.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.168.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.168.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.169.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.170.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.171.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.173.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.174.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.176.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.184.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.186.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.188.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.190.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.192.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.194.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.195.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.196.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.198.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.199.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.201.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.202.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.203.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.204.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.205.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.206.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.207.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.208.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.209.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.210.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.213.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.214.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.215.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.216.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.217.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.218.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.220.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.224.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.226.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.228.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.230.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.232.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.233.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.234.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.235.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.237.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.239.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.243.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.252.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.253.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.254.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>131.176.255.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>138.4.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>138.100.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>139.191.152.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>147.83.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>147.96.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>147.156.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>150.128.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>150.214.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>150.244.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>155.54.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>155.210.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>156.35.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>157.88.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>158.42.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>158.49.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>158.99.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>158.109.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>158.227.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>159.237.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>161.67.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>161.72.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>161.111.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>161.116.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>163.117.0.0/16</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>176.12.80.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>176.12.80.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>176.12.80.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>176.12.82.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>176.12.84.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>176.12.86.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>178.255.104.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.12.104.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.73.172.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.73.173.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.73.174.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.73.175.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.132.136.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.132.136.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.132.138.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.179.104.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.190.240.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.197.88.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.197.244.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.205.148.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.209.100.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.209.101.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>185.209.102.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.94.163.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.101.161.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.101.162.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.101.163.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.101.164.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.101.168.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.106.252.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.147.251.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.201.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.202.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.204.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.208.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.209.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.210.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.211.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.212.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.213.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.214.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.148.215.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.171.1.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.171.2.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.171.3.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.171.4.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.171.5.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.187.16.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.187.17.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.187.18.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.187.19.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.187.20.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.187.21.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.187.22.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.187.23.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.187.24.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>192.243.16.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.36.174.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.109.172.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.144.0.0/14</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.203.200.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>193.242.98.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.0.1.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.0.2.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.0.33.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.0.34.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.69.254.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.180.184.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>194.180.187.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.10.201.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.57.163.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.57.169.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.64.186.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.66.150.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.66.151.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.76.204.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.234.59.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.235.5.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.254.148.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>195.254.149.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>198.32.64.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>199.6.5.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.0.0/18</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.64.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.96.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.100.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.101.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.102.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.103.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.104.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.105.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.106.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.107.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.108.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.109.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.110.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.111.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.112.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.113.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.114.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.116.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.118.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.119.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.120.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.121.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.122.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.123.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.124.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.124.128/25</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.125.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.126.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.127.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>212.128.128.0/17</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>213.73.32.0/19</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.24.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.24.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.24.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.25.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.26.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.26.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.26.0/25</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.26.0/26</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.26.128/25</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.26.128/26</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.9.27.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.16.0/20</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.16.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.17.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.18.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.19.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.20.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.24.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.24.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.24.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.25.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.26.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.27.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.28.0/22</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.28.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.29.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.30.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.12.31.0/24</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.71.16.0/21</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.71.24.0/23</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>217.75.241.0/24</ip-prefix> - <type>longer</type> - </prefix> - </prefix-list> - <prefix-list> - <name>REDIRIS_PREFIXES_V6</name> - <prefix> - <ip-prefix>2001:678:4::/47</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:678:4::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:678:5::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:678:40::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:678:44::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:678:508::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:1148::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:137c::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:67c:21cc::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:720::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:7f8:2a::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2001:40b0::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2620:7d:e000::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:93c0::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a00:9ac0::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a01:250::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a01:250:f000::/36</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a01:250:f000::/40</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a01:250:f800::/40</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a01:250:ff00::/40</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a01:4a80::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a02:2cc0::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a02:ad80::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:100::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:300::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:400::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:401::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:410::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:411::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:412::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:420::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:421::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:422::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:423::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:424::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:430::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:440::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:441::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:450::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:451::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:452::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:453::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:454::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:455::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:460::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:461::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:462::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:463::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:464::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:470::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:471::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:472::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:473::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:474::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:475::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:480::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:481::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:482::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:483::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:490::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:491::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:492::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:4a0::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:4a1::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:4a2::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:4a3::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:4b1::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:44a0:4b2::/48</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a03:a320::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a07:d000::/27</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a07:d000::/29</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a07:d038::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0a:8480::/32</ip-prefix> - <type>longer</type> - </prefix> - <prefix> - <ip-prefix>2a0e:28c0::/29</ip-prefix> - <type>longer</type> - </prefix> - </prefix-list> - <prefix-list> - <name>REJECT_SMALL_PREFIXES_V4</name> - <prefix> - <ip-prefix>0.0.0.0/0</ip-prefix> - <type>range</type> - <start-length>28</start-length> - <end-length>32</end-length> - </prefix> - </prefix-list> - <prefix-list> - <name>REJECT_SMALL_PREFIXES_V6</name> - <prefix> - <ip-prefix>::/0</ip-prefix> - <type>range</type> - <start-length>64</start-length> - <end-length>128</end-length> - </prefix> - </prefix-list> - <prefix-list> - <name>RTBH_RANGES_V4</name> - <prefix> - <ip-prefix>0.0.0.0/0</ip-prefix> - <type>range</type> - <start-length>32</start-length> - <end-length>32</end-length> - </prefix> - </prefix-list> - <prefix-list> - <name>RTBH_RANGES_V6</name> - <prefix> - <ip-prefix>::/0</ip-prefix> - <type>range</type> - <start-length>128</start-length> - <end-length>128</end-length> - </prefix> - </prefix-list> - <policy-statement> - <name>BOGONS</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>BOGONS</entry-name> - <from> - <prefix-list>BOGONS</prefix-list> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>IX_PREFIXES</entry-name> - <from> - <prefix-list>IX_PREFIXES</prefix-list> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>AS_PATH_LENGTH_LIMIT</entry-name> - <from> - <as-path> - <length> - <value>41</value> - </length> - </as-path> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>COMMUNITY_LIMIT</entry-name> - <from> - <community> - <count> - <value>100</value> - <qualifier>or-higher</qualifier> - </count> - </community> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_AS_SELF_REJECT</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>AS_SELF</entry-name> - <from> - <as-path> - <name>AS_SELF</name> - </as-path> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_DENY_ALL</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>PS_DENY_ALL</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_FROM_DFN_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>RTBH_COMMUNITY</entry-name> - <from> - <prefix-list>RTBH_RANGES_V4</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - </from> - <action> - <action-type>next-entry</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>RTBH</entry-name> - <from> - <prefix-list>DFN_PREFIXES</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <local-preference>200</local-preference> - <next-hop>192.0.2.101</next-hop> - <community> - <add>GEANT_DUMMY</add> - <add>NO_EXPORT</add> - <add>TE_BLOCK_PEERS_2</add> - <add>TE_BLOCK_ALL_PUBLIC_PEERS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>ANYCAST_PREFIXES</entry-name> - <from> - <prefix-list>GEANT_ANYCAST</prefix-list> - <community> - <name>GEANT_ANYCAST</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_ANYCAST</add> - <add>GEANT_NREN_AMS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>REJECT_SMALL_PREFIXES</entry-name> - <from> - <prefix-list>REJECT_SMALL_PREFIXES_V4</prefix-list> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>FROM_GEANTIP_NREN_PEER_ACCEPT</entry-name> - <from> - <prefix-list>DFN_PREFIXES</prefix-list> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_NRN</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACTION</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>FROM_IAS_DFN_NREN_ACCEPT</entry-name> - <from> - <prefix-list>DFN_PREFIXES</prefix-list> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_NRN</add> - <add>GEANT_NREN_AMS</add> - </community> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_FROM_DFN_NREN_V6</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>RTBH_COMMUNITY</entry-name> - <from> - <prefix-list>RTBH_RANGES_V6</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - </from> - <action> - <action-type>next-entry</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>RTBH</entry-name> - <from> - <prefix-list>DFN_PREFIXES_V6</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <local-preference>200</local-preference> - <next-hop>100::</next-hop> - <community> - <add>GEANT_DUMMY</add> - <add>NO_EXPORT</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>ANYCAST_PREFIXES</entry-name> - <from> - <prefix-list>GEANT_ANYCAST</prefix-list> - <community> - <name>GEANT_ANYCAST</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_ANYCAST</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>REJECT_SMALL_PREFIXES</entry-name> - <from> - <prefix-list>REJECT_SMALL_PREFIXES_V6</prefix-list> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>FROM_GEANTIP_NREN_PEER_ACCEPT</entry-name> - <from> - <prefix-list>DFN_PREFIXES_V6</prefix-list> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_NRN</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACTION</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_FROM_DFN_V6_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>RTBH_COMMUNITY</entry-name> - <from> - <prefix-list>RTBH_RANGES_V6</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - </from> - <action> - <action-type>next-entry</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>RTBH</entry-name> - <from> - <prefix-list>DFN_PREFIXES_V6</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <local-preference>200</local-preference> - <next-hop>100::</next-hop> - <community> - <add>GEANT_DUMMY</add> - <add>NO_EXPORT</add> - <add>TE_BLOCK_PEERS_2</add> - <add>TE_BLOCK_ALL_PUBLIC_PEERS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>ANYCAST_PREFIXES</entry-name> - <from> - <prefix-list>GEANT_ANYCAST</prefix-list> - <community> - <name>GEANT_ANYCAST</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_ANYCAST</add> - <add>GEANT_NREN_AMS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>REJECT_SMALL_PREFIXES</entry-name> - <from> - <prefix-list>REJECT_SMALL_PREFIXES_V6</prefix-list> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>FROM_IAS_DFN_NREN_ACCEPT</entry-name> - <from> - <prefix-list>DFN_PREFIXES_V6</prefix-list> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_NRN</add> - <add>GEANT_NREN_AMS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACTION</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_FROM_LHCONE_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>ADD_COMM</entry-name> - <action> - <action-type>accept</action-type> - <community> - <add>GEANT_NRN</add> - </community> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_FROM_REDIRIS_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>RTBH_COMMUNITY</entry-name> - <from> - <prefix-list>RTBH_RANGES_V4</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - </from> - <action> - <action-type>next-entry</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>RTBH</entry-name> - <from> - <prefix-list>REDIRIS_PREFIXES</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <local-preference>200</local-preference> - <next-hop>192.0.2.101</next-hop> - <community> - <add>GEANT_DUMMY</add> - <add>NO_EXPORT</add> - <add>TE_BLOCK_PEERS_2</add> - <add>TE_BLOCK_ALL_PUBLIC_PEERS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>ANYCAST_PREFIXES</entry-name> - <from> - <prefix-list>GEANT_ANYCAST</prefix-list> - <community> - <name>GEANT_ANYCAST</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_ANYCAST</add> - <add>GEANT_NREN_AMS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>REJECT_SMALL_PREFIXES</entry-name> - <from> - <prefix-list>REJECT_SMALL_PREFIXES_V4</prefix-list> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>FROM_IAS_REDIRIS_NREN_ACCEPT</entry-name> - <from> - <prefix-list>REDIRIS_PREFIXES</prefix-list> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_NRN</add> - <add>GEANT_NREN_AMS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACTION</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_FROM_REDIRIS_V6_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>RTBH_COMMUNITY</entry-name> - <from> - <prefix-list>RTBH_RANGES_V6</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - </from> - <action> - <action-type>next-entry</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>RTBH</entry-name> - <from> - <prefix-list>REDIRIS_PREFIXES_V6</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <local-preference>200</local-preference> - <next-hop>100::</next-hop> - <community> - <add>GEANT_DUMMY</add> - <add>NO_EXPORT</add> - <add>TE_BLOCK_PEERS_2</add> - <add>TE_BLOCK_ALL_PUBLIC_PEERS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>ANYCAST_PREFIXES</entry-name> - <from> - <prefix-list>GEANT_ANYCAST</prefix-list> - <community> - <name>GEANT_ANYCAST</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_ANYCAST</add> - <add>GEANT_NREN_AMS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>REJECT_SMALL_PREFIXES</entry-name> - <from> - <prefix-list>REJECT_SMALL_PREFIXES_V6</prefix-list> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>FROM_IAS_REDIRIS_NREN_ACCEPT</entry-name> - <from> - <prefix-list>REDIRIS_PREFIXES_V6</prefix-list> - </from> - <action> - <action-type>accept</action-type> - <local-preference>150</local-preference> - <community> - <add>GEANT_NRN</add> - <add>GEANT_NREN_AMS</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACTION</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_IAS_TO_DFN_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>EXCEPTION_BLOCK</entry-name> - <from> - <community> - <name>GEANT_DUMMY</name> - </community> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>NREN_BLOCK</entry-name> - <from> - <community> - <name>GEANT_DFN_BLOCK</name> - </community> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_DFN_NREN</entry-name> - <from> - <community> - <name>IAS_AGGREGATE_ROUTES</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_DFN_NREN_IXPEERS</entry-name> - <from> - <community> - <name>GEANT_IXPEERS</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_DFN_NREN_PEERS</entry-name> - <from> - <community> - <name>GEANT_PEERS</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_DFN_NREN_GOOGLE</entry-name> - <from> - <community> - <name>GEANT_GOOGLE</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACTION</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_IAS_TO_DFN_V6_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>EXCEPTION_BLOCK</entry-name> - <from> - <community> - <name>GEANT_DUMMY</name> - </community> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>NREN_BLOCK</entry-name> - <from> - <community> - <name>GEANT_DFN_BLOCK</name> - </community> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_DFN_NREN</entry-name> - <from> - <community> - <name>IAS_AGGREGATE_ROUTES</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_DFN_NREN_IXPEERS</entry-name> - <from> - <community> - <name>GEANT_IXPEERS</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_DFN_NREN_PEERS</entry-name> - <from> - <community> - <name>GEANT_PEERS</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_DFN_NREN_GOOGLE</entry-name> - <from> - <community> - <name>GEANT_GOOGLE</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACTION</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_IAS_TO_REDIRIS_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>EXCEPTION_BLOCK</entry-name> - <from> - <community> - <name>GEANT_DUMMY</name> - </community> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>NREN_BLOCK</entry-name> - <from> - <community> - <name>GEANT_REDIRIS_BLOCK</name> - </community> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_REDIRIS_NREN</entry-name> - <from> - <community> - <name>IAS_AGGREGATE_ROUTES</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_REDIRIS_NREN_IXPEERS</entry-name> - <from> - <community> - <name>GEANT_IXPEERS</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_REDIRIS_NREN_PEERS</entry-name> - <from> - <community> - <name>GEANT_PEERS</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_REDIRIS_NREN_GOOGLE</entry-name> - <from> - <community> - <name>GEANT_GOOGLE</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACTION</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_IAS_TO_REDIRIS_V6_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>EXCEPTION_BLOCK</entry-name> - <from> - <community> - <name>GEANT_DUMMY</name> - </community> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>NREN_BLOCK</entry-name> - <from> - <community> - <name>GEANT_REDIRIS_BLOCK</name> - </community> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_REDIRIS_NREN</entry-name> - <from> - <community> - <name>IAS_AGGREGATE_ROUTES</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_REDIRIS_NREN_IXPEERS</entry-name> - <from> - <community> - <name>GEANT_IXPEERS</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_REDIRIS_NREN_PEERS</entry-name> - <from> - <community> - <name>GEANT_PEERS</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>IAS_TO_REDIRIS_NREN_GOOGLE</entry-name> - <from> - <community> - <name>GEANT_GOOGLE</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACTION</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_PRIVATE_AS_BLOCK</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>BLOCK_PRIVATE_AS</entry-name> - <from> - <as-path> - <name>AS_PRIVATE</name> - </as-path> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_RPKI_IAS_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>RTBH_BYPASS</entry-name> - <from> - <prefix-list>RTBH_RANGES_V4</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>next-policy</action-type> - <origin-validation-state>valid</origin-validation-state> - </action> - </named-entry> - <named-entry> - <entry-name>RTBH_BYPASS_V6</entry-name> - <from> - <prefix-list>RTBH_RANGES_V6</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>next-policy</action-type> - <origin-validation-state>valid</origin-validation-state> - </action> - </named-entry> - <named-entry> - <entry-name>UNKNOWN</entry-name> - <from> - <origin-validation-state>not-found</origin-validation-state> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>next-policy</action-type> - <community> - <add>ORIGIN_VALIDATION_STATE_UNKNOWN</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>VALID</entry-name> - <from> - <origin-validation-state>valid</origin-validation-state> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>next-policy</action-type> - <community> - <add>ORIGIN_VALIDATION_STATE_VALID</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>INVALID</entry-name> - <from> - <origin-validation-state>invalid</origin-validation-state> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>reject</action-type> - <community> - <add>ORIGIN_VALIDATION_STATE_INVALID</add> - </community> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_RPKI_IAS_PEER</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>UNKNOWN</entry-name> - <from> - <origin-validation-state>not-found</origin-validation-state> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>next-policy</action-type> - <community> - <add>ORIGIN_VALIDATION_STATE_UNKNOWN</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>VALID</entry-name> - <from> - <origin-validation-state>valid</origin-validation-state> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>next-policy</action-type> - <community> - <add>ORIGIN_VALIDATION_STATE_VALID</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>INVALID</entry-name> - <from> - <origin-validation-state>invalid</origin-validation-state> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>reject</action-type> - <community> - <add>ORIGIN_VALIDATION_STATE_INVALID</add> - </community> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_RPKI_RE_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>RTBH_BYPASS</entry-name> - <from> - <prefix-list>RTBH_RANGES_V4</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>next-policy</action-type> - <origin-validation-state>valid</origin-validation-state> - </action> - </named-entry> - <named-entry> - <entry-name>RTBH_BYPASS_V6</entry-name> - <from> - <prefix-list>RTBH_RANGES_V6</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>next-policy</action-type> - <origin-validation-state>valid</origin-validation-state> - </action> - </named-entry> - <named-entry> - <entry-name>UNKNOWN</entry-name> - <from> - <origin-validation-state>not-found</origin-validation-state> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>next-policy</action-type> - <community> - <add>ORIGIN_VALIDATION_STATE_UNKNOWN</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>VALID</entry-name> - <from> - <origin-validation-state>valid</origin-validation-state> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>next-policy</action-type> - <community> - <add>ORIGIN_VALIDATION_STATE_VALID</add> - </community> - </action> - </named-entry> - <named-entry> - <entry-name>INVALID</entry-name> - <from> - <origin-validation-state>invalid</origin-validation-state> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>reject</action-type> - <community> - <add>ORIGIN_VALIDATION_STATE_INVALID</add> - </community> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_RPKI_iBGP</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>UNKNOWN</entry-name> - <from> - <community> - <name>ORIGIN_VALIDATION_STATE_UNKNOWN</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <origin-validation-state>not-found</origin-validation-state> - </action> - </named-entry> - <named-entry> - <entry-name>VALID</entry-name> - <from> - <community> - <name>ORIGIN_VALIDATION_STATE_VALID</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <origin-validation-state>valid</origin-validation-state> - </action> - </named-entry> - <named-entry> - <entry-name>INVALID</entry-name> - <from> - <community> - <name>ORIGIN_VALIDATION_STATE_INVALID</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <origin-validation-state>invalid</origin-validation-state> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_RTBH_iBGP</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>RTBH_V4</entry-name> - <from> - <prefix-list>RTBH_RANGES_V4</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>accept</action-type> - <next-hop>192.0.2.101</next-hop> - </action> - </named-entry> - <named-entry> - <entry-name>RTBH_V6</entry-name> - <from> - <prefix-list>RTBH_RANGES_V6</prefix-list> - <community> - <name>GEANT_RTBH</name> - </community> - <protocol> - <name>bgp</name> - </protocol> - </from> - <action> - <action-type>accept</action-type> - <next-hop>100::</next-hop> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_TO_DFN_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>EXCEPTION_BLOCK</entry-name> - <from> - <community> - <name>GEANT_DUMMY</name> - </community> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>TO_NREN_BLOCK</entry-name> - <from> - <community> - <name>GEANT_DFN_BLOCK</name> - </community> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>TO_EXAMPLE_PEER</entry-name> - <from> - <community> - <name>GEANT_PEER_RE</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>TO_EXAMPLE_PEER_2ND_MATCH</entry-name> - <from> - <community> - <name>GEANT_NRN</name> - </community> - </from> - <action> - <action-type>accept</action-type> - <bgp-med> - <set>igp</set> - </bgp-med> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACTION</entry-name> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - </policy-statement> - <policy-statement> - <name>PS_TO_LHCONE_NREN</name> - <entry-type>named</entry-type> - <named-entry> - <entry-name>PTP_ROUTES</entry-name> - <from> - <prefix-list>LHCONE_PTP_ALLOW_EXACT</prefix-list> - </from> - <action> - <action-type>accept</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>PTP_ROUTES_DENY_SPECIFIC</entry-name> - <from> - <prefix-list>PTP_ROUTES_DENY_SPECIFIC</prefix-list> - </from> - <action> - <action-type>reject</action-type> - </action> - </named-entry> - <named-entry> - <entry-name>END_ACCEPT</entry-name> - <action> - <action-type>accept</action-type> - </action> - </named-entry> - </policy-statement> - </policy-options> - <port> - <port-id>1/1/c1</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c2</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c2/1</port-id> - <admin-state>enable</admin-state> - <description>PHY INFRASTRUCTURE BACKBONE P_lag-1 | AMS-AMS | PHY AMS-AMS 10G_1</description> - <ethernet> - <mode>network</mode> - <mtu>9212</mtu> - <lldp> - <dest-mac> - <mac-type>nearest-bridge</mac-type> - <receive>true</receive> - <transmit>true</transmit> - <tx-tlvs> - <port-desc>true</port-desc> - <sys-name>true</sys-name> - <sys-cap>true</sys-cap> - </tx-tlvs> - </dest-mac> - </lldp> - </ethernet> - </port> - <port> - <port-id>1/1/c2/3</port-id> - <admin-state>enable</admin-state> - <description>PHY_DFN_LAB_AP</description> - <ethernet> - <mode>access</mode> - <encap-type>dot1q</encap-type> - <mtu>9192</mtu> - <lldp> - <dest-mac> - <mac-type>nearest-bridge</mac-type> - <receive>true</receive> - <transmit>true</transmit> - <tx-tlvs> - <port-desc>true</port-desc> - <sys-name>true</sys-name> - <sys-cap>true</sys-cap> - </tx-tlvs> - </dest-mac> - </lldp> - </ethernet> - </port> - <port> - <port-id>1/1/c2/4</port-id> - <admin-state>enable</admin-state> - <ethernet> - <lldp> - <dest-mac> - <mac-type>nearest-bridge</mac-type> - <receive>true</receive> - <transmit>true</transmit> - <tx-tlvs> - <port-desc>true</port-desc> - <sys-name>true</sys-name> - <sys-cap>true</sys-cap> - </tx-tlvs> - </dest-mac> - </lldp> - </ethernet> - </port> - <port> - <port-id>1/1/c4</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c5</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c5/1</port-id> - <admin-state>enable</admin-state> - <description>PHY INFRASTRUCTURE BACKBONE P_lag-2 | AMS-LON | to-rt0.lon-1/1/c5/1</description> - <ethernet> - <mode>network</mode> - <mtu>9212</mtu> - <lldp> - <dest-mac> - <mac-type>nearest-bridge</mac-type> - <receive>true</receive> - <transmit>true</transmit> - <tx-tlvs> - <port-desc>true</port-desc> - <sys-name>true</sys-name> - <sys-cap>true</sys-cap> - </tx-tlvs> - </dest-mac> - </lldp> - </ethernet> - </port> - <port> - <port-id>1/1/c7</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c8</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-100g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c8/1</port-id> - <admin-state>enable</admin-state> - <description>PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-BIL | to-rt1.bill-et-0/0/0</description> - <ethernet> - <mode>network</mode> - <mtu>9212</mtu> - <lldp> - <dest-mac> - <mac-type>nearest-bridge</mac-type> - <receive>true</receive> - <transmit>true</transmit> - <tx-tlvs> - <port-desc>true</port-desc> - <sys-name>true</sys-name> - <sys-cap>true</sys-cap> - </tx-tlvs> - </dest-mac> - </lldp> - </ethernet> - </port> - <port> - <port-id>1/1/c9</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c10</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c11</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-100g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c11/1</port-id> - <admin-state>enable</admin-state> - <description>PHY INFRASTRUCTURE BACKBONE P_lag-5 | AMS-AMS | to-rt1.ams-et0/0/1</description> - <ethernet> - <mode>network</mode> - <mtu>9212</mtu> - <lldp> - <dest-mac> - <mac-type>nearest-bridge</mac-type> - <receive>true</receive> - <transmit>true</transmit> - <tx-tlvs> - <port-desc>true</port-desc> - <sys-name>true</sys-name> - <sys-cap>true</sys-cap> - </tx-tlvs> - </dest-mac> - </lldp> - </ethernet> - </port> - <port> - <port-id>1/1/c12</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c13</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c14</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c16</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c17</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c19</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c20</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c22</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c23</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c25</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c26</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c27</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c28</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c29</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c30</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c31</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c32</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c34</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>1/1/c35</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> +<data> + <configure> + <card> + <slot-number>1</slot-number> + <admin-state>enable</admin-state> + <card-type>xcm2-7s</card-type> + <mda> + <mda-slot>1</mda-slot> + <admin-state>enable</admin-state> + <mda-type>x2-s36-800g-qsfpdd-12.0t</mda-type> + <level>cr9600g</level> + <xconnect> + <mac> + <mac-id>1</mac-id> + <description>pxc-cross-connect</description> + <loopback> + <loopback-id>1</loopback-id> + <description>loopback-pxc1</description> + <bandwidth>25</bandwidth> + </loopback> + </mac> + </xconnect> + </mda> + <fp> + <fp-number>1</fp-number> + <ingress> + <policy-accounting> + <policers>1000</policers> + <classes>10000</classes> + </policy-accounting> + </ingress> + </fp> + <fp> + <fp-number>2</fp-number> + <ingress> + <policy-accounting> + <policers>1000</policers> + <classes>10000</classes> + </policy-accounting> + </ingress> + </fp> + <fp> + <fp-number>3</fp-number> + <ingress> + <policy-accounting> + <policers>1000</policers> + <classes>10000</classes> + </policy-accounting> + </ingress> + </fp> + <fp> + <fp-number>4</fp-number> + <ingress> + <policy-accounting> + <policers>1000</policers> + <classes>10000</classes> + </policy-accounting> + </ingress> + </fp> + </card> + <card> + <slot-number>2</slot-number> + <admin-state>enable</admin-state> + <card-type>xcm2-7s</card-type> + <mda> + <mda-slot>1</mda-slot> + <admin-state>enable</admin-state> + <mda-type>x2-s36-800g-qsfpdd-12.0t</mda-type> + <level>cr9600g</level> + <xconnect> + <mac> + <mac-id>2</mac-id> + <description>pxc-cross-connect</description> + <loopback> + <loopback-id>1</loopback-id> + <description>loopback-pxc2</description> + <bandwidth>25</bandwidth> + </loopback> + </mac> + </xconnect> + </mda> + <fp> + <fp-number>1</fp-number> + <ingress> + <policy-accounting> + <policers>1000</policers> + <classes>10000</classes> + </policy-accounting> + </ingress> + </fp> + <fp> + <fp-number>2</fp-number> + <ingress> + <policy-accounting> + <policers>1000</policers> + <classes>10000</classes> + </policy-accounting> + </ingress> + </fp> + <fp> + <fp-number>3</fp-number> + <ingress> + <policy-accounting> + <policers>1000</policers> + <classes>10000</classes> + </policy-accounting> + </ingress> + </fp> + <fp> + <fp-number>4</fp-number> + <ingress> + <policy-accounting> + <policers>1000</policers> + <classes>10000</classes> + </policy-accounting> + </ingress> + </fp> + </card> + <cflowd> + <cache-size>2000000</cache-size> + <enhanced-distribution>true</enhanced-distribution> + <overflow>1</overflow> + <template-retransmit>300</template-retransmit> + <active-flow-timeout>60</active-flow-timeout> + <inactive-flow-timeout>60</inactive-flow-timeout> + <sample-profile> + <profile-id>1</profile-id> + <sample-rate>300</sample-rate> + <metering-process>fp-accelerated</metering-process> + </sample-profile> + <collector> + <ip-address>172.16.100.90</ip-address> + <port>7712</port> + <description>LAB-ONLY-netflow</description> + <template-set>mpls-ip</template-set> + <version>10</version> + </collector> + <collector> + <ip-address>208.76.14.251</ip-address> + <port>20013</port> + <admin-state>enable</admin-state> + <template-set>mpls-ip</template-set> + <version>10</version> + </collector> + </cflowd> + <chassis> + <chassis-class>router</chassis-class> + <chassis-number>1</chassis-number> + <power-shelf> + <power-shelf-id>1</power-shelf-id> + <admin-state>enable</admin-state> + <power-shelf-type>ps-b10-shelf-ac/hv</power-shelf-type> + <power-module> + <power-module-id>1</power-module-id> + <admin-state>enable</admin-state> + <power-module-type>ps-b-ac/hv-6000</power-module-type> + </power-module> + <power-module> + <power-module-id>2</power-module-id> + <admin-state>enable</admin-state> + <power-module-type>ps-b-ac/hv-6000</power-module-type> + </power-module> + <power-module> + <power-module-id>3</power-module-id> + <admin-state>enable</admin-state> + <power-module-type>ps-b-ac/hv-6000</power-module-type> + </power-module> + <power-module> + <power-module-id>4</power-module-id> + <admin-state>enable</admin-state> + <power-module-type>ps-b-ac/hv-6000</power-module-type> + </power-module> + <power-module> + <power-module-id>5</power-module-id> + <admin-state>enable</admin-state> + <power-module-type>ps-b-ac/hv-6000</power-module-type> + </power-module> + <power-module> + <power-module-id>6</power-module-id> + <admin-state>enable</admin-state> + <power-module-type>ps-b-ac/hv-6000</power-module-type> + </power-module> + <power-module> + <power-module-id>7</power-module-id> + <admin-state>enable</admin-state> + <power-module-type>ps-b-ac/hv-6000</power-module-type> + </power-module> + <power-module> + <power-module-id>8</power-module-id> + <admin-state>enable</admin-state> + <power-module-type>ps-b-ac/hv-6000</power-module-type> + </power-module> + <power-module> + <power-module-id>9</power-module-id> + <admin-state>enable</admin-state> + <power-module-type>ps-b-ac/hv-6000</power-module-type> + </power-module> + <power-module> + <power-module-id>10</power-module-id> + <admin-state>enable</admin-state> + <power-module-type>ps-b-ac/hv-6000</power-module-type> + </power-module> + </power-shelf> + </chassis> + <connection-profile> + <vlan> + <connection-profile-id>400</connection-profile-id> + <description>ALLOW_VLANS_421,422 and vlans 501,502</description> + <qtag-range> + <start>421</start> + <end>422</end> + </qtag-range> + <qtag-range> + <start>501</start> + <end>502</end> + </qtag-range> + </vlan> + </connection-profile> + <filter> + <log> + <log-id>102</log-id> + <description>CPM_FW_DROP</description> + <destination> + <syslog> + <name>1</name> + </syslog> + </destination> + </log> + <match-list> + <protocol-list> + <protocol-list-name>EDGE_TUNNEL_PROTOCOLS</protocol-list-name> + <protocol> + <protocol-id>94</protocol-id> + </protocol> + <protocol> + <protocol-id>gre</protocol-id> + </protocol> + </protocol-list> + <protocol-list> + <protocol-list-name>IP_EDGE_IN-TUNNELS-PROTO</protocol-list-name> + <protocol> + <protocol-id>94</protocol-id> + </protocol> + <protocol> + <protocol-id>gre</protocol-id> + </protocol> + </protocol-list> + <protocol-list> + <protocol-list-name>MULTICAST_IPV6_PROTOCOLS</protocol-list-name> + <protocol> + <protocol-id>58</protocol-id> + </protocol> + <protocol> + <protocol-id>pim</protocol-id> + </protocol> + </protocol-list> + <protocol-list> + <protocol-list-name>MULTICAST_PROTOCOLS</protocol-list-name> + <protocol> + <protocol-id>igmp</protocol-id> + </protocol> + <protocol> + <protocol-id>pim</protocol-id> + </protocol> + </protocol-list> + <ip-prefix-list> + <prefix-list-name>BGP_PEERS_BASE</prefix-list-name> + <description>BGP Peers configured under Base instance</description> + <apply-path> + <bgp-peers> + <criterion-index>1</criterion-index> + <group>.*</group> + <neighbor>.*</neighbor> + <router-instance>Base</router-instance> + </bgp-peers> + <bgp-peers> + <criterion-index>2</criterion-index> + <group>.*</group> + <neighbor>.*</neighbor> + <router-instance>IAS</router-instance> + </bgp-peers> + <bgp-peers> + <criterion-index>3</criterion-index> + <group>.*</group> + <neighbor>.*</neighbor> + <router-instance>LHCONE_L3VPN</router-instance> + </bgp-peers> + <bgp-peers> + <criterion-index>4</criterion-index> + <group>.*</group> + <neighbor>.*</neighbor> + <router-instance>COPERNICUS</router-instance> + </bgp-peers> + </apply-path> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>BOGONS_LIST</prefix-list-name> + <description>ipv4 BOGONS</description> + <prefix> + <ip-prefix>0.0.0.0/8</ip-prefix> + </prefix> + <prefix> + <ip-prefix>10.0.0.0/8</ip-prefix> + </prefix> + <prefix> + <ip-prefix>100.64.0.0/10</ip-prefix> + </prefix> + <prefix> + <ip-prefix>127.0.0.0/8</ip-prefix> + </prefix> + <prefix> + <ip-prefix>169.254.0.0/16</ip-prefix> + </prefix> + <prefix> + <ip-prefix>172.16.0.0/12</ip-prefix> + </prefix> + <prefix> + <ip-prefix>192.0.0.0/24</ip-prefix> + </prefix> + <prefix> + <ip-prefix>192.0.2.0/24</ip-prefix> + </prefix> + <prefix> + <ip-prefix>192.168.0.0/16</ip-prefix> + </prefix> + <prefix> + <ip-prefix>198.18.0.0/15</ip-prefix> + </prefix> + <prefix> + <ip-prefix>198.51.100.0/24</ip-prefix> + </prefix> + <prefix> + <ip-prefix>203.0.113.0/24</ip-prefix> + </prefix> + <prefix> + <ip-prefix>224.0.0.0/3</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>COMMUNITY_NTP</prefix-list-name> + <description>Community hosted NTPs</description> + <prefix> + <ip-prefix>192.53.103.108/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>192.87.106.2/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>193.62.22.66/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>193.204.114.233/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>195.113.144.201/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>EUMETSAT_DATA_DFN</prefix-list-name> + <prefix> + <ip-prefix>193.17.9.3/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>193.17.9.5/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>212.201.139.66/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>EXTERNAL_GRE</prefix-list-name> + <description>Placeholder_for_customers_that_require_GRE</description> + <prefix> + <ip-prefix>0.0.0.0/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>EXTERNAL_IGMP</prefix-list-name> + <description>Placeholder_for_customers_that_require_IGMP</description> + <prefix> + <ip-prefix>0.0.0.0/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_ADDRESS_SPACE</prefix-list-name> + <description>GEANT address space for traceroute and rsvp in CPM filters</description> + <prefix> + <ip-prefix>62.40.96.0/19</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_AMT_ANYCAST</prefix-list-name> + <description>AMT anycast IPs</description> + <prefix> + <ip-prefix>62.40.96.44/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_AMT_RELAYS</prefix-list-name> + <description>AMT Relay IPs</description> + <prefix> + <ip-prefix>62.40.96.18/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.96.27/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.96.41/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_BRIAN</prefix-list-name> + <description>Geant Brian hosts</description> + <prefix> + <ip-prefix>83.97.93.52/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.154/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.155/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.245/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.246/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.9/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.10/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.11/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.12/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_CORE</prefix-list-name> + <description>Used_in_IP_EDGE_IN filter</description> + <prefix> + <ip-prefix>62.40.96.0/23</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.98.0/24</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_DASHBOARD</prefix-list-name> + <description>Geant dashboard hosts</description> + <prefix> + <ip-prefix>62.40.114.3/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.114.19/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.151/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.152/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.153/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.204/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.239/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.244/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.248/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.51/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.52/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.97/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.98/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_DC</prefix-list-name> + <description>GEANT DC Space for use in CPM filters</description> + <prefix> + <ip-prefix>62.40.120.134/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.120.136/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.121.121/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.15/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.116/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.129/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.130/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_DC_VRRP</prefix-list-name> + <description>GEANT DC VRRP Space for use in CPM filters</description> + <prefix> + <ip-prefix>224.0.0.18/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_DNS</prefix-list-name> + <description>GEANT DNS SERVERS for use in CPM filters</description> + <prefix> + <ip-prefix>62.40.104.250/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.106.9/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.116.114/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.116.122/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.200/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_GAP</prefix-list-name> + <description>Geant GAP hosts</description> + <prefix> + <ip-prefix>62.40.111.0/24</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.177/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_GAP_GSO_UAT</prefix-list-name> + <description>GAP UAT GSO VMs</description> + <prefix> + <ip-prefix>62.40.111.130/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.185/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.226/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.241/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_IMS</prefix-list-name> + <description>Geant IMS hosts</description> + <prefix> + <ip-prefix>83.97.94.123/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.124/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.125/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.109/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_JUMP_SERVERS</prefix-list-name> + <description>Geant Jump Servers hosts</description> + <prefix> + <ip-prefix>83.97.94.114/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_LIBRENMS</prefix-list-name> + <description>Geant LibreNMS hosts</description> + <prefix> + <ip-prefix>62.40.111.30/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.111.31/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.111.47/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.37/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_LOOKING_GLASS</prefix-list-name> + <description>Geant looking-glass hosts</description> + <prefix> + <ip-prefix>83.97.92.82/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.141/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.39/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.62/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.134/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.135/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.136/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.137/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.138/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.139/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_NE_SERVERS</prefix-list-name> + <description>Geant NE Servers hosts</description> + <prefix> + <ip-prefix>62.40.112.32/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.136/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.182/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_NTP</prefix-list-name> + <description>Geant NTPs</description> + <prefix> + <ip-prefix>62.40.97.11/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.97.12/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.97.14/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.123.21/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.123.23/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.123.103/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_OC_SERVERS</prefix-list-name> + <description>Geant OC Servers hosts</description> + <prefix> + <ip-prefix>83.97.92.61/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.87/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.92/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.99/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.23/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.37/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_OFFICE_NETWORKS</prefix-list-name> + <description>Amsterdam and Cambridge Networks</description> + <prefix> + <ip-prefix>62.40.101.0/24</ip-prefix> + </prefix> + <prefix> + <ip-prefix>195.169.24.128/25</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_RANCID</prefix-list-name> + <description>Geant RANCID hosts</description> + <prefix> + <ip-prefix>83.97.92.216/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.217/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.220/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_ROUTERS</prefix-list-name> + <description>GEANT router-loopbacks and system address for use in CPM filters</description> + <prefix> + <ip-prefix>62.40.96.0/23</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.119.0/27</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_SNMP</prefix-list-name> + <description>GEANT SNMP HOSTS for use in CPM filters</description> + <prefix> + <ip-prefix>62.40.100.166/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.100.190/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.100.198/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.114.3/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.114.18/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.114.19/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.120.90/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.122.138/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.61/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.79/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.92/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.94/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.99/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.183/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.219/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.92.228/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.39/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.52/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.53/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.59/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.122/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.123/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.137/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.151/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.152/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.153/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.154/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.155/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.204/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.239/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.244/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.248/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.249/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.93.251/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.1/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.2/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.9/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.14/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.15/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.51/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.52/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.97/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.98/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.180/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.181/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.182/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.185/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.188/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.245/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.94.246/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.9/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.10/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.11/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.12/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.193/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.194/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.195/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>193.177.128.0/22</ip-prefix> + </prefix> + <prefix> + <ip-prefix>193.219.48.249/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>193.219.48.250/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_SNMP_UAT</prefix-list-name> + <description>GAP UAT LNMS instance</description> + <prefix> + <ip-prefix>62.40.111.47/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_VPN_NETWORKS</prefix-list-name> + <description>All VPN networks allowed</description> + <prefix> + <ip-prefix>62.40.99.129/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.112.128/27</ip-prefix> + </prefix> + <prefix> + <ip-prefix>195.169.24.28/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>195.169.24.96/27</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>GEANT_VULN_SCANNER</prefix-list-name> + <description>Geant vulnerability scanners</description> + <prefix> + <ip-prefix>83.97.93.49/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>MOODI_SERVERS</prefix-list-name> + <prefix> + <ip-prefix>83.97.95.27/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>MULTICAST_GROUP_RANGES</prefix-list-name> + <description>Multicast_ipv4_group range</description> + <prefix> + <ip-prefix>224.0.0.0/4</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>NOMIOS_SUPPORT</prefix-list-name> + <description>Nomios hosts allowed for support</description> + <prefix> + <ip-prefix>83.97.93.238/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>PUBLIC_NTP</prefix-list-name> + <description>Publicly available NTPs</description> + <prefix> + <ip-prefix>216.239.35.0/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>216.239.35.4/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>TIMEMAP_SNMP</prefix-list-name> + <description>Timemap SNMP pollers</description> + <prefix> + <ip-prefix>83.97.94.180/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.193/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.194/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>83.97.95.195/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>193.219.48.249/32</ip-prefix> + </prefix> + <prefix> + <ip-prefix>193.219.48.250/32</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>TOOLS_KENTIK</prefix-list-name> + <description>Kentik SNMP pollers</description> + <prefix> + <ip-prefix>209.50.158.0/23</ip-prefix> + </prefix> + </ip-prefix-list> + <ip-prefix-list> + <prefix-list-name>TWAMP_CLIENTS</prefix-list-name> + <description>TWAMP Clients</description> + <prefix> + <ip-prefix>62.40.98.0/24</ip-prefix> + </prefix> + <prefix> + <ip-prefix>62.40.119.64/26</ip-prefix> + </prefix> + </ip-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>BGP_PEERS_BASE</prefix-list-name> + <description>BGP Peers configured under Base instance</description> + <apply-path> + <bgp-peers> + <criterion-index>1</criterion-index> + <group>.*</group> + <neighbor>.*</neighbor> + <router-instance>Base</router-instance> + </bgp-peers> + <bgp-peers> + <criterion-index>2</criterion-index> + <group>.*</group> + <neighbor>.*</neighbor> + <router-instance>IAS</router-instance> + </bgp-peers> + <bgp-peers> + <criterion-index>3</criterion-index> + <group>.*</group> + <neighbor>.*</neighbor> + <router-instance>LHCONE_L3VPN</router-instance> + </bgp-peers> + <bgp-peers> + <criterion-index>4</criterion-index> + <group>.*</group> + <neighbor>.*</neighbor> + <router-instance>COPERNICUS</router-instance> + </bgp-peers> + </apply-path> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>BOGONS_LIST</prefix-list-name> + <prefix> + <ipv6-prefix>::/8</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>100::/8</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>200::/7</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>400::/7</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>600::/7</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>800::/5</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>1000::/4</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2000::/16</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>3fff::/16</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>4000::/3</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>6000::/3</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>8000::/3</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>a000::/3</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>c000::/3</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>e000::/4</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>f000::/5</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>f800::/6</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>fc00::/7</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>fe00::/9</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>fec0::/10</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>BOGONS_LIST6</prefix-list-name> + <prefix> + <ipv6-prefix>::/8</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>100::/8</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>200::/7</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>400::/7</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>600::/7</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>800::/5</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>1000::/4</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2000::/16</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>3fff::/16</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>4000::/3</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>6000::/3</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>8000::/3</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>a000::/3</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>c000::/3</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>e000::/4</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>f000::/5</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>f800::/6</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>fc00::/7</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>fe00::/9</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>fec0::/10</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_ADDRESS_SPACE</prefix-list-name> + <description>GEANT address space for traceroute and rsvp in CPM filters</description> + <prefix> + <ipv6-prefix>2001:798::/32</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_BRIAN</prefix-list-name> + <prefix> + <ipv6-prefix>2001:798:3::11d/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::148/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::190/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::29e/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::29f/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::2b1/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::2b2/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::2b3/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::2b4/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_CORE</prefix-list-name> + <description>Used_in_IP_EDGE_IN filter</description> + <prefix> + <ipv6-prefix>2001:798:aa:1::/64</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:cc::/48</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_DASHBOARD</prefix-list-name> + <description>Geant dashboard hosts</description> + <prefix> + <ipv6-prefix>2001:798:3::18d/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::18e/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::18f/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::1d6/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::208/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::209/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::234/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::236/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::237/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::23f/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::245/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:bb:2a::4/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:bb:2b::4/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_DNS</prefix-list-name> + <description>GEANT DNS SERVERS for use in CPM filters</description> + <prefix> + <ipv6-prefix>2001:798:3::1ba/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:bb:4d::2/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:ee:f::2/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:ee:10::2/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_GAP</prefix-list-name> + <description>Geant GAP hosts</description> + <prefix> + <ipv6-prefix>2001:798:3::318/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_GAP_GSO_UAT</prefix-list-name> + <description>GAP UAT GSO VMs</description> + <prefix> + <ipv6-prefix>2001:798:3::45/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::49/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::4b/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:799:cb2:111::130/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_IMS</prefix-list-name> + <description>Geant IMS hosts</description> + <prefix> + <ipv6-prefix>2001:798:3::251/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::252/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::253/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_IPV6_DC_VRRP</prefix-list-name> + <description>GEANT DC VRRP Space for use in CPM IPV6-filters</description> + <prefix> + <ipv6-prefix>ff02::12/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_IPV6_NETWORKS</prefix-list-name> + <description>IPv6 networks for the use in CPM filters</description> + <prefix> + <ipv6-prefix>2001:798::/32</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:799:cb2::/48</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_JUMP_SERVERS</prefix-list-name> + <description>Geant Jump Servers hosts</description> + <prefix> + <ipv6-prefix>2001:798:3::246/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_LIBRENMS</prefix-list-name> + <description>Geant LibreNMS hosts</description> + <prefix> + <ipv6-prefix>2001:798:3::317/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_LOOKING_GLASS</prefix-list-name> + <description>Geant looking-glass hosts</description> + <prefix> + <ipv6-prefix>2001:798:3::25c/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::25d/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::25e/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::25f/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::260/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::261/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_NE_SERVERS</prefix-list-name> + <description>Geant NE Servers hosts</description> + <prefix> + <ipv6-prefix>2001:798:3::a0/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::288/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_OC_SERVERS</prefix-list-name> + <description>Geant OC Servers hosts</description> + <prefix> + <ipv6-prefix>2001:798:3::55/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::6f/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::7b/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::83/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::12b/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::139/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_OFFICE_NETWORKS</prefix-list-name> + <description>Amsterdam and Cambridge Networks</description> + <prefix> + <ipv6-prefix>2001:610:9d8:4::/64</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:799:cb2:101::/64</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_RANCID</prefix-list-name> + <description>Geant RANCID hosts</description> + <prefix> + <ipv6-prefix>2001:798:3::117/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::118/128</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:3::128/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_ROUTERS</prefix-list-name> + <description>GEANT router-loopbacks and system address for use in CPM filters</description> + <prefix> + <ipv6-prefix>2001:798:aa:1::/64</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_VPN_NETWORKS</prefix-list-name> + <description>All VPN networks allowed</description> + <prefix> + <ipv6-prefix>2001:610:9d8:7::/64</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:610:9d8:14::/64</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:798:4:8::/112</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>2001:799:cb2:6::/64</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>GEANT_VULN_SCANNER</prefix-list-name> + <description>Geant vulnerability scanners</description> + <prefix> + <ipv6-prefix>2001:798:3::145/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>IPV6_ND</prefix-list-name> + <description>IPv6 specific dest addresses for ND</description> + <prefix> + <ipv6-prefix>fe80::/10</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>ff02::/123</ipv6-prefix> + </prefix> + <prefix> + <ipv6-prefix>ff02::1:ff00:0/104</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>MOODI_SERVERS</prefix-list-name> + <prefix> + <ipv6-prefix>2001:798:3::2ac/128</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <ipv6-prefix-list> + <prefix-list-name>MULTICAST_GROUP_RANGES</prefix-list-name> + <description>Multicast_ipv6_group range</description> + <prefix> + <ipv6-prefix>ff00::/8</ipv6-prefix> + </prefix> + </ipv6-prefix-list> + <port-list> + <port-list-name>CPMF_V4-BFD-DST_PORTS</port-list-name> + <range> + <start>3784</start> + <end>3785</end> + </range> + </port-list> + <port-list> + <port-list-name>CPMF_V4-BGP_PEERS_BASE-PORTS</port-list-name> + <port> + <value>179</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-DNS-PORTS</port-list-name> + <port> + <value>53</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-MICRO_BFD-DST_PORTS</port-list-name> + <port> + <value>6784</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-MOODI_GNMI-DST_PORTS</port-list-name> + <port> + <value>57400</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-MULTIHOP-BFD-DST_PORTS</port-list-name> + <port> + <value>4784</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-NETCONF-PORTS</port-list-name> + <port> + <value>830</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-NTP-PORTS</port-list-name> + <port> + <value>123</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-OAM_TRACE_PORTS</port-list-name> + <port> + <value>3503</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-RADIUS-PORT_RANGE</port-list-name> + <range> + <start>1812</start> + <end>1813</end> + </range> + </port-list> + <port-list> + <port-list-name>CPMF_V4-SNMP-PORTS</port-list-name> + <port> + <value>161</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-SSH-DST_PORTS</port-list-name> + <port> + <value>22</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-TRACEROUTE-PORT_RANGE</port-list-name> + <range> + <start>33434</start> + <end>33534</end> + </range> + </port-list> + <port-list> + <port-list-name>CPMF_V4-TWAMP-DST_PORT_RANGE</port-list-name> + <range> + <start>10000</start> + <end>65535</end> + </range> + </port-list> + <port-list> + <port-list-name>CPMF_V4-TWAMP_682-PORTS</port-list-name> + <port> + <value>862</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4-T_LDP-PORTS</port-list-name> + <port> + <value>646</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V4_RPKI_PORTS</port-list-name> + <port> + <value>3323</value> + </port> + <port> + <value>8282</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V6-BFD-DST_PORTS</port-list-name> + <range> + <start>3784</start> + <end>3785</end> + </range> + </port-list> + <port-list> + <port-list-name>CPMF_V6-BGP_PEERS_BASE-PORTS</port-list-name> + <port> + <value>179</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V6-MULTIHOP-BFD-DST_PORTS</port-list-name> + <port> + <value>4784</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V6-NETCONF-PORTS</port-list-name> + <port> + <value>830</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V6-OAM_TRACE_PORTS</port-list-name> + </port-list> + <port-list> + <port-list-name>CPMF_V6-SSH-DST_PORTS</port-list-name> + <port> + <value>22</value> + </port> + </port-list> + <port-list> + <port-list-name>CPMF_V6-TRACEROUTE-PORT_RANGE</port-list-name> + <range> + <start>33434</start> + <end>33534</end> + </range> + </port-list> + <port-list> + <port-list-name>IP_EDGE_IN-AMT-PORTS</port-list-name> + <port> + <value>2268</value> + </port> + </port-list> + <port-list> + <port-list-name>IP_EDGE_IN-BFD-DST_PORT_RANGE</port-list-name> + <range> + <start>3784</start> + <end>3785</end> + </range> + </port-list> + <port-list> + <port-list-name>IP_EDGE_IN-BGP-PORTS</port-list-name> + <port> + <value>179</value> + </port> + </port-list> + <port-list> + <port-list-name>IP_EDGE_IN-SNMP-PORTS</port-list-name> + <port> + <value>161</value> + </port> + </port-list> + <port-list> + <port-list-name>IP_EDGE_IN-TRACEROUTE-PORT_RANGE</port-list-name> + <range> + <start>33434</start> + <end>33534</end> + </range> + </port-list> + </match-list> + <ip-filter> + <filter-name>DFN_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <description>CUSTOMER Multicast traffic</description> + <match> + <protocol-list>MULTICAST_PROTOCOLS</protocol-list> + <ip> + <ip-prefix-list>EUMETSAT_DATA_DFN</ip-prefix-list> + </ip> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>110</entry-id> + <description>Generic_Multicast traffic</description> + <match> + <dst-ip> + <ip-prefix-list>MULTICAST_GROUP_RANGES</ip-prefix-list> + </dst-ip> + </match> + <action> + <accept /> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + </filter> + <flowspec> + <offset>10000</offset> + <router-instance>Base</router-instance> + </flowspec> + </embed> + </ip-filter> + <ip-filter> + <filter-name>DFN_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + </filter> + </embed> + </ip-filter> + <ip-filter> + <filter-name>IAS_AMSIX_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <description>RE-Mark - all IX traffic dscp_41</description> + <action> + <accept /> + <remark> + <dscp>cp41</dscp> + </remark> + </action> + </entry> + <embed> + <filter> + <name>IP_PUBLIC_IN</name> + <offset>1000</offset> + </filter> + <flowspec> + <offset>10000</offset> + <router-instance>IAS</router-instance> + </flowspec> + </embed> + </ip-filter> + <ip-filter> + <filter-name>IAS_COLT_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <description>RE-Mark - all GWS traffic dscp_32</description> + <action> + <accept /> + <remark> + <dscp>cs4</dscp> + </remark> + </action> + </entry> + <embed> + <filter> + <name>IP_PUBLIC_IN</name> + <offset>1000</offset> + </filter> + <flowspec> + <offset>10000</offset> + <router-instance>IAS</router-instance> + </flowspec> + </embed> + </ip-filter> + <ip-filter> + <filter-name>IP_EDGE_IN</filter-name> + <default-action>drop</default-action> + <scope>embedded</scope> + <entry> + <entry-id>10</entry-id> + <description>BOGONS</description> + <match> + <src-ip> + <ip-prefix-list>BOGONS_LIST</ip-prefix-list> + </src-ip> + </match> + <action> + <drop /> + </action> + </entry> + <entry> + <entry-id>20</entry-id> + <description>BGP</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> + </src-ip> <port> - <port-id>2/1/c1</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> + <port-list>IP_EDGE_IN-BGP-PORTS</port-list> </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>30</entry-id> + <description>BFD</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>IP_EDGE_IN-BFD-DST_PORT_RANGE</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>40</entry-id> + <description>TUNNELS</description> + <match> + <protocol-list>IP_EDGE_IN-TUNNELS-PROTO</protocol-list> + <dst-ip> + <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> + </dst-ip> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>50</entry-id> + <description>SNMP</description> + <match> + <protocol>udp</protocol> + <dst-ip> + <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> + </dst-ip> <port> - <port-id>2/1/c2</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> + <port-list>IP_EDGE_IN-SNMP-PORTS</port-list> </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>60</entry-id> + <description>ICMP</description> + <match> + <protocol>icmp</protocol> + <dst-ip> + <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> + </dst-ip> + </match> + <action> + <accept /> + <rate-limit> + <pir>10000</pir> + </rate-limit> + </action> + </entry> + <entry> + <entry-id>70</entry-id> + <description>TRACEROUTE</description> + <match> + <protocol>udp</protocol> + <dst-ip> + <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> + </dst-ip> <port> - <port-id>2/1/c4</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> + <port-list>IP_EDGE_IN-TRACEROUTE-PORT_RANGE</port-list> </port> + </match> + <action> + <accept /> + <rate-limit> + <pir>10000</pir> + </rate-limit> + </action> + </entry> + <entry> + <entry-id>80</entry-id> + <description>AMT RELAYS</description> + <match> + <protocol>udp</protocol> + <dst-ip> + <ip-prefix-list>GEANT_AMT_RELAYS</ip-prefix-list> + </dst-ip> <port> - <port-id>2/1/c5</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> + <port-list>IP_EDGE_IN-AMT-PORTS</port-list> </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>85</entry-id> + <description>AMT RELAYS</description> + <match> + <protocol>udp</protocol> + <dst-ip> + <ip-prefix-list>GEANT_AMT_ANYCAST</ip-prefix-list> + </dst-ip> <port> - <port-id>2/1/c7</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> + <port-list>IP_EDGE_IN-AMT-PORTS</port-list> </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>90</entry-id> + <description>CORE</description> + <match> + <dst-ip> + <ip-prefix-list>GEANT_CORE</ip-prefix-list> + </dst-ip> + </match> + <action> + <drop /> + </action> + </entry> + </ip-filter> + <ip-filter> + <filter-name>IP_EDGE_OUT</filter-name> + <default-action>drop</default-action> + <scope>embedded</scope> + <entry> + <entry-id>10</entry-id> + <description>Allow Multicast_groups</description> + <match> + <ip> + <ip-prefix-list>MULTICAST_GROUP_RANGES</ip-prefix-list> + </ip> + </match> + <action> + <accept /> + </action> + </entry> + </ip-filter> + <ip-filter> + <filter-name>IP_PUBLIC_IN</filter-name> + <scope>embedded</scope> + <entry> + <entry-id>10</entry-id> + <description>Filter Bogons at PUBLIC</description> + <match> + <ip> + <ip-prefix-list>BOGONS_LIST</ip-prefix-list> + </ip> + </match> + <action> + <drop /> + </action> + </entry> + <entry> + <entry-id>20</entry-id> + <description>BGP traffic</description> + <match> + <protocol>tcp</protocol> + <ip> + <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> + </ip> <port> - <port-id>2/1/c8</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-100g</breakout> - </connector> + <eq>179</eq> </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>30</entry-id> + <description>BGP traffic</description> + <match> + <protocol>tcp</protocol> + <ip> + <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> + </ip> <port> - <port-id>2/1/c8/1</port-id> - <admin-state>enable</admin-state> - <description>PHY INFRASTRUCTURE BACKBONE P_lag-6 | AMS-ATH | to-rt1-ath-et-0/0/2</description> - <ethernet> - <mode>network</mode> - <mtu>9212</mtu> - <lldp> - <dest-mac> - <mac-type>nearest-bridge</mac-type> - <receive>true</receive> - <transmit>true</transmit> - <tx-tlvs> - <port-desc>true</port-desc> - <sys-name>true</sys-name> - <sys-cap>true</sys-cap> - </tx-tlvs> - </dest-mac> - </lldp> - </ethernet> + <eq>179</eq> </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>40</entry-id> + <description>SNMP-allow</description> + <match> + <protocol>udp</protocol> + <dst-ip> + <ip-prefix-list>GEANT_SNMP</ip-prefix-list> + </dst-ip> <port> - <port-id>2/1/c9</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> + <eq>161</eq> </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>50</entry-id> + <description>ICMP_rate_limit</description> + <match> + <protocol>icmp</protocol> + <ip> + <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> + </ip> + </match> + <action> + <accept /> + <rate-limit> + <pir>10000</pir> + </rate-limit> + </action> + </entry> + <entry> + <entry-id>60</entry-id> + <description>UDP-traceroute rate-limit</description> + <match> + <protocol>udp</protocol> + <ip> + <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> + </ip> <port> - <port-id>2/1/c10</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> + <port-list>CPMF_V4-TRACEROUTE-PORT_RANGE</port-list> </port> + </match> + <action> + <accept /> + <rate-limit> + <pir>10000</pir> + </rate-limit> + </action> + </entry> + <entry> + <entry-id>70</entry-id> + <description>CORE- filter</description> + <match> + <dst-ip> + <ip-prefix-list>GEANT_CORE</ip-prefix-list> + </dst-ip> + </match> + <action> + <drop /> + </action> + </entry> + <entry> + <entry-id>80</entry-id> + <description>Spoof filter</description> + <match> + <src-ip> + <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> + </src-ip> + </match> + <action> + <drop /> + </action> + </entry> + </ip-filter> + <ip-filter> + <filter-name>LHCONE_DFN_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + </filter> + </embed> + </ip-filter> + <ip-filter> + <filter-name>LHCONE_DFN_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + </filter> + </embed> + </ip-filter> + <ip-filter> + <filter-name>LHCONE_REDIRIS_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + </filter> + </embed> + </ip-filter> + <ip-filter> + <filter-name>LHCONE_REDIRIS_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + </filter> + </embed> + </ip-filter> + <ip-filter> + <filter-name>NREN_IAS_DFN_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + </filter> + <flowspec> + <offset>10000</offset> + <router-instance>IAS</router-instance> + </flowspec> + </embed> + </ip-filter> + <ip-filter> + <filter-name>NREN_IAS_DFN_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <match> + <dscp>cs4</dscp> + </match> + <action> + <accept /> + <rate-limit> + <pir>5000000</pir> + <mbs>auto</mbs> + </rate-limit> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + </filter> + </embed> + </ip-filter> + <ip-filter> + <filter-name>NREN_IAS_REDIRIS_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + </filter> + <flowspec> + <offset>10000</offset> + <router-instance>IAS</router-instance> + </flowspec> + </embed> + </ip-filter> + <ip-filter> + <filter-name>NREN_IAS_REDIRIS_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <match> + <dscp>cs4</dscp> + </match> + <action> + <accept /> + <rate-limit> + <pir>5000000</pir> + <mbs>auto</mbs> + </rate-limit> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + </filter> + </embed> + </ip-filter> + <ip-filter> + <filter-name>REDIRIS_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>1000</offset> + </filter> + </embed> + </ip-filter> + <ip-filter> + <filter-name>REDIRIS_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>1000</offset> + </filter> + </embed> + </ip-filter> + <ipv6-filter> + <filter-name>DFN_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <description>CUSTOMER Multicastv6 traffic</description> + <match> + <next-header-list>MULTICAST_IPV6_PROTOCOLS</next-header-list> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>110</entry-id> + <description>Generic_Multicast traffic</description> + <match> + <dst-ip> + <ipv6-prefix-list>MULTICAST_GROUP_RANGES</ipv6-prefix-list> + </dst-ip> + </match> + <action> + <accept /> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>2000</offset> + </filter> + <flowspec> + <offset>20000</offset> + <router-instance>Base</router-instance> + </flowspec> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>DFN_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>2000</offset> + </filter> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>IAS_AMSIX_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <description>RE-Mark - all IX traffic dscp_41</description> + <action> + <accept /> + <remark> + <dscp>cp41</dscp> + </remark> + </action> + </entry> + <embed> + <filter> + <name>IP_PUBLIC_IN</name> + <offset>2000</offset> + </filter> + <flowspec> + <offset>20000</offset> + <router-instance>IAS</router-instance> + </flowspec> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>IAS_COLT_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <description>RE-Mark - all GWS traffic dscp_32</description> + <action> + <accept /> + <remark> + <dscp>cs4</dscp> + </remark> + </action> + </entry> + <embed> + <filter> + <name>IP_PUBLIC_IN</name> + <offset>2000</offset> + </filter> + <flowspec> + <offset>20000</offset> + <router-instance>IAS</router-instance> + </flowspec> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>IP_EDGE_IN</filter-name> + <default-action>drop</default-action> + <scope>embedded</scope> + <entry> + <entry-id>10</entry-id> + <description>filter Bogons at edge</description> + <match> + <ip> + <ipv6-prefix-list>BOGONS_LIST6</ipv6-prefix-list> + </ip> + </match> + <action> + <drop /> + </action> + </entry> + <entry> + <entry-id>20</entry-id> + <description>BGP traffic</description> + <match> + <next-header>tcp</next-header> + <ip> + <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> + </ip> <port> - <port-id>2/1/c11</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-100g</breakout> - </connector> + <eq>179</eq> </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>30</entry-id> + <description>BFD traffic</description> + <match> + <next-header>udp</next-header> + <ip> + <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> + </ip> <port> - <port-id>2/1/c11/1</port-id> - <admin-state>enable</admin-state> - <description>PHY INFRASTRUCTURE BACKBONE P_lag-5 | AMS-AMS | to-rt1.ams-et0/0/2</description> - <ethernet> - <mode>network</mode> - <mtu>9212</mtu> - <lldp> - <dest-mac> - <mac-type>nearest-bridge</mac-type> - <receive>true</receive> - <transmit>true</transmit> - <tx-tlvs> - <port-desc>true</port-desc> - <sys-name>true</sys-name> - <sys-cap>true</sys-cap> - </tx-tlvs> - </dest-mac> - </lldp> - </ethernet> + <port-list>CPMF_V6-BFD-DST_PORTS</port-list> </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>40</entry-id> + <description>ICMPV6_rate_limit</description> + <match> + <next-header>icmp</next-header> + <ip> + <ipv6-prefix-list>GEANT_ADDRESS_SPACE</ipv6-prefix-list> + </ip> + </match> + <action> + <accept /> + <rate-limit> + <pir>10000</pir> + </rate-limit> + </action> + </entry> + <entry> + <entry-id>50</entry-id> + <description>UDP-traceroute rate-limit</description> + <match> + <next-header>udp</next-header> + <ip> + <ipv6-prefix-list>GEANT_ADDRESS_SPACE</ipv6-prefix-list> + </ip> <port> - <port-id>2/1/c12</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> + <port-list>CPMF_V6-TRACEROUTE-PORT_RANGE</port-list> </port> + </match> + <action> + <accept /> + <rate-limit> + <pir>10000</pir> + </rate-limit> + </action> + </entry> + <entry> + <entry-id>60</entry-id> + <description>CORE-/configure filter</description> + <match> + <ip> + <ipv6-prefix-list>GEANT_CORE</ipv6-prefix-list> + </ip> + </match> + <action> + <drop /> + </action> + </entry> + <entry> + <entry-id>70</entry-id> + <description>Spoof /configure filter</description> + <match> + <ip> + <ipv6-prefix-list>GEANT_VPN_NETWORKS</ipv6-prefix-list> + </ip> + </match> + <action> + <drop /> + </action> + </entry> + </ipv6-filter> + <ipv6-filter> + <filter-name>IP_EDGE_OUT</filter-name> + <default-action>drop</default-action> + <scope>embedded</scope> + <entry> + <entry-id>10</entry-id> + <description>Allow Multicast_groups</description> + <match> + <ip> + <ipv6-prefix-list>MULTICAST_GROUP_RANGES</ipv6-prefix-list> + </ip> + </match> + <action> + <accept /> + </action> + </entry> + </ipv6-filter> + <ipv6-filter> + <filter-name>IP_PUBLIC_IN</filter-name> + <scope>embedded</scope> + <entry> + <entry-id>10</entry-id> + <description>filter Bogons at PUBLIC Edge</description> + <match> + <ip> + <ipv6-prefix-list>BOGONS_LIST6</ipv6-prefix-list> + </ip> + </match> + <action> + <drop /> + </action> + </entry> + <entry> + <entry-id>20</entry-id> + <description>BGP traffic</description> + <match> + <next-header>tcp</next-header> + <ip> + <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> + </ip> <port> - <port-id>2/1/c13</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> + <eq>179</eq> </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>30</entry-id> + <description>filter Bogons at PUBLIC Edge</description> + <match> + <ip> + <ipv6-prefix-list>BOGONS_LIST6</ipv6-prefix-list> + </ip> + </match> + <action> + <drop /> + </action> + </entry> + <entry> + <entry-id>40</entry-id> + <description>ICMPV6_rate_limit</description> + <match> + <next-header>icmp</next-header> + <ip> + <ipv6-prefix-list>GEANT_ADDRESS_SPACE</ipv6-prefix-list> + </ip> + </match> + <action> + <accept /> + <rate-limit> + <pir>10000</pir> + </rate-limit> + </action> + </entry> + <entry> + <entry-id>50</entry-id> + <description>UDP-traceroute rate-limit</description> + <match> + <next-header>udp</next-header> + <ip> + <ipv6-prefix-list>GEANT_ADDRESS_SPACE</ipv6-prefix-list> + </ip> <port> - <port-id>2/1/c14</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c16</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c17</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c19</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c20</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c22</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c23</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c25</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c26</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c27</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c28</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c29</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c30</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c2-100g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c31</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c32</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c34</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c4-10g</breakout> - </connector> - </port> - <port> - <port-id>2/1/c34/1</port-id> - </port> - <port> - <port-id>2/1/c35</port-id> - <admin-state>enable</admin-state> - <connector> - <breakout>c1-400g</breakout> - </connector> + <port-list>CPMF_V6-TRACEROUTE-PORT_RANGE</port-list> </port> + </match> + <action> + <accept /> + <rate-limit> + <pir>10000</pir> + </rate-limit> + </action> + </entry> + <entry> + <entry-id>60</entry-id> + <description>CORE- filter</description> + <match> + <dst-ip> + <ipv6-prefix-list>GEANT_CORE</ipv6-prefix-list> + </dst-ip> + </match> + <action> + <drop /> + </action> + </entry> + <entry> + <entry-id>70</entry-id> + <description>Spoof- filter</description> + <match> + <src-ip> + <ipv6-prefix-list>GEANT_ADDRESS_SPACE</ipv6-prefix-list> + </src-ip> + </match> + <action> + <drop /> + </action> + </entry> + </ipv6-filter> + <ipv6-filter> + <filter-name>LHCONE_DFN_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>2000</offset> + </filter> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>LHCONE_DFN_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>2000</offset> + </filter> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>LHCONE_REDIRIS_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>2000</offset> + </filter> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>LHCONE_REDIRIS_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>2000</offset> + </filter> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>NREN_IAS_DFN_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>2000</offset> + </filter> + <flowspec> + <offset>20000</offset> + <router-instance>IAS</router-instance> + </flowspec> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>NREN_IAS_DFN_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <match> + <dscp>cs4</dscp> + </match> + <action> + <accept /> + <rate-limit> + <pir>5000000</pir> + <mbs>auto</mbs> + </rate-limit> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>2000</offset> + </filter> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>NREN_IAS_REDIRIS_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>2000</offset> + </filter> + <flowspec> + <offset>20000</offset> + <router-instance>IAS</router-instance> + </flowspec> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>NREN_IAS_REDIRIS_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <match> + <dscp>cs4</dscp> + </match> + <action> + <accept /> + <rate-limit> + <pir>5000000</pir> + <mbs>auto</mbs> + </rate-limit> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>2000</offset> + </filter> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>REDIRIS_IN</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <entry> + <entry-id>100</entry-id> + <description>CUSTOMER Multicastv6 traffic</description> + <match> + <next-header-list>MULTICAST_IPV6_PROTOCOLS</next-header-list> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>110</entry-id> + <description>Generic_Multicast traffic</description> + <match> + <dst-ip> + <ipv6-prefix-list>MULTICAST_GROUP_RANGES</ipv6-prefix-list> + </dst-ip> + </match> + <action> + <accept /> + </action> + </entry> + <embed> + <filter> + <name>IP_EDGE_IN</name> + <offset>2000</offset> + </filter> + <flowspec> + <offset>20000</offset> + <router-instance>Base</router-instance> + </flowspec> + </embed> + </ipv6-filter> + <ipv6-filter> + <filter-name>REDIRIS_OUT</filter-name> + <default-action>accept</default-action> + <scope>template</scope> + <chain-to-system-filter>false</chain-to-system-filter> + <embed> + <filter> + <name>IP_EDGE_OUT</name> + <offset>2000</offset> + </filter> + </embed> + </ipv6-filter> + <md-auto-id> + <filter-id-range> + <start>10</start> + <end>50000</end> + </filter-id-range> + </md-auto-id> + </filter> + <lag> + <lag-name>lag-2</lag-name> + <admin-state>enable</admin-state> + <description>LAG INFRASTRUCTURE BACKBONE $LGA-00881 | AMS-BIL</description> + <mode>network</mode> + <lacp> + <mode>active</mode> + <administrative-key>2</administrative-key> + </lacp> + <port> + <port-id>2/1/c1/1</port-id> + </port> + </lag> + <lag> + <lag-name>lag-5</lag-name> + <admin-state>enable</admin-state> + <description>LAG INFRASTRUCTURE BACKBONE $LGA-0001551 | AMS-AMS</description> + <mode>network</mode> + <port-threshold> + <value>1</value> + <action>down</action> + </port-threshold> + <lacp> + <mode>active</mode> + <administrative-key>5</administrative-key> + </lacp> + <bfd-liveness> + <ipv4> + <admin-state>enable</admin-state> + <bfd-on-distributing-only>true</bfd-on-distributing-only> + <multiplier>3</multiplier> + <receive-interval>3000</receive-interval> + <transmit-interval>3000</transmit-interval> + <local-ip-address>62.40.119.100</local-ip-address> + <remote-ip-address>62.40.119.101</remote-ip-address> + </ipv4> + </bfd-liveness> + <port> + <port-id>1/1/c11/1</port-id> + </port> + <port> + <port-id>2/1/c11/1</port-id> + </port> + </lag> + <lag> + <lag-name>lag-7</lag-name> + <admin-state>enable</admin-state> + <description>LAG INFRASTRUCTURE BACKBONE $LGS-000331 | AMS-ATH</description> + <mode>network</mode> + <lacp> + <mode>active</mode> + <administrative-key>7</administrative-key> + </lacp> + <port> + <port-id>1/1/c1/1</port-id> + </port> + </lag> + <lag> + <lag-name>lag-8</lag-name> + <admin-state>enable</admin-state> + <description>LAG INFRASTRUCTURE BACKBONE $LGA-000772 | AMS-LON</description> + <mode>network</mode> + <lacp> + <mode>active</mode> + <administrative-key>8</administrative-key> + </lacp> + <port> + <port-id>1/1/c5/1</port-id> + </port> + </lag> + <lag> + <lag-name>lag-11</lag-name> + <admin-state>enable</admin-state> + <description>SVR_GLOBAL CUST_DFN_AP1 |as680</description> + <encap-type>dot1q</encap-type> + <mode>access</mode> + <port-threshold> + <value>0</value> + <action>down</action> + </port-threshold> + <lacp> + <mode>active</mode> + <administrative-key>11</administrative-key> + </lacp> + <port> + <port-id>1/1/c2/3</port-id> + </port> + </lag> + <lag> + <lag-name>lag-16</lag-name> + <admin-state>enable</admin-state> + <description>LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (qfx512)</description> + <encap-type>dot1q</encap-type> + <mode>access</mode> + <lacp-xmit-interval>fast</lacp-xmit-interval> + <lacp> + <mode>active</mode> + <administrative-key>16</administrative-key> + </lacp> + <port> + <port-id>1/1/c2/1</port-id> + </port> + <port> + <port-id>1/1/c2/2</port-id> + </port> + </lag> + <lag> + <lag-name>lag-17</lag-name> + <admin-state>enable</admin-state> + <description>SVR_GLOBAL CUST_REDIRIS_AP1 |AS766</description> + <encap-type>dot1q</encap-type> + <mode>access</mode> + <port-threshold> + <value>0</value> + <action>down</action> + </port-threshold> + <lacp> + <mode>active</mode> + <administrative-key>17</administrative-key> + </lacp> + <port> + <port-id>1/1/c2/4</port-id> + </port> + </lag> + <lag> + <lag-name>lag-18</lag-name> + <admin-state>enable</admin-state> + <description>SRV_10GGBS CUSTOMER CESNET #ams-pra-IX-CESNET-AMS-12016 $GS-00786 lab</description> + <encap-type>null</encap-type> + <mode>access</mode> + <port> + <port-id>1/1/c19/1</port-id> + </port> + </lag> + <lag> + <lag-name>lag-700</lag-name> + <admin-state>enable</admin-state> + <encap-type>dot1q</encap-type> + <mode>hybrid</mode> + <lacp> + <mode>active</mode> + <administrative-key>700</administrative-key> + </lacp> + <port> + <port-id>pxc-1.a</port-id> + </port> + <port> + <port-id>pxc-2.a</port-id> + </port> + </lag> + <lag> + <lag-name>lag-701</lag-name> + <admin-state>enable</admin-state> + <encap-type>dot1q</encap-type> + <mode>hybrid</mode> + <lacp> + <mode>passive</mode> + <administrative-key>701</administrative-key> + </lacp> + <port> + <port-id>pxc-1.b</port-id> + </port> + <port> + <port-id>pxc-2.b</port-id> + </port> + </lag> + <log> + <log-events> + <adp> + <event>tmnxDiscoveryEndNotify</event> + <throttle>false</throttle> + </adp> + <adp> + <event>tmnxDiscoveryCellularReq</event> + <throttle>false</throttle> + </adp> + <application-assurance> + <event>tmnxBsxIsaAaGrpFailureV2</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpFailureClearV2</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpNonRedundantV2</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpSwitchover</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpFlowFull</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpFlowFullClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaSubLoadBalance</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpCapCostThres</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpCapCostThresClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxAaSubscribersUnassigned</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxAaSubscriberAcctDataLoss</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxAaSubPolResExceeded</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxAaSubPolResExceededClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpFlowSetup</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpFlowSetupClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpPacketRate</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpPacketRateClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpBitRate</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpBitRateClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTransIpPolAaSubCreated</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTransIpPolAaSubDeleted</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTransIpPolRadCoAAudit</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTransIpPolRadCoAError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTransIpPolRadDiscError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTransIpPolDhcpAddWarning</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTransIpPolDhcpDelWarning</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpFmSbWaSBufOvld</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpFmSbWaSBufOvldClr</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpToSbWaSBufOvld</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpToSbWaSBufOvldClr</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpOvrldCutthru</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaGrpOvrldCutthruClr</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTransitIpPersistenceWarn</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxAarpInstOperStateChanged</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxAarpInstStateChanged</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxRadApFailure</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxRadApServOperStateChange</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxMobileSubModifyFailure</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxRadApIntrmUpdateSkipped</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxHttpUrlParamLimitExceeded</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxUrlFilterOperStateChange</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxSubModifyFailure</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxDnsIpCacheFull</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxDnsIpCacheFullClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxUrlListUpdate</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxUrlListFailure</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxIsaAaTimFileProcFailure</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxStatTcaThreshCrossed</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxStatTcaThreshCrossedClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxStatPolcrTcaThreshCrossed</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxStatPolcrTcaThreshCrClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxStatFtrTcaThreshCrossed</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxStatFtrTcaThreshCrClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxStatFtrEnTcaThreshCrossed</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxStatFtrEnTcaThreshCrClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTransIpPolDiamGxError</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxDatapathCpuUsage</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxDatapathCpuUsageClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTcpValTcaCrossed</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxTcpValTcaCrossedClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxCertProfileOperStateChngd</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxSubQuarantined</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxSubQuarantinedClear</event> + <throttle>false</throttle> + </application-assurance> + <application-assurance> + <event>tmnxBsxUrlFltrWebServOprStateChg</event> + <throttle>false</throttle> + </application-assurance> + <auto-prov> + <event>autoNodeProv</event> + <throttle>false</throttle> + </auto-prov> + <bfd> + <event>tmnxBfdOnLspSessDown</event> + <throttle>false</throttle> + </bfd> + <bfd> + <event>tmnxBfdOnLspSessUp</event> + <throttle>false</throttle> + </bfd> + <bfd> + <event>tmnxBfdOnLspSessDeleted</event> + <throttle>false</throttle> + </bfd> + <bfd> + <event>tmnxBfdOnLspSessProtChange</event> + <throttle>false</throttle> + </bfd> + <bfd> + <event>tmnxBfdOnLspSessNoCpmNpResources</event> + <throttle>false</throttle> + </bfd> + <bfd> + <event>tmnxBfdOnLspSessNoTailResources</event> + <throttle>false</throttle> + </bfd> + <bfd> + <event>tmnxBfdOnLspExtSessDown</event> + <throttle>false</throttle> + </bfd> + <bfd> + <event>tmnxBfdOnLspExtSessUp</event> + <throttle>false</throttle> + </bfd> + <bfd> + <event>tmnxBfdOnLspExtSessDeleted</event> + <throttle>false</throttle> + </bfd> + <bfd> + <event>tmnxBfdOnLspExtSessProtChange</event> + <throttle>false</throttle> + </bfd> + <bfd> + <event>tmnxBfdOnLspExtSessNoCpmNpResrcs</event> + <throttle>false</throttle> + </bfd> + <bgp> + <event>sendNotification</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>receiveNotification</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpInterfaceDown</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpConnNoKA</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpConnNoOpenRcvd</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpRejectConnBadLocAddr</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpRemoteEndClosedConn</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpPeerNotFound</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpConnMgrTerminated</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpTerminated</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpNoMemoryPeer</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpVariableRangeViolation</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpCfgViol</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpPeerGRStatusChange</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpNgEstablished</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpNgBackwardTransition</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpPeerNgHoldTimeInconsistent</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpFlowspecUnsupportdComAction</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgp4RouteInvalid</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgp4PathAttrInvalid</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgp4WithdrawnRtFromUpdateError</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgp4UpdateInvalid</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpGeneral</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpFibResourceFailPeer</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpReceivedInvalidNlri</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpMaxNgPfxLmt</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpMaxNgPfxLmtThresholdReached</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpInstanceDynamicPeerLmtReachd</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpPGDynamicPeerLmtReached</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpEstablishedNotification</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>bgpBackwardTransNotification</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgp4PathAttrDiscarded</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tmnxBmpSessionStatusChange</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpInstConvStateTransition</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpPeerNgGRStatusChange</event> + <throttle>false</throttle> + </bgp> + <bgp> + <event>tBgpPGDynNbrIfMaxSessLmtReachd</event> + <throttle>false</throttle> + </bgp> + <bier> + <event>vRtrBierBfrIdCollision</event> + <throttle>false</throttle> + </bier> + <bier> + <event>vRtrBierMtMismatch</event> + <throttle>false</throttle> + </bier> + <bier> + <event>vRtrBierSubDomainMismatch</event> + <throttle>false</throttle> + </bier> + <bier> + <event>vRtrBierUnsupportedNhop</event> + <throttle>false</throttle> + </bier> + <calltrace> + <event>tmnxCallTraceMaxFilesNumReached</event> + <throttle>false</throttle> + </calltrace> + <calltrace> + <event>tmnxCallTraceLocSizeLimitReached</event> + <throttle>false</throttle> + </calltrace> + <calltrace> + <event>calltraceDebugEvent</event> + <throttle>false</throttle> + </calltrace> + <cflowd> + <event>tmnxCflowdCreateFailure</event> + <throttle>false</throttle> + </cflowd> + <cflowd> + <event>tmnxCflowdStateChange</event> + <throttle>false</throttle> + </cflowd> + <cflowd> + <event>tmnxCflowdFlowCreateFailure</event> + <throttle>false</throttle> + </cflowd> + <cflowd> + <event>tmnxCflowdPacketTxFailure</event> + <throttle>false</throttle> + </cflowd> + <chassis> + <event>tmnxEqCardFailure</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqCardInserted</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqCardRemoved</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqWrongCard</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEnvTempTooHigh</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerSupplyInserted</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerSupplyRemoved</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxRedPrimaryCPMFail</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxChassisNotificationClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingHoldover</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingHoldoverClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingRef1Alarm</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingRef1AlarmClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingRef2Alarm</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingRef2AlarmClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqFlashDataLoss</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqFlashDiskFull</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPeSoftwareVersionMismatch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPeSoftwareLoadFailed</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPeBootloaderVersionMismatch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPeBootromVersionMismatch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPeFPGAVersionMismatch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingBITSAlarm</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingBITSAlarmClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqCardFirmwareUpgraded</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxChassisUpgradeInProgress</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxChassisUpgradeComplete</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxChassisHiBwMcastAlarm</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqOperStateChange</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqMdaCfgNotCompatible</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxCpmCardSyncFileNotPresent</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqMdaXplError</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqCardPChipError</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqCardSoftResetAlarm</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqMdaSyncENotCompatible</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPsecIsaGrpActiveIsaChgd</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqCardPChipMemoryEvent</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxIPsecIsaGrpUnableToSwitch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPsecIsaGrpTnlLowWMark</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPsecIsaGrpTnlHighWMark</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPsecIsaGrpTnlMax</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingRef1Quality</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingRef2Quality</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingBITSQuality</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingBITS2Quality</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingRefSwitch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingBITS2Alarm</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingBITS2AlarmClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingBITSOutRefChg</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqCardPChipCamEvent</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingSystemQuality</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqHwEnhancedCapability</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingPTPQuality</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingPTPAlarm</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingPTPAlarmClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPeFirmwareVersionWarning</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxMDAIsaTunnelGroupChange</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerCapacityExceeded</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerCapacityExceededClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerLostCapacity</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerLostCapacityClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerOverloadState</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerOverloadStateClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqCardQChipBufMemoryEvent</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqCardQChipStatsMemoryEvent</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqCardQChipIntMemoryEvent</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqCardChipIfDownEvent</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqCardChipIfCellEvent</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqLowSwitchFabricCap</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqLowSwitchFabricCapClear</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqPowerSafetyAlertThreshold</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerSafetyAlertClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerSafetyLevelThreshold</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPowerSafetyLevelClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqCardTChipParityEvent</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqProvPowerCapacityAlm</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqProvPowerCapacityAlmClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPlcyAcctStatsPoolExcResource</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPlcyAcctStatsPoolLowResource</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPlcyAcctStatsEventOvrflwClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPlcyAcctStatsEventOvrflw</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomResHighLimitReached</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomResExhausted</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomResStateClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomEventOverflow</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomEventOverflowClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqDataPathFailureProtImpact</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqMdaIngrXplError</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxSyncIfTimBITS2048khzUnsup</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxSyncIfTimBITS2048khzUnsupClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqMgmtEthRedStandbyRaise</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqMgmtEthRedStandbyClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassPowerSupOvrTmp</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassPowerSupOvrTmpClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassPowerSupAcFail</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassPowerSupAcFailClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassPowerSupDcFail</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassPowerSupDcFailClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassPowerSupInFail</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassPowerSupInFailClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassPowerSupOutFail</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassPowerSupOutFailCl</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassisFanFailure</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqPhysChassisFanFailureClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tIPsecIsaMemLowWatermark</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tIPsecIsaMemHighWatermark</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tIPsecIsaMemMax</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxCpmMemSizeMismatch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxCpmMemSizeMismatchClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPhysChassPwrSupInputFeed</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPhysChassPwrSupInputFeedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqBpEpromFail</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqBpEpromFailClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqBpEpromWarning</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqBpEpromWarningClear</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxIPMacQosIngOverload</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacQosIngOverloadClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPQosEgrOverload</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPQosEgrOverloadClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6QosIngOverload</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6QosIngOverloadClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6QosEgrOverload</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6QosEgrOverloadClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacFilterIngOverload</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacFilterIngOverloadClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacFilterEgrOverload</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacFilterEgrOverloadClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6FilterIngOverload</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6FilterIngOverloadClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6FilterEgrOverload</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6FilterEgrOverloadClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacCpmFilterOverload</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacCpmFilterOverloadClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6CpmFilterOverload</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6CpmFilterOverloadClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxBluetoothModuleConnectionChg</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPhysChassisPMOutFail</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPhysChassisPMOutFailClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPhysChassisPMInputFeed</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPhysChassisPMInputFeedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPhysChassisFilterDoorOpen</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPhysChassisFilterDoorClosed</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPhysChassisPMOverTemp</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPhysChassisPMOverTempClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqFpgaSoftError</event> + <generate>true</generate> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingSyncEQuality</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingSyncE2Quality</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingSyncEAlarm</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingSyncEAlarmClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingSyncE2Alarm</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqSyncIfTimingSyncE2AlarmClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEqHwEventDetected</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxTunnelGrpEsaVmActivity</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaDiscovered</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaConnected</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaDisconnected</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaFailure</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaCleared</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaVmCreated</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaVmBooted</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaVmRemoved</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaVmCleared</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaVmFailure</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tIPsecEsaVmMemLowWatermark</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tIPsecEsaVmMemHighWatermark</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPeKernelVersionMismatch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxFPResourcePolicyModified</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaFirmwareUpgradeStarted</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPlcyAcctPlcrPoolExcResource</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPlcyAcctPlcrPoolLowResource</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxHwAggShpSchedEventOvrflwClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxHwAggShpSchedEventOvrflw</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacFilterIngNearFull</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacFilterIngNearFullClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacFilterEgrNearFull</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPMacFilterEgrNearFullClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6FilterIngNearFull</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6FilterIngNearFullClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6FilterEgrNearFull</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIPv6FilterEgrNearFullClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwStatusDegraded</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwStatusDegradedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwStatusCritical</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwStatusCriticalClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSup1Degraded</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSup1DegradedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSup1Failed</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSup1FailedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSup2Degraded</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSup2DegradedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSup2Failed</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSup2FailedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwFanBankNonRedun</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwFanBankNonRedunClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwFanBankFailRedun</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwFanBankFailRedunClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwFanStatusDegraded</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwFanStatusDegradedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwFanStatusFailed</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwFanStatusFailedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSupMismatch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSupMismatchClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSupBankNonRedun</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSupBankNonRedunClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSupBankFailRedun</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwPwrSupBankFailRedunClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwTemperatureDegraded</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwTemperatureDegradedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwTemperatureFailed</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxEsaHwTemperatureFailedClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPowerSupplyFanFailed</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPowerSupplyFanFailedClear</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomRsrcUsageHighLimitReached</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomRsrcUsageExhausted</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomRsrcUsageRecovered</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomRsrcEventOverflow</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomRsrcEventOverflowClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomRsrcOwnerOversubscribed</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxIomRsrcOwnerOversubscrbdClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxCardResMacFdbHighUsgSet</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxCardResMacFdbHighUsgClr</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPowerShelfInputPwrModeSwitch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPowerShelfCommsDown</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPowerShelfCommsUp</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPowerShelfOutputStatusSwitch</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPowerShelfOutputStatusDown</event> + <throttle>false</throttle> + </chassis> + <chassis> + <event>tmnxPowerShelfOutputStatusUp</event> + <throttle>false</throttle> + </chassis> + <debug> + <event>traceEvent</event> + <throttle>false</throttle> + </debug> + <dhcp> + <event>svcDHCPLseStateRestoreProblem</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sapDHCPLeaseEntriesExceeded</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sapDHCPLseStateOverride</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sapDHCPSuspiciousPcktRcvd</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sapDHCPLseStatePopulateErr</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sdpBindDHCPLeaseEntriesExceeded</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sdpBindDHCPLseStateOverride</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sdpBindDHCPSuspiciousPcktRcvd</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sdpBindDHCPLseStatePopulateErr</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>tmnxVRtrDHCPSuspiciousPcktRcvd</event> + <throttle>false</throttle> + </dhcp> + <dhcp> + <event>sapStaticHostDynMacConflict</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sapDHCPProxyServerError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>tmnxVRtrDHCPIfLseStatesExceeded</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sdpBindDHCPProxyServerError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>tmnxVRtrDHCP6RelayLseStExceeded</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>tmnxVRtrDHCP6ServerLseStExceeded</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>tmnxVRtrDHCP6LseStateOverride</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>tmnxVRtrDHCP6RelayReplyStripUni</event> + <throttle>false</throttle> + </dhcp> + <dhcp> + <event>tmnxVRtrDHCP6IllegalClientAddr</event> + <throttle>false</throttle> + </dhcp> + <dhcp> + <event>tmnxVRtrDHCP6AssignedIllegSubnet</event> + <throttle>false</throttle> + </dhcp> + <dhcp> + <event>tmnxVRtrDHCP6ClientMacUnresolved</event> + <throttle>false</throttle> + </dhcp> + <dhcp> + <event>sapDHCPLseStateMobilityError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sdpBindDHCPLseStateMobilityErr</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>svcDHCPMiscellaneousProblem</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcp> + <dhcp> + <event>sapStatHost6DynMacConflict</event> + <throttle>false</throttle> + </dhcp> + <dhcps> + <event>tmnxDhcpSvrSubnetMinFreeExc</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrHostConflict</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrPoolUnknown</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrLeaseNotOwner</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrDeclineStaticAddr</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrMsgTooLong</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpsFoStateChange</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpsFoLeaseUpdateFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrUserDbUnknown</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrMaxLeasesReached</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrNoSubnetFixAddr</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrLeaseDefaultTimers</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrPoolMinFreeExc</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrSubnetDepleted</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrPoolDepleted</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrIntLseConflict</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrLeaseModify</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrLeaseCreate</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrLeaseDelete</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxLudbDhcpGroupIfTooLong</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxLudbPppoeGroupIfTooLong</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrNoContFreeBlocks</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpsPoolFoStateChange</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpsPoolFoLeaseUpdateFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrPlThTooLowV6</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrPlThDepletedV6</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrPfxThTooLowV6</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpSvrPfxThDepletedV6</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpsLeaseOfferedExpired</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpsAddrAllocationFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <dhcps> + <event>tmnxDhcpsPacketDropped</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dhcps> + <diameter> + <event>tmnxDiamPolicyPeerStateChange</event> + <throttle>false</throttle> + </diameter> + <diameter> + <event>tmnxDiamAppSessionFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </diameter> + <diameter> + <event>tmnxDiamSessionEvent</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </diameter> + <diameter> + <event>tmnxDiamPpPrxMcLocStateChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </diameter> + <diameter> + <event>tmnxDiamMessageDropped</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </diameter> + <diameter> + <event>tmnxDiamNdPeerStatActiveChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </diameter> + <dot1x> + <event>alxDot1xHostAuthEvent</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dot1x> + <dynsvc> + <event>tmnxDynSvcSapFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </dynsvc> + <efm-oam> + <event>tmnxDot3OamPeerChanged</event> + <throttle>false</throttle> + </efm-oam> + <efm-oam> + <event>tmnxDot3OamLoopDetected</event> + <throttle>false</throttle> + </efm-oam> + <efm-oam> + <event>tmnxDot3OamLoopCleared</event> + <throttle>false</throttle> + </efm-oam> + <efm-oam> + <event>dot3OamThresholdEvent</event> + <throttle>false</throttle> + </efm-oam> + <efm-oam> + <event>dot3OamNonThresholdEvent</event> + <throttle>false</throttle> + </efm-oam> + <efm-oam> + <event>tmnxDot3OamSdThresholdEvent</event> + <throttle>false</throttle> + </efm-oam> + <efm-oam> + <event>tmnxDot3OamThresholdEventClr</event> + <throttle>false</throttle> + </efm-oam> + <efm-oam> + <event>tmnxDot3OamNonThresholdEventClr</event> + <throttle>false</throttle> + </efm-oam> + <elmi> + <event>tmnxElmiIfStatusChangeEvent</event> + <throttle>false</throttle> + </elmi> + <elmi> + <event>tmnxElmiEVCStatusChangeEvent</event> + <throttle>false</throttle> + </elmi> + <ering> + <event>tmnxEthRingPathFwdStateChange</event> + <throttle>false</throttle> + </ering> + <ering> + <event>tmnxEthRingApsPrvsnRaiseAlarm</event> + <throttle>false</throttle> + </ering> + <ering> + <event>tmnxEthRingApsPrvsnClearAlarm</event> + <throttle>false</throttle> + </ering> + <eth-cfm> + <event>dot1agCfmFaultAlarm</event> + <throttle>false</throttle> + </eth-cfm> + <eth-cfm> + <event>tmnxDot1agCfmMepLbmTestComplete</event> + <throttle>false</throttle> + </eth-cfm> + <eth-cfm> + <event>tmnxDot1agCfmMepLtmTestComplete</event> + <throttle>false</throttle> + </eth-cfm> + <eth-cfm> + <event>tmnxDot1agCfmMepEthTestComplete</event> + <throttle>false</throttle> + </eth-cfm> + <eth-cfm> + <event>tmnxDot1agCfmMepDMTestComplete</event> + <throttle>false</throttle> + </eth-cfm> + <eth-cfm> + <event>tmnxDot1agCfmMepAisStateChanged</event> + <throttle>false</throttle> + </eth-cfm> + <eth-cfm> + <event>tmnxDot1agCfmMipEvaluation</event> + <throttle>false</throttle> + </eth-cfm> + <eth-cfm> + <event>tmnxDot1agCfmMepSLMTestComplete</event> + <throttle>false</throttle> + </eth-cfm> + <eth-cfm> + <event>tmnxDot1agCfmMepCsfStateChanged</event> + <throttle>false</throttle> + </eth-cfm> + <eth-cfm> + <event>tmnxDot1agCfmMepFcltyFaultRaise</event> + <throttle>false</throttle> + </eth-cfm> + <eth-cfm> + <event>tmnxDot1agCfmMepFcltyFaultClear</event> + <throttle>false</throttle> + </eth-cfm> + <etun> + <event>tmnxEthTunnelApsCfgRaiseAlarm</event> + <throttle>false</throttle> + </etun> + <etun> + <event>tmnxEthTunnelApsCfgClearAlarm</event> + <throttle>false</throttle> + </etun> + <etun> + <event>tmnxEthTunnelApsPrvsnRaiseAlarm</event> + <throttle>false</throttle> + </etun> + <etun> + <event>tmnxEthTunnelApsPrvsnClearAlarm</event> + <throttle>false</throttle> + </etun> + <etun> + <event>tmnxEthTunnelApsNoRspRaiseAlarm</event> + <throttle>false</throttle> + </etun> + <etun> + <event>tmnxEthTunnelApsNoRspClearAlarm</event> + <throttle>false</throttle> + </etun> + <etun> + <event>tmnxEthTunnelApsSwitchoverAlarm</event> + <throttle>false</throttle> + </etun> + <filter> + <event>tIPFilterPBRPacketsDrop</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterSubInsSpaceAlarmRaised</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterSubInsSpaceAlarmCleared</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterSubInsFltrEntryDropped</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterBgpFlowSpecProblem</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterApplyPathProblem</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterRadSharedFltrAlarmRaised</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterRadSharedFltrAlarmClear</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterEmbeddingOperStateChange</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterEmbedOpenflowOperStateChg</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterOpenflowRequestRejected</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterEmbedFlowspecOperStateChg</event> + <throttle>false</throttle> + </filter> + <filter> + <event>tFilterRPActiveDestChangeEvent</event> + <throttle>false</throttle> + </filter> + <gsmp> + <event>tmnxAncpIngRateMonitorEvent</event> + <throttle>false</throttle> + </gsmp> + <gsmp> + <event>tmnxAncpIngRateMonitorEventL</event> + <throttle>false</throttle> + </gsmp> + <gsmp> + <event>tmnxAncpEgrRateMonitorEvent</event> + <throttle>false</throttle> + </gsmp> + <gsmp> + <event>tmnxAncpEgrRateMonitorEventL</event> + <throttle>false</throttle> + </gsmp> + <gsmp> + <event>tmnxAncpShcvDisabledEvent</event> + <throttle>false</throttle> + </gsmp> + <gsmp> + <event>tmnxAncpShcvDisabledEventL</event> + <throttle>false</throttle> + </gsmp> + <gsmp> + <event>tmnxAncpSesRejected</event> + <throttle>false</throttle> + </gsmp> + <gsmp> + <event>tmnxAncpStringRejected</event> + <throttle>false</throttle> + </gsmp> + <igmp> + <event>vRtrIgmpIfRxQueryVerMismatch</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpIfCModeRxQueryMismatch</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpMaxGrpsLimitExceeded</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpMcacPlcyDropped</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpHostInstantiationFail</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpHostMaxGrpsLimitExceeded</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpHostMcacPlcyDropped</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpHostCModeRxQueryMismatch</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpHostRxQueryVerMismatch</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpHostMaxSrcsLimitExceeded</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpMaxSrcsLimitExceeded</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpGrpIfSapMaxGrpsLimExceed</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpGrpIfSapMaxSrcsLimExceed</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpGrpIfSapMcacPlcyDropped</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpGrpIfSapCModeRxQueryMism</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpGrpIfSapRxQueryVerMism</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpHostMaxGrpSrcsLimitExcd</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpMaxGrpSrcsLimitExceeded</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpGrpIfSapMaxGrpSrcLimExcd</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpHostQryIntervalConflict</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpNotifyNumOfIPsecIfLowWm</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpNotifyNumOfIPsecIfHighWm</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpNotifyNumOfIPsecIfMaxRch</event> + <throttle>false</throttle> + </igmp> + <igmp> + <event>vRtrIgmpSlaProfInstMcacPlcyDrop</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </igmp> + <igmp-snooping> + <event>sapIgmpSnpgGrpLimitExceeded</event> + <throttle>false</throttle> + </igmp-snooping> + <igmp-snooping> + <event>sapIgmpSnpgMcacPlcyDropped</event> + <throttle>false</throttle> + </igmp-snooping> + <igmp-snooping> + <event>sdpBndIgmpSnpgGrpLimitExceeded</event> + <throttle>false</throttle> + </igmp-snooping> + <igmp-snooping> + <event>sdpBndIgmpSnpgMcacPlcyDropped</event> + <throttle>false</throttle> + </igmp-snooping> + <igmp-snooping> + <event>sapIgmpSnpgMcsFailure</event> + <throttle>false</throttle> + </igmp-snooping> + <igmp-snooping> + <event>sapIgmpSnpgSrcLimitExceeded</event> + <throttle>false</throttle> + </igmp-snooping> + <igmp-snooping> + <event>sdpBndIgmpSnpgSrcLimitExceeded</event> + <throttle>false</throttle> + </igmp-snooping> + <igmp-snooping> + <event>sdpBndIgmpSnpgGrpSrcLimitExceed</event> + <throttle>false</throttle> + </igmp-snooping> + <igmp-snooping> + <event>sapIgmpSnpgGrpSrcLimitExceeded</event> + <throttle>false</throttle> + </igmp-snooping> + <igmp-snooping> + <event>eMplsIgmpSnpgMfibFailure</event> + <throttle>false</throttle> + </igmp-snooping> + <ip> + <event>clearRTMError</event> + <throttle>false</throttle> + </ip> + <ip> + <event>ipEtherBroadcast</event> + <throttle>false</throttle> + </ip> + <ip> + <event>ipDuplicateAddress</event> + <throttle>false</throttle> + </ip> + <ip> + <event>ipArpInfoOverwritten</event> + <throttle>false</throttle> + </ip> + <ip> + <event>fibAddFailed</event> + <throttle>false</throttle> + </ip> + <ip> + <event>qosNetworkPolicyMallocFailed</event> + <throttle>false</throttle> + </ip> + <ip> + <event>ipArpBadInterface</event> + <throttle>false</throttle> + </ip> + <ip> + <event>ipArpDuplicateIpAddress</event> + <throttle>false</throttle> + </ip> + <ip> + <event>ipArpDuplicateMacAddress</event> + <throttle>false</throttle> + </ip> + <ip> + <event>ipAnyDuplicateAddress</event> + <throttle>false</throttle> + </ip> + <ip> + <event>labelIndexAllocFailed</event> + <throttle>false</throttle> + </ip> + <ipsec> + <event>tIPsecRUTnlFailToCreate</event> + <throttle>false</throttle> + </ipsec> + <ipsec> + <event>tIPsecRUSAFailToAddRoute</event> + <throttle>false</throttle> + </ipsec> + <ipsec> + <event>tIPsecBfdIntfSessStateChgd</event> + <throttle>false</throttle> + </ipsec> + <ipsec> + <event>tIPsecRadAcctPlcyFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </ipsec> + <ipsec> + <event>tIPSecTrustAnchorPrfOprChg</event> + <throttle>false</throttle> + </ipsec> + <ipsec> + <event>tIPsecTunnelEncapIpMtuTooSmall</event> + <throttle>false</throttle> + </ipsec> + <ipsec> + <event>tIPsecRuTnlEncapIpMtuTooSmall</event> + <throttle>false</throttle> + </ipsec> + <ipsec> + <event>tmnxSecNotifCmptedCertHashChngd</event> + <throttle>false</throttle> + </ipsec> + <ipsec> + <event>tmnxSecNotifCmptedCertChnChngd</event> + <throttle>false</throttle> + </ipsec> + <ipsec> + <event>tmnxSecNotifSendChnNotInCmptChn</event> + <throttle>false</throttle> + </ipsec> + <ipsec> + <event>tmnxIPsecTunnelOperStateChange</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </ipsec> + <ipsec> + <event>tmnxIPsecGWOperStateChange</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </ipsec> + <ipsec> + <event>tIPsecRUTnlRemoved</event> + <throttle>false</throttle> + </ipsec> + <ipsec> + <event>tIPsecTunnelProtocolFailed</event> + <throttle>false</throttle> + </ipsec> + <isis> + <event>vRtrIsisSpbNbrMultAdjExists</event> + <throttle>false</throttle> + </isis> + <isis> + <event>vRtrIsisSpbNbrMultAdjExistsClear</event> + <throttle>false</throttle> + </isis> + <isis> + <event>vRtrSpbEctFidCfgChg</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisDatabaseOverload</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisManualAddressDrops</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisCorruptedLSPDetected</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisMaxSeqExceedAttempt</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisIDLenMismatch</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisMaxAreaAddrsMismatch</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisOwnLSPPurge</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisSequenceNumberSkip</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisAutTypeFail</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisAuthFail</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisVersionSkew</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisAreaMismatch</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisRejectedAdjacency</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisLSPTooLargeToPropagate</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisOrigLSPBufSizeMismatch</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisProtoSuppMismatch</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisAdjacencyChange</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisCircIdExhausted</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisAdjRestartStatusChange</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisLdpSyncTimerStarted</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisLdpSyncExit</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisExportLimitReached</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisExportLimitWarning</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisRoutesExpLmtDropped</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisFailureDisabled</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisSidError</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisSidNotInLabelRange</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisRejectedAdjacencySid</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisLSPPurge</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisPfxLimitOverloadWarning</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisAdjBfdSessionSetupFail</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisSrgbBadLabelRange</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisCircMtuTooLow</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisRejectedAdjacencySet</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisCorruptRemainingLifetime</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisSidStatsIndexAlloc</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisFaOperParticipationDown</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisRejectedEndXSid</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisRejectedPgId</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisSrv6LocError</event> + <throttle>false</throttle> + </isis> + <isis> + <event>tmnxIsisSrv6StaticSidIfTypeError</event> + <throttle>false</throttle> + </isis> + <l2tp> + <event>tmnxL2tpPeerUnreachable</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </l2tp> + <l2tp> + <event>tmnxL2tpIsaMdaVRtrStateChange</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </l2tp> + <l2tp> + <event>tmnxL2tpLnsSePppSessionFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </l2tp> + <l2tp> + <event>tmnxL2tpVappVRtrStateChange</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </l2tp> + <l2tp> + <event>tmnxL2tpTunnelBlacklisted</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </l2tp> + <l2tp> + <event>tmnxL2tpTunnelSelBlacklistFull</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </l2tp> + <l2tp> + <event>tmnxL2tpLnsPppNcpFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </l2tp> + <l2tp> + <event>tmnxL2tpApFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </l2tp> + <lag> + <event>DynamicCostOn</event> + <throttle>false</throttle> + </lag> + <lag> + <event>DynamicCostOff</event> + <throttle>false</throttle> + </lag> + <lag> + <event>LagPortAddFailed</event> + <throttle>false</throttle> + </lag> + <lag> + <event>LagSubGroupSelected</event> + <throttle>false</throttle> + </lag> + <lag> + <event>LagPortAddFailureCleared</event> + <throttle>false</throttle> + </lag> + <lag> + <event>LagStateEvent</event> + <throttle>false</throttle> + </lag> + <lag> + <event>tLagMemberStateEvent</event> + <throttle>false</throttle> + </lag> + <lag> + <event>tmnxLagBfdMemStateChanged</event> + <throttle>false</throttle> + </lag> + <lag> + <event>tLagAdaptiveLoadbalancingChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </lag> + <ldap> + <event>tmnxLdapOperStateChange</event> + <throttle>false</throttle> + </ldap> + <ldap> + <event>tmnxLdapServerOperStateChange</event> + <throttle>false</throttle> + </ldap> + <ldp> + <event>vRtrLdpStateChange</event> + <throttle>false</throttle> + </ldp> + <ldp> + <event>vRtrLdpGroupIdMismatch</event> + <throttle>false</throttle> + </ldp> + <ldp> + <event>vRtrLdpNgIpv4InstStateChange</event> + <throttle>false</throttle> + </ldp> + <ldp> + <event>vRtrLdpNgIpv6InstStateChange</event> + <throttle>false</throttle> + </ldp> + <ldp> + <event>vRtrLdpNgIfStateChange</event> + <generate>true</generate> + </ldp> + <ldp> + <event>vRtrLdpNgInetIfStateChange</event> + <generate>true</generate> + </ldp> + <ldp> + <event>vRtrLdpNgTargPeerStateChange</event> + <generate>true</generate> + </ldp> + <ldp> + <event>vRtrLdpNgSessionStateChange</event> + <throttle>false</throttle> + </ldp> + <ldp> + <event>vRtrLdpNgSessMaxFecThresChanged</event> + <throttle>false</throttle> + </ldp> + <ldp> + <event>vRtrLdpNgSessMaxFecLimitReached</event> + <throttle>false</throttle> + </ldp> + <ldp> + <event>vRtrLdpNgResourceExhaustion</event> + <throttle>false</throttle> + </ldp> + <ldp> + <event>vRtrLdpNgAddrFecCommMismatch</event> + <throttle>false</throttle> + </ldp> + <li> + <event>sbiBootLiConfig</event> + <throttle>false</throttle> + </li> + <li> + <event>sourceEnabled</event> + <throttle>false</throttle> + </li> + <li> + <event>sourceDisabled</event> + <throttle>false</throttle> + </li> + <li> + <event>destinationEnabled</event> + <throttle>false</throttle> + </li> + <li> + <event>destinationDisabled</event> + <throttle>false</throttle> + </li> + <li> + <event>sourceSapChange</event> + <throttle>false</throttle> + </li> + <li> + <event>sourceSubscriberChange</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorSourceIPFltrChangeReject</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorSourceMacFltrChangeReject</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorSourceFilterAssignReject</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorDestinationChangeReject</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorSourceFilterOverruled</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorSourceFilterAssignWarn</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorFilterAssignToSapWarn</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorFilterAssignToSdpWarn</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorFilterAssignToItfWarn</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorSourceLiFilterChanged</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorSourceLiSubProblem</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorSourceIPv6FltrChangeRej</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorLiNatLsnSubOperStateCh</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorLiNatL2awSubOperStateCh</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorLiNat64SubOperStateCh</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorLiX2Alarm</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </li> + <li> + <event>tFltrLiRsvdBlockRangeChangeEvent</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorLiSrcPortLicInvalid</event> + <throttle>false</throttle> + </li> + <li> + <event>tMirrorLiXIfLicenseInvalid</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </li> + <li> + <event>tMirrorLiUpSubFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </li> + <li> + <event>tMirrorLiUpSubSuccess</event> + <generate>true</generate> + </li> + <li> + <event>tMirrorLiUpIeInvalid</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </li> + <li> + <event>cli_user_login</event> + <throttle>false</throttle> + </li> + <li> + <event>cli_user_logout</event> + <throttle>false</throttle> + </li> + <li> + <event>cli_user_login_failed</event> + <throttle>false</throttle> + </li> + <li> + <event>cli_user_login_max_attempts</event> + <throttle>false</throttle> + </li> + <li> + <event>ftp_user_login</event> + <throttle>false</throttle> + </li> + <li> + <event>ftp_user_logout</event> + <throttle>false</throttle> + </li> + <li> + <event>ftp_user_login_failed</event> + <throttle>false</throttle> + </li> + <li> + <event>ftp_user_login_max_attempts</event> + <throttle>false</throttle> + </li> + <li> + <event>ssh_user_login</event> + <throttle>false</throttle> + </li> + <li> + <event>ssh_user_logout</event> + <throttle>false</throttle> + </li> + <li> + <event>ssh_user_login_failed</event> + <throttle>false</throttle> + </li> + <li> + <event>ssh_user_login_max_attempts</event> + <throttle>false</throttle> + </li> + <li> + <event>cli_user_io</event> + <generate>true</generate> + </li> + <li> + <event>snmp_user_set</event> + <generate>true</generate> + </li> + <li> + <event>cli_config_io</event> + <throttle>false</throttle> + </li> + <li> + <event>cli_unauth_user_io</event> + <generate>true</generate> + </li> + <li> + <event>cli_unauth_config_io</event> + <throttle>false</throttle> + </li> + <li> + <event>grpc_user_login</event> + <throttle>false</throttle> + </li> + <li> + <event>grpc_user_logout</event> + <throttle>false</throttle> + </li> + <li> + <event>grpc_user_login_failed</event> + <throttle>false</throttle> + </li> + <li> + <event>grpc_user_login_max_attempts</event> + <throttle>false</throttle> + </li> + <li> + <event>host_snmp_attempts</event> + <throttle>false</throttle> + </li> + <li> + <event>radiusFailed</event> + <throttle>false</throttle> + </li> + <li> + <event>netconf_user_login</event> + <throttle>false</throttle> + </li> + <li> + <event>netconf_user_logout</event> + <throttle>false</throttle> + </li> + <li> + <event>netconf_user_login_failed</event> + <throttle>false</throttle> + </li> + <li> + <event>netconf_user_login_max_attempts</event> + <throttle>false</throttle> + </li> + <li> + <event>mdSaveCommitHistoryFailed</event> + <throttle>false</throttle> + </li> + <li> + <event>sbiBootMdReadCommitHistoryFailed</event> + <throttle>false</throttle> + </li> + <li> + <event>mdCommitSucceeded</event> + <throttle>false</throttle> + </li> + <li> + <event>ssiSaveConfigSucceeded</event> + <throttle>false</throttle> + </li> + <li> + <event>ssiSaveConfigFailed</event> + <throttle>false</throttle> + </li> + <li> + <event>tmnxConfigModify</event> + <throttle>false</throttle> + </li> + <li> + <event>tmnxConfigCreate</event> + <throttle>false</throttle> + </li> + <li> + <event>tmnxConfigDelete</event> + <throttle>false</throttle> + </li> + <li> + <event>tmnxStateChange</event> + <throttle>false</throttle> + </li> + <li> + <event>mdLiConfigChange</event> + <throttle>false</throttle> + </li> + <li> + <event>ssiSyncConfigOK</event> + <throttle>false</throttle> + </li> + <li> + <event>ssiSyncConfigFailed</event> + <throttle>false</throttle> + </li> + <li> + <event>md_cli_io</event> + <generate>true</generate> + </li> + <li> + <event>md_cli_unauth_io</event> + <generate>true</generate> + </li> + <li> + <event>tmnxClear</event> + <throttle>false</throttle> + </li> + <li> + <event>netconf_auth</event> + <throttle>false</throttle> + </li> + <li> + <event>netconf_unauth</event> + <throttle>false</throttle> + </li> + <li> + <event>grpc_auth</event> + <throttle>false</throttle> + </li> + <li> + <event>grpc_unauth</event> + <throttle>false</throttle> + </li> + <lldp> + <event>lldpRemTablesChange</event> + <throttle>false</throttle> + </lldp> + <lldp> + <event>tmnxLldpRemEntryPeerAdded</event> + <throttle>false</throttle> + </lldp> + <lldp> + <event>tmnxLldpRemEntryPeerUpdated</event> + <throttle>false</throttle> + </lldp> + <lldp> + <event>tmnxLldpRemEntryPeerRemoved</event> + <throttle>false</throttle> + </lldp> + <lldp> + <event>tmnxLldpRemManAddrEntryAdded</event> + <throttle>false</throttle> + </lldp> + <lldp> + <event>tmnxLldpRemManAddrEntryRemoved</event> + <throttle>false</throttle> + </lldp> + <logger> + <event>STARTED</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxLogTraceError</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxLogSpaceContention</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </logger> + <logger> + <event>tmnxLogAdminLocFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </logger> + <logger> + <event>tmnxLogBackupLocFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </logger> + <logger> + <event>tmnxLogFileRollover</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxLogFileDeleted</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxClear</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxTestEvent</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxLogEventThrottled</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxSysLogTargetProblem</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxLogAccountingDataLoss</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </logger> + <logger> + <event>tmnxStdEventsReplayed</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxLogOnlyEventThrottled</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxLogEventOverrun</event> + <throttle>false</throttle> + </logger> + <logger> + <event>tmnxLogOnlyEventOverrun</event> + <throttle>false</throttle> + </logger> + <macsec> + <event>tmnxMacsecConfiguredPortCA</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecUnconfiguredPortCA</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecEnabledPort</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecDisabledPort</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecMaxPeerLimitExceeded</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMkaSessionEstablished</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMkaPskRollover</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMkaSessionEnded</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMkaOperStateChanged</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecMaxPeerLimitCleared</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecCaCreate</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecSakCreate</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecSakInstalledRx</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecSakInstalledTx</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecMkaReplayAttemptDisc</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecDpReplayAttempt</event> + <throttle>false</throttle> + </macsec> + <macsec> + <event>tmnxMacsecSakDelete</event> + <throttle>false</throttle> + </macsec> + <mcpath> + <event>tmnxMcPathSrcGrpBlackHole</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mcpath> + <mcpath> + <event>tmnxMcPathSrcGrpBlackHoleCleared</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mcpath> + <mcpath> + <event>tmnxMcPathAvailBwLimitExceeded</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mcpath> + <mcpath> + <event>tmnxMcPathAvailBwLimitCleared</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mcpath> + <mc-redundancy> + <event>tmnxMcRedundancyPeerStateChanged</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcRedundancyMismatchDetected</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcRedundancyMismatchResolved</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcPeerSyncStatusChanged</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcSyncClientAlarmRaised</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcSyncClientAlarmCleared</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpSubnetMismatch</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpSubnetMismatchCleared</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpInstanceIdMismatch</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpSapMismatch</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpSapTagMismatch</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpRedIfMismatch</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpDualMaster</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcLagInfoLagChanged</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpSystemIpNotSet</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcRingOperStateChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcRingInbCtrlOperStateChgd</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcRingNodeLocOperStateChgd</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcSyncClockSkewRaised</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcSyncClockSkewCleared</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpDuplicateSubIfAddress</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcPeerRingsOperStateChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpTrapNewMaster</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpBecameBackup</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>srrpPacketDiscarded</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpBfdIntfSessStateChgd</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcPeerEPBfdSessionOpen</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcPeerEPBfdSessionClose</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcPeerEPBfdSessionUp</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcPeerEPBfdSessionDown</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcPeerEPOperDown</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcPeerEPOperUp</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMCEPSessionPsvModeEnabled</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMCEPSessionPsvModeDisabled</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tMcPeerIPsecTnlGrpMasterStateChg</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tMcPeerIPsecTnlGrpProtStatusChg</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcOmcrStatFailedChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxMcOmcrClientNumEntriesHigh</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpOperDownInvalidMac</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpOperDownInvalidMacClear</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tmnxSrrpPrivRetailMismatch</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mc-redundancy> + <mc-redundancy> + <event>tMcIPsecDomainActivityStateChg</event> + <throttle>false</throttle> + </mc-redundancy> + <mc-redundancy> + <event>tMcIpsecDomainProtStatusChg</event> + <throttle>false</throttle> + </mc-redundancy> + <mgmt-core> + <event>mdConfigChange</event> + <generate>true</generate> + </mgmt-core> + <mgmt-core> + <event>mdOcConfigChange</event> + <generate>true</generate> + </mgmt-core> + <mgmt-core> + <event>mdBofConfigChange</event> + <generate>true</generate> + </mgmt-core> + <mgmt-core> + <event>mdDebugConfigChange</event> + <generate>true</generate> + </mgmt-core> + <mgmt-core> + <event>asyncOperationStatusChange</event> + <throttle>false</throttle> + </mgmt-core> + <mgmt-core> + <event>syncOperationStatusChange</event> + <generate>true</generate> + </mgmt-core> + <mgmt-core> + <event>mdAutomaticRollbackFailed</event> + <throttle>false</throttle> + </mgmt-core> + <mgmt-core> + <event>mdRollbackFailed</event> + <throttle>false</throttle> + </mgmt-core> + <mirror> + <event>sourceEnabled</event> + <throttle>false</throttle> + </mirror> + <mirror> + <event>sourceDisabled</event> + <throttle>false</throttle> + </mirror> + <mirror> + <event>destinationEnabled</event> + <throttle>false</throttle> + </mirror> + <mirror> + <event>destinationDisabled</event> + <throttle>false</throttle> + </mirror> + <mirror> + <event>sourceIpFilterChange</event> + <throttle>false</throttle> + </mirror> + <mirror> + <event>sourceMacFilterChange</event> + <throttle>false</throttle> + </mirror> + <mirror> + <event>sourceSapChange</event> + <throttle>false</throttle> + </mirror> + <mirror> + <event>sourceSubscriberChange</event> + <throttle>false</throttle> + </mirror> + <mirror> + <event>tMirrorSourceIpv6FilterChange</event> + <throttle>false</throttle> + </mirror> + <mld> + <event>vRtrMldIfRxQueryVerMismatch</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldIfCModeRxQueryMismatch</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldMaxGrpsLimitExceeded</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldMcacPlcyDropped</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldHostInstantiationFail</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldHostMaxGrpsLimitExceeded</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldHostMcacPlcyDropped</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldHostCModeRxQueryMismatch</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldHostRxQueryVerMismatch</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldHostMaxSrcsLimitExceeded</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldMaxSrcsLimitExceeded</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldGrpIfSapMaxGrpsLimExceed</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldGrpIfSapMaxSrcsLimExceed</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldGrpIfSapMcacPlcyDropped</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldGrpIfSapCModeRxQueryMism</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldGrpIfSapRxQueryVerMism</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldHostMaxGrpSrcsLimitExcd</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldMaxGrpSrcsLimitExceeded</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldGrpIfSapMaxGrpSrcLimExcd</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldHostQryIntervalConflict</event> + <throttle>false</throttle> + </mld> + <mld> + <event>vRtrMldSlaProfInstMcacPlcyDrop</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </mld> + <mld-snooping> + <event>sapMldSnpgGrpLimitExceeded</event> + <throttle>false</throttle> + </mld-snooping> + <mld-snooping> + <event>sdpBndMldSnpgGrpLimitExceeded</event> + <throttle>false</throttle> + </mld-snooping> + <mld-snooping> + <event>sapMldSnpgMcsFailure</event> + <throttle>false</throttle> + </mld-snooping> + <mpls> + <event>mplsXCUp</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>mplsXCDown</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>mplsTunnelUp</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>mplsTunnelDown</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>mplsTunnelRerouted</event> + <generate>true</generate> + </mpls> + <mpls> + <event>mplsTunnelReoptimized</event> + <generate>true</generate> + </mpls> + <mpls> + <event>vRtrMplsStateChange</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsIfStateChange</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspUp</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspDown</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspPathUp</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspPathDown</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspPathRerouted</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspPathResignaled</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsP2mpInstanceUp</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsP2mpInstanceDown</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsS2lSubLspUp</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsS2lSubLspDown</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsS2lSubLspRerouted</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsS2lSubLspResignaled</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspPathSoftPreempted</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspPathLstFillReoptElig</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsP2mpInstanceResignaled</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsResignalTimerExpired</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspPathMbbStatusEvent</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspSwitchStbyFailure</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspActivePathChanged</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsXCBundleChange</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsNodeInIgpOverload</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsIPv6StateChange</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsIfIPv6StateChange</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspResourceExhaustion</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspManualSwitchFailure</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsLspPathManualDegStateChg</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsS2lSubLspPreempted</event> + <throttle>false</throttle> + </mpls> + <mpls> + <event>vRtrMplsNodeInIgpOverloadIpv6</event> + <throttle>false</throttle> + </mpls> + <mpls-tp> + <event>vRtrMplsTpLspRevertMismatchAlarm</event> + <throttle>false</throttle> + </mpls-tp> + <mpls-tp> + <event>vRtrMplsTpLspRevertMismatchClear</event> + <throttle>false</throttle> + </mpls-tp> + <mpls-tp> + <event>vRtrMplsTpLspPtTypeMismatchAlarm</event> + <throttle>false</throttle> + </mpls-tp> + <mpls-tp> + <event>vRtrMplsTpLspPtTypeMismatchClear</event> + <throttle>false</throttle> + </mpls-tp> + <mpls-tp> + <event>vRtrMplsTpLspActivePathUp</event> + <throttle>false</throttle> + </mpls-tp> + <mpls-tp> + <event>vRtrMplsTpLspActivePathChange</event> + <throttle>false</throttle> + </mpls-tp> + <msdp> + <event>msdpEstablished</event> + <throttle>false</throttle> + </msdp> + <msdp> + <event>msdpBackwardTransition</event> + <throttle>false</throttle> + </msdp> + <msdp> + <event>tmnxMsdpNgActSrcLimExcd</event> + <throttle>false</throttle> + </msdp> + <msdp> + <event>tmnxMsdpNgPeerActSrcLimExcd</event> + <throttle>false</throttle> + </msdp> + <msdp> + <event>tmnxMsdpNgRPFFailure</event> + <throttle>false</throttle> + </msdp> + <msdp> + <event>tmnxMsdpNgSourceSrcActMsgsExcd</event> + <throttle>false</throttle> + </msdp> + <msdp> + <event>tmnxMsdpNgGroupSrcActMsgsExcd</event> + <throttle>false</throttle> + </msdp> + <nat> + <event>tmnxNatPlL2AwBlockUsageHigh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatIsaMemberSessionUsageHigh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatPlLsnMemberBlockUsageHigh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatL2AwSubIcmpPortUsageHigh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatL2AwSubUdpPortUsageHigh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatL2AwSubTcpPortUsageHigh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatL2AwSubSessionUsageHigh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatPlBlockAllocationLsn</event> + <generate>true</generate> + </nat> + <nat> + <event>tmnxNatPlBlockAllocationL2Aw</event> + <generate>true</generate> + </nat> + <nat> + <event>tmnxNatResourceProblemDetected</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatResourceProblemCause</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatPlAddrFree</event> + <generate>true</generate> + </nat> + <nat> + <event>tmnxNatPlLsnRedActiveChanged</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatPcpSrvStateChanged</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatMdaActive</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatLsnSubBlksFree</event> + <generate>true</generate> + </nat> + <nat> + <event>tmnxNatDetPlcyChanged</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatMdaDetectsLoadSharingErr</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatIsaGrpOperStateChanged</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatIsaGrpIsDegraded</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatLsnSubIcmpPortUsgHigh</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </nat> + <nat> + <event>tmnxNatLsnSubUdpPortUsgHigh</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </nat> + <nat> + <event>tmnxNatLsnSubTcpPortUsgHigh</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </nat> + <nat> + <event>tmnxNatLsnSubSessionUsgHigh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatInAddrPrefixBlksFree</event> + <generate>true</generate> + </nat> + <nat> + <event>tmnxNatFwd2EntryAdded</event> + <generate>true</generate> + </nat> + <nat> + <event>tmnxNatFwd2OperStateChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </nat> + <nat> + <event>tmnxNatVrtrOutDnatOnlyRoutesHigh</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </nat> + <nat> + <event>tmnxNatMaxNbrSubsOrHostsExceeded</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatNbrSubsOrHostsBelowThrsh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatVappActive</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatVappDetectsLoadSharingErr</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatDetPfxMapOperStateChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </nat> + <nat> + <event>tmnxNatDetMap2OperStateChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </nat> + <nat> + <event>tmnxNatDynamicConfigMismatch</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </nat> + <nat> + <event>tmnxNatPlL2AwMembrBlockUsageHigh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatPlMemberExtBlockUsageHigh</event> + <throttle>false</throttle> + </nat> + <nat> + <event>tmnxNatPlLsnMemberPortUsageHigh</event> + <throttle>false</throttle> + </nat> + <ntp> + <event>tmnxNtpAuthMismatch</event> + <throttle>false</throttle> + </ntp> + <ntp> + <event>tmnxNtpNoServersAvail</event> + <throttle>false</throttle> + </ntp> + <ntp> + <event>tmnxNtpServersAvail</event> + <throttle>false</throttle> + </ntp> + <ntp> + <event>tmnxNtpOperChange</event> + <throttle>false</throttle> + </ntp> + <ntp> + <event>tmnxNtpServerChange</event> + <generate>true</generate> + </ntp> + <oam> + <event>tmnxOamPingProbeFailedV3</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamPingTestFailedV3</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamPingTestCompletedV3</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxAncpLoopbackTestCompleted</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxAncpLoopbackTestCompletedL</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamTrPathChange</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamTrTestFailed</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamTrTestCompleted</event> + <throttle>false</throttle> + </oam> + <oam> + <event>svcIdInvalid</event> + <throttle>false</throttle> + </oam> + <oam> + <event>svcIdWrongType</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamLdpTtraceAutoDiscState</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamLdpTtraceFecProbeState</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamLdpTtraceFecDisStatus</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamLdpTtraceFecPFailUpdate</event> + <generate>true</generate> + </oam> + <oam> + <event>tmnxOamSaaThreshold</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamDiagTestCompleted</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxTwampSrvInactivityTimeout</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxTwampSrvMaxConnsExceeded</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxTwampSrvPfxMaxConnsExceeded</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxTwampSrvMaxSessExceeded</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxTwampSrvPfxMaxSessExceeded</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamPmThrRaise</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamPmThrClear</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamSathSvcTestCompleted</event> + <throttle>false</throttle> + </oam> + <oam> + <event>tmnxOamSathSvcStrmCompleted</event> + <throttle>false</throttle> + </oam> + <openflow> + <event>tmnxOFFlowEntryInsertFailed</event> + <throttle>false</throttle> + </openflow> + <ospf> + <event>tmnxOspfVirtIfStateChange</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfVirtNbrStateChange</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfVirtIfConfigError</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfVirtIfAuthFailure</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfVirtIfRxBadPacket</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfAreaOriginateLsa</event> + <generate>true</generate> + </ospf> + <ospf> + <event>tmnxOspfAreaMaxAgeLsa</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfLsdbOverflow</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfLsdbApproachingOverflow</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNssaTranslatorStatusChg</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfRestartStatusChange</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfVirtNbrRestartHlprStsChg</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfSpfRunsStopped</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfSpfRunsRestarted</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfOverloadEntered</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfOverloadExited</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfAsOriginateLsa</event> + <generate>true</generate> + </ospf> + <ospf> + <event>tmnxOspfAsMaxAgeLsa</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfShamIfStateChange</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfShamNbrStateChange</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfShamIfConfigError</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfShamIfAuthFailure</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfShamIfRxBadPacket</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfShamNbrRestartHlprStsChg</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfFailureDisabled</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfExportLimitReached</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfExportLimitWarning</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfRoutesExpLmtDropped</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNgNbrStateChange</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNgIfConfigError</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNgIfAuthFailure</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNgIfRxBadPacket</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNgIfStateChange</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNgNbrRestartHlprStsChg</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNgLinkOriginateLsa</event> + <generate>true</generate> + </ospf> + <ospf> + <event>tmnxOspfNgLinkMaxAgeLsa</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNgLdpSyncTimerStarted</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNgLdpSyncExit</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfSrSidError</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfSrSidNotInLabelRange</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfOverloadWarning</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfRejectedAdjacencySid</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfAdjBfdSessionSetupFail</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfSrgbBadLabelRange</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfRejectedAdjacencySet</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfSidStatsIndexAlloc</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfDynHostnameDuplicate</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfDynHostnameInconsistent</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfFaOperParticipationDown</event> + <throttle>false</throttle> + </ospf> + <ospf> + <event>tmnxOspfNgNbrStrictBfdBlocked</event> + <throttle>false</throttle> + </ospf> + <pcap> + <event>tmnxPcapFileError</event> + <throttle>false</throttle> + </pcap> + <pcap> + <event>tmnxPcapBufferFull</event> + <throttle>false</throttle> + </pcap> + <pcap> + <event>tmnxPcapBufferReadWriteFailure</event> + <throttle>false</throttle> + </pcap> + <pcap> + <event>tmnxPcapSoftwareFailure</event> + <throttle>false</throttle> + </pcap> + <pcep> + <event>tmnxPcepPccPeerStateChange</event> + <throttle>false</throttle> + </pcep> + <pfcp> + <event>tmnxPfcpInvalidIe</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pfcp> + <pim> + <event>vRtrPimNgIfNeighborLoss</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgIfNeighborUp</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgInvalidJoinPrune</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgInvalidRegister</event> + <generate>true</generate> + </pim> + <pim> + <event>vRtrPimNgGrpInSSMRange</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgBSRStateChange</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgHelloDropped</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgSGLimitExceeded</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgReplicationLmtExceeded</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgMDTLimitExceeded</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgMaxGrpsLimitExceeded</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgDataMtReused</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgMcacPlcyDropped</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgInvalidIPmsiTunnel</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgMaxGraftRetry</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgBierInbInvSD</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgBierInbInvBfrId</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgUmhBMonFastFailPriToStb</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgUmhBMonFastFailStbToPri</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgInstMaxNbrReached</event> + <throttle>false</throttle> + </pim> + <pim> + <event>vRtrPimNgIfMaxNbrReached</event> + <throttle>false</throttle> + </pim> + <pim-snooping> + <event>tmnxPimSnpgIfNeighborLoss</event> + <throttle>false</throttle> + </pim-snooping> + <pim-snooping> + <event>tmnxPimSnpgIfNeighborUp</event> + <throttle>false</throttle> + </pim-snooping> + <pim-snooping> + <event>tmnxPimSnpgSGLimitExceeded</event> + <throttle>false</throttle> + </pim-snooping> + <pim-snooping> + <event>tmnxPimSnpgSnoopModeChanged</event> + <throttle>false</throttle> + </pim-snooping> + <pim-snooping> + <event>tmnxPimSnpgIfMaxNbrReached</event> + <throttle>false</throttle> + </pim-snooping> + <pim-snooping> + <event>tmnxPimSnpgMaxNbrReached</event> + <throttle>false</throttle> + </pim-snooping> + <port> + <event>sonetSDHAlarmSet</event> + <throttle>false</throttle> + </port> + <port> + <event>sonetSDHAlarmClear</event> + <throttle>false</throttle> + </port> + <port> + <event>sonetSDHChannelAlarmSet</event> + <throttle>false</throttle> + </port> + <port> + <event>sonetSDHChannelAlarmClear</event> + <throttle>false</throttle> + </port> + <port> + <event>SFPInserted</event> + <throttle>false</throttle> + </port> + <port> + <event>SFPRemoved</event> + <throttle>false</throttle> + </port> + <port> + <event>SFPStatusFailure</event> + <throttle>false</throttle> + </port> + <port> + <event>portError</event> + <throttle>false</throttle> + </port> + <port> + <event>ds3AlarmSet</event> + <throttle>false</throttle> + </port> + <port> + <event>ds3AlarmClear</event> + <throttle>false</throttle> + </port> + <port> + <event>ds1AlarmSet</event> + <throttle>false</throttle> + </port> + <port> + <event>ds1AlarmClear</event> + <throttle>false</throttle> + </port> + <port> + <event>etherAlarmSet</event> + <throttle>false</throttle> + </port> + <port> + <event>etherAlarmClear</event> + <throttle>false</throttle> + </port> + <port> + <event>ds1LoopbackStart</event> + <throttle>false</throttle> + </port> + <port> + <event>ds1LoopbackStop</event> + <throttle>false</throttle> + </port> + <port> + <event>ds3LoopbackStart</event> + <throttle>false</throttle> + </port> + <port> + <event>ds3LoopbackStop</event> + <throttle>false</throttle> + </port> + <port> + <event>sdhLoopbackStart</event> + <throttle>false</throttle> + </port> + <port> + <event>sdhLoopbackStop</event> + <throttle>false</throttle> + </port> + <port> + <event>etherLoopDetected</event> + <throttle>false</throttle> + </port> + <port> + <event>etherLoopCleared</event> + <throttle>false</throttle> + </port> + <port> + <event>etherSpeedNotCompatible</event> + <throttle>false</throttle> + </port> + <port> + <event>etherDuplexNotCompatible</event> + <throttle>false</throttle> + </port> + <port> + <event>etherIngressRateCfgNotCompatible</event> + <throttle>false</throttle> + </port> + <port> + <event>digitalDiagnosticMonitorFailed</event> + <throttle>false</throttle> + </port> + <port> + <event>SFPStatusDDMCorrupt</event> + <throttle>false</throttle> + </port> + <port> + <event>SFPStatusReadError</event> + <throttle>false</throttle> + </port> + <port> + <event>SFPStatusUnsupported</event> + <throttle>false</throttle> + </port> + <port> + <event>dsxClockSyncStateChange</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxPortUnsupportedFunction</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </port> + <port> + <event>otuAlarms</event> + <throttle>false</throttle> + </port> + <port> + <event>tPortAccEgrQGrpHostMatchFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </port> + <port> + <event>tPortEgrVPortHostMatchFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </port> + <port> + <event>digitalDiagnosticMonitorCleared</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqSonetClockSrcNotCompatible</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqSonetSfThreshNotCompatible</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqSonetFramingNotCompatible</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxResvCbsPoolThreshGreen</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxResvCbsPoolThreshAmber</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxResvCbsPoolThreshRed</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqPortEtherCrcAlarm</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqPortEtherCrcAlarmClear</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqPortEtherInternalAlarm</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqPortEtherInternalAlarmClr</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqCohOptPortAlarm</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqPortEtherSymMonAlarm</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqPortEtherSymMonAlarmClear</event> + <throttle>false</throttle> + </port> + <port> + <event>SFPStatusCulprit</event> + <throttle>false</throttle> + </port> + <port> + <event>SFPStatusBlocked</event> + <throttle>false</throttle> + </port> + <port> + <event>SFPStatusOperational</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxEqPortEtherEgressRateChange</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxPortAUIReset</event> + <generate>true</generate> + </port> + <port> + <event>tmnxHwAggShpSchedOperColorGreen</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxHwAggShpSchedOperColorAmber</event> + <throttle>false</throttle> + </port> + <port> + <event>tmnxHwAggShpSchedOperColorRed</event> + <throttle>false</throttle> + </port> + <port> + <event>SFPStatusInvalidFormFactor</event> + <throttle>false</throttle> + </port> + <pppoe> + <event>tmnxPppoeSessionFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pppoe> + <pppoe> + <event>tmnxPppoeNcpFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pppoe> + <pppoe> + <event>tmnxMlpppBundleIndicatorsChange</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pppoe> + <pppoe> + <event>tmnxPppoeLacSteeringActive</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pppoe> + <pppoe> + <event>tmnxPppoeLacSteeringStopped</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pppoe> + <pppoe> + <event>tmnxPppoeLacSteeringFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pppoe> + <pppoe> + <event>tmnxPppoeMaxSessionsOvrExceeded</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pppoe> + <pppoe-clnt> + <event>tmnxPppoeClientSetupFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pppoe-clnt> + <pppoe-clnt> + <event>tmnxPppoeClientEchoTimeout</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pppoe-clnt> + <pppoe-clnt> + <event>tmnxPppoeClientNcpFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </pppoe-clnt> + <ptp> + <event>tmnxPtpCardNotSupported</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpCardNotSupportedClear</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpMasterClockChangedEvent</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpClockRecoveryStateChange</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpOutOfResources</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpOutOfResourcesClear</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpDynamicChange</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpPortNoTimestamping</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpPortPtsfUnusable</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpTimeRecoveryStateChange</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpPeerNoTxTimestamping</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpPeerNoTxTimestampingClear</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpPeerNoRxTimestamping</event> + <throttle>false</throttle> + </ptp> + <ptp> + <event>tmnxPtpPeerNoRxTimestampingClear</event> + <throttle>false</throttle> + </ptp> + <python> + <event>tmnxPythonInterpreterRestarted</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </python> + <radius> + <event>tmnxRadSrvPlcySrvOperStateCh</event> + <throttle>false</throttle> + </radius> + <radius> + <event>tmnxRadRouteDownloadFailed</event> + <throttle>false</throttle> + </radius> + <radius> + <event>tmnxRadAcctOnOngoing</event> + <throttle>false</throttle> + </radius> + <rip> + <event>ripPacketDiscarded</event> + <throttle>false</throttle> + </rip> + <rip> + <event>vRtrRipAuthTypeMismatch</event> + <throttle>false</throttle> + </rip> + <rip> + <event>vRtrRipAuthTypeFailure</event> + <throttle>false</throttle> + </rip> + <rip> + <event>vRtrRipInstanceShuttingDown</event> + <throttle>false</throttle> + </rip> + <rip> + <event>vRtrRipInstanceRestarted</event> + <throttle>false</throttle> + </rip> + <rip> + <event>vRtrRipInstanceExpLmtReached</event> + <throttle>false</throttle> + </rip> + <rip> + <event>vRtrRipInstanceExpLmtWarning</event> + <throttle>false</throttle> + </rip> + <rip> + <event>vRtrRipInstanceRtsExpLmtDropped</event> + <throttle>false</throttle> + </rip> + <rip> + <event>vRtrRipPeerBfdDown</event> + <throttle>false</throttle> + </rip> + <ripng> + <event>tmnxRipNgPacketDiscarded</event> + <throttle>false</throttle> + </ripng> + <ripng> + <event>tmnxRipNgAuthTypeMismatch</event> + <throttle>false</throttle> + </ripng> + <ripng> + <event>tmnxRipNgAuthFailure</event> + <throttle>false</throttle> + </ripng> + <ripng> + <event>tmnxRipNgInstShuttingDown</event> + <throttle>false</throttle> + </ripng> + <ripng> + <event>tmnxRipNgInstRestarted</event> + <throttle>false</throttle> + </ripng> + <ripng> + <event>tmnxRipNgInstExpLmtReached</event> + <throttle>false</throttle> + </ripng> + <ripng> + <event>tmnxRipNgInstExpLmtWarning</event> + <throttle>false</throttle> + </ripng> + <ripng> + <event>tmnxRipNgInstRtsExpLmtDropped</event> + <throttle>false</throttle> + </ripng> + <ripng> + <event>tmnxRipNgIfUcastAddrNotUsed</event> + <throttle>false</throttle> + </ripng> + <ripng> + <event>tmnxRipNgPeerBfdDown</event> + <throttle>false</throttle> + </ripng> + <route-policy> + <event>trigPolicyPrevEval</event> + <throttle>false</throttle> + </route-policy> + <rpki> + <event>tmnxRpkiNotifySession</event> + <throttle>false</throttle> + </rpki> + <rpki> + <event>tmnxRpkiStaleTimerExpiry</event> + <throttle>false</throttle> + </rpki> + <rsvp> + <event>vRtrRsvpStateChange</event> + <throttle>false</throttle> + </rsvp> + <rsvp> + <event>vRtrRsvpIfStateChange</event> + <throttle>false</throttle> + </rsvp> + <rsvp> + <event>vRtrRsvpIfNbrStateUp</event> + <throttle>false</throttle> + </rsvp> + <rsvp> + <event>vRtrRsvpIfNbrStateDown</event> + <throttle>false</throttle> + </rsvp> + <rsvp> + <event>vRtrRsvpPEFailOverPriToStdBy</event> + <throttle>false</throttle> + </rsvp> + <rsvp> + <event>vRtrRsvpPEFailOverStdByToPri</event> + <throttle>false</throttle> + </rsvp> + <satellite> + <event>tmnxSatelliteOperStateChange</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatSyncIfTimRefSwitch</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatSyncIfTimSystemQuality</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatSyncIfTimRef1Quality</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatSyncIfTimRef2Quality</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatSyncIfTimHoldover</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatSyncIfTimHoldoverClear</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatSyncIfTimRef1Alarm</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatSyncIfTimRef1AlarmClear</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatSyncIfTimRef2Alarm</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatSyncIfTimRef2AlarmClear</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatLocalForwardStateChg</event> + <throttle>false</throttle> + </satellite> + <satellite> + <event>tmnxSatLocalForwardSapStateChg</event> + <throttle>false</throttle> + </satellite> + <security> + <event>cli_user_login</event> + <throttle>false</throttle> + </security> + <security> + <event>cli_user_logout</event> + <throttle>false</throttle> + </security> + <security> + <event>cli_user_login_failed</event> + <throttle>false</throttle> + </security> + <security> + <event>cli_user_login_max_attempts</event> + <throttle>false</throttle> + </security> + <security> + <event>ftp_user_login</event> + <throttle>false</throttle> + </security> + <security> + <event>ftp_user_logout</event> + <throttle>false</throttle> + </security> + <security> + <event>ftp_user_login_failed</event> + <throttle>false</throttle> + </security> + <security> + <event>ftp_user_login_max_attempts</event> + <throttle>false</throttle> + </security> + <security> + <event>ssh_user_login</event> + <throttle>false</throttle> + </security> + <security> + <event>ssh_user_logout</event> + <throttle>false</throttle> + </security> + <security> + <event>ssh_user_login_failed</event> + <throttle>false</throttle> + </security> + <security> + <event>ssh_user_login_max_attempts</event> + <throttle>false</throttle> + </security> + <security> + <event>radiusOperStatusChange</event> + <throttle>false</throttle> + </security> + <security> + <event>user_disconnect</event> + <throttle>false</throttle> + </security> + <security> + <event>radiusSystemIpAddrNotSet</event> + <throttle>false</throttle> + </security> + <security> + <event>tacplusOperStatusChange</event> + <throttle>false</throttle> + </security> + <security> + <event>mafEntryMatch</event> + <throttle>false</throttle> + </security> + <security> + <event>ftp_transfer_successful</event> + <throttle>false</throttle> + </security> + <security> + <event>ftp_transfer_failed</event> + <throttle>false</throttle> + </security> + <security> + <event>enable_admin</event> + <throttle>false</throttle> + </security> + <security> + <event>host_snmp_attempts</event> + <throttle>false</throttle> + </security> + <security> + <event>SSH_server_preserve_key_fail</event> + <throttle>false</throttle> + </security> + <security> + <event>tacplusInetSrvrOperStatusChange</event> + <throttle>false</throttle> + </security> + <security> + <event>radiusInetServerOperStatusChange</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxKeyChainAuthFailure</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCpmProtViolPort</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxCpmProtViolPortAgg</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxCpmProtViolIf</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxCpmProtViolSap</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxCpmProtViolMac</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxCpmProtViolVdoSvcClient</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxCpmProtViolVdoVrtrClient</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxMD5AuthFailure</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCpmProtDefPolModified</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCpmProtViolSdpBind</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxCpmProtExcdSdpBind</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxCpmProtExcdSapEcm</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxCpmProtExcdSdpBindEcm</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxPkiFileReadFailed</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCertVerificationFailed</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCAProfileStateChange</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCpmProtExcdSapIp</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </security> + <security> + <event>tmnxDcpFpDynPoolUsageHiAlmRaise</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxDcpFpDynPoolUsageHiAlmClear</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxDcpCardFpEventOvrflwClr</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxDcpCardSapEventOvrflwClr</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxDcpCardVrtrIfEventOvrflwClr</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpStaticExcd</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpDynamicExcd</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpStaticHoldDownStart</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpDynamicHoldDownStart</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpStaticHoldDownEnd</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpDynamicHoldDownEnd</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpStaticConform</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpDynamicConform</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpLocMonExcd</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpLocMonExcdDynResource</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpLocMonExcdAllDynAlloc</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpLocMonExcdAllDynFreed</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpDynamicEnforceAlloc</event> + <throttle>false</throttle> + </security> + <security> + <event>sapDcpDynamicEnforceFreed</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpStaticExcd</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpDynamicExcd</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpStaticHoldDownStart</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpDynamicHoldDownStart</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpStaticHoldDownEnd</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpDynamicHoldDownEnd</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpStaticConform</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpDynamicConform</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpLocMonExcd</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpLocMonExcdDynResource</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpLocMonExcdAllDynAlloc</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpLocMonExcdAllDynFreed</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpDynamicEnforceAlloc</event> + <throttle>false</throttle> + </security> + <security> + <event>vRtrIfDcpDynamicEnforceFreed</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxDcpCardFpEventOvrflw</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxDcpCardSapEventOvrflw</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxDcpCardVrtrIfEventOvrflw</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCAProfActnStatusChg</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCpmProtViolSapOutProf</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCpmProtViolIfOutProf</event> + <throttle>false</throttle> + </security> + <security> + <event>sysDNSSecFailedAuthentication</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCpmProtExcdSdpBindIp</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSecComputeCertChainFailure</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCpmProtViolSdpBindOutProf</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSecNotifKeyChainExpired</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSysLicenseInvalid</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSysLicenseExpiresSoon</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCAProfRevokeChkWarning</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCAProfUpDueToRevokeChkCrlOpt</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCertBeforeExpWarning</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCertAfterExpWarning</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCertExpWarningCleared</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCRLBeforeExpWarning</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCRLAfterExpWarning</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCRLExpWarningCleared</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSecNotifFileReloaded</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSysLicenseValid</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSecPwdHistoryFileLoadFailed</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSecPwdHistoryFileWriteFailed</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCAProfCrlUpdateStart</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCAProfCrlUpdateSuccess</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCAProfCrlUpdateUrlFail</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCAProfCrlUpdAllUrlsFail</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiFileWriteFailed</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCAProfCrlUpdNoNxtUpdTime</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxUsrProfSessionLimitExceeded</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCliGroupSessionLimitExceeded</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCAProfCrlUpdLargPreUpdTm</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCertNotYetValid</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCRLNotYetValid</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxAppPkiCertVerificationFailed</event> + <throttle>false</throttle> + </security> + <security> + <event>grpc_user_login</event> + <throttle>false</throttle> + </security> + <security> + <event>grpc_user_logout</event> + <throttle>false</throttle> + </security> + <security> + <event>grpc_user_login_failed</event> + <throttle>false</throttle> + </security> + <security> + <event>grpc_user_login_max_attempts</event> + <throttle>false</throttle> + </security> + <security> + <event>netconf_user_login</event> + <throttle>false</throttle> + </security> + <security> + <event>netconf_user_logout</event> + <throttle>false</throttle> + </security> + <security> + <event>netconf_user_login_failed</event> + <throttle>false</throttle> + </security> + <security> + <event>netconf_user_login_max_attempts</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSysLicenseActivated</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxConfigModify</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxConfigCreate</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxConfigDelete</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxStateChange</event> + <throttle>false</throttle> + </security> + <security> + <event>radiusUserProfileInvalid</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSysStandbyLicensingError</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSysStandbyLicensingReady</event> + <throttle>false</throttle> + </security> + <security> + <event>md_cli_io</event> + <generate>true</generate> + </security> + <security> + <event>md_cli_unauth_io</event> + <generate>true</generate> + </security> + <security> + <event>tmnxSysAppLicenseInsufficient</event> + </security> + <security> + <event>tmnxSysLicenseUpdateRequired</event> + <throttle>false</throttle> + </security> + <security> + <event>netconf_auth</event> + <throttle>false</throttle> + </security> + <security> + <event>netconf_unauth</event> + <throttle>false</throttle> + </security> + <security> + <event>grpc_auth</event> + <throttle>false</throttle> + </security> + <security> + <event>grpc_unauth</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCertKeyPairGen</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCertImport</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxCertExport</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxFileDeleted</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxFileMoved</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxFileCopied</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxFileUnzip</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPasswordHashingChanged</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxUserPasswordChangedByAdmin</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSSHSessionFailed</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSecSignedSwCpmBootEvent</event> + <throttle>false</throttle> + </security> + <security> + <event>tSecSgndSwUefiVarsUpdtReqd</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCertUpdUpdateStarted</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCertUpdUpdateFinished</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCertUpdUpdateFailed</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSystemPasswordChangedByAdmin</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSysLicenseCleared</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxSysLicensingStateOk</event> + <throttle>false</throttle> + </security> + <security> + <event>tmnxPkiCertChainCompareCaNoMatch</event> + <throttle>false</throttle> + </security> + <sflow> + <event>tmnxSflowCpEntrySampling</event> + <throttle>false</throttle> + </sflow> + <sflow> + <event>tmnxSflowPacketTxFailure</event> + <throttle>false</throttle> + </sflow> + <snmp> + <event>coldStart</event> + <throttle>false</throttle> + </snmp> + <snmp> + <event>warmStart</event> + <throttle>false</throttle> + </snmp> + <snmp> + <event>authenticationFailure</event> + <generate>true</generate> + </snmp> + <snmp> + <event>linkDown</event> + <throttle>false</throttle> + </snmp> + <snmp> + <event>linkUp</event> + <throttle>false</throttle> + </snmp> + <snmp> + <event>risingAlarm</event> + <throttle>false</throttle> + </snmp> + <snmp> + <event>fallingAlarm</event> + <throttle>false</throttle> + </snmp> + <snmp> + <event>snmpdError</event> + <throttle>false</throttle> + </snmp> + <sr-mpls> + <event>tmnxSrMplsPfxSidFailure</event> + <throttle>false</throttle> + </sr-mpls> + <sr-policy> + <event>vRtrSrPathIsCandPathOperChanged</event> + <throttle>false</throttle> + </sr-policy> + <sr-policy> + <event>vRtrSrPlcyPathActiveStateChanged</event> + <throttle>false</throttle> + </sr-policy> + <srv6> + <event>vRtrSrv6FunctionExhaustion</event> + <throttle>false</throttle> + </srv6> + <srv6> + <event>vRtrSrv6SvcSidIndex</event> + <throttle>false</throttle> + </srv6> + <stp> + <event>topologyChangeSapMajorState</event> + <throttle>false</throttle> + </stp> + <stp> + <event>newRootSap</event> + <throttle>false</throttle> + </stp> + <stp> + <event>topologyChangeVcpState</event> + <throttle>false</throttle> + </stp> + <stp> + <event>newRootVcpState</event> + <throttle>false</throttle> + </stp> + <stp> + <event>topologyChangeSapState</event> + <throttle>false</throttle> + </stp> + <stp> + <event>receivedTCN</event> + <throttle>false</throttle> + </stp> + <stp> + <event>newRootBridge</event> + <throttle>false</throttle> + </stp> + <stp> + <event>unacknowledgedTCN</event> + <throttle>false</throttle> + </stp> + <stp> + <event>higherPriorityBridge</event> + <throttle>false</throttle> + </stp> + <stp> + <event>sapEncapPVST</event> + <throttle>false</throttle> + </stp> + <stp> + <event>sapEncapDot1d</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxSvcTopoChgSdpBindMajorState</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxSvcNewRootSdpBind</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxSvcTopoChgSdpBindState</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxSvcSdpBindRcvdTCN</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxSvcSdpBindRcvdHigherBriPrio</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxSvcSdpBindEncapPVST</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxSvcSdpBindEncapDot1d</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxNewCistRegionalRootBridge</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxNewMstiRegionalRootBridge</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxStpRootGuardViolation</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxStpMeshNotInMstRegion</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxSapStpExcepCondStateChng</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxSdpBndStpExcepCondStateChng</event> + <throttle>false</throttle> + </stp> + <stp> + <event>sapActiveProtocolChange</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxSvcSdpActiveProtocolChange</event> + <throttle>false</throttle> + </stp> + <stp> + <event>vcpActiveProtocolChange</event> + <throttle>false</throttle> + </stp> + <stp> + <event>topologyChangePipMajorState</event> + <throttle>false</throttle> + </stp> + <stp> + <event>topologyChangePipState</event> + <throttle>false</throttle> + </stp> + <stp> + <event>tmnxPipStpExcepCondStateChng</event> + <throttle>false</throttle> + </stp> + <stp> + <event>pipActiveProtocolChange</event> + <throttle>false</throttle> + </stp> + <svcmgr> + <event>svcTlsMacPinningViolation</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubSlaacOverride</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMplsMacMoveExceedNonBlock</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsVxInstReplicatorChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcArpHostOverride</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMHEsEviDFStateChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMHEsIsidDFStateChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnRcvdProtSrcMac</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcBgpEvpnBHDupMacAddrsDetected</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnEtreeBumLabelSysHiUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnEtreeBumLabelSysHiUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcVxlanEvpnMplsDestSysHiUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcVxlanEvpnMplsDestSysHiUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcStatusChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsFdbTableFullAlarmRaised</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsFdbTableFullAlarmCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcSysEvpnESDfPrefOperValChange</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSvcSysFdbTableHighUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>iesIfStatusChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxEndPointTxActiveChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSvcSysFdbTableHighUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMHStandbyStatusChg</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnVxVTepLclBiasAddFailSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnESVxVTepLclBiasAddFailSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnVxVTepLclBiasAddFailClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnESVxVTepLclBiasAddFailClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnRcvdPbbProtSrcMac</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsMrpAttrRegistrationFailed</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsMrpAttrTblFullAlarmRaised</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsMrpAttrTblFullAlarmCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMplsTEPEgrLblStateChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEpipePbbOperStatusChanged</event> + <generate>true</generate> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsVxInstVTEPEgrVniStateChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnVxInstESDstTEPStateChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcSrv6InstTEPSidOperStateChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcSrv6InstESDstTEPOperStateChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMplsESDestTEPStateChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcBgpEvpnTepStateChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcSrv6FunctionOutOfResources</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapStatusChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapTlsMacAddrLimitAlarmRaised</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapTlsMacAddrLimitAlarmCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>hostConnectivityLost</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>hostConnectivityRestored</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>sapReceivedProtSrcMac</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapTlsMacMoveExceeded</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapPortStateChangeProcessed</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapCemPacketDefectAlarm</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapCemPacketDefectAlarmClear</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>msapStateChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>msapCreationFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>sapTlsMacMoveExceedNonBlock</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapEthLoopbackStarted</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapEthLoopbackStopped</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapTunnelEncapIpMtuTooSmall</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxIpTunnelOperStateChange</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>sapIfIgnorePortStateStart</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapIfIgnorePortStateStop</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapReceivedPbbProtSrcMac</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpStatusChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindStatusChanged</event> + <generate>true</generate> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpKeepAliveStarted</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpKeepAliveStopped</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpKeepAliveProbeFailure</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpKeepAliveLateReply</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpTlsMacAddrLimitAlarmRaised</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpTlsMacAddrLimitAlarmCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindPwPeerStatusBitsChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindTlsMacMoveExceeded</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindPwPeerFaultAddrChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindSdpStateChangeProcessed</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBandwidthOverbooked</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindInsufficientBandwidth</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>dynamicSdpConfigChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>dynamicSdpBindConfigChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>dynamicSdpCreationFailed</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>dynamicSdpBindCreationFailed</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpEgrIfsNetDomInconsCntChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindIpipeCeIpAddressChange</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindReceivedProtSrcMac</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindPwLocalStatusBitsChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindTlsMacMoveExceedNonBlock</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindEthLoopbackStarted</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindEthLoopbackStopped</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpPbbActvPwWithNonActvCtrlPwChg</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcBgpEvpnDupMacAddrsDetected</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcBgpEvpnDupMacAddrsCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsVTEPHiUsageAlarmRaised</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsVTEPHiUsageAlarmCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsVTEPEgrVniSysHiUsgAlarmSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsVTEPEgrVniSysHiUsgAlarmClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsVTEPEgrVniSvcHiUsgAlarmSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsVTEPEgrVniSvcHiUsgAlarmClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcBindSysHiUsageAlarmRaised</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcBindSysHiUsageAlarmCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpControlPwActiveStateChg</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyArpDupDetect</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyArpDupClear</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyNdDupDetect</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyNdDupClear</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsEvpnTunnNHopHiUsgAlarmSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsEvpnTunnNHopHiUsgAlarmClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMplsTEPHiUsageRaised</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMplsTEPHiUsageCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMplsTEPEgrBndSysHiUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMplsTEPEgrBndSysHiUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMplsTEPEgrBndSvcHiUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMplsTEPEgrBndSvcHiUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyArpSysHiUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyArpSysHiUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyArpSvcHiUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyArpSvcHiUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyNdSysHiUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyNdSysHiUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyNdSvcHiUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsProxyNdSvcHiUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcSiteMinDnTimerStateChg</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sdpBindReceivedPbbProtSrcMac</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsMfibTableFullAlarmRaised</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsMfibTableFullAlarmCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubscriberCreated</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubscriberDeleted</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubscriberRenamed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubAcctPlcyFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubMcsRelatedProblem</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubAuthPlcyRadSerOperStatChg</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubAcctPlcyRadSerOperStatChg</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEndPointMacLimitAlarmRaised</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEndPointMacLimitAlarmCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubRadSapDisconnectError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubRadSdpBndDisconnectError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubRadSapCoAError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubRadSdpBndCoAError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubRadSapSubAuthError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubRadSdpBndSubAuthError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>svcFdbMimDestTblFullAlrm</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcFdbMimDestTblFullAlrmCleared</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcPersistencyProblem</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>svcArpHostPopulateErr</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>svcEPMCEPConfigMismatch</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEPMCEPConfigMismatchResolved</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEPMCEPPassiveModeActive</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEPMCEPPassiveModePassive</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapHostBGPPeeringSetupFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubUserCategoryOutOfCredit</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>svcRestoreHostProblem</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubUserCategoryRefreshCredit</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubUserCategoryError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>svcTlsSiteDesigFwdrChg</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapTlsDataSapInstStatusChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsGroupOperStatusChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapTunnelStateChange</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubHostInconsistentAtmTdOvr</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>svcMSPwRtMisconfig</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcOperGrpOperStatusChanged</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>sapIpipeCeIpAddrChange</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcMSPwRetryExpiredNotif</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcVllSiteDesigFwdrChg</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubSlaacSetupFailure</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxIpTunnelOperRemIpChg</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubHostLcktLimitReached</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubHostLcktSapLimitReached</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubSysChassMemoryUsageHi</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubVSubnetHostsDeleted</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>sapHostRipListenerSetupFailed</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubIpoeInvalidSessionKey</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubIpoeInvalidCidRidChange</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubIpoeSessionLimitReached</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubIpoePersistenceRecovery</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubIpoeMigrHostDeleted</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubMngdHostCreationFail</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubMngdHostOverride</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubHostInfoConflict</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubPlBndFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubBrgCreated</event> + <generate>true</generate> + </svcmgr> + <svcmgr> + <event>tmnxSubBrgDeleted</event> + <generate>true</generate> + </svcmgr> + <svcmgr> + <event>tmnxSubBrgCvInitFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubBrgRadiusUpdateIpoeSeFail</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubBrgRadiusCoaError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubBrgRadiusAuthError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubBrgSessionLimitReached</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubStatsResourceLimitReached</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubDhcpOverloadDetected</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubBrgRadiusProxyAuthError</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubIpoeSessionBrgNotAuth</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubRadiusCoaNatFwdFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubSVlanStatsReachedMaximum</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>svcTlsVxInstMacAdrLimitAlrmRsd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcTlsVxInstMacAdrLimitAlrmClrd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubCupsUpSapCreationFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubCupsUpIfCreationFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxPfcpAssocPathMgmtStateChgd</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubInfoEgrAggRateLimitLowReq</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <svcmgr> + <event>tmnxSubIpoeWppRegistrationFailed</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMHAutoEsiCreated</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcEvpnMHAutoEsiConflict</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcSrv6TEPEgrBndSysHiUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcSrv6TEPEgrBndSysHiUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcIfSubForwardingStatsDisNotify</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcIfSubForwardingStatsEnNotify</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcRoutedVplsEvpnGWDrStateChgd</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcSrv6TEPEgrBndSvcHiUsgSet</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>svcSrv6TEPEgrBndSvcHiUsgClr</event> + <throttle>false</throttle> + </svcmgr> + <svcmgr> + <event>tmnxSapMRtCpeChkStatusChange</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </svcmgr> + <system> + <event>stiDateAndTimeChanged</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSaveConfigSucceeded</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSaveConfigFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>sbiBootConfig</event> + <throttle>false</throttle> + </system> + <system> + <event>sbiBootSnmpd</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxConfigModify</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxConfigCreate</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxConfigDelete</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxStateChange</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxModuleMallocFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxTrapDropped</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSyncConfigOK</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSyncConfigFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSyncBootEnvOK</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSyncBootEnvFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>socket_bind_failed</event> + <throttle>false</throttle> + </system> + <system> + <event>socket_conn_accept_failed</event> + <throttle>false</throttle> + </system> + <system> + <event>sntpTimeDiffExceedsThreshold</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSssiMismatch</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSnmpdStateChange</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxRedStandbySyncing</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxRedStandbyReady</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxRedStandbySyncLost</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxRedSwitchover</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxRedCpmActive</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxRedSingleCpm</event> + <throttle>false</throttle> + </system> + <system> + <event>persistencyClosedAlarmRaised</event> + <throttle>false</throttle> + </system> + <system> + <event>persistencyClosedAlarmCleared</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSntpOperChange</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxFtpClientFailure</event> + <throttle>false</throttle> + </system> + <system> + <event>persistencyEventReport</event> + <throttle>false</throttle> + </system> + <system> + <event>sbiBootConfigFailFileError</event> + <throttle>false</throttle> + </system> + <system> + <event>sbiBootConfigOKFileError</event> + <throttle>false</throttle> + </system> + <system> + <event>persistenceRestoreProblem</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysRollbackStarted</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysRollbackStatusChange</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysRollbackSaveStatusChange</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysRollbackFileDeleteStatus</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSyncRollbackOK</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSyncRollbackFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSyncCertOK</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSyncCertFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>persistencyFileSysThresRaised</event> + <throttle>false</throttle> + </system> + <system> + <event>persistencyFileSysThresCleared</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysExecStarted</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysExecFinished</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysRollbackSaveStarted</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysRollbackDeleteStarted</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysNvsysFileError</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxConfigConflict</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysBaseMacAddressNotSet</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSmLaunchStartFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxEhsHandlerInvoked</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxEhsDroppedByMinDelay</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysMgmtIfModeChangeStart</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysMgmtIfModeChangeComplete</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysMgmtIfModeChangeFailure</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysMgmtIfLiIncorrectFormat</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysMgmtIfLiCfgNotEncrypted</event> + <throttle>false</throttle> + </system> + <system> + <event>stiDateAndTimeChanging</event> + <throttle>false</throttle> + </system> + <system> + <event>tMirrorLiXIfLicenseInvalid</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </system> + <system> + <event>mdSaveCommitHistoryFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>sbiBootMdReadCommitHistoryFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxSysHttpRdrOutOfSeqLimitExc</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </system> + <system> + <event>schedActionFailure</event> + <throttle>false</throttle> + </system> + <system> + <event>smScriptAbort</event> + <throttle>false</throttle> + </system> + <system> + <event>smScriptResult</event> + <generate>true</generate> + </system> + <system> + <event>smScriptException</event> + <generate>true</generate> + </system> + <system> + <event>ssiSaveIncrementConfigSucceeded</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSaveIncrementConfigFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSaveBackgroundConfigSucceeded</event> + <throttle>false</throttle> + </system> + <system> + <event>ssiSaveBackgroundConfigFailed</event> + <throttle>false</throttle> + </system> + <system> + <event>tmnxLastSystemRebootAdmin</event> + <throttle>false</throttle> + </system> + <system> + <event>mdCommitInProgress</event> + <throttle>false</throttle> + </system> + <system> + <event>mdCommitSucceeded</event> + <throttle>false</throttle> + </system> + <tls> + <event>tmnxTlsInitiateSession</event> + <generate>true</generate> + </tls> + <tls> + <event>tmnxTlsTermination</event> + <generate>true</generate> + </tls> + <tls> + <event>tmnxTlsFailure</event> + <generate>true</generate> + </tls> + <tree-sid> + <event>vRtrTreeSidCdtPathChanged</event> + <throttle>false</throttle> + </tree-sid> + <tree-sid> + <event>vRtrTreeSidCdtPathActInsChanged</event> + <throttle>false</throttle> + </tree-sid> + <tree-sid> + <event>vRtrTreeSidInSidRegFailure</event> + <throttle>false</throttle> + </tree-sid> + <tree-sid> + <event>vRtrTreeSidTreeIdAllocFailure</event> + <throttle>false</throttle> + </tree-sid> + <tree-sid> + <event>vRtrTreeSidRepSegResExhaustion</event> + <throttle>false</throttle> + </tree-sid> + <tree-sid> + <event>vRtrTreeSidRepSegResExhstCleared</event> + <throttle>false</throttle> + </tree-sid> + <tree-sid> + <event>vRtrTreeSidLabelRangeExhaustion</event> + <throttle>false</throttle> + </tree-sid> + <tree-sid> + <event>vRtrTreeSidLblRangeExhstCleared</event> + <throttle>false</throttle> + </tree-sid> + <tree-sid> + <event>vRtrTreeSidFailOverPriToStdBy</event> + <throttle>false</throttle> + </tree-sid> + <tree-sid> + <event>vRtrTreeSidFailOverStdByToPri</event> + <throttle>false</throttle> + </tree-sid> + <user> + <event>cli_user_login</event> + <throttle>false</throttle> + </user> + <user> + <event>cli_user_logout</event> + <throttle>false</throttle> + </user> + <user> + <event>cli_user_login_failed</event> + <throttle>false</throttle> + </user> + <user> + <event>cli_user_login_max_attempts</event> + <throttle>false</throttle> + </user> + <user> + <event>ftp_user_login</event> + <throttle>false</throttle> + </user> + <user> + <event>ftp_user_logout</event> + <throttle>false</throttle> + </user> + <user> + <event>ftp_user_login_failed</event> + <throttle>false</throttle> + </user> + <user> + <event>ftp_user_login_max_attempts</event> + <throttle>false</throttle> + </user> + <user> + <event>cli_user_io</event> + <generate>true</generate> + </user> + <user> + <event>snmp_user_set</event> + <generate>true</generate> + </user> + <user> + <event>cli_config_io</event> + <throttle>false</throttle> + </user> + <user> + <event>cli_unauth_user_io</event> + <generate>true</generate> + </user> + <user> + <event>cli_unauth_config_io</event> + <throttle>false</throttle> + </user> + <user> + <event>grpc_user_login</event> + <throttle>false</throttle> + </user> + <user> + <event>grpc_user_logout</event> + <throttle>false</throttle> + </user> + <user> + <event>grpc_user_login_failed</event> + <throttle>false</throttle> + </user> + <user> + <event>grpc_user_login_max_attempts</event> + <throttle>false</throttle> + </user> + <user> + <event>netconf_user_login</event> + <throttle>false</throttle> + </user> + <user> + <event>netconf_user_logout</event> + <throttle>false</throttle> + </user> + <user> + <event>netconf_user_login_failed</event> + <throttle>false</throttle> + </user> + <user> + <event>netconf_user_login_max_attempts</event> + <throttle>false</throttle> + </user> + <video> + <event>tmnxVdoDuplicateSsrcId</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaSessionsLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaSGLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaSessionsLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaSGLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoAdSpliceAbort</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoClientSessionsLmtExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoClientSessionsLmtCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoGrpSrcAnlyzrErrState</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoGrpSrcAnlyzrStClear</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaFccBwLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaFccBwLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaRetBwLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaRetBwLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaFccRetTotBwLmtExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaFccRetTotBwLmtCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaFccSesLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaFccSesLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaRetSesLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaRetSesLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaFccRetTotSeLmtExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoMdaFccRetTotSeLmtCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappSessionsLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappSGLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappSessionsLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappSGLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappFccBwLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappFccBwLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappRetBwLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappRetBwLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappFccRetTotBwLmtExceded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappFccRetTotBwLmtCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappFccSesLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappFccSesLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappRetSesLimitExceeded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappRetSesLimitCleared</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappFccRetTotSeLmtExceded</event> + <throttle>false</throttle> + </video> + <video> + <event>tmnxVdoVappFccRetTotSeLmtCleared</event> + <throttle>false</throttle> + </video> + <vrrp> + <event>vrrpTrapNewMaster</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>vrrpTrapAuthFailure</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tmnxVrrpIPListMismatch</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tmnxVrrpIPListMismatchClear</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tmnxVrrpMultipleOwners</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tmnxVrrpBecameBackup</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>vrrpPacketDiscarded</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tmnxVrrpBfdIntfSessStateChgd</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>vrrpTrapProtoError</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tVrrpBecameBackup</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tVrrpTrapNewMaster</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tVrrpIPListMismatch</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tVrrpIPListMismatchClear</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tVrrpMultipleOwners</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tVrrpPacketDiscarded</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tVrrpRouterAdvNotActivated</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tVrrpRouterAdvNotActivatedClear</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tVrrpOperDownInvalidMac</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tVrrpOperDownInvalidMacClear</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tmnxVrrpOperDownInvalidMac</event> + <throttle>false</throttle> + </vrrp> + <vrrp> + <event>tmnxVrrpOperDownInvalidMacClear</event> + <throttle>false</throttle> + </vrrp> + <vrtr> + <event>tmnxVRtrMidRouteTCA</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrHighRouteTCA</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrHighRouteCleared</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrMcastMidRouteTCA</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrMcastMaxRoutesTCA</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrMcastMaxRoutesCleared</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrMaxArpEntriesTCA</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrMaxArpEntriesCleared</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrMaxRoutes</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrBfdMaxSessionOnSlot</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrBfdPortTypeNotSupported</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrIPv6MidRouteTCA</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrIPv6HighRouteTCA</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrIPv6HighRouteCleared</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrStaticRouteCPEStatus</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrManagedRouteAddFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrFibOccupancyThreshold</event> + <generate>true</generate> + </vrtr> + <vrtr> + <event>tmnxVRtrInetAddressAttachFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrSingleSfmOverloadStateCh</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrGrtExportLimitReached</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrGrtRoutesExpLimitDropped</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrIfLdpSyncTimerStart</event> + <generate>true</generate> + </vrtr> + <vrtr> + <event>tmnxVRtrIfLdpSyncTimerStop</event> + <generate>true</generate> + </vrtr> + <vrtr> + <event>tmnxVRtrGrtV6ExportLimitReached</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrGrtV6RoutesExpLimDropped</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrStaticRouteStatusChanged</event> + <generate>true</generate> + </vrtr> + <vrtr> + <event>tmnxVRtrBfdSessExtDown</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrBfdSessExtUp</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrBfdSessExtDeleted</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrBfdSessExtProtChange</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrBfdExtNoCpmNpResources</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrDnsFault</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrMacAcctLimitReached</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrMacAcctLimitCleared</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNgBfdSessDown</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNgBfdSessUp</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNgBfdSessDeleted</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNgBfdSessProtChange</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNgBfdNoCpmNpResources</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNHRvplsARPHighUsage</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNHRvplsARPExhaust</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNHRvplsARPHighUsageClr</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrArpLmt</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrArpThresholdExceeded</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrIpv6NbrLmt</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrIpv6NbrThresholdExceeded</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrIfIgnorePortState</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrLeakExportLimitReached</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrLeakExportLimitDropped</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrDhcpClientStatusChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrDhcp6ClientStatusChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNeDiscovered</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNeRemoved</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrNeModified</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>vRtrIfDhcpClRtStatusChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </vrtr> + <vrtr> + <event>vRtrIfDhcpClStateDnsChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </vrtr> + <vrtr> + <event>vRtrAutoCfgRaRtStatusChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </vrtr> + <vrtr> + <event>vRtrIfDhcp6ClStateDnsChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </vrtr> + <vrtr> + <event>tipNbrAllocFailed</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>tmnxVRtrBfdExtNoFreeTxIntrvlSlot</event> + <throttle>false</throttle> + </vrtr> + <vrtr> + <event>vRtrBgpInstanceError</event> + <throttle>false</throttle> + </vrtr> + <wlan-gw> + <event>tmnxWlanGwResrcProblemDetected</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwResrcProblemCause</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwTuQosProblem</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwGrpOperStateChanged</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwIomActive</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwMgwConnected</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwMgwRestarted</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwNumMgwHi</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwMgwStateChanged</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwQosRadiusGtpMismatch</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwSubIfRedActiveChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwDsmGtpTunnelSetupFail</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwSubIfPmStartD6cFailed</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwSubIfPmNewPlReqFailed</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwSubIfPmAddNewPlFailed</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwSubIfPmCrIntObjFailed</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwSubIfPmPoolTimeout</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwSubIfPmPoolUsageLow</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwSubIfPmLsQryRtryFailed</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwGtpMessageDropped</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwSubIfPmPoolPartialUse</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwBdCreated</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwBdDeleted</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwUeCreationFail</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwUeReplacement</event> + <throttle>false</throttle> + </wlan-gw> + <wlan-gw> + <event>tmnxWlanGwGrpMemberUsageHigh</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </wlan-gw> + <wpp> + <event>tmnxWppPortalStatChanged</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </wpp> + <wpp> + <event>tmnxWppHostAuthenticationFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </wpp> + <wpp> + <event>tmnxWppPortalUnreachable</event> + <throttle>false</throttle> + </wpp> + <wpp> + <event>tmnxWppPortalGroupStatChanged</event> + <throttle>false</throttle> + </wpp> + <wpp> + <event>tmnxWppPGHostAuthFailed</event> + <throttle>false</throttle> + <specific-throttle>false</specific-throttle> + </wpp> + </log-events> + <file> + <file-policy-name>20</file-policy-name> + <description>MESSAGES</description> + <rollover>1440</rollover> + <retention>360</retention> + <compact-flash-location> + <primary>cf3</primary> + <backup>cf2</backup> + </compact-flash-location> + </file> + <file> + <file-policy-name>22</file-policy-name> + <description>commit_log</description> + </file> + <file> + <file-policy-name>69</file-policy-name> + <description>testing</description> + </file> + <filter> + <filter-name>22</filter-name> + <named-entry> + <entry-name>commit_log</entry-name> + <action>forward</action> + <match> + <message> + <eq>commit</eq> + </message> + </match> + </named-entry> + </filter> + <filter> + <filter-name>60</filter-name> + <named-entry> + <entry-name>CHASSIS</entry-name> + <action>forward</action> + <match> + <application> + <eq>chassis</eq> + </application> + </match> + </named-entry> + <named-entry> + <entry-name>PORT</entry-name> + <action>forward</action> + <match> + <application> + <eq>port</eq> + </application> + </match> + </named-entry> + <named-entry> + <entry-name>LAG</entry-name> + <action>forward</action> + <match> + <application> + <eq>lag</eq> + </application> + </match> + </named-entry> + <named-entry> + <entry-name>ISIS</entry-name> + <action>forward</action> + <match> + <application> + <eq>isis</eq> + </application> + </match> + </named-entry> + <named-entry> + <entry-name>BGP</entry-name> + <action>forward</action> + <match> + <application> + <eq>bgp</eq> + </application> + </match> + </named-entry> + <named-entry> + <entry-name>EPIPE</entry-name> + <action>forward</action> + <match> + <application> + <eq>svcmgr</eq> + </application> + </match> + </named-entry> + </filter> + <filter> + <filter-name>69</filter-name> + <named-entry> + <entry-name>commit</entry-name> + <action>forward</action> + <match> + <application> + <eq>li</eq> + </application> + </match> + </named-entry> + <named-entry> + <entry-name>reject</entry-name> + <action>drop</action> + </named-entry> + </filter> + <filter> + <filter-name>1001</filter-name> + <named-entry> + <entry-name>10</entry-name> + <description>Collect only events of major severity or higher</description> + <action>forward</action> + <match> + <severity> + <gte>major</gte> + </severity> + </match> + </named-entry> + </filter> + <log-id> + <name>1</name> + <admin-state>enable</admin-state> + <description>splunk-par-forwarder.geant.net</description> + <source> + <main>true</main> + <security>true</security> + <change>true</change> + <debug>true</debug> + </source> + <destination> + <syslog>1</syslog> + </destination> + </log-id> + <log-id> + <name>20</name> + <admin-state>enable</admin-state> + <description>MESSAGES</description> + <source> + <main>true</main> + <security>true</security> + <change>true</change> + </source> + <destination> + <file>20</file> + </destination> + </log-id> + <log-id> + <name>22</name> + <admin-state>enable</admin-state> + <description>commit_log</description> + <filter>22</filter> + <source> + <main>true</main> + </source> + <destination> + <file>22</file> + </destination> + </log-id> + <log-id> + <name>42</name> + </log-id> + <log-id> + <name>60</name> + <admin-state>enable</admin-state> + <description>geantnms</description> + <filter>60</filter> + <source> + <main>true</main> + </source> + <destination> + <snmp> + </snmp> + </destination> + </log-id> + <log-id> + <name>69</name> + <admin-state>enable</admin-state> + <description>test</description> + <source> + <security>true</security> + <change>true</change> + </source> + <destination> + <file>69</file> + </destination> + </log-id> + <log-id> + <name>99</name> + <description>Default System Log</description> + <source> + <main>true</main> + </source> + <destination> + <memory> + <max-entries>500</max-entries> + </memory> + </destination> + </log-id> + <log-id> + <name>100</name> + <description>Default Serious Errors Log</description> + <filter>1001</filter> + <source> + <main>true</main> + </source> + <destination> + <memory> + <max-entries>500</max-entries> + </memory> + </destination> + </log-id> + <log-id> + <name>REMOTE</name> + <admin-state>enable</admin-state> + <description>logs.test.gap.geant.org</description> + <source> + <main>true</main> + <security>true</security> + <change>true</change> + <debug>true</debug> + </source> + <destination> + <syslog>LOGS.TEST.GAP</syslog> + </destination> + </log-id> + <snmp-trap-group> + <log-name>60</log-name> + <description>geantnms</description> + <trap-target> + <name>prod-noc-alarms01</name> + <address>62.40.114.3</address> + <version>snmpv2c</version> + <notify-community>geantnms</notify-community> + </trap-target> + <trap-target> + <name>prod-noc-alarms02</name> + <address>62.40.114.19</address> + <version>snmpv2c</version> + <notify-community>geantnms</notify-community> + </trap-target> + <trap-target> + <name>prod-noc-alarms03</name> + <address>62.40.114.18</address> + <version>snmpv2c</version> + <notify-community>geantnms</notify-community> + </trap-target> + <trap-target> + <name>prod-noc-alarms04</name> + <address>62.40.114.2</address> + <version>snmpv2c</version> + <notify-community>geantnms</notify-community> + </trap-target> + <trap-target> + <name>test-noc-alarms01</name> + <address>83.97.92.228</address> + <version>snmpv2c</version> + <notify-community>geantnms</notify-community> + </trap-target> + <trap-target> + <name>test-noc-alarms02</name> + <address>83.97.93.53</address> + <version>snmpv2c</version> + <notify-community>geantnms</notify-community> + </trap-target> + <trap-target> + <name>test-noc-alarms03</name> + <address>83.97.94.185</address> + <version>snmpv2c</version> + <notify-community>geantnms</notify-community> + </trap-target> + <trap-target> + <name>uat-noc-alarms01</name> + <address>83.97.93.151</address> + <version>snmpv2c</version> + <notify-community>geantnms</notify-community> + </trap-target> + <trap-target> + <name>uat-noc-alarms02</name> + <address>83.97.94.51</address> + <version>snmpv2c</version> + <notify-community>geantnms</notify-community> + </trap-target> + <trap-target> + <name>uat-noc-alarms03</name> + <address>83.97.94.188</address> + <version>snmpv2c</version> + <notify-community>geantnms</notify-community> + </trap-target> + </snmp-trap-group> + <syslog> + <syslog-name>1</syslog-name> + <description>splunk-par-forwarder.geant.net</description> + <address>83.97.94.11</address> + <facility>local7</facility> + <severity>debug</severity> + <log-prefix>rt0.ams.nl</log-prefix> + </syslog> + <syslog> + <syslog-name>LOGS.TEST.GAP</syslog-name> + <description>logs.test.gap.geant.org</description> + <address>62.40.111.200</address> + <facility>local7</facility> + <severity>debug</severity> + <log-prefix>rt0.ams.nl</log-prefix> + <hostname> + <use-system-name> + </use-system-name> + </hostname> + </syslog> + </log> + <oam-pm> + <bin-group> + <bin-group-id>2</bin-group-id> + <admin-state>enable</admin-state> + </bin-group> + <session> + <session-name>rt0.ams.nl--rt0.lon.uk</session-name> + <bin-group>2</bin-group> + <ip> + <destination>62.40.119.122</destination> + <destination-udp-port>64364</destination-udp-port> + <source>62.40.119.123</source> + <twamp-light> + <admin-state>enable</admin-state> + <test-id>auto</test-id> + <interval>1000</interval> + <pad-size>10</pad-size> + <record-stats>delay-and-loss</record-stats> + </twamp-light> + </ip> + </session> + </oam-pm> + <policy-options> + <as-path> + <name>AS_BLOCK_EU_SANCTIONS</name> + <expression>.* (2148|2643) .*</expression> + </as-path> + <as-path> + <name>AS_COMMERCIAL_LOW_PREF</name> + <expression>.* (702|703|3356|3549|5511|6762|6939|10026) .*</expression> + </as-path> + <as-path> + <name>AS_PRIVATE</name> + <expression>.* (0|64512-65535|4200000000-4294967295) .*</expression> + </as-path> + <as-path> + <name>AS_SELF</name> + <expression>.*(20965|21320).*</expression> + </as-path> + <community> + <name>AS20965_ROUTES</name> + <member> + <member>21320:20965</member> + </member> + </community> + <community> + <name>GEANT_ANYCAST</name> + <member> + <member>20965:2</member> + </member> + </community> + <community> + <name>GEANT_CERN_BLOCK</name> + <member> + <member>64512:559</member> + </member> + </community> + <community> + <name>GEANT_COLT</name> + <member> + <member>20965:3356</member> + </member> + </community> + <community> + <name>GEANT_COMMUNITIES</name> + <member> + <member>^(20965|21320):.*$</member> + </member> + </community> + <community> + <name>GEANT_COPERNICUS</name> + <member> + <member>20965:64912</member> + </member> + </community> + <community> + <name>GEANT_DFN_BLOCK</name> + <member> + <member>64512:680</member> + </member> + </community> + <community> + <name>GEANT_DUMMY</name> + <member> + <member>20965:65000</member> + </member> + </community> + <community> + <name>GEANT_GOOGLE</name> + <member> + <member>20965:15169</member> + </member> + </community> + <community> + <name>GEANT_GWS</name> + <member> + <member>20965:7777</member> + </member> + </community> + <community> + <name>GEANT_GWS_BLOCK</name> + <member> + <member>20965:7000</member> + </member> + </community> + <community> + <name>GEANT_GWS_COGENT_BLOCK</name> + <member> + <member>64500:174</member> + </member> + </community> + <community> + <name>GEANT_GWS_COGENT_BLOCK2</name> + <member> + <member>64512:174</member> + </member> + </community> + <community> + <name>GEANT_GWS_COLT_BLOCK</name> + <member> + <member>64500:3356</member> + </member> + </community> + <community> + <name>GEANT_GWS_COLT_BLOCK2</name> + <member> + <member>64512:3356</member> + </member> + </community> + <community> + <name>GEANT_GWS_NREN</name> + <member> + <member>20965:65534</member> + </member> + </community> + <community> + <name>GEANT_GWS_PREPEND1</name> + <member> + <member>20965:7010</member> + </member> + </community> + <community> + <name>GEANT_GWS_PREPEND2</name> + <member> + <member>20965:7020</member> + </member> + </community> + <community> + <name>GEANT_GWS_PREPEND3</name> + <member> + <member>20965:7030</member> + </member> + </community> + <community> + <name>GEANT_GWS_PREPEND6</name> + <member> + <member>20965:7060</member> + </member> + </community> + <community> + <name>GEANT_GWS_VIENNA</name> + <member> + <member>21320:64541</member> + </member> + </community> + <community> + <name>GEANT_IAS_GWS_BLOCK</name> + <member> + <member>64512:65534</member> + </member> + </community> + <community> + <name>GEANT_IAS_GWS_NREN</name> + <member> + <member>64700:65534</member> + </member> + </community> + <community> + <name>GEANT_IAS_GWS_PREPEND1</name> + <member> + <member>64801:65534</member> + </member> + </community> + <community> + <name>GEANT_IAS_GWS_PREPEND2</name> + <member> + <member>64802:65534</member> + </member> + </community> + <community> + <name>GEANT_IAS_GWS_PREPEND3</name> + <member> + <member>64803:65534</member> + </member> + </community> + <community> + <name>GEANT_IAS_GWS_PREPEND6</name> + <member> + <member>64806:65534</member> + </member> + </community> + <community> + <name>GEANT_IAS_NREN_AMS</name> + <member> + <member>21320:64913</member> + </member> + </community> + <community> + <name>GEANT_INTERCO_BLOCK</name> + <member> + <member>20965:0</member> + </member> + </community> + <community> + <name>GEANT_INTERCO_PREPEND1</name> + <member> + <member>20965:10</member> + </member> + </community> + <community> + <name>GEANT_INTERCO_PREPEND2</name> + <member> + <member>20965:20</member> + </member> + </community> + <community> + <name>GEANT_INTERCO_PREPEND3</name> + <member> + <member>20965:30</member> + </member> + </community> + <community> + <name>GEANT_INTERCO_PREPEND6</name> + <member> + <member>20965:60</member> + </member> + </community> + <community> + <name>GEANT_IXPEERS</name> + <member> + <member>20965:3</member> + </member> + </community> + <community> + <name>GEANT_KREONET</name> + <member> + <member>20965:17579</member> + </member> + </community> + <community> + <name>GEANT_KREONET_BLOCK</name> + <member> + <member>20965:16000</member> + </member> + </community> + <community> + <name>GEANT_KREONET_PREPEND1</name> + <member> + <member>20965:16010</member> + </member> + </community> + <community> + <name>GEANT_KREONET_PREPEND2</name> + <member> + <member>20965:16020</member> + </member> + </community> + <community> + <name>GEANT_KREONET_PREPEND3</name> + <member> + <member>20965:16030</member> + </member> + </community> + <community> + <name>GEANT_KREONET_PREPEND6</name> + <member> + <member>20965:16060</member> + </member> + </community> + <community> + <name>GEANT_LARGE_COMMUNITIES</name> + <member> + <member>^(20965|21320)&.*&.*$</member> + </member> + </community> + <community> + <name>GEANT_LOW_PREF</name> + <member> + <member>20965:1</member> + </member> + </community> + <community> + <name>GEANT_NREN_AMS</name> + <member> + <member>21320:64913</member> + </member> + </community> + <community> + <name>GEANT_NRN</name> + <member> + <member>20965:155</member> + </member> + </community> + <community> + <name>GEANT_PEERS</name> + <member> + <member>20965:4</member> + </member> + </community> + <community> + <name>GEANT_PEER_RE</name> + <member> + <member>20965:65530</member> + </member> + </community> + <community> + <name>GEANT_REDIRIS_BLOCK</name> + <member> + <member>64512:766</member> + </member> + </community> + <community> + <name>GEANT_RTBH</name> + <member> + <member>20965:8</member> + </member> + </community> + <community> + <name>GEANT_UTIC</name> + <member> + <member>20965:8670</member> + </member> + </community> + <community> + <name>GLOBAL_ANYCAST_IAS</name> + <member> + <member>21320:7</member> + </member> + </community> + <community> + <name>GLOBAL_ANYCAST_RE</name> + <member> + <member>20965:7</member> + </member> + </community> + <community> + <name>IAS_AGGREGATE_ROUTES</name> + <member> + <member>21320:64912</member> + </member> + </community> + <community> + <name>INFO_PUBLIC_PEER_AMS</name> + <member> + <member>21320:64613</member> + </member> + </community> + <community> + <name>INFO_PUBLIC_PEER_AMS-IX</name> + <member> + <member>21320:64699</member> + </member> + </community> + <community> + <name>LHCONE_BACKBONE</name> + <member> + <member>61339:60002</member> + </member> + </community> + <community> + <name>LHCONE_BLOCK_KREONET_17579</name> + <member> + <member>65010:17579</member> + </member> + </community> + <community> + <name>LHCONE_PREPEND_KREONET_17579_X1</name> + <member> + <member>65001:17579</member> + </member> + </community> + <community> + <name>LHCONE_PREPEND_KREONET_17579_X2</name> + <member> + <member>65002:17579</member> + </member> + </community> + <community> + <name>LHCONE_PREPEND_KREONET_17579_X3</name> + <member> + <member>65003:17579</member> + </member> + </community> + <community> + <name>NO_EXPORT</name> + <member> + <member>65535:65281</member> + </member> + </community> + <community> + <name>ORIGIN_VALIDATION_STATE_INVALID</name> + <member> + <member>ext:4300:2</member> + </member> + </community> + <community> + <name>ORIGIN_VALIDATION_STATE_UNKNOWN</name> + <member> + <member>ext:4300:1</member> + </member> + </community> + <community> + <name>ORIGIN_VALIDATION_STATE_VALID</name> + <member> + <member>ext:4300:0</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_ALL_PRIVATE_PEERS</name> + <member> + <member>20965:65533</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_ALL_PUBLIC_PEERS</name> + <member> + <member>64700:65532</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</name> + <member> + <member>64712:65532</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</name> + <member> + <member>20965:65532</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_AS3356_VIE</name> + <member> + <member>64741:3356</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_AS10310</name> + <member> + <member>64700:10310</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_AS10310_2</name> + <member> + <member>64712:10310</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_AS10310_3</name> + <member> + <member>origin:10310:64700</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_AS10310_4</name> + <member> + <member>origin:10310:64712</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_AS10310_AMS-IX</name> + <member> + <member>64799:10310</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_AS10310_AMS-IX_2</name> + <member> + <member>origin:10310:64799</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_AS10310_BUD</name> + <member> + <member>64718:10310</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_AS17579</name> + <member> + <member>64700:17579</member> + </member> + </community> + <community> + <name>TE_ANNOUNCE_AS17579_2</name> + <member> + <member>origin:17579:64700</member> + </member> + </community> + <community> + <name>TE_BLOCK_ALL_PUBLIC_PEERS</name> + <member> + <member>64512:65532</member> + </member> + </community> + <community> + <name>TE_BLOCK_ALL_PUBLIC_PEERS_2</name> + <member> + <member>20965:12</member> + </member> + </community> + <community> + <name>TE_BLOCK_ALL_PUBLIC_PEERS_3</name> + <member> + <member>20965:6</member> + </member> + </community> + <community> + <name>TE_BLOCK_AMS-IX</name> + <member> + <member>64599:65532</member> + </member> + </community> + <community> + <name>TE_BLOCK_AS10310</name> + <member> + <member>64512:10310</member> + </member> + </community> + <community> + <name>TE_BLOCK_AS10310_2</name> + <member> + <member>origin:10310:64512</member> + </member> + </community> + <community> + <name>TE_BLOCK_AS10310_AMS-IX</name> + <member> + <member>64599:10310</member> + </member> + </community> + <community> + <name>TE_BLOCK_AS10310_AMS-IX_2</name> + <member> + <member>origin:10310:64599</member> + </member> + </community> + <community> + <name>TE_BLOCK_LOCAL_IXES</name> + <member> + <member>64518:65532</member> + </member> + </community> + <community> + <name>TE_BLOCK_PEERS_2</name> + <member> + <member>64512:65533</member> + </member> + </community> + <community> + <name>TE_ORIGIN_EXTENDED_COMMUNITIES</name> + <member> + <member>origin:^.*&^.*</member> + </member> + </community> + <community> + <name>TE_PREPEND_ALL_PUBLIC_PEERS_X1_PREPEND</name> + <member> + <member>64801:65532</member> + </member> + </community> + <community> + <name>TE_PREPEND_ALL_PUBLIC_PEERS_X2_PREPEND</name> + <member> + <member>64802:65532</member> + </member> + </community> + <community> + <name>TE_PREPEND_ALL_PUBLIC_PEERS_X3_PREPEND</name> + <member> + <member>64803:65532</member> + </member> + </community> + <community> + <name>TE_PREPEND_ALL_PUBLIC_PEERS_X6_PREPEND</name> + <member> + <member>64806:65532</member> + </member> + </community> + <community> + <name>TE_PREPEND_AS10310_X1_2_BYTE</name> + <member> + <member>64801:10310</member> + </member> + <member> + <member>64812:10310</member> + </member> + </community> + <community> + <name>TE_PREPEND_AS10310_X1_4_BYTE</name> + <member> + <member>origin:10310:64801</member> + </member> + <member> + <member>origin:10310:64812</member> + </member> + </community> + <community> + <name>TE_PREPEND_AS10310_X2_2_BYTE</name> + <member> + <member>64802:10310</member> + </member> + <member> + <member>64812:10310</member> + </member> + </community> + <community> + <name>TE_PREPEND_AS10310_X2_4_BYTE</name> + <member> + <member>origin:10310:64802</member> + </member> + <member> + <member>origin:10310:64812</member> + </member> + </community> + <community> + <name>TE_PREPEND_AS10310_X3_2_BYTE</name> + <member> + <member>64803:10310</member> + </member> + <member> + <member>64812:10310</member> + </member> + </community> + <community> + <name>TE_PREPEND_AS10310_X3_4_BYTE</name> + <member> + <member>origin:10310:64803</member> + </member> + <member> + <member>origin:10310:64812</member> + </member> + </community> + <community> + <name>TE_PREPEND_AS10310_X6_2_BYTE</name> + <member> + <member>64806:10310</member> + </member> + <member> + <member>64812:10310</member> + </member> + </community> + <community> + <name>TE_PREPEND_AS10310_X6_4_BYTE</name> + <member> + <member>origin:10310:64806</member> + </member> + <member> + <member>origin:10310:64812</member> + </member> + </community> + <community> + <name>TE_PRIVATE_COMMUNITIES</name> + <member> + <member>^(64[6-9][0-9][0-9]|65[0-4][0-9][0-9]|655[0-2][0-9]|6553[0-5]).*$</member> + </member> + </community> + <community> + <name>TE_RPKI_EXTENDED_COMMUNITIES</name> + <member> + <member>ext:^4300&^.*</member> + </member> + </community> + <community> + <name>TE_RT_EXTENDED_COMMUNITIES</name> + <member> + <member>target:^.*&^.*</member> + </member> + </community> + <prefix-list> + <name>BOGONS</name> + <prefix> + <ip-prefix>0.0.0.0/0</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>0.0.0.0/8</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>10.0.0.0/8</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>100.64.0.0/10</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>127.0.0.0/8</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>169.254.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>172.16.0.0/12</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.0.0.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.0.2.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.168.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>198.18.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>198.51.100.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.0.113.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>224.0.0.0/3</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>::/0</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>::/96</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>::1/128</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>::ffff:0.0.0.0/96</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>100::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:10::/28</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:db8::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>3ffe::/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>fc00::/7</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>fe80::/10</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>fec0::/10</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>ff00::/8</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>DEFAULT_V4</name> + <prefix> + <ip-prefix>0.0.0.0/0</ip-prefix> + <type>exact</type> + </prefix> + </prefix-list> + <prefix-list> + <name>DFN_PREFIXES</name> + <prefix> + <ip-prefix>5.10.8.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>5.34.224.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>5.34.224.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>5.34.225.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>5.34.226.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>5.34.227.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>5.34.228.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>5.34.229.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>5.34.230.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>5.34.231.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>5.199.176.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>23.128.24.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>27.50.0.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.47.80.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>39.0.1.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.12.171.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.12.192.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.90.132.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>62.141.160.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>77.87.224.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>77.87.224.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>77.87.228.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.245.144.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.245.144.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.245.145.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.245.146.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.245.147.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.245.148.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.245.152.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.245.156.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.245.159.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.112.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.112.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.113.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.114.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.115.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.116.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.117.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.118.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.119.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.120.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.121.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.122.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.123.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.124.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.125.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.126.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.20.127.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.192.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.192.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.193.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.194.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.195.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.196.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.197.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.198.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.199.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.200.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.201.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.202.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.203.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.204.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.205.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.206.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.90.207.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>82.195.64.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>83.143.0.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.64.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.65.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.66.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.67.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.69.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.70.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.74.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.75.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.76.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.79.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.80.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.81.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.82.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.83.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.85.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.86.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.88.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.90.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.91.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.92.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.95.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.246.64.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>85.208.24.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>85.238.132.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>85.238.136.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>87.77.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>88.133.240.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>88.133.248.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.243.70.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.144.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.146.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.152.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.153.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.154.0/25</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.154.128/28</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.128.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.128.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.129.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.130.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.131.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.132.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.133.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.134.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.135.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.136.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.137.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.138.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.139.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.140.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.141.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.142.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.184.143.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>94.125.72.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>103.1.0.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>103.1.4.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>106.0.1.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>109.70.192.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>109.235.224.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>128.7.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>128.140.208.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>128.176.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.13.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.26.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.69.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.70.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.143.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.187.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.206.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.217.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.0.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.128.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.128.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.192.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.193.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.194.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.196.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.200.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.202.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.208.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.210.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.212.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.213.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.217.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.233.224.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.247.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.73.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.75.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.83.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.133.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.149.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.183.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.193.96.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.193.96.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.193.97.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.193.98.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.193.99.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.193.100.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.193.101.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.193.102.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.193.103.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.255.104.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.159.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.169.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.169.169.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.173.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.244.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.245.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.188.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.220.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.234.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.246.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>132.151.25.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>132.176.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>132.180.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>132.187.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>132.195.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>132.199.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>132.230.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>132.231.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>132.252.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.1.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.2.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.28.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.30.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.34.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.60.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.61.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.76.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.91.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.94.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.95.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.96.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.99.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.99.235.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.100.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.102.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.103.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.104.0.0/14</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.104.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.104.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.105.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.106.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.106.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.107.195.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.107.202.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.107.209.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.107.216.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.107.225.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.107.226.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.108.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.109.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.110.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.130.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.147.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.155.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.169.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.171.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.171.0.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.171.64.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.176.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.245.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>136.156.96.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>136.172.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>137.193.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>137.226.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>137.248.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>137.250.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>137.251.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>138.244.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>138.246.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.6.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.11.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.13.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.17.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.18.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.18.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.19.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.20.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.30.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.75.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.174.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.191.184.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>140.181.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.2.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.3.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.4.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.4.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.5.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.5.96.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.7.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.9.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.10.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.12.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.13.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.14.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.16.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.17.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.18.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.18.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.19.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.20.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.21.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.22.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.23.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.24.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.24.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.25.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.27.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.28.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.30.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.31.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.32.0.0/14</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.32.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.33.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.34.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.34.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.35.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.37.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.38.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.38.12.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.39.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.40.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.41.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.42.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.42.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.43.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.44.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.44.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.45.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.46.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.47.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.48.0.0/13</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.48.0.0/14</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.48.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.49.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.50.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.51.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.52.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.53.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.54.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.54.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.55.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.56.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.56.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.57.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.58.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.58.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.59.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.60.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.60.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.61.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.62.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.62.0.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.63.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.64.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.64.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.65.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.66.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.67.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.68.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.68.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.69.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.70.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.70.128.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.71.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.72.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.72.0.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.72.128.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.74.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.74.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.75.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.76.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.78.0.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.78.64.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.78.96.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.78.104.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.78.112.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.78.192.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.79.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.80.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.82.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.82.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.83.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.84.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.87.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.89.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.99.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.100.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>143.93.160.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>143.93.244.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>144.41.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>146.107.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>146.140.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>147.142.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>147.172.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>149.201.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>149.201.0.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>149.201.104.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>149.201.128.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>149.203.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>149.205.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>149.217.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>149.220.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>149.222.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.0.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.8.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.10.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.11.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.12.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.16.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.19.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.20.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.20.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.21.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.23.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.24.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.28.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.32.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.40.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.44.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.44.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.45.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.46.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.48.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.52.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.54.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.56.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.58.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.60.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.61.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.62.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.64.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.68.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.70.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.72.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.76.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.79.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.80.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.80.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.83.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.87.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.88.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.92.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.92.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.94.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.96.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.96.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.100.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.102.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.103.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.104.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.108.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.109.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.110.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.112.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.114.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.116.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.116.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.119.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.120.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.124.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.124.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.126.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.128.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.133.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.134.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.142.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.142.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.143.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.144.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.146.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.148.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.149.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.150.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.150.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.151.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.152.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.156.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.158.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.160.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.168.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.168.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.169.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.176.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.180.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.180.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.181.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.182.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.184.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.185.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.186.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.188.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.192.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.192.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.196.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.200.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.200.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.202.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.204.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.206.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.207.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.208.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.210.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.212.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.212.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.216.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.219.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.220.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.224.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.224.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.224.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.227.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.228.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.230.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.232.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.234.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.235.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.236.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.240.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.241.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.242.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.244.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.248.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.250.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.253.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.254.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.96.255.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.0.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.0.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.8.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.10.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.11.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.12.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.14.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.15.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.16.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.17.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.19.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.21.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.22.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.22.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.26.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.27.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.28.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.33.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.63.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.64.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.69.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.111.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.113.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.114.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.128.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.130.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.131.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.132.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.133.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.134.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.135.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.136.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.137.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.148.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.166.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.172.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.174.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.176.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.178.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.179.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.180.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.185.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.187.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.97.188.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>155.250.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>157.180.228.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>157.180.232.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>160.45.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>161.42.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>163.165.192.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>163.165.193.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>163.165.210.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>163.165.212.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>178.213.77.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.29.188.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.29.189.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.29.190.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.35.208.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.36.44.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.55.124.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.58.36.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.73.20.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.73.20.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.73.22.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.73.22.0/25</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.73.22.128/25</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.73.23.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.75.148.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.75.148.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.75.148.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.75.149.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.75.150.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.75.151.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.80.168.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.86.232.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.86.232.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.86.232.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.86.233.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.86.234.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.86.234.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.86.235.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.94.36.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.94.36.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.94.37.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.94.38.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.94.39.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.118.144.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.134.84.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.149.212.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.151.152.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.174.4.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.174.4.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.193.144.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.199.216.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.219.244.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.229.244.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.231.132.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.237.152.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.237.153.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.237.154.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.237.155.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.240.116.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.1.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.32.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.32.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.32.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.33.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.34.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.35.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.36.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.36.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.37.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.38.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.39.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.40.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.40.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.41.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.42.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.43.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.44.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.44.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.45.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.46.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.74.47.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.232.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.232.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.232.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.232.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.233.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.234.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.234.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.235.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.236.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.236.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.236.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.237.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.238.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.238.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.95.239.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.12.81.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.26.174.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.26.176.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.26.192.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.63.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.64.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.66.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.68.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.72.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.149.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.150.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.151.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.152.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.153.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.35.229.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.41.227.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.42.63.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.42.64.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.42.143.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.5.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.6.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.7.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.8.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.9.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.10.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.11.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.12.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.13.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.14.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.15.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.16.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.17.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.18.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.19.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.20.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.22.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.23.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.24.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.25.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.26.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.27.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.28.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.29.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.30.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.32.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.36.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.37.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.40.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.81.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.82.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.84.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.88.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.44.90.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.48.107.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.52.0.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.52.32.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.52.48.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.52.50.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.53.103.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.54.34.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.54.41.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.54.42.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.54.49.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.54.60.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.55.188.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.55.197.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.55.244.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.58.128.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>192.67.189.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.67.200.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.67.208.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.67.218.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.68.165.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.68.166.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.68.168.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.68.211.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.68.212.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.68.254.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.73.34.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.145.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.146.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.148.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.154.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.157.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.170.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.172.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.176.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.241.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.245.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.246.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.76.248.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.82.241.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.88.97.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.88.108.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.146.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.148.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.149.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.150.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.152.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.154.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.156.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.157.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.158.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.160.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.161.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.162.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.164.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.164.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.165.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.166.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.167.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.168.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.169.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.170.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.171.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.172.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.172.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.173.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.174.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.174.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.175.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.102.176.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.107.235.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.107.236.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.23.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.24.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.26.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.30.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.32.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.32.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.33.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.34.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.35.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.36.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.40.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.44.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.45.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.46.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.48.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.51.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.52.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.52.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.54.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.64.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.67.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.68.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.69.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.70.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.71.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.108.72.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.13.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.19.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.27.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.31.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.44.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.48.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.76.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.101.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.115.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.116.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.134.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.135.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.175.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.177.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.202.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.109.234.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.25.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.26.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.28.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.237.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.239.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.240.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.243.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.244.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.245.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.246.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.248.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.250.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.251.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.253.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.124.254.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.1.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.2.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.7.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.8.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.15.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.16.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.18.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.23.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.26.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.28.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.28.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.30.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.31.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.129.51.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.160.142.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.166.56.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.16.4.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.16.112.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.16.168.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.16.176.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.17.8.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.17.8.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.17.9.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.17.10.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.17.11.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.17.22.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.17.232.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.17.236.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.17.240.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.17.240.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.32.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.48.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.64.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.71.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.72.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.74.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.76.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.78.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.79.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.112.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.113.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.22.114.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.23.168.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.23.248.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.23.254.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.24.80.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.24.128.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.25.16.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.25.32.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.30.3.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.30.18.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.30.80.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.30.80.0/25</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.30.80.128/25</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.30.112.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.43.29.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.100.227.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.102.25.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.104.174.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.108.176.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.149.8.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.164.246.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.174.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.0.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.9.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.12.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.13.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.16.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.32.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.64.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.129.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.130.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.132.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.136.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.144.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.152.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.154.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.156.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.160.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.165.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.166.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.168.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.176.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.196.192.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.0.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.4.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.8.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.20.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.28.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.64.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.68.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.70.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.80.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.85.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.86.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.94.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.112.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.120.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.130.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.132.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.136.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.149.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.152.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.157.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.160.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.160.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.168.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.180.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.200.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.212.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.197.224.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.13.135.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.15.138.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.15.139.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.26.188.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.26.188.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.26.190.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.35.108.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.39.180.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.49.61.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.76.43.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.76.223.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.76.232.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.76.234.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.94.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.113.96.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.113.208.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.153.219.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.187.160.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.187.162.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.12.38.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.13.40.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.37.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.39.222.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.60.186.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.72.96.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.74.160.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.88.209.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.248.67.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.44.192.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.32.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.33.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.34.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.35.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.36.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.37.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.38.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.39.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.40.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.41.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.42.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.43.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.44.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.45.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.46.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.47.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.48.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.49.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.50.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.51.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.52.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.53.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.54.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.55.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.56.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.57.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.58.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.59.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.60.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.61.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.62.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.101.63.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.201.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.237.168.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>213.152.96.0/19</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>DFN_PREFIXES_V6</name> + <prefix> + <ip-prefix>2001:200:c000::/35</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:638::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:638:30d::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:540::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:da0::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:da4::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:da8::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:dac::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:134::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:34c::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:61c::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:6c4::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:a20::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:1364::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:1b60::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:2184::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:2414::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:295c::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7c0::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7c0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7c0:2310::/44</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee00::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee01::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee02::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee03::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee04::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee05::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef00::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef01::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef02::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef03::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef04::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef05::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fb01:100::/56</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fb01:200::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fd02::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fd05::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe00::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe01::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe02::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe03::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe04::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe05::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe06::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe07::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0a::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0b::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0c::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0d::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0e::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0f::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe10::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe12::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe13::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe14::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe15::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe16::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe17::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe18::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe19::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe20::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff00::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff01::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff02::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff03::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff04::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff05::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff06::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff07::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0a::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0b::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0c::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0d::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0e::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0f::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff10::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff12::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff13::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff14::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff15::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff16::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff17::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff18::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff19::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff20::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:a38::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:41b8::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:4ca0::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:4ca0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:4cf0::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:4cf8::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:1398::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:1398::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:139b::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:139b:ffff::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:139c::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:4700::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:4700:dead::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:5ba0::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:8a60::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:a200::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:a460::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:a780::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a02:778::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a02:1318::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a02:c6a0::/30</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a02:d480::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a02:d480:240::/42</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a02:d480:700::/42</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a02:d600::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:80::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:4b20::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:4b20::/30</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:4b20::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:4b21::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:4b22::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:4b27:d000::/36</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:63c0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:6880::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:2c10::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:2c14::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:3410::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:3810::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:3824::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4404::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4410::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4414::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4420::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4424::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4480::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4484::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4810::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4814::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4c80::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:4c84::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:5460::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:5464::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:5470::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:db80:5474::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a04:dfc0::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a05:3e00::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a05:3e00::/30</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a05:3e04::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a05:3e05::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a05:3e06::/31</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a05:d880::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a05:d880:1::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a05:d880:2::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a05:d880:3::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a05:d880:4::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a06:93c0::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a06:93c0::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a06:93c0:1::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a06:93c0:2::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a06:93c0:3::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a06:93c1:129::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a06:ec00::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a09:1480::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a09:1480::/40</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a09:1480:100::/40</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a09:80c0::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0a:6200::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0a:a3c0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0a:a3c0::/44</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0b:7900::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0b:f040::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0c:7500::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0d:de00::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0e:3c0::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0e:bb00::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a12:e140::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a13:dd80::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a13:df80:1340::/44</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>EXTERNAL_PROJECT</name> + <prefix> + <ip-prefix>62.40.99.32/28</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:798:7::/64</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:798:8::/64</ip-prefix> + <type>exact</type> + </prefix> + </prefix-list> + <prefix-list> + <name>GEANT_ADDRESS_SPACE_62.40.96.0/19</name> + <prefix> + <ip-prefix>62.40.96.0/19</ip-prefix> + <type>exact</type> + </prefix> + </prefix-list> + <prefix-list> + <name>GEANT_ADDRESS_SPACE_V6_2001:798::/32</name> + <prefix> + <ip-prefix>2001:798::/32</ip-prefix> + <type>exact</type> + </prefix> + </prefix-list> + <prefix-list> + <name>GEANT_ADDRESS_SPACE_V6_2001:799::/32</name> + <prefix> + <ip-prefix>2001:799::/32</ip-prefix> + <type>exact</type> + </prefix> + </prefix-list> + <prefix-list> + <name>GEANT_ADDRESS_SPACE_V6_2001:799:cb2::/48</name> + <prefix> + <ip-prefix>2001:799:cb2::/48</ip-prefix> + <type>exact</type> + </prefix> + </prefix-list> + <prefix-list> + <name>GEANT_ANYCAST</name> + <prefix> + <ip-prefix>192.33.14.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>192.58.128.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>194.0.1.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>194.0.2.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:678:4::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:678:5::/48</ip-prefix> + <type>exact</type> + </prefix> + </prefix-list> + <prefix-list> + <name>GEANT_SUPERPOP_V4_83.97.92.0/22</name> + <prefix> + <ip-prefix>83.97.92.0/22</ip-prefix> + <type>exact</type> + </prefix> + </prefix-list> + <prefix-list> + <name>GLOBAL_ANYCAST</name> + <prefix> + <ip-prefix>170.247.170.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>192.5.5.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>192.33.4.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>192.36.148.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>192.58.128.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>192.112.36.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>192.203.230.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>193.0.14.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>198.41.0.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>198.97.190.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>199.7.83.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>199.7.91.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>202.12.27.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:200:c000::/35</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:500:1::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:500:2::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:500:12::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:500:2d::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:500:2f::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:500:9f::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:500:a8::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:503:c27::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:503:ba3e::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:7fd::/48</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:7fe::/33</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:dc3::/32</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2801:1b8:10::/48</ip-prefix> + <type>exact</type> + </prefix> + </prefix-list> + <prefix-list> + <name>IX_PREFIXES</name> + <prefix> + <ip-prefix>80.81.192.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.249.208.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.210.16.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.1.47.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.1.192.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.6.36.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.65.185.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.188.137.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.203.0.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.66.224.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.29.66.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:1::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:4::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:b:100::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:14::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:18::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:1c:24a::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:30::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:35::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:36::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:a0::/64</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>KREONET</name> + <prefix> + <ip-prefix>1.18.124.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>1.18.127.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>1.18.128.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>1.18.130.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>1.18.132.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>1.232.172.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>1.233.206.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>1.233.208.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>1.233.224.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>14.44.112.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>27.117.64.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.29.4.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.29.37.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.29.48.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.72.232.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.72.234.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.103.160.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.150.248.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.224.36.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.224.40.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.224.144.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>58.224.146.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>59.0.49.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>59.1.40.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>59.5.77.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>59.26.192.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>59.26.221.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>59.26.222.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>59.150.136.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>59.150.157.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>59.150.158.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.39.29.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.41.214.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.41.243.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.41.244.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.42.36.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.42.40.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.42.104.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.42.155.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.42.156.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.42.168.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.72.102.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.72.104.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.84.42.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.96.7.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.103.128.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.103.135.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.103.144.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.103.146.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.103.154.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.103.159.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.103.189.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.103.190.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.106.128.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.109.201.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.109.202.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.109.204.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.109.219.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.109.220.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.109.224.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.109.228.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.251.64.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>61.252.52.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>103.8.230.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>103.43.64.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>110.76.64.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>111.218.40.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>112.70.13.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>113.198.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>113.198.64.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>113.198.160.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>113.198.168.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>113.198.221.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>113.198.222.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>113.198.224.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.70.0.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.70.16.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.70.74.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.70.98.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.70.100.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.70.104.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.70.112.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.70.120.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.70.124.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.70.128.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.71.62.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.71.64.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.71.80.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.71.82.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.71.96.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.71.104.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.71.108.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>114.71.110.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>115.88.90.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>115.145.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>115.187.20.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>116.93.192.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.49.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.80.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.96.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.128.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.144.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.186.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.190.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.192.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.224.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.240.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.248.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.16.252.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.17.95.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.17.96.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.17.104.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.17.114.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.17.116.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.17.220.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.17.224.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>117.111.255.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>118.128.220.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>118.129.146.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>118.129.208.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>118.130.19.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>118.218.200.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>120.143.248.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.65.176.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.65.178.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.144.140.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.144.144.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.144.148.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.148.122.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.148.124.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.151.96.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.157.215.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.164.116.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.170.25.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.170.26.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.170.28.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.174.120.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.174.124.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.181.196.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.187.64.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.187.80.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>121.187.84.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>124.3.64.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>124.3.80.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>124.138.116.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>124.138.118.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>124.138.120.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>124.139.234.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>124.139.236.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>124.139.238.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>125.57.156.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>125.57.158.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>125.241.64.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>125.241.136.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>128.134.232.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>128.134.240.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.75.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>137.68.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.223.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>143.248.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>147.43.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>147.46.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>150.183.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>150.197.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>155.230.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>161.122.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>163.152.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>163.239.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>164.125.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>165.132.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>165.141.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>165.141.64.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>165.141.233.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>165.141.234.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>165.141.248.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>165.141.251.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>165.141.252.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>165.141.254.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>165.246.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>168.126.167.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>168.188.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>175.116.0.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>175.214.180.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.100.2.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.104.15.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.132.248.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.203.138.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.203.144.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.249.16.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.20.84.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.30.36.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.30.40.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.30.46.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.30.48.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.30.54.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.30.56.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.30.60.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.30.84.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.30.120.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.31.156.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.31.160.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.31.182.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.31.184.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.31.208.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.31.222.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>202.233.154.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.229.128.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.1.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.6.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.8.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.16.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.22.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.24.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.64.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.96.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.116.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.120.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.230.128.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.232.108.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.232.188.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.232.240.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.233.156.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.234.158.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.237.0.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.237.64.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.237.202.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.237.216.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.237.220.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.237.223.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.241.32.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.241.84.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.241.88.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.241.96.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.241.128.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.241.164.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.241.168.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.241.192.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.242.19.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.242.213.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.246.74.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.247.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.247.64.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.247.160.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.247.192.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.250.0.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.250.96.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.250.128.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.252.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.252.64.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.253.96.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.253.128.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.253.144.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.253.192.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.253.224.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.253.234.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.253.236.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.253.240.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.253.248.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.254.40.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.254.128.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.255.216.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>203.255.236.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.90.191.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.93.72.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.97.141.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.98.0.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.99.173.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.102.192.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.102.200.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.102.202.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.102.204.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.102.206.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.107.93.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.107.128.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.110.128.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.113.236.160/27</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.114.106.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.114.108.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.115.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.117.106.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.117.108.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.117.128.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.119.0.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.120.85.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.121.239.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.125.0.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.182.254.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.183.253.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.206.221.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.207.253.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.211.1.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.216.41.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.216.42.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.218.192.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>210.219.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.34.110.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.34.112.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.39.128.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.40.239.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.41.0.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.53.221.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.60.141.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.62.103.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.62.178.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.63.235.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.114.216.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.114.224.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.114.228.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.118.144.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.119.239.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.119.240.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.168.196.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.168.247.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.169.58.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.170.247.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.171.184.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.180.61.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.181.61.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.181.192.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.183.183.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.213.190.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.225.30.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.225.32.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.230.8.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.230.90.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.234.21.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>211.238.55.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>218.149.15.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>218.149.16.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>218.152.222.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>218.233.7.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>218.233.193.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>218.234.156.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>218.234.166.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.6.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.30.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.32.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.138.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.143.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.144.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.148.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.187.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.188.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.213.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.214.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.216.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.220.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.236.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.240.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.66.243.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.67.94.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.67.96.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.67.157.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.67.158.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.67.160.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.67.168.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.68.2.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.68.4.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.68.8.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.68.33.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.68.102.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.68.150.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.68.152.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.68.248.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.68.252.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.69.66.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.69.72.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.69.76.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.69.160.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.69.174.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.69.224.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.73.230.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.73.232.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.83.237.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.85.223.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.90.117.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.90.118.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.90.120.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.90.250.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.92.62.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.92.64.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.92.66.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.119.44.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.119.46.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.123.79.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.123.126.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.149.16.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.149.40.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.149.64.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.149.66.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.149.156.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>220.149.160.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>221.149.80.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>222.118.5.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>222.118.152.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>222.118.154.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>222.237.180.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>222.237.184.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>222.237.192.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>223.194.160.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>223.194.192.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>223.194.230.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>223.194.232.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:90::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:94::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:9a::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:9c::/47</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:a0::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:a4::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:b0::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:b2::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:b4::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:b6::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:b8::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:ba::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:bc::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:be::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:c0::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:c2::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:c4::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:c6::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:c8::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:ca::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:cc::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:ce::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:d0::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:d2::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:d4::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:d6::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:dc::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:e6::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:ed::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:ef::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:2b8:380::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:320::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:dcc::/32</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>LHCONE_PTP_ALLOW_EXACT</name> + <prefix> + <ip-prefix>62.40.126.0/24</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>2001:798:111:1::/64</ip-prefix> + <type>exact</type> + </prefix> + </prefix-list> + <prefix-list> + <name>PTP_ROUTES_DENY_SPECIFIC</name> + <prefix> + <ip-prefix>62.40.103.0/25</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>62.40.126.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:798:111:1::/64</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>REDIRIS_PREFIXES</name> + <prefix> + <ip-prefix>31.3.112.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.93.208.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.93.208.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.93.210.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>62.204.192.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>74.116.176.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>74.116.176.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>74.116.178.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>74.116.179.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.73.144.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.73.144.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.73.152.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.73.154.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.73.156.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>80.73.159.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>81.89.32.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.88.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.89.0.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.89.128.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>85.119.192.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>85.119.192.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>85.119.196.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.208.95.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.213.30.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.216.12.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.230.250.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.188.48.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.188.52.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.206.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.0.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.1.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.2.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.4.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.8.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.16.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.32.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.32.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.43.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.48.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.50.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.53.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.54.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.56.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.60.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.61.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.63.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.67.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.72.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.75.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.79.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.80.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.81.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.82.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.82.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.83.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.86.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.92.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.95.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.96.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.102.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.103.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.104.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.105.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.106.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.106.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.108.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.110.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.112.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.116.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.117.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.118.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.123.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.124.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.124.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.126.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.128.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.133.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.135.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.136.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.137.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.138.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.139.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.141.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.143.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.144.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.145.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.146.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.147.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.148.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.149.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.151.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.152.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.154.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.160.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.161.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.162.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.163.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.164.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.166.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.167.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.168.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.168.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.169.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.170.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.171.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.173.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.174.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.176.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.184.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.186.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.188.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.190.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.192.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.194.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.195.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.196.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.198.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.199.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.201.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.202.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.203.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.204.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.205.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.206.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.207.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.208.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.209.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.210.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.213.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.214.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.215.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.216.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.217.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.218.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.220.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.224.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.226.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.228.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.230.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.232.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.233.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.234.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.235.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.237.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.239.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.243.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.252.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.253.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.254.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.176.255.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>138.4.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>138.100.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>139.191.152.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>147.83.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>147.96.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>147.156.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>150.128.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>150.214.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>150.244.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>155.54.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>155.210.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>156.35.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>157.88.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>158.42.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>158.49.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>158.99.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>158.109.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>158.227.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>159.237.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>161.67.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>161.72.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>161.111.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>161.116.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>163.117.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>176.12.80.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>176.12.80.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>176.12.80.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>176.12.82.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>176.12.84.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>176.12.86.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>178.255.104.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.12.104.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.73.172.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.73.173.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.73.174.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.73.175.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.132.136.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.132.136.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.132.138.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.179.104.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.190.240.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.197.88.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.197.244.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.205.148.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.209.100.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.209.101.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.209.102.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.94.163.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.101.161.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.101.162.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.101.163.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.101.164.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.101.168.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.106.252.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.147.251.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.201.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.202.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.204.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.208.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.209.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.210.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.211.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.212.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.213.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.214.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.148.215.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.171.1.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.171.2.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.171.3.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.171.4.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.171.5.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.187.16.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.187.17.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.187.18.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.187.19.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.187.20.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.187.21.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.187.22.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.187.23.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.187.24.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.243.16.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.36.174.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.109.172.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.144.0.0/14</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.203.200.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.242.98.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.0.1.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.0.2.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.0.33.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.0.34.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.69.254.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.180.184.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.180.187.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.10.201.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.57.163.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.57.169.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.64.186.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.66.150.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.66.151.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.76.204.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.234.59.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.235.5.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.254.148.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.254.149.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>198.32.64.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>199.6.5.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.0.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.64.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.96.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.100.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.101.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.102.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.103.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.104.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.105.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.106.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.107.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.108.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.109.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.110.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.111.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.112.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.113.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.114.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.116.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.118.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.119.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.120.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.121.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.122.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.123.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.124.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.124.128/25</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.125.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.126.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.127.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.128.128.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>213.73.32.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.24.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.24.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.24.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.25.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.26.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.26.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.26.0/25</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.26.0/26</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.26.128/25</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.26.128/26</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.9.27.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.16.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.16.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.17.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.18.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.19.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.20.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.24.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.24.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.24.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.25.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.26.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.27.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.28.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.28.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.29.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.30.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.12.31.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.71.16.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.71.24.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>217.75.241.0/24</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>REDIRIS_PREFIXES_V6</name> + <prefix> + <ip-prefix>2001:678:4::/47</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:4::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:5::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:40::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:44::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:508::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:1148::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:137c::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:21cc::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:720::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7f8:2a::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:40b0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2620:7d:e000::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:93c0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a00:9ac0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:250::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:250:f000::/36</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:250:f000::/40</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:250:f800::/40</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:250:ff00::/40</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:4a80::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a02:2cc0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a02:ad80::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:100::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:300::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:400::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:401::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:410::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:411::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:412::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:420::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:421::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:422::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:423::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:424::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:430::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:440::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:441::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:450::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:451::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:452::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:453::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:454::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:455::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:460::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:461::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:462::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:463::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:464::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:470::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:471::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:472::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:473::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:474::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:475::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:480::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:481::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:482::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:483::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:490::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:491::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:492::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:4a0::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:4a1::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:4a2::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:4a3::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:4b1::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:44a0:4b2::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a03:a320::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a07:d000::/27</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a07:d000::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a07:d038::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0a:8480::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0e:28c0::/29</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V4</name> + <prefix> + <ip-prefix>0.0.0.0/0</ip-prefix> + <type>range</type> + <start-length>0</start-length> + <end-length>7</end-length> + </prefix> + </prefix-list> + <prefix-list> + <name>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V6</name> + <prefix> + <ip-prefix>::/0</ip-prefix> + <type>range</type> + <start-length>0</start-length> + <end-length>7</end-length> + </prefix> + </prefix-list> + <prefix-list> + <name>REJECT_IAS_SMALL_PREFIXES_V4</name> + <prefix> + <ip-prefix>0.0.0.0/0</ip-prefix> + <type>range</type> + <start-length>25</start-length> + <end-length>32</end-length> + </prefix> + </prefix-list> + <prefix-list> + <name>REJECT_IAS_SMALL_PREFIXES_V6</name> + <prefix> + <ip-prefix>::/0</ip-prefix> + <type>range</type> + <start-length>57</start-length> + <end-length>128</end-length> + </prefix> + </prefix-list> + <prefix-list> + <name>REJECT_SMALL_PREFIXES_V4</name> + <prefix> + <ip-prefix>0.0.0.0/0</ip-prefix> + <type>range</type> + <start-length>28</start-length> + <end-length>32</end-length> + </prefix> + </prefix-list> + <prefix-list> + <name>REJECT_SMALL_PREFIXES_V6</name> + <prefix> + <ip-prefix>::/0</ip-prefix> + <type>range</type> + <start-length>64</start-length> + <end-length>128</end-length> + </prefix> + </prefix-list> + <prefix-list> + <name>RTBH_RANGES_V4</name> + <prefix> + <ip-prefix>0.0.0.0/0</ip-prefix> + <type>range</type> + <start-length>32</start-length> + <end-length>32</end-length> + </prefix> + </prefix-list> + <prefix-list> + <name>RTBH_RANGES_V6</name> + <prefix> + <ip-prefix>::/0</ip-prefix> + <type>range</type> + <start-length>128</start-length> + <end-length>128</end-length> + </prefix> + </prefix-list> + <prefix-list> + <name>SNM_AGGREGATES</name> + <prefix> + <ip-prefix>62.40.99.47/32</ip-prefix> + <type>exact</type> + </prefix> + <prefix> + <ip-prefix>172.16.0.0/12</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>SNM_SHARED_NETWORKS</name> + <prefix> + <ip-prefix>172.31.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>SWITCH_PREFIXES</name> + <prefix> + <ip-prefix>9.4.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>23.128.24.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>27.50.0.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.240.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.241.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.242.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.243.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.244.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.248.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.250.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.251.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.252.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.253.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.254.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>31.171.255.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>39.0.1.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.88.24.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.88.24.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.88.25.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.88.26.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>45.88.27.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>66.180.190.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>66.180.190.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>66.180.191.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>77.72.224.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>82.130.64.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.64.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.65.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.66.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.67.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.69.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.70.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.74.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.75.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.76.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.79.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.80.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.81.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.82.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.83.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.85.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.86.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.88.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.90.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.91.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.92.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>84.205.95.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>86.119.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>89.206.64.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.92.71.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.92.176.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.92.176.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.92.177.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>91.217.128.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.123.14.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.123.15.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.123.82.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.123.83.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.144.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.146.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.152.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.153.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.154.0/25</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>93.175.154.128/28</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>94.156.200.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>94.156.201.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>94.156.202.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>103.1.0.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>103.1.4.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>104.36.16.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>104.36.17.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>104.36.18.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>104.36.19.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>106.0.1.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>109.224.243.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>128.141.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>128.142.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>128.178.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.129.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.132.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.194.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.194.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>129.195.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.59.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.60.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.82.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.92.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.125.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>130.223.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>131.152.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>134.21.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>137.138.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>138.124.176.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>138.131.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>141.249.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>144.200.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>146.136.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>147.86.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>147.87.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>147.88.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>148.187.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>148.196.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>152.88.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>152.96.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>153.109.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>155.105.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>155.228.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>156.25.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>157.26.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>158.232.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>159.241.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>160.53.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>160.53.75.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>160.53.144.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>160.53.144.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>160.53.186.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>160.53.248.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>160.53.252.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>160.85.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>160.98.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>161.62.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>162.213.36.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>162.213.36.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>162.213.37.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>162.213.38.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>162.213.39.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>178.22.64.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.12.4.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.12.4.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.12.5.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.12.6.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.12.7.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.42.136.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.51.68.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.113.222.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.133.44.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.144.36.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.194.180.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.207.116.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.207.117.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.207.118.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.225.92.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.230.208.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.230.208.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.230.210.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>185.249.56.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.184.0.0/15</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.184.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>188.185.0.0/16</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.12.247.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.16.155.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.16.156.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.16.160.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.16.164.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.16.166.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.26.28.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.26.32.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.26.40.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.26.44.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.26.46.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.87.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.88.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.88.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.89.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.90.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.92.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.96.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.104.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.108.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.110.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.118.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.120.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.192.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.208.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.212.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.216.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.220.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.221.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.222.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.33.224.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.36.144.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.36.148.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.36.148.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.41.132.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.41.136.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.41.149.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.41.150.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.41.152.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.41.160.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.42.42.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.42.44.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.42.180.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.42.184.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.42.192.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.42.200.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.43.192.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.43.196.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.47.244.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.47.248.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.65.92.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.65.94.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.65.183.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.65.184.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.65.192.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.65.196.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.71.53.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.71.80.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.84.86.128/28</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.86.166.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.91.236.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.91.240.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.91.244.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.91.246.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.101.176.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.135.145.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.135.146.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.135.148.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.135.148.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.135.150.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.135.150.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.135.151.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.135.152.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.135.160.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.135.164.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>192.152.98.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.0.14.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.0.14.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.0.15.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.0.16.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.0.16.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.0.17.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.22.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.26.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.53.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.54.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.58.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.60.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.80.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.152.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.168.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.180.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.181.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.182.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.185.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.186.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.187.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.5.188.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.8.136.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.36.32.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.73.125.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.134.176.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.134.183.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.134.200.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.134.216.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.135.168.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.135.172.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.135.240.0/21</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.138.69.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.222.112.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.222.241.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.222.242.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.222.244.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.222.248.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.222.250.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.239.220.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.239.220.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.239.221.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.246.121.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.246.124.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.246.176.0/20</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.247.182.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.247.190.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.247.203.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.247.240.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.247.248.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>193.247.254.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.11.133.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.11.134.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.11.135.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.12.128.0/18</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.58.192.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.58.192.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.58.193.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.58.194.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.58.194.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.58.195.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.58.196.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.58.197.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.62.161.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.68.132.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.146.105.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.146.106.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.146.106.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.146.107.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.146.108.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>194.153.96.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.176.0.0/17</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.176.160.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.176.224.0/19</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>195.190.29.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>208.111.56.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>208.111.57.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>208.111.58.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>209.240.85.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.147.208.0/22</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.147.208.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.147.209.0/24</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>212.147.210.0/23</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>213.32.232.0/21</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <prefix-list> + <name>SWITCH_PREFIXES_V6</name> + <prefix> + <ip-prefix>2001:620::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:620::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:678:678::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:2c4::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:1010::/47</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:1010::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:1011::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:10ec::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:13c0::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:16dc::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:19fc::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:67c:2e40::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee00::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee01::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee02::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee03::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee04::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ee05::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef00::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef01::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef02::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef03::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef04::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ef05::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fb01:100::/56</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fb01:200::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fd02::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fd05::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe00::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe01::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe02::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe03::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe04::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe05::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe06::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe07::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0a::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0b::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0c::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0d::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0e::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe0f::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe10::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe12::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe13::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe14::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe15::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe16::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe17::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe18::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe19::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:fe20::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff00::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff01::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff02::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff03::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff04::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff05::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff06::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff07::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0a::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0b::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0c::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0d::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0e::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff0f::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff10::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff12::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff13::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff14::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff15::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff16::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff17::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff18::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff19::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fb:ff20::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fd::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fd::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fd:15::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fd:16::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fd:17::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fd:ffff::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fe::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:7fe::/33</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:1458::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2001:1459::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2604:4540::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f0::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1::/38</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:400::/38</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:800::/38</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:5000::/38</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:8000::/38</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:a000::/38</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:c000::/38</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f077::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f078::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f079::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f080::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f081::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f082::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f083::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f084::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f085::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f086::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f087::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f088::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f089::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f090::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f091::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f092::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f093::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f094::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f095::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f096::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f097::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f098::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f099::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f100::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f101::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f102::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f103::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f104::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f105::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f106::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f107::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f108::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f109::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f110::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f111::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f112::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f113::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f114::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f115::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f116::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f117::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f118::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f119::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f120::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f121::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f122::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f123::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f124::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f125::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f126::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f127::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f128::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f129::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f130::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f131::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f132::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f133::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f134::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f135::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f136::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f137::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f138::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f139::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f140::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f141::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f142::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f143::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f144::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f145::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f146::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f147::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f148::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f149::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f150::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f151::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f152::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f153::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f154::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f155::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:f220::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:3f1:ffff::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:1::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:1:2::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:2::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:3::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:3:2::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:a::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:a:2::/64</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:b::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:c::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:d::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:e::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:f::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a01:9980:10::/48</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a02:7dc0::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a07:290a::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a07:2911::/32</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a07:3e00::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a07:6b40::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0a:4ec0::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0b:1200::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0b:2040::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a0c:d680::/29</ip-prefix> + <type>longer</type> + </prefix> + <prefix> + <ip-prefix>2a13:181::/32</ip-prefix> + <type>longer</type> + </prefix> + </prefix-list> + <policy-statement> + <name>BOGONS</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>BOGONS</entry-name> + <from> + <prefix-list>BOGONS</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>IX_PREFIXES</entry-name> + <from> + <prefix-list>IX_PREFIXES</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>AS_PATH_LENGTH_LIMIT</entry-name> + <from> + <as-path> + <length> + <value>41</value> + </length> + </as-path> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>COMMUNITY_LIMIT</entry-name> + <from> + <community> + <count> + <value>100</value> + <qualifier>or-higher</qualifier> + </count> + </community> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>DEST_CLASS_USAGE</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>GWS</entry-name> + <from> + <community> + <name>GEANT_GWS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <dest-class>1</dest-class> + </action> + </named-entry> + <named-entry> + <entry-name>PRIVATE_PEERS</entry-name> + <from> + <community> + <name>GEANT_PEERS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <dest-class>2</dest-class> + </action> + </named-entry> + <named-entry> + <entry-name>IX_PEERS</entry-name> + <from> + <community> + <name>GEANT_IXPEERS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <dest-class>3</dest-class> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>next-policy</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>IAS_PS-FROM-PUBLIC-PEERS_AMS-IX_TAIL</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>GENERAL_ACCEPT</entry-name> + <action> + <action-type>accept</action-type> + <local-preference>90</local-preference> + <community> + <add>INFO_PUBLIC_PEER_AMS</add> + <add>INFO_PUBLIC_PEER_AMS-IX</add> + <add>GEANT_PEERS</add> + <add>GEANT_IXPEERS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>IAS_PS_FROM_GWS_COLT</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>ANTISPOOFING</entry-name> + <from> + <community> + <name>GEANT_NRN</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REMOVE_RTBH_COMMUNITY</entry-name> + <from> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>GEANT_RTBH</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_GEANT_COMMUNITIES</entry-name> + <from> + <community> + <name>GEANT_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>GEANT_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_PRIVATE_COMMUNITIES</entry-name> + <from> + <community> + <name>TE_PRIVATE_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_RT_EXTENDED_COMMUNITIES</entry-name> + <from> + <community> + <name>TE_RT_EXTENDED_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>TE_RT_EXTENDED_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_ORIGIN_EXTENDED_COMMUNITIES</entry-name> + <from> + <community> + <name>TE_ORIGIN_EXTENDED_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>TE_ORIGIN_EXTENDED_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_RPKI_EXTENDED_COMMUNITIES</entry-name> + <from> + <community> + <name>TE_RPKI_EXTENDED_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>TE_RPKI_EXTENDED_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_GEANT_LARGE_COMMUNITIES</entry-name> + <from> + <community> + <name>GEANT_LARGE_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>GEANT_LARGE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>AS_BLOCK_EU_SANCTIONS</entry-name> + <from> + <as-path> + <name>AS_BLOCK_EU_SANCTIONS</name> + </as-path> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_SMALL_PREFIXES_V4</entry-name> + <from> + <prefix-list>REJECT_IAS_SMALL_PREFIXES_V4</prefix-list> + <family>ipv4</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_SMALL_PREFIXES_V6</entry-name> + <from> + <prefix-list>REJECT_IAS_SMALL_PREFIXES_V6</prefix-list> + <family>ipv6</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V4</entry-name> + <from> + <prefix-list>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V4</prefix-list> + <family>ipv4</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V6</entry-name> + <from> + <prefix-list>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V6</prefix-list> + <family>ipv6</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_COLT</entry-name> + <action> + <action-type>accept</action-type> + <dest-class>1</dest-class> + <local-preference>80</local-preference> + <bgp-med> + <set>0</set> + </bgp-med> + <community> + <add>GEANT_COLT</add> + <add>GEANT_GWS</add> + <add>GEANT_GWS_VIENNA</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>IAS_PS_FROM_PUBLIC_PEERS_AMS-IX_HEAD</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>BLEACH_GEANT_COMMUNITIES</entry-name> + <from> + <community> + <name>GEANT_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>GEANT_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_PRIVATE_COMMUNITIES</entry-name> + <from> + <community> + <name>TE_PRIVATE_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_RT_EXTENDED_COMMUNITIES</entry-name> + <from> + <community> + <name>TE_RT_EXTENDED_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>TE_RT_EXTENDED_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_ORIGIN_EXTENDED_COMMUNITIES</entry-name> + <from> + <community> + <name>TE_ORIGIN_EXTENDED_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>TE_ORIGIN_EXTENDED_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_RPKI_EXTENDED_COMMUNITIES</entry-name> + <from> + <community> + <name>TE_RPKI_EXTENDED_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>TE_RPKI_EXTENDED_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>BLEACH_GEANT_LARGE_COMMUNITIES</entry-name> + <from> + <community> + <name>GEANT_LARGE_COMMUNITIES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>GEANT_LARGE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>AS_BLOCK_EU_SANCTIONS</entry-name> + <from> + <as-path> + <name>AS_BLOCK_EU_SANCTIONS</name> + </as-path> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_SMALL_PREFIXES_V4</entry-name> + <from> + <prefix-list>REJECT_IAS_SMALL_PREFIXES_V4</prefix-list> + <family>ipv4</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_SMALL_PREFIXES_V6</entry-name> + <from> + <prefix-list>REJECT_IAS_SMALL_PREFIXES_V6</prefix-list> + <family>ipv6</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V4</entry-name> + <from> + <prefix-list>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V4</prefix-list> + <family>ipv4</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V6</entry-name> + <from> + <prefix-list>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V6</prefix-list> + <family>ipv6</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>GLOBAL_ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GLOBAL_ANYCAST</prefix-list> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>GLOBAL_ANYCAST_IAS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>next-policy</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>IAS_PS_FROM_PUBLIC_PEERS_AS10310_OATH</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>PEER_AS10310_OATH</entry-name> + <action> + <action-type>next-policy</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>IAS_PS_TO_GWS_COLT</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>BLOCK_GWS</entry-name> + <from> + <community> + <name>GEANT_GWS_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>BLOCK_GWS_2</entry-name> + <from> + <community> + <name>GEANT_IAS_GWS_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>BLOCK_GWS_COLT</entry-name> + <from> + <community> + <name>GEANT_GWS_COLT_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>BLOCK_GWS_COLT_2</entry-name> + <from> + <community> + <name>GEANT_GWS_COLT_BLOCK2</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_GWS_X1</entry-name> + <from> + <community> + <name>GEANT_GWS_PREPEND1</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>1</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_IAS_GWS_X1</entry-name> + <from> + <community> + <name>GEANT_IAS_GWS_PREPEND1</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>1</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_GWS_X2</entry-name> + <from> + <community> + <name>GEANT_GWS_PREPEND1</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>2</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_IAS_GWS_X2</entry-name> + <from> + <community> + <name>GEANT_IAS_GWS_PREPEND2</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>2</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_GWS_X3</entry-name> + <from> + <community> + <name>GEANT_GWS_PREPEND3</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>3</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_IAS_GWS_X3</entry-name> + <from> + <community> + <name>GEANT_IAS_GWS_PREPEND3</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>3</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_GWS_X6</entry-name> + <from> + <community> + <name>GEANT_GWS_PREPEND6</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>6</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_IAS_GWS_X6</entry-name> + <from> + <community> + <name>GEANT_IAS_GWS_PREPEND6</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>6</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>AS20965_ROUTES</entry-name> + <from> + <community> + <name>AS20965_ROUTES</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <as-path-prepend> + <as-path>20965</as-path> + </as-path-prepend> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_1</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS3356_VIE</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_2</entry-name> + <from> + <community> + <name>GEANT_GWS_NREN</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_3</entry-name> + <from> + <community> + <name>GEANT_IAS_GWS_NREN</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>IAS_PS_TO_PUBLIC_PEERS_AMS-IX_HEAD</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>BLOCK_ALL_PUBLIC_PEERS</entry-name> + <from> + <community> + <name>TE_BLOCK_ALL_PUBLIC_PEERS</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>BLOCK_ALL_PUBLIC_PEERS_2</entry-name> + <from> + <community> + <name>TE_BLOCK_ALL_PUBLIC_PEERS_2</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>BLOCK_ALL_PUBLIC_PEERS_3</entry-name> + <from> + <community> + <name>TE_BLOCK_ALL_PUBLIC_PEERS_3</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>BLOCK_THIS_IX</entry-name> + <from> + <community> + <name>TE_BLOCK_AMS-IX</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>BLOCK_LOCAL_IXES</entry-name> + <from> + <community> + <name>TE_BLOCK_LOCAL_IXES</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_ALL_PUBLIC_PEERS_X1</entry-name> + <from> + <community> + <name>TE_PREPEND_ALL_PUBLIC_PEERS_X1_PREPEND</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>1</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_ALL_PUBLIC_PEERS_X2</entry-name> + <from> + <community> + <name>TE_PREPEND_ALL_PUBLIC_PEERS_X2_PREPEND</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>2</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_ALL_PUBLIC_PEERS_X3</entry-name> + <from> + <community> + <name>TE_PREPEND_ALL_PUBLIC_PEERS_X3_PREPEND</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>3</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_ALL_PUBLIC_PEERS_X6</entry-name> + <from> + <community> + <name>TE_PREPEND_ALL_PUBLIC_PEERS_X6_PREPEND</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>6</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>AS20965_ROUTES</entry-name> + <from> + <community> + <name>AS20965_ROUTES</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + </as-path-prepend> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>next-policy</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>IAS_PS_TO_PUBLIC_PEERS_AMS-IX_TAIL</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>DEFAULT_REJECT</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>IAS_PS_TO_PUBLIC_PEER_AS10310_OATH</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>BLOCK_THIS_PEER</entry-name> + <from> + <community> + <name>TE_BLOCK_AS10310</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>BLOCK_THIS_PEER_2</entry-name> + <from> + <community> + <name>TE_BLOCK_AS10310_2</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>BLOCK_THIS_PEER_3</entry-name> + <from> + <community> + <name>TE_BLOCK_AS10310_AMS-IX</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>BLOCK_THIS_PEER_4</entry-name> + <from> + <community> + <name>TE_BLOCK_AS10310_AMS-IX_2</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X1</entry-name> + <from> + <community> + <name>TE_PREPEND_AS10310_X1_4_BYTE</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>1</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X1_2B</entry-name> + <from> + <community> + <name>TE_PREPEND_AS10310_X1_2_BYTE</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>1</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X2</entry-name> + <from> + <community> + <name>TE_PREPEND_AS10310_X2_4_BYTE</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>2</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X2_2B</entry-name> + <from> + <community> + <name>TE_PREPEND_AS10310_X2_2_BYTE</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>2</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X3</entry-name> + <from> + <community> + <name>TE_PREPEND_AS10310_X3_4_BYTE</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>3</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X3_2B</entry-name> + <from> + <community> + <name>TE_PREPEND_AS10310_X3_2_BYTE</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>3</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X6</entry-name> + <from> + <community> + <name>TE_PREPEND_AS10310_X6_4_BYTE</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>6</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X6_2B</entry-name> + <from> + <community> + <name>TE_PREPEND_AS10310_X6_2_BYTE</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>21320</as-path> + <repeat>6</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_1</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS10310_BUD</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_2</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS10310</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_3</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS10310_2</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_4</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS10310_3</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_5</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS10310_4</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_6</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_ALL_PUBLIC_PEERS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_7</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_8</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_9</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS10310_AMS-IX</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>next-policy</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_20965_V4</name> + <description>GRT_TO_IAS_IPV4</description> + <entry-type>named</entry-type> + <named-entry> + <entry-name>GEANT_PREFIX</entry-name> + <description>GEANT_ADDRESS_SPACE</description> + <from> + <prefix-list>GEANT_ADDRESS_SPACE_62.40.96.0/19</prefix-list> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>DATACENTER_PREFIX</entry-name> + <description>GEANT_SUPERPOP_V4</description> + <from> + <prefix-list>GEANT_SUPERPOP_V4_83.97.92.0/22</prefix-list> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_20965_V6</name> + <description>GRT_TO_IAS_IPV6</description> + <entry-type>named</entry-type> + <named-entry> + <entry-name>GEANT_PREFIX6</entry-name> + <description>GEANT_ADDRESS_SPACE_V6</description> + <from> + <prefix-list>GEANT_ADDRESS_SPACE_V6_2001:798::/32</prefix-list> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>GEANT_PREFIX6_2</entry-name> + <description>GEANT_ADDRESS_SPACE_V6_2</description> + <from> + <prefix-list>GEANT_ADDRESS_SPACE_V6_2001:799::/32</prefix-list> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>GEANT_PREFIX6_3</entry-name> + <description>GEANT_ADDRESS_SPACE_V6_3</description> + <from> + <prefix-list>GEANT_ADDRESS_SPACE_V6_2001:799:cb2::/48</prefix-list> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_AS_SELF_REJECT</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>AS_SELF</entry-name> + <from> + <as-path> + <name>AS_SELF</name> + </as-path> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_DEFAULT_V4</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>DEFAULT_V4</entry-name> + <from> + <prefix-list>DEFAULT_V4</prefix-list> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_DENY_ALL</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>PS_DENY_ALL</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_EXPORT_IAS_IPV4</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>GEANT_PREFIX</entry-name> + <description>GEANT_ADDRESS_SPACE</description> + <from> + <prefix-list>GEANT_ADDRESS_SPACE_62.40.96.0/19</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <origin>igp</origin> + </action> + </named-entry> + <named-entry> + <entry-name>DATACENTER_PREFIX</entry-name> + <description>GEANT_SUPERPOP_V4</description> + <from> + <prefix-list>GEANT_SUPERPOP_V4_83.97.92.0/22</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <origin>igp</origin> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_EXPORT_IAS_IPV6</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>GEANT_PREFIX6</entry-name> + <description>GEANT_ADDRESS_SPACE_V6</description> + <from> + <prefix-list>GEANT_ADDRESS_SPACE_V6_2001:798::/32</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <origin>igp</origin> + </action> + </named-entry> + <named-entry> + <entry-name>GEANT_PREFIX6_2</entry-name> + <from> + <prefix-list>GEANT_ADDRESS_SPACE_V6_2001:799::/32</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <origin>igp</origin> + </action> + </named-entry> + <named-entry> + <entry-name>GEANT_PREFIX6_3</entry-name> + <from> + <prefix-list>GEANT_ADDRESS_SPACE_V6_2001:799:cb2::/48</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <origin>igp</origin> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_CERN_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH</entry-name> + <from> + <prefix-list>SWITCH_PREFIXES</prefix-list> + <policy>PS_FROM_RTBH</policy> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>200</local-preference> + <next-hop>192.0.2.101</next-hop> + <community> + <add>GEANT_DUMMY</add> + <add>NO_EXPORT</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GEANT_ANYCAST</prefix-list> + <community> + <name>GEANT_ANYCAST</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_ANYCAST</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_SMALL_PREFIXES</entry-name> + <from> + <prefix-list>REJECT_SMALL_PREFIXES_V4</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_GEANTIP_NREN_PEER_ACCEPT</entry-name> + <from> + <prefix-list>SWITCH_PREFIXES</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_NRN</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_CERN_NREN_V6</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH</entry-name> + <from> + <prefix-list>SWITCH_PREFIXES_V6</prefix-list> + <policy>PS_FROM_RTBH_V6</policy> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>200</local-preference> + <next-hop>100::</next-hop> + <community> + <add>GEANT_DUMMY</add> + <add>NO_EXPORT</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GEANT_ANYCAST</prefix-list> + <community> + <name>GEANT_ANYCAST</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_ANYCAST</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_SMALL_PREFIXES</entry-name> + <from> + <prefix-list>REJECT_SMALL_PREFIXES_V6</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_GEANTIP_NREN_PEER_ACCEPT</entry-name> + <from> + <prefix-list>SWITCH_PREFIXES_V6</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_NRN</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_COPERNICUS_PEER</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>FROM_COPERNICUS_SET_LP</entry-name> + <action> + <action-type>next-entry</action-type> + <local-preference>175</local-preference> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_PEER</entry-name> + <action> + <action-type>next-entry</action-type> + <community> + <add>GEANT_COPERNICUS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_DFN_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH</entry-name> + <from> + <prefix-list>DFN_PREFIXES</prefix-list> + <policy>PS_FROM_RTBH</policy> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>200</local-preference> + <next-hop>192.0.2.101</next-hop> + <community> + <add>GEANT_DUMMY</add> + <add>NO_EXPORT</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GEANT_ANYCAST</prefix-list> + <community> + <name>GEANT_ANYCAST</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_ANYCAST</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_SMALL_PREFIXES</entry-name> + <from> + <prefix-list>REJECT_SMALL_PREFIXES_V4</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_GEANTIP_NREN_PEER_ACCEPT</entry-name> + <from> + <prefix-list>DFN_PREFIXES</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_NRN</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_DFN_NREN_V6</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH</entry-name> + <from> + <prefix-list>DFN_PREFIXES_V6</prefix-list> + <policy>PS_FROM_RTBH_V6</policy> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>200</local-preference> + <next-hop>100::</next-hop> + <community> + <add>GEANT_DUMMY</add> + <add>NO_EXPORT</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GEANT_ANYCAST</prefix-list> + <community> + <name>GEANT_ANYCAST</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_ANYCAST</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_SMALL_PREFIXES</entry-name> + <from> + <prefix-list>REJECT_SMALL_PREFIXES_V6</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_GEANTIP_NREN_PEER_ACCEPT</entry-name> + <from> + <prefix-list>DFN_PREFIXES_V6</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_NRN</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_LHCONE_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>ADD_COMM</entry-name> + <action> + <action-type>accept</action-type> + <community> + <add>GEANT_NRN</add> + </community> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_LHCONE_PEER</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>ADD_COMM</entry-name> + <action> + <action-type>accept</action-type> + <community> + <add>GEANT_PEER_RE</add> + </community> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_PE_PEER_KREONET_AS17579</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>FROM_COMMERCIAL_AS_LOW_PREF</entry-name> + <from> + <as-path> + <name>AS_COMMERCIAL_LOW_PREF</name> + </as-path> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <add>GEANT_LOW_PREF</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REMOVE_RTBH_COMMUNITY</entry-name> + <from> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <community> + <remove>GEANT_RTBH</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>DEFAULT_LOCALPREF</entry-name> + <action> + <action-type>next-entry</action-type> + <local-preference>100</local-preference> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_GEANT_RE_PEER_KREONET_AS17579_ACCEPT</entry-name> + <from> + <prefix-list>KREONET</prefix-list> + </from> + <action> + <action-type>next-entry</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_GEANT_RE_PEER_ACCEPT</entry-name> + <action> + <action-type>accept</action-type> + <community> + <add>GEANT_PEER_RE</add> + <add>GEANT_KREONET</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_REDIRIS_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH</entry-name> + <from> + <prefix-list>REDIRIS_PREFIXES</prefix-list> + <policy>PS_FROM_RTBH</policy> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>200</local-preference> + <next-hop>192.0.2.101</next-hop> + <community> + <add>GEANT_DUMMY</add> + <add>NO_EXPORT</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GEANT_ANYCAST</prefix-list> + <community> + <name>GEANT_ANYCAST</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_ANYCAST</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_SMALL_PREFIXES</entry-name> + <from> + <prefix-list>REJECT_SMALL_PREFIXES_V4</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_GEANTIP_NREN_PEER_ACCEPT</entry-name> + <from> + <prefix-list>REDIRIS_PREFIXES</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_NRN</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_REDIRIS_NREN_V6</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH</entry-name> + <from> + <prefix-list>REDIRIS_PREFIXES_V6</prefix-list> + <policy>PS_FROM_RTBH_V6</policy> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>200</local-preference> + <next-hop>100::</next-hop> + <community> + <add>GEANT_DUMMY</add> + <add>NO_EXPORT</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GEANT_ANYCAST</prefix-list> + <community> + <name>GEANT_ANYCAST</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_ANYCAST</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_SMALL_PREFIXES</entry-name> + <from> + <prefix-list>REJECT_SMALL_PREFIXES_V6</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_GEANTIP_NREN_PEER_ACCEPT</entry-name> + <from> + <prefix-list>REDIRIS_PREFIXES_V6</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_NRN</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_RTBH</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH_COMMUNITY</entry-name> + <from> + <prefix-list>RTBH_RANGES_V4</prefix-list> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_FROM_RTBH_V6</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH_COMMUNITY</entry-name> + <from> + <prefix-list>RTBH_RANGES_V6</prefix-list> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_GLOBAL_ANYCAST_IAS</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>GLOBAL_ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GLOBAL_ANYCAST</prefix-list> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>GLOBAL_ANYCAST_IAS</add> + </community> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_GLOBAL_ANYCAST_RE</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>GLOBAL_ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GLOBAL_ANYCAST</prefix-list> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>GLOBAL_ANYCAST_RE</add> + <add>GEANT_INTERCO_BLOCK</add> + </community> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_IAS_FROM_DFN_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH</entry-name> + <from> + <prefix-list>DFN_PREFIXES</prefix-list> + <policy>PS_FROM_RTBH</policy> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>200</local-preference> + <next-hop>192.0.2.101</next-hop> + <community> + <add>GEANT_DUMMY</add> + <add>NO_EXPORT</add> + <add>TE_BLOCK_PEERS_2</add> + <add>TE_BLOCK_ALL_PUBLIC_PEERS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GEANT_ANYCAST</prefix-list> + <community> + <name>GEANT_ANYCAST</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_ANYCAST</add> + <add>GEANT_IAS_NREN_AMS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_SMALL_PREFIXES</entry-name> + <from> + <prefix-list>REJECT_IAS_SMALL_PREFIXES_V4</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V4</entry-name> + <from> + <prefix-list>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V4</prefix-list> + <family>ipv4</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_IAS_DFN_NREN_ACCEPT</entry-name> + <from> + <prefix-list>DFN_PREFIXES</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_NRN</add> + <add>GEANT_NREN_AMS</add> + <add>GEANT_GWS_NREN</add> + <add>GEANT_IXPEERS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_IAS_FROM_DFN_V6_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH</entry-name> + <from> + <prefix-list>DFN_PREFIXES_V6</prefix-list> + <policy>PS_FROM_RTBH_V6</policy> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>200</local-preference> + <next-hop>100::</next-hop> + <community> + <add>GEANT_DUMMY</add> + <add>NO_EXPORT</add> + <add>TE_BLOCK_PEERS_2</add> + <add>TE_BLOCK_ALL_PUBLIC_PEERS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GEANT_ANYCAST</prefix-list> + <community> + <name>GEANT_ANYCAST</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_ANYCAST</add> + <add>GEANT_NREN_AMS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_SMALL_PREFIXES</entry-name> + <from> + <prefix-list>REJECT_SMALL_PREFIXES_V6</prefix-list> + <prefix-list>REJECT_IAS_SMALL_PREFIXES_V6</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V6</entry-name> + <from> + <prefix-list>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V6</prefix-list> + <family>ipv6</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_IAS_DFN_NREN_ACCEPT</entry-name> + <from> + <prefix-list>DFN_PREFIXES_V6</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_NRN</add> + <add>GEANT_IAS_NREN_AMS</add> + <add>GEANT_NREN_AMS</add> + <add>GEANT_GWS_NREN</add> + <add>GEANT_IXPEERS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_IAS_FROM_REDIRIS_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH</entry-name> + <from> + <prefix-list>REDIRIS_PREFIXES</prefix-list> + <policy>PS_FROM_RTBH</policy> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>200</local-preference> + <next-hop>192.0.2.101</next-hop> + <community> + <add>GEANT_DUMMY</add> + <add>NO_EXPORT</add> + <add>TE_BLOCK_PEERS_2</add> + <add>TE_BLOCK_ALL_PUBLIC_PEERS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GEANT_ANYCAST</prefix-list> + <community> + <name>GEANT_ANYCAST</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_ANYCAST</add> + <add>GEANT_IAS_NREN_AMS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_SMALL_PREFIXES</entry-name> + <from> + <prefix-list>REJECT_IAS_SMALL_PREFIXES_V4</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V4</entry-name> + <from> + <prefix-list>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V4</prefix-list> + <family>ipv4</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_IAS_REDIRIS_NREN_ACCEPT</entry-name> + <from> + <prefix-list>REDIRIS_PREFIXES</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_NRN</add> + <add>GEANT_NREN_AMS</add> + <add>GEANT_GWS_NREN</add> + <add>GEANT_IXPEERS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_IAS_FROM_REDIRIS_V6_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH</entry-name> + <from> + <prefix-list>REDIRIS_PREFIXES_V6</prefix-list> + <policy>PS_FROM_RTBH_V6</policy> + <community> + <name>GEANT_RTBH</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>200</local-preference> + <next-hop>100::</next-hop> + <community> + <add>GEANT_DUMMY</add> + <add>NO_EXPORT</add> + <add>TE_BLOCK_PEERS_2</add> + <add>TE_BLOCK_ALL_PUBLIC_PEERS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GEANT_ANYCAST</prefix-list> + <community> + <name>GEANT_ANYCAST</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_ANYCAST</add> + <add>GEANT_NREN_AMS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_SMALL_PREFIXES</entry-name> + <from> + <prefix-list>REJECT_SMALL_PREFIXES_V6</prefix-list> + <prefix-list>REJECT_IAS_SMALL_PREFIXES_V6</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V6</entry-name> + <from> + <prefix-list>REJECT_IAS_OUT_OF_BOUND_PREFIXES_V6</prefix-list> + <family>ipv6</family> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>FROM_IAS_REDIRIS_NREN_ACCEPT</entry-name> + <from> + <prefix-list>REDIRIS_PREFIXES_V6</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <local-preference>150</local-preference> + <community> + <add>GEANT_NRN</add> + <add>GEANT_IAS_NREN_AMS</add> + <add>GEANT_NREN_AMS</add> + <add>GEANT_GWS_NREN</add> + <add>GEANT_IXPEERS</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_IAS_TO_DFN_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>EXCEPTION_BLOCK</entry-name> + <from> + <community> + <name>GEANT_DUMMY</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>NREN_BLOCK</entry-name> + <from> + <community> + <name>GEANT_DFN_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_DFN_NREN</entry-name> + <from> + <community> + <name>IAS_AGGREGATE_ROUTES</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_DFN_NREN_IXPEERS</entry-name> + <from> + <community> + <name>GEANT_IXPEERS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_DFN_NREN_PEERS</entry-name> + <from> + <community> + <name>GEANT_PEERS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_DFN_NREN_GOOGLE</entry-name> + <from> + <community> + <name>GEANT_GOOGLE</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_DFN_NREN_GWS</entry-name> + <from> + <community> + <name>GEANT_GWS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_IAS_TO_DFN_V6_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>EXCEPTION_BLOCK</entry-name> + <from> + <community> + <name>GEANT_DUMMY</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>NREN_BLOCK</entry-name> + <from> + <community> + <name>GEANT_DFN_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_DFN_NREN</entry-name> + <from> + <community> + <name>IAS_AGGREGATE_ROUTES</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_DFN_NREN_IXPEERS</entry-name> + <from> + <community> + <name>GEANT_IXPEERS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_DFN_NREN_PEERS</entry-name> + <from> + <community> + <name>GEANT_PEERS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_DFN_NREN_GOOGLE</entry-name> + <from> + <community> + <name>GEANT_GOOGLE</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_IAS_TO_REDIRIS_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>EXCEPTION_BLOCK</entry-name> + <from> + <community> + <name>GEANT_DUMMY</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>NREN_BLOCK</entry-name> + <from> + <community> + <name>GEANT_REDIRIS_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_REDIRIS_NREN</entry-name> + <from> + <community> + <name>IAS_AGGREGATE_ROUTES</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_REDIRIS_NREN_IXPEERS</entry-name> + <from> + <community> + <name>GEANT_IXPEERS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_REDIRIS_NREN_PEERS</entry-name> + <from> + <community> + <name>GEANT_PEERS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_REDIRIS_NREN_GOOGLE</entry-name> + <from> + <community> + <name>GEANT_GOOGLE</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>IAS_TO_REDIRIS_NREN_GWS</entry-name> + <from> + <community> + <name>GEANT_GWS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_PRIVATE_AS_BLOCK</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>BLOCK_PRIVATE_AS</entry-name> + <from> + <as-path> + <name>AS_PRIVATE</name> + </as-path> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_REJECT_GLOBAL_ANYCAST</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>GLOBAL_ANYCAST_PREFIXES</entry-name> + <from> + <prefix-list>GLOBAL_ANYCAST</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_RPKI_IAS_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH_BYPASS</entry-name> + <from> + <prefix-list>RTBH_RANGES_V4</prefix-list> + <community> + <name>GEANT_RTBH</name> + </community> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <origin-validation-state>valid</origin-validation-state> + </action> + </named-entry> + <named-entry> + <entry-name>RTBH_BYPASS_V6</entry-name> + <from> + <prefix-list>RTBH_RANGES_V6</prefix-list> + <community> + <name>GEANT_RTBH</name> + </community> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <origin-validation-state>valid</origin-validation-state> + </action> + </named-entry> + <named-entry> + <entry-name>UNKNOWN</entry-name> + <from> + <origin-validation-state>not-found</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_UNKNOWN</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>VALID</entry-name> + <from> + <origin-validation-state>valid</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_VALID</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>INVALID</entry-name> + <from> + <origin-validation-state>invalid</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>reject</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_INVALID</add> + </community> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_RPKI_IAS_PEER</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>UNKNOWN</entry-name> + <from> + <origin-validation-state>not-found</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_UNKNOWN</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>VALID</entry-name> + <from> + <origin-validation-state>valid</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_VALID</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>INVALID</entry-name> + <from> + <origin-validation-state>invalid</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>reject</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_INVALID</add> + </community> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_RPKI_RE_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH_BYPASS</entry-name> + <from> + <prefix-list>RTBH_RANGES_V4</prefix-list> + <community> + <name>GEANT_RTBH</name> + </community> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <origin-validation-state>valid</origin-validation-state> + </action> + </named-entry> + <named-entry> + <entry-name>RTBH_BYPASS_V6</entry-name> + <from> + <prefix-list>RTBH_RANGES_V6</prefix-list> + <community> + <name>GEANT_RTBH</name> + </community> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <origin-validation-state>valid</origin-validation-state> + </action> + </named-entry> + <named-entry> + <entry-name>UNKNOWN</entry-name> + <from> + <origin-validation-state>not-found</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_UNKNOWN</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>VALID</entry-name> + <from> + <origin-validation-state>valid</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_VALID</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>INVALID</entry-name> + <from> + <origin-validation-state>invalid</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>reject</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_INVALID</add> + </community> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_RPKI_RE_PEER</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>UNKNOWN</entry-name> + <from> + <origin-validation-state>not-found</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_UNKNOWN</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>VALID</entry-name> + <from> + <origin-validation-state>valid</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>next-policy</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_VALID</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>INVALID</entry-name> + <from> + <origin-validation-state>invalid</origin-validation-state> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>reject</action-type> + <community> + <add>ORIGIN_VALIDATION_STATE_INVALID</add> + </community> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_RPKI_iBGP</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>UNKNOWN</entry-name> + <from> + <community> + <name>ORIGIN_VALIDATION_STATE_UNKNOWN</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <origin-validation-state>not-found</origin-validation-state> + </action> + </named-entry> + <named-entry> + <entry-name>VALID</entry-name> + <from> + <community> + <name>ORIGIN_VALIDATION_STATE_VALID</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <origin-validation-state>valid</origin-validation-state> + </action> + </named-entry> + <named-entry> + <entry-name>INVALID</entry-name> + <from> + <community> + <name>ORIGIN_VALIDATION_STATE_INVALID</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <origin-validation-state>invalid</origin-validation-state> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_RTBH_iBGP</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>RTBH_V4</entry-name> + <from> + <prefix-list>RTBH_RANGES_V4</prefix-list> + <community> + <name>GEANT_RTBH</name> + </community> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>accept</action-type> + <next-hop>192.0.2.101</next-hop> + </action> + </named-entry> + <named-entry> + <entry-name>RTBH_V6</entry-name> + <from> + <prefix-list>RTBH_RANGES_V6</prefix-list> + <community> + <name>GEANT_RTBH</name> + </community> + <protocol> + <name>bgp</name> + </protocol> + </from> + <action> + <action-type>accept</action-type> + <next-hop>100::</next-hop> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_SNM_AGGREGATES</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>AGGREGATE</entry-name> + <from> + <prefix-list>SNM_AGGREGATES</prefix-list> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>SHARED_172_31</entry-name> + <from> + <prefix-list>SNM_SHARED_NETWORKS</prefix-list> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_CERN_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>EXCEPTION_BLOCK</entry-name> + <from> + <community> + <name>GEANT_DUMMY</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>TO_NREN_BLOCK</entry-name> + <from> + <community> + <name>GEANT_CERN_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>TO_EXAMPLE_PEER</entry-name> + <from> + <community> + <name>GEANT_PEER_RE</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>TO_EXAMPLE_PEER_2ND_MATCH</entry-name> + <from> + <community> + <name>GEANT_NRN</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_COPERNICUS_PEER</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>ANNOUNCE</entry-name> + <from> + <community> + <name>GEANT_COPERNICUS</name> + </community> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_DFN_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>EXCEPTION_BLOCK</entry-name> + <from> + <community> + <name>GEANT_DUMMY</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>TO_NREN_BLOCK</entry-name> + <from> + <community> + <name>GEANT_DFN_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>TO_EXAMPLE_PEER</entry-name> + <from> + <community> + <name>GEANT_PEER_RE</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>TO_EXAMPLE_PEER_2ND_MATCH</entry-name> + <from> + <community> + <name>GEANT_NRN</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_KREONET_LHCONE_PEER_ALLOW_TRANSIT</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>ALLOW_TRANSIT</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS17579</name> + </community> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>ALLOW_TRANSIT_4B</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS17579_2</name> + </community> + </from> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>next-policy</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_KREONET_LHCONE_PEER_TE</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>BLOCK</entry-name> + <from> + <community> + <name>LHCONE_BLOCK_KREONET_17579</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_X1</entry-name> + <from> + <community> + <name>LHCONE_PREPEND_KREONET_17579_X1</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>1</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_X2</entry-name> + <from> + <community> + <name>LHCONE_PREPEND_KREONET_17579_X2</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>2</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_X3</entry-name> + <from> + <community> + <name>LHCONE_PREPEND_KREONET_17579_X3</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>3</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>next-policy</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_LHCONE_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>PTP_ROUTES</entry-name> + <from> + <prefix-list>LHCONE_PTP_ALLOW_EXACT</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <community> + <add>LHCONE_BACKBONE</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>PTP_ROUTES_DENY_SPECIFIC</entry-name> + <from> + <prefix-list>PTP_ROUTES_DENY_SPECIFIC</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACCEPT</entry-name> + <action> + <action-type>accept</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_LHCONE_PEER</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>PTP_ROUTES</entry-name> + <from> + <prefix-list>LHCONE_PTP_ALLOW_EXACT</prefix-list> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <add>LHCONE_BACKBONE</add> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>PTP_ROUTES_DENY_SPECIFIC</entry-name> + <from> + <prefix-list>PTP_ROUTES_DENY_SPECIFIC</prefix-list> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>ALLOW_NREN_PREFIXES</entry-name> + <from> + <community> + <name>GEANT_NRN</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACCEPT</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_REDIRIS_NREN</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>EXCEPTION_BLOCK</entry-name> + <from> + <community> + <name>GEANT_DUMMY</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>TO_NREN_BLOCK</entry-name> + <from> + <community> + <name>GEANT_REDIRIS_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>TO_EXAMPLE_PEER</entry-name> + <from> + <community> + <name>GEANT_PEER_RE</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>TO_EXAMPLE_PEER_2ND_MATCH</entry-name> + <from> + <community> + <name>GEANT_NRN</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_RE_PEERS_HEAD</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>BLOCK_ALL_INTERCO_RE_PEERS</entry-name> + <from> + <community> + <name>GEANT_INTERCO_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_ALL_INTERCO_RE_PEERS_X1</entry-name> + <from> + <community> + <name>GEANT_INTERCO_PREPEND1</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>1</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_ALL_INTERCO_RE_PEERS_X2</entry-name> + <from> + <community> + <name>GEANT_INTERCO_PREPEND2</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>2</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_ALL_INTERCO_RE_PEERS_X3</entry-name> + <from> + <community> + <name>GEANT_INTERCO_PREPEND3</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>3</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_ALL_INTERCO_RE_PEERS_X6</entry-name> + <from> + <community> + <name>GEANT_INTERCO_PREPEND6</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>6</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>next-policy</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_RE_PEER_KREONET_AS17579</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>BLOCK_THIS_PEER</entry-name> + <from> + <community> + <name>GEANT_KREONET_BLOCK</name> + </community> + </from> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X1</entry-name> + <from> + <community> + <name>GEANT_KREONET_PREPEND1</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>1</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X2</entry-name> + <from> + <community> + <name>GEANT_KREONET_PREPEND2</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>2</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X3</entry-name> + <from> + <community> + <name>GEANT_KREONET_PREPEND3</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>3</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>PREPEND_THIS_PEER_X6</entry-name> + <from> + <community> + <name>GEANT_KREONET_PREPEND6</name> + </community> + </from> + <action> + <action-type>next-entry</action-type> + <as-path-prepend> + <as-path>20965</as-path> + <repeat>6</repeat> + </as-path-prepend> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_1</entry-name> + <from> + <community> + <name>GEANT_NRN</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_2</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS17579</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_3</entry-name> + <from> + <community> + <name>TE_ANNOUNCE_AS17579_2</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>ANNOUNCE_4</entry-name> + <from> + <community> + <name>GEANT_UTIC</name> + </community> + </from> + <action> + <action-type>accept</action-type> + <bgp-med> + <set>igp</set> + </bgp-med> + <community> + <remove>TE_PRIVATE_COMMUNITIES</remove> + </community> + </action> + </named-entry> + <named-entry> + <entry-name>END_ACTION</entry-name> + <action> + <action-type>next-policy</action-type> + </action> + </named-entry> + </policy-statement> + <policy-statement> + <name>PS_TO_RE_PEER_TAIL</name> + <entry-type>named</entry-type> + <named-entry> + <entry-name>DEFAULT_REJECT</entry-name> + <action> + <action-type>reject</action-type> + </action> + </named-entry> + </policy-statement> + </policy-options> + <port> + <port-id>pxc-1.a</port-id> + <admin-state>enable</admin-state> + <ethernet> + <encap-type>dot1q</encap-type> + </ethernet> + </port> + <port> + <port-id>pxc-1.b</port-id> + <admin-state>enable</admin-state> + <ethernet> + <encap-type>dot1q</encap-type> + </ethernet> + </port> + <port> + <port-id>pxc-2.a</port-id> + <admin-state>enable</admin-state> + <ethernet> + <encap-type>dot1q</encap-type> + </ethernet> + </port> + <port> + <port-id>pxc-2.b</port-id> + <admin-state>enable</admin-state> + <ethernet> + <encap-type>dot1q</encap-type> + </ethernet> + </port> + <port> + <port-id>1/1/c1</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c1/1</port-id> + <admin-state>enable</admin-state> + <description>PHY INFRASTRUCTURE BACKBONE P_lag-7 | AMS-ATH | to-rt0.ath-1/x1/1/c1/1</description> + <ethernet> + <mode>network</mode> + <mtu>9212</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c2</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c2/1</port-id> + <admin-state>enable</admin-state> + <description>PHY INFRASTRUCTURE ACCESS LAN P_lag-16 | rt0-sw1 (qfx5120)</description> + <ethernet> + <mode>access</mode> + <encap-type>dot1q</encap-type> + <mtu>9192</mtu> + <hold-time> + <units>seconds</units> + <down>3</down> + </hold-time> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c2/2</port-id> + <admin-state>enable</admin-state> + <description>PHY INFRASTRUCTURE ACCESS LAN P_lag-16 | rt0-sw1 (qfx5120)</description> + <ethernet> + <mode>access</mode> + <encap-type>dot1q</encap-type> + <mtu>9192</mtu> + <hold-time> + <units>seconds</units> + <down>3</down> + </hold-time> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c2/3</port-id> + <admin-state>enable</admin-state> + <description>PHY_DFN_LAB_AP</description> + <ethernet> + <mode>access</mode> + <encap-type>dot1q</encap-type> + <mtu>9192</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c2/4</port-id> + <admin-state>enable</admin-state> + <description>PHY_REDIRIS_LAB_AP1</description> + <ethernet> + <mode>access</mode> + <encap-type>dot1q</encap-type> + <mtu>9192</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c4</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c5</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c5/1</port-id> + <admin-state>enable</admin-state> + <description>PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-LON | TO-rt0.lon-1/1/c5/1</description> + <ethernet> + <mode>network</mode> + <mtu>9212</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c7</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c8</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c9</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c10</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c11</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-100g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c11/1</port-id> + <admin-state>enable</admin-state> + <description>PHY INFRASTRUCTURE BACKBONE P_lag-5 | AMS-AMS | to-rt1.ams-et0/0/1</description> + <ethernet> + <mode>network</mode> + <mtu>9212</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + <network> + <egress> + <queue-policy>GEANT_BASIC</queue-policy> + </egress> + </network> + </ethernet> + </port> + <port> + <port-id>1/1/c12</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c13</port-id> + <admin-state>enable</admin-state> + <transceiver> + <digital-coherent-optics>true</digital-coherent-optics> + </transceiver> + <connector> + <breakout>c1-400g</breakout> + </connector> + <dwdm> + <frequency>194000000</frequency> + <coherent> + <target-power>-3.0</target-power> + </coherent> + </dwdm> + </port> + <port> + <port-id>1/1/c13/1</port-id> + <admin-state>enable</admin-state> + <ethernet> + <mode>hybrid</mode> + <encap-type>dot1q</encap-type> + <mtu>9192</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <notification>true</notification> + <port-id-subtype>tx-if-name</port-id-subtype> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c14</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c16</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c17</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c19</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c19/1</port-id> + <admin-state>enable</admin-state> + <description>PHY CUSTOMER CESNET |lab-looped-to-2/1/c19/1</description> + <ethernet> + <mode>access</mode> + <encap-type>null</encap-type> + <mtu>9192</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>1/1/c20</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c22</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c22/1</port-id> + <admin-state>enable</admin-state> + <description>SNM UPLINK 1</description> + <ethernet> + <mode>access</mode> + <encap-type>dot1q</encap-type> + </ethernet> + </port> + <port> + <port-id>1/1/c22/2</port-id> + <admin-state>enable</admin-state> + <description>SNM UPLINK 2</description> + <ethernet> + <mode>access</mode> + <encap-type>dot1q</encap-type> + </ethernet> + </port> + <port> + <port-id>1/1/c23</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c25</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c26</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c27</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c28</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c29</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c30</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c31</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c32</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c34</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>1/1/c35</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>1/1/m1/1</port-id> + <admin-state>enable</admin-state> + </port> + <port> + <port-id>2/1/c1</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c1/1</port-id> + <admin-state>enable</admin-state> + <description>PHY INFRASTRUCTURE BACKBONE P_lag-2 | AMS-BIL | to-rt0.bil-1/x1/1/c7/1</description> + <ethernet> + <mode>network</mode> + <mtu>9212</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c2</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c4</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c5</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c7</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c8</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-100g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c9</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c10</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c11</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-100g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c11/1</port-id> + <admin-state>enable</admin-state> + <description>PHY INFRASTRUCTURE BACKBONE P_lag-5 | AMS-AMS | to-rt1.ams-et0/0/2</description> + <ethernet> + <mode>network</mode> + <mtu>9212</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + <network> + <egress> + <queue-policy>GEANT_BASIC</queue-policy> + </egress> + </network> + </ethernet> + </port> + <port> + <port-id>2/1/c12</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c13</port-id> + <admin-state>enable</admin-state> + <transceiver> + <digital-coherent-optics>true</digital-coherent-optics> + </transceiver> + <connector> + <breakout>c1-400g</breakout> + </connector> + <dwdm> + <frequency>191500000</frequency> + <coherent> + <target-power>-2.0</target-power> + </coherent> + </dwdm> + </port> + <port> + <port-id>2/1/c13/1</port-id> + <admin-state>enable</admin-state> + <ethernet> + <mode>hybrid</mode> + <encap-type>dot1q</encap-type> + <mtu>9192</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <notification>true</notification> + <port-id-subtype>tx-if-name</port-id-subtype> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c14</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c16</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c17</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c19</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c19/1</port-id> + <admin-state>enable</admin-state> + <description>PHY test-port |lab-looped-to-1/1/c19/1</description> + <ethernet> + <mode>access</mode> + <mtu>9192</mtu> + <lldp> + <dest-mac> + <mac-type>nearest-bridge</mac-type> + <receive>true</receive> + <transmit>true</transmit> + <tx-tlvs> + <port-desc>true</port-desc> + <sys-name>true</sys-name> + <sys-cap>true</sys-cap> + </tx-tlvs> + </dest-mac> + </lldp> + </ethernet> + </port> + <port> + <port-id>2/1/c20</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c22</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c23</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c25</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c26</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c27</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c28</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c29</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c30</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c2-100g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c31</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c32</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c34</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c4-10g</breakout> + </connector> + </port> + <port> + <port-id>2/1/c34/1</port-id> + </port> + <port> + <port-id>2/1/c35</port-id> + <admin-state>enable</admin-state> + <connector> + <breakout>c1-400g</breakout> + </connector> + </port> + <port> + <port-id>2/1/m2/1</port-id> + <admin-state>enable</admin-state> + </port> + <port-xc> + <pxc> + <pxc-id>1</pxc-id> + <admin-state>enable</admin-state> + <port-id>1/1/m1/1</port-id> + </pxc> + <pxc> + <pxc-id>2</pxc-id> + <admin-state>enable</admin-state> + <port-id>2/1/m2/1</port-id> + </pxc> + </port-xc> + <qos> + <md-auto-id> + <qos-policy-id-range> + <start>10000</start> + <end>19999</end> + </qos-policy-id-range> + </md-auto-id> + <sap-ingress> + <sap-ingress-policy-name>SAP_INGRESS_CLASSIFY_TO_CS3</sap-ingress-policy-name> + <default-fc>h2</default-fc> + <default-priority>low</default-priority> + </sap-ingress> + <sap-ingress> + <sap-ingress-policy-name>SAP_INGRESS_CLASSIFY_TO_H2</sap-ingress-policy-name> + <default-fc>h2</default-fc> + <default-priority>low</default-priority> + </sap-ingress> + <network-queue> + <network-queue-policy>GEANT_BASIC</network-queue-policy> + <description>GEANT Basic QoS Queue Policy</description> + <fc> + <fc-name>be</fc-name> + <queue>1</queue> + <multicast-queue>9</multicast-queue> + </fc> + <fc> + <fc-name>h2</fc-name> + <queue>5</queue> + <multicast-queue>13</multicast-queue> + </fc> + <fc> + <fc-name>ef</fc-name> + <queue>6</queue> + <multicast-queue>14</multicast-queue> + </fc> + <fc> + <fc-name>nc</fc-name> + <queue>8</queue> + <multicast-queue>16</multicast-queue> + </fc> + <queue> + <queue-id>1</queue-id> + <cbs>1.0</cbs> + <mbs>50.0</mbs> + <rate> + <pir>100</pir> + <cir>2</cir> + </rate> + <drop-tail> + <low> + <percent-reduction-from-mbs>0</percent-reduction-from-mbs> + </low> + </drop-tail> + </queue> + <queue> + <queue-id>5</queue-id> + <cbs>10.0</cbs> + <mbs>50.0</mbs> + <rate> + <pir>100</pir> + <cir>100</cir> + </rate> + <drop-tail> + <low> + <percent-reduction-from-mbs>20</percent-reduction-from-mbs> + </low> + </drop-tail> + </queue> + <queue> + <queue-id>6</queue-id> + <cbs>3.0</cbs> + <mbs>25.0</mbs> + <rate> + <pir>100</pir> + <cir>15</cir> + </rate> + <drop-tail> + <low> + <percent-reduction-from-mbs>10</percent-reduction-from-mbs> + </low> + </drop-tail> + </queue> + <queue> + <queue-id>8</queue-id> + <cbs>3.0</cbs> + <mbs>25.0</mbs> + <rate> + <pir>100</pir> + <cir>5</cir> + </rate> + <drop-tail> + <low> + <percent-reduction-from-mbs>10</percent-reduction-from-mbs> + </low> + </drop-tail> + </queue> + <queue> + <queue-id>9</queue-id> + <multipoint>true</multipoint> + <cbs>1.0</cbs> + <mbs>50.0</mbs> + <rate> + <pir>100</pir> + <cir>2</cir> + </rate> + <drop-tail> + <low> + <percent-reduction-from-mbs>0</percent-reduction-from-mbs> + </low> + </drop-tail> + </queue> + <queue> + <queue-id>13</queue-id> + <multipoint>true</multipoint> + <cbs>10.0</cbs> + <mbs>50.0</mbs> + <rate> + <pir>100</pir> + <cir>100</cir> + </rate> + <drop-tail> + <low> + <percent-reduction-from-mbs>10</percent-reduction-from-mbs> + </low> + </drop-tail> + </queue> + <queue> + <queue-id>14</queue-id> + <multipoint>true</multipoint> + <cbs>3.0</cbs> + <mbs>25.0</mbs> + <rate> + <pir>100</pir> + <cir>15</cir> + </rate> + <drop-tail> + <low> + <percent-reduction-from-mbs>10</percent-reduction-from-mbs> + </low> + </drop-tail> + </queue> + <queue> + <queue-id>16</queue-id> + <multipoint>true</multipoint> + <cbs>3.0</cbs> + <mbs>25.0</mbs> + <rate> + <pir>100</pir> + <cir>5</cir> + </rate> + <drop-tail> + <low> + <percent-reduction-from-mbs>10</percent-reduction-from-mbs> + </low> + </drop-tail> + </queue> + </network-queue> + <network> + <network-policy-name>GEANT_BASIC</network-policy-name> + <description>GEANT Basic QoS Network Policy</description> + <policy-id>100</policy-id> + <ingress> + <default-action> + <fc>be</fc> + <profile>in</profile> + </default-action> + <dscp> + <dscp-name>ef</dscp-name> + <fc>ef</fc> + <profile>in</profile> + </dscp> + <dscp> + <dscp-name>nc1</dscp-name> + <fc>nc</fc> + <profile>in</profile> + </dscp> + <dscp> + <dscp-name>nc2</dscp-name> + <fc>nc</fc> + <profile>in</profile> + </dscp> + <lsp-exp> + <lsp-exp-value>0</lsp-exp-value> + <fc>be</fc> + <profile>out</profile> + </lsp-exp> + <lsp-exp> + <lsp-exp-value>1</lsp-exp-value> + <fc>be</fc> + <profile>in</profile> + </lsp-exp> + <lsp-exp> + <lsp-exp-value>2</lsp-exp-value> + <fc>ef</fc> + <profile>in</profile> + </lsp-exp> + <lsp-exp> + <lsp-exp-value>3</lsp-exp-value> + <fc>h2</fc> + <profile>in</profile> + </lsp-exp> + <lsp-exp> + <lsp-exp-value>4</lsp-exp-value> + <fc>be</fc> + <profile>out</profile> + </lsp-exp> + <lsp-exp> + <lsp-exp-value>5</lsp-exp-value> + <fc>be</fc> + <profile>out</profile> + </lsp-exp> + <lsp-exp> + <lsp-exp-value>6</lsp-exp-value> + <fc>nc</fc> + <profile>in</profile> + </lsp-exp> + <lsp-exp> + <lsp-exp-value>7</lsp-exp-value> + <fc>nc</fc> + <profile>out</profile> + </lsp-exp> + </ingress> + <egress> + <fc> + <fc-name>be</fc-name> + <dscp-in-profile>be</dscp-in-profile> + <dscp-out-profile>be</dscp-out-profile> + <lsp-exp-in-profile>1</lsp-exp-in-profile> + <lsp-exp-out-profile>0</lsp-exp-out-profile> + </fc> + <fc> + <fc-name>h2</fc-name> + <dscp-in-profile>af21</dscp-in-profile> + <dscp-out-profile>af22</dscp-out-profile> + <lsp-exp-in-profile>3</lsp-exp-in-profile> + <lsp-exp-out-profile>3</lsp-exp-out-profile> + </fc> + <fc> + <fc-name>ef</fc-name> + <dscp-in-profile>ef</dscp-in-profile> + <dscp-out-profile>ef</dscp-out-profile> + <lsp-exp-in-profile>2</lsp-exp-in-profile> + <lsp-exp-out-profile>2</lsp-exp-out-profile> + </fc> + <fc> + <fc-name>nc</fc-name> + <dscp-in-profile>nc1</dscp-in-profile> + <dscp-out-profile>nc1</dscp-out-profile> + <lsp-exp-in-profile>6</lsp-exp-in-profile> + <lsp-exp-out-profile>7</lsp-exp-out-profile> + </fc> + </egress> + </network> + </qos> + <redundancy> + <rollback-sync>rollback-all</rollback-sync> + </redundancy> + <router> + <router-name>Base</router-name> + <autonomous-system>20965</autonomous-system> + <router-id>62.40.119.6</router-id> + <interface> + <interface-name>lag-2.0</interface-name> + <admin-state>enable</admin-state> + <description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-BIL-IPTRUNK $LGS-00088 | AMS-BIL | + IP-TRUNK-RT0.AMS-to-RT0.BIL-400g</description> + <ip-mtu>9000</ip-mtu> + <port>lag-2</port> + <ipv4> + <icmp> + <ttl-expired> + <admin-state>enable</admin-state> + <number>2000</number> + <seconds>2</seconds> + </ttl-expired> + </icmp> + <primary> + <address>62.40.119.124</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <ipv6> + <address> + <ipv6-address>2001:799:1ab:2::89</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + <qos> + <network-policy>GEANT_BASIC</network-policy> + </qos> + </interface> + <interface> + <interface-name>lag-5.0</interface-name> + <admin-state>enable</admin-state> + <description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK $LGS-000055 | AMS-AMS | + IP-TRUNK-RT0-AMS-to-RT1.AMS-200G</description> + <ip-mtu>9000</ip-mtu> + <port>lag-5</port> + <ipv4> + <icmp> + <ttl-expired> + <admin-state>enable</admin-state> + <number>2000</number> + <seconds>2</seconds> + </ttl-expired> + </icmp> + <primary> + <address>62.40.119.100</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <ipv6> + <address> + <ipv6-address>2001:799:1ab:2::59</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + <qos> + <network-policy>GEANT_BASIC</network-policy> + </qos> + </interface> + <interface> + <interface-name>lag-7.0</interface-name> + <admin-state>enable</admin-state> + <description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-ATH-IPTRUNK $LGS-0033 | AMS-ATH | + IP-TRUNK-RT0.AMS-to-RT0.ATH-400g</description> + <ip-mtu>9000</ip-mtu> + <port>lag-7</port> + <ipv4> + <icmp> + <ttl-expired> + <admin-state>enable</admin-state> + <number>2000</number> + <seconds>2</seconds> + </ttl-expired> + </icmp> + <primary> + <address>62.40.119.116</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <ipv6> + <address> + <ipv6-address>2001:799:1ab:2::79</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + <qos> + <network-policy>GEANT_BASIC</network-policy> + </qos> + </interface> + <interface> + <interface-name>lag-8.0</interface-name> + <admin-state>enable</admin-state> + <description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-LON-IPTRUNK $LGS-00077 | AMS-LON | + IP-TRUNK-RT0-AMS-to-RT0-LON</description> + <ip-mtu>9000</ip-mtu> + <port>lag-8</port> + <ipv4> + <icmp> + <ttl-expired> + <admin-state>enable</admin-state> + <number>2000</number> + <seconds>2</seconds> + </ttl-expired> + </icmp> + <primary> + <address>62.40.119.123</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <ipv6> + <address> + <ipv6-address>2001:799:1ab:2::86</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + <qos> + <network-policy>GEANT_BASIC</network-policy> + </qos> + </interface> + <interface> + <interface-name>system</interface-name> + <admin-state>enable</admin-state> + <ipv4> + <primary> + <address>62.40.119.6</address> + <prefix-length>32</prefix-length> + </primary> + </ipv4> + <ipv6> + <address> + <ipv6-address>2001:799:1ab::6</ipv6-address> + <prefix-length>128</prefix-length> + </address> + </ipv6> + </interface> + <mpls-labels> + <static-label-range>9968</static-label-range> + <sr-labels> + <start>10000</start> + <end>19999</end> + </sr-labels> + </mpls-labels> + <flowspec> + <ip-filter-max-size>100</ip-filter-max-size> + <ipv6-filter-max-size>100</ipv6-filter-max-size> + </flowspec> + <bgp> + <local-as> + <as-number>20965</as-number> + </local-as> + <best-path-selection> + <compare-origin-validation-state>true</compare-origin-validation-state> + <origin-invalid-unusable>true</origin-invalid-unusable> + </best-path-selection> + <error-handling> + <update-fault-tolerance>true</update-fault-tolerance> + </error-handling> + <next-hop-resolution> + <shortcut-tunnel> + <family> + <family-type>ipv4</family-type> + <resolution>filter</resolution> + <resolution-filter> + <sr-isis>true</sr-isis> + </resolution-filter> + </family> + <family> + <family-type>ipv6</family-type> + <resolution>filter</resolution> + <resolution-filter> + <sr-isis>true</sr-isis> + </resolution-filter> + </family> + </shortcut-tunnel> + </next-hop-resolution> + <group> + <group-name>20965_TO_21320-V4</group-name> + <type>internal</type> + <peer-as>20965</peer-as> + <local-address>83.97.90.34</local-address> + <family> + <ipv4>true</ipv4> + </family> + <import> + <policy>PS_DENY_ALL</policy> + </import> + <export> + <policy>PS_20965_V4</policy> + </export> + </group> + <group> + <group-name>20965_TO_21320-V6</group-name> + <type>internal</type> + <peer-as>20965</peer-as> + <local-address>2001:798:1::265</local-address> + <family> + <ipv6>true</ipv6> + </family> + <import> + <policy>PS_DENY_ALL</policy> + </import> + <export> + <policy>PS_20965_V6</policy> + </export> + </group> + <group> + <group-name>EGEANT</group-name> + <admin-state>enable</admin-state> + <description>We can add description here</description> + <next-hop-self>false</next-hop-self> + <type>external</type> + <family> + <ipv4>true</ipv4> + <mcast-ipv4>true</mcast-ipv4> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>20965</as-number> + </local-as> + <origin-validation> + <ipv4>true</ipv4> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + </export> + </group> + <group> + <group-name>EGEANT6</group-name> + <admin-state>enable</admin-state> + <description>We can add description here</description> + <next-hop-self>false</next-hop-self> + <type>external</type> + <family> + <ipv6>true</ipv6> + <mcast-ipv6>true</mcast-ipv6> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>20965</as-number> + </local-as> + <origin-validation> + <ipv6>true</ipv6> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + </export> + </group> + <group> + <group-name>GEANT_RE</group-name> + <description>--- R&E V4 Peering ---</description> + <next-hop-self>false</next-hop-self> + <type>external</type> + <family> + <ipv4>true</ipv4> + <mcast-ipv4>true</mcast-ipv4> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>20965</as-number> + </local-as> + <origin-validation> + <ipv4>true</ipv4> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_PEER</policy> + </import> + <export> + <policy>BOGONS</policy> + </export> + </group> + <group> + <group-name>GEANT_RE6</group-name> + <description>--- R&E V6 Peering ---</description> + <next-hop-self>false</next-hop-self> + <type>external</type> + <family> + <ipv6>true</ipv6> + <mcast-ipv6>true</mcast-ipv6> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>20965</as-number> + </local-as> + <origin-validation> + <ipv6>true</ipv6> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_PEER</policy> + </import> + <export> + <policy>BOGONS</policy> + </export> + </group> + <group> + <group-name>TOOLS</group-name> + <admin-state>enable</admin-state> + <description>PEERING WITH TOOLS</description> + <next-hop-self>true</next-hop-self> + <type>internal</type> + <peer-as>20965</peer-as> + <local-address>62.40.119.6</local-address> + <hold-time> + <seconds>180</seconds> + </hold-time> + <local-as> + <as-number>20965</as-number> + </local-as> + <import> + <policy>PS_DENY_ALL</policy> + </import> + </group> + <group> + <group-name>TOOLS6</group-name> + <admin-state>enable</admin-state> + <description>PEERING WITH TOOLS</description> + <next-hop-self>true</next-hop-self> + <type>internal</type> + <peer-as>20965</peer-as> + <local-address>2001:799:1ab::6</local-address> + <hold-time> + <seconds>180</seconds> + </hold-time> + <local-as> + <as-number>20965</as-number> + </local-as> + <import> + <policy>PS_DENY_ALL</policy> + </import> + </group> + <group> + <group-name>TOOLSv6</group-name> + <admin-state>enable</admin-state> + <description>PEERING WITH TOOLS</description> + <next-hop-self>true</next-hop-self> + <type>internal</type> + <peer-as>20965</peer-as> + <local-address>2001:799:1ab::6</local-address> + <hold-time> + <seconds>180</seconds> + </hold-time> + <local-as> + <as-number>20965</as-number> + </local-as> + <import> + <policy>PS_DENY_ALL</policy> + </import> + </group> + <group> + <group-name>iGEANT</group-name> + <admin-state>enable</admin-state> + <authentication-key>aX1kndQNDTAHyJttsnoyKZ+GjPOZBz7fLuk= hash2</authentication-key> + <vpn-apply-import>true</vpn-apply-import> + <next-hop-self>true</next-hop-self> + <type>internal</type> + <peer-as>20965</peer-as> + <capability-negotiation>true</capability-negotiation> + <local-address>62.40.119.6</local-address> + <family> + <ipv4>true</ipv4> + <vpn-ipv4>true</vpn-ipv4> + <mcast-ipv4>true</mcast-ipv4> + <vpn-ipv6>true</vpn-ipv6> + <l2-vpn>true</l2-vpn> + <flow-ipv4>true</flow-ipv4> + <flow-vpn-ipv4>true</flow-vpn-ipv4> + </family> + <import> + <policy>DEST_CLASS_USAGE</policy> + <policy>PS_RTBH_iBGP</policy> + <policy>PS_RPKI_iBGP</policy> + </import> + </group> + <group> + <group-name>iGEANT-P-ONLY</group-name> + <admin-state>enable</admin-state> + <authentication-key>aX1kndQNDTAHyJttsnoyKVBRm1bxaCpuK+c= hash2</authentication-key> + <next-hop-self>true</next-hop-self> + <type>internal</type> + <peer-as>20965</peer-as> + <capability-negotiation>true</capability-negotiation> + <local-address>62.40.119.6</local-address> + <family> + <mcast-ipv4>true</mcast-ipv4> + </family> + </group> + <group> + <group-name>iGEANT6</group-name> + <admin-state>enable</admin-state> + <authentication-key>aX1kndQNDTAHyJttsnoyKSOLQWAxUaMOr+I= hash2</authentication-key> + <vpn-apply-import>true</vpn-apply-import> + <next-hop-self>true</next-hop-self> + <type>internal</type> + <peer-as>20965</peer-as> + <capability-negotiation>true</capability-negotiation> + <local-address>2001:799:1ab::6</local-address> + <family> + <ipv6>true</ipv6> + <vpn-ipv6>true</vpn-ipv6> + <flow-ipv6>true</flow-ipv6> + <mcast-ipv6>true</mcast-ipv6> + <flow-vpn-ipv6>true</flow-vpn-ipv6> + </family> + <import> + <policy>DEST_CLASS_USAGE</policy> + <policy>PS_RTBH_iBGP</policy> + <policy>PS_RPKI_iBGP</policy> + </import> + </group> + <group> + <group-name>iGEANT6-P-ONLY</group-name> + <authentication-key>aX1kndQNDTAHyJttsnoyKQiLcy8euS8do68= hash2</authentication-key> + <next-hop-self>true</next-hop-self> + <type>internal</type> + <peer-as>20965</peer-as> + <capability-negotiation>true</capability-negotiation> + <local-address>2001:799:1ab::6</local-address> + <family> + <mcast-ipv6>true</mcast-ipv6> + </family> + </group> + <neighbor> + <ip-address>62.40.119.2</ip-address> + <description>rt1.ams.nl.lab.office.geant.net</description> + <group>iGEANT</group> + </neighbor> + <neighbor> + <ip-address>62.40.119.4</ip-address> + <description>rt1.dub.ie.lab.office.geant.net</description> + <group>iGEANT</group> + </neighbor> + <neighbor> + <ip-address>62.40.119.5</ip-address> + <description>rt1.lon.uk.lab.office.geant.net</description> + <group>iGEANT</group> + </neighbor> + <neighbor> + <ip-address>62.40.119.7</ip-address> + <description>rt0.lon.uk.lab.office.geant.net</description> + <group>iGEANT</group> + </neighbor> + <neighbor> + <ip-address>62.40.119.8</ip-address> + <description>rt0.ath.gr.lab.office.geant.net</description> + <group>iGEANT</group> + </neighbor> + <neighbor> + <ip-address>62.40.119.9</ip-address> + <description>rt0.bil.es.lab.office.geant.net</description> + <group>iGEANT</group> + </neighbor> + <neighbor> + <ip-address>62.40.119.10</ip-address> + <description>rt0.dub.ie.lab.office.geant.net</description> + <group>iGEANT</group> + </neighbor> + <neighbor> + <ip-address>62.40.124.158</ip-address> + <admin-state>enable</admin-state> + <description>CERN_NREN_LHCONE as513</description> + <bfd-liveness>true</bfd-liveness> + <group>EGEANT</group> + <local-address>62.40.124.157</local-address> + <type>external</type> + <peer-as>513</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_NREN</policy> + <policy>PS_GLOBAL_ANYCAST_RE</policy> + <policy>PS_FROM_CERN_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_TO_CERN_NREN</policy> + </export> + </neighbor> + <neighbor> + <ip-address>62.40.124.218</ip-address> + <admin-state>enable</admin-state> + <description>-- Peering with DFN NREN--</description> + <bfd-liveness>true</bfd-liveness> + <group>EGEANT</group> + <min-route-advertisement>10</min-route-advertisement> + <authentication-key>RTRT5Knf8NSwaT257qntVcSMnJm8 hash2</authentication-key> + <local-address>62.40.124.217</local-address> + <peer-as>680</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_NREN</policy> + <policy>PS_GLOBAL_ANYCAST_RE</policy> + <policy>PS_FROM_DFN_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_TO_DFN_NREN</policy> + </export> + </neighbor> + <neighbor> + <ip-address>62.40.125.46</ip-address> + <admin-state>enable</admin-state> + <description>-- Peering with KREONET_10G --</description> + <group>GEANT_RE</group> + <local-address>62.40.125.45</local-address> + <peer-as>17579</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_PEER</policy> + <policy>PS_REJECT_GLOBAL_ANYCAST</policy> + <policy>PS_FROM_PE_PEER_KREONET_AS17579</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_TO_RE_PEERS_HEAD</policy> + <policy>PS_TO_RE_PEER_KREONET_AS17579</policy> + <policy>PS_TO_RE_PEER_TAIL</policy> + </export> + <prefix-limit> + <family>ipv4</family> + <maximum>1200</maximum> + <threshold>80</threshold> + </prefix-limit> + <prefix-limit> + <family>mcast-ipv4</family> + <maximum>500</maximum> + <threshold>80</threshold> + </prefix-limit> + </neighbor> + <neighbor> + <ip-address>62.40.125.135</ip-address> + <admin-state>enable</admin-state> + <description>-- Peering with REDIRIS NREN--</description> + <bfd-liveness>true</bfd-liveness> + <group>EGEANT</group> + <min-route-advertisement>10</min-route-advertisement> + <authentication-key>ahcHjVW70O3UMtTzr0O5OH3XY+2x4gh4 hash2</authentication-key> + <local-address>62.40.125.134</local-address> + <peer-as>766</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_NREN</policy> + <policy>PS_GLOBAL_ANYCAST_RE</policy> + <policy>PS_FROM_REDIRIS_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_TO_REDIRIS_NREN</policy> + </export> + </neighbor> + <neighbor> + <ip-address>83.97.90.35</ip-address> + <description>20965-to-21320 BGP Peering IPv4</description> + <group>20965_TO_21320-V4</group> + </neighbor> + <neighbor> + <ip-address>208.76.14.223</ip-address> + <description>Kentik US</description> + <group>TOOLS</group> + <authentication-key>8DITvS0aXZJy6DgWlFupnz93Dk6r1SOyfEP6gzZxyg== hash2</authentication-key> + <hold-time> + <seconds>720</seconds> + </hold-time> + <family> + <ipv4>true</ipv4> + <vpn-ipv4>true</vpn-ipv4> + </family> + <cluster> + <cluster-id>62.40.119.6</cluster-id> + </cluster> + </neighbor> + <neighbor> + <ip-address>2001:798:1::266</ip-address> + <description>20965-to-21320 BGP Peering IPv6</description> + <group>20965_TO_21320-V6</group> + </neighbor> + <neighbor> + <ip-address>2001:798:14:10aa::a</ip-address> + <admin-state>enable</admin-state> + <description>-- Peering with DFN V6 NREN--</description> + <bfd-liveness>true</bfd-liveness> + <group>EGEANT6</group> + <min-route-advertisement>10</min-route-advertisement> + <authentication-key>RTRT5Knf8NSwaT257qntVc5utItb hash2</authentication-key> + <local-address>2001:798:14:10aa::9</local-address> + <peer-as>680</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_NREN</policy> + <policy>PS_GLOBAL_ANYCAST_RE</policy> + <policy>PS_FROM_DFN_NREN_V6</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_TO_DFN_NREN</policy> + </export> + </neighbor> + <neighbor> + <ip-address>2001:798:99:1::3a</ip-address> + <admin-state>enable</admin-state> + <description>V6 CERN_NREN_LHCONE as513</description> + <group>EGEANT6</group> + <local-address>2001:798:99:1::39</local-address> + <peer-as>513</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_NREN</policy> + <policy>PS_FROM_CERN_NREN_V6</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_TO_CERN_NREN</policy> + </export> + </neighbor> + <neighbor> + <ip-address>2001:798:99:1::62</ip-address> + <admin-state>enable</admin-state> + <description>-- Peering with REDIRIS V6 NREN--</description> + <bfd-liveness>true</bfd-liveness> + <group>EGEANT6</group> + <min-route-advertisement>10</min-route-advertisement> + <authentication-key>3b728WGatPve8EaQuKqkotYw/0/qVi4kiuI= hash2</authentication-key> + <local-address>2001:798:99:1::61</local-address> + <peer-as>766</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_NREN</policy> + <policy>PS_GLOBAL_ANYCAST_RE</policy> + <policy>PS_FROM_REDIRIS_NREN_V6</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_TO_REDIRIS_NREN</policy> + </export> + </neighbor> + <neighbor> + <ip-address>2001:798:99:1::7a</ip-address> + <admin-state>enable</admin-state> + <description>-- IPv6 Peering with KREONET_10G --</description> + <group>GEANT_RE6</group> + <local-address>2001:798:99:1::79</local-address> + <peer-as>17579</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_RPKI_RE_PEER</policy> + <policy>PS_REJECT_GLOBAL_ANYCAST</policy> + <policy>PS_FROM_PE_PEER_KREONET_AS17579</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_TO_RE_PEERS_HEAD</policy> + <policy>PS_TO_RE_PEER_KREONET_AS17579</policy> + <policy>PS_TO_RE_PEER_TAIL</policy> + </export> + <prefix-limit> + <family>ipv6</family> + <maximum>500</maximum> + <threshold>80</threshold> + </prefix-limit> + <prefix-limit> + <family>mcast-ipv6</family> + <maximum>500</maximum> + <threshold>80</threshold> + </prefix-limit> + </neighbor> + <neighbor> + <ip-address>2001:799:1ab::2</ip-address> + <description>rt1.ams.nl.lab.office.geant.net</description> + <group>iGEANT6</group> + </neighbor> + <neighbor> + <ip-address>2001:799:1ab::4</ip-address> + <description>rt1.dub.ie.lab.office.geant.net</description> + <group>iGEANT6</group> + </neighbor> + <neighbor> + <ip-address>2001:799:1ab::5</ip-address> + <description>rt1.lon.uk.lab.office.geant.net</description> + <group>iGEANT6</group> + </neighbor> + <neighbor> + <ip-address>2001:799:1ab::7</ip-address> + <description>rt0.lon.uk.lab.office.geant.net</description> + <group>iGEANT6</group> + </neighbor> + <neighbor> + <ip-address>2001:799:1ab::8</ip-address> + <description>rt0.ath.gr.lab.office.geant.net</description> + <group>iGEANT6</group> + </neighbor> + <neighbor> + <ip-address>2001:799:1ab::9</ip-address> + <description>rt0.bil.es.lab.office.geant.net</description> + <group>iGEANT6</group> + </neighbor> + <neighbor> + <ip-address>2001:799:1ab::a</ip-address> + <description>rt0.dub.ie.lab.office.geant.net</description> + <group>iGEANT6</group> + </neighbor> + <neighbor> + <ip-address>2620:129:1:2::1</ip-address> + <description>Kentik US</description> + <group>TOOLS6</group> + <authentication-key>8DITvS0aXZJy6DgWlFupn6F/s39Ts8wKbIS7VkNkkw== hash2</authentication-key> + <hold-time> + <seconds>720</seconds> + </hold-time> + <family> + <ipv6>true</ipv6> + <vpn-ipv6>true</vpn-ipv6> + </family> + <cluster> + <cluster-id>62.40.119.6</cluster-id> + </cluster> + </neighbor> + </bgp> + <igmp> + <interface> + <ip-interface-name>dsc.0</ip-interface-name> + <static> + <group> + <group-address>232.223.222.1</group-address> + <source> + <source-address>193.17.9.3</source-address> + </source> + <source> + <source-address>212.201.139.66</source-address> + </source> + </group> + </static> + </interface> + </igmp> + <isis> + <isis-instance>0</isis-instance> + <admin-state>enable</admin-state> + <advertise-router-capability>as</advertise-router-capability> + <ldp-sync>false</ldp-sync> + <ipv6-routing>native</ipv6-routing> + <level-capability>2</level-capability> + <router-id>62.40.119.6</router-id> + <system-id>0620.4011.9006</system-id> + <traffic-engineering>true</traffic-engineering> + <area-address>49.51e5.0001</area-address> + <multicast-import> + <ipv4>true</ipv4> + <ipv6>true</ipv6> + </multicast-import> + <overload-on-boot> + <timeout>300</timeout> + </overload-on-boot> + <loopfree-alternate> + <ti-lfa> + <node-protect> + </node-protect> + </ti-lfa> + </loopfree-alternate> + <segment-routing> + <admin-state>enable</admin-state> + <tunnel-table-pref>8</tunnel-table-pref> + <prefix-sid-range> + <global /> + </prefix-sid-range> + </segment-routing> + <interface> + <interface-name>lag-2.0</interface-name> + <admin-state>enable</admin-state> + <interface-type>point-to-point</interface-type> + <level-capability>2</level-capability> + <level> + <level-number>2</level-number> + <metric>20000</metric> + </level> + </interface> + <interface> + <interface-name>lag-5.0</interface-name> + <admin-state>enable</admin-state> + <interface-type>point-to-point</interface-type> + <level-capability>2</level-capability> + <level> + <level-number>2</level-number> + <metric>5</metric> + </level> + </interface> + <interface> + <interface-name>lag-7.0</interface-name> + <admin-state>enable</admin-state> + <interface-type>point-to-point</interface-type> + <level-capability>2</level-capability> + <level> + <level-number>2</level-number> + <metric>11001</metric> + </level> + </interface> + <interface> + <interface-name>lag-8.0</interface-name> + <admin-state>enable</admin-state> + <interface-type>point-to-point</interface-type> + <level-capability>2</level-capability> + <level> + <level-number>2</level-number> + <metric>20000</metric> + </level> + </interface> + <interface> + <interface-name>system</interface-name> + <admin-state>enable</admin-state> + <passive>true</passive> + <ipv4-node-sid> + <index>4006</index> + </ipv4-node-sid> + <ipv6-node-sid> + <index>6006</index> + </ipv6-node-sid> + </interface> + <level> + <level-number>2</level-number> + <wide-metrics-only>true</wide-metrics-only> + </level> + </isis> + <ldp> + <admin-state>enable</admin-state> + <targeted-session> + <sdp-auto-targeted-session>true</sdp-auto-targeted-session> + </targeted-session> + </ldp> + <mpls> + <admin-state>enable</admin-state> + <interface> + <interface-name>lag-2.0</interface-name> + </interface> + <interface> + <interface-name>lag-5.0</interface-name> + </interface> + <interface> + <interface-name>lag-7.0</interface-name> + </interface> + <interface> + <interface-name>lag-8.0</interface-name> + </interface> + <interface> + <interface-name>system</interface-name> + </interface> + <path> + <path-name>LSP_10GGBS_RT0_AMS_TO_RT1_DUB_LOOSE</path-name> + <admin-state>enable</admin-state> + <hop> + <hop-index>1</hop-index> + <ip-address>62.40.119.4</ip-address> + <type>loose</type> + </hop> + </path> + <path> + <path-name>LSP_10GGBS_RT0_AMS_TO_RT1_DUB_STRICT</path-name> + <admin-state>enable</admin-state> + <hop> + <hop-index>1</hop-index> + <ip-address>62.40.119.125</ip-address> + <type>strict</type> + </hop> + <hop> + <hop-index>2</hop-index> + <ip-address>62.40.119.109</ip-address> + <type>strict</type> + </hop> + <hop> + <hop-index>3</hop-index> + <ip-address>62.40.119.69</ip-address> + <type>strict</type> + </hop> + </path> + <lsp> + <lsp-name>LSP_10GGBS_RT0_AMS_TO_RT1_DUB</lsp-name> + <admin-state>enable</admin-state> + <type>p2p-rsvp</type> + <to>62.40.119.4</to> + <revert-timer>180</revert-timer> + <egress-statistics> + <admin-state>enable</admin-state> + <collect-stats>true</collect-stats> + <stat-mode>per-fc</stat-mode> + </egress-statistics> + <primary> + <path-name>LSP_10GGBS_RT0_AMS_TO_RT1_DUB_STRICT</path-name> + <admin-state>enable</admin-state> + </primary> + <secondary> + <path-name>LSP_10GGBS_RT0_AMS_TO_RT1_DUB_LOOSE</path-name> + <admin-state>enable</admin-state> + <standby>true</standby> + </secondary> + </lsp> + </mpls> + <origin-validation> + <rpki-session> + <ip-address>172.16.100.33</ip-address> + <admin-state>enable</admin-state> + <connect-retry>30</connect-retry> + <local-address>62.40.119.6</local-address> + <port>3323</port> + <stale-time>3600</stale-time> + </rpki-session> + <rpki-session> + <ip-address>172.16.100.34</ip-address> + <admin-state>enable</admin-state> + <connect-retry>30</connect-retry> + <local-address>62.40.119.6</local-address> + <port>3323</port> + <stale-time>3600</stale-time> + </rpki-session> + </origin-validation> + <pim> + <ipv4> + <admin-state>enable</admin-state> + <rpf-table>rtable-m</rpf-table> + </ipv4> + <ipv6> + <admin-state>enable</admin-state> + <rpf-table>rtable-m</rpf-table> + </ipv6> + <interface> + <interface-name>dsc.0</interface-name> + <admin-state>enable</admin-state> + <ipv4> + <multicast>true</multicast> + </ipv4> + <ipv6> + <multicast>true</multicast> + </ipv6> + </interface> + <interface> + <interface-name>lag-2.0</interface-name> + </interface> + <interface> + <interface-name>lag-5.0</interface-name> + </interface> + <interface> + <interface-name>lag-7.0</interface-name> + </interface> + <interface> + <interface-name>lag-8.0</interface-name> + </interface> + <interface> + <interface-name>lag-11.100</interface-name> + <admin-state>enable</admin-state> + <ipv4> + <multicast>true</multicast> + </ipv4> + <ipv6> + <multicast>true</multicast> + </ipv6> + </interface> + <interface> + <interface-name>lag-17.251</interface-name> + <admin-state>enable</admin-state> + <ipv4> + <multicast>true</multicast> + </ipv4> + <ipv6> + <multicast>true</multicast> + </ipv6> + </interface> + <interface> + <interface-name>system</interface-name> + </interface> + <rp> + <ipv4> + <bsr-candidate> + <admin-state>disable</admin-state> + </bsr-candidate> + </ipv4> + <ipv6> + <bsr-candidate> + <admin-state>disable</admin-state> + </bsr-candidate> + <embedded-rp> + <admin-state>enable</admin-state> + </embedded-rp> + </ipv6> + </rp> + </pim> + <rsvp> + <admin-state>enable</admin-state> + <interface> + <interface-name>lag-2.0</interface-name> + </interface> + <interface> + <interface-name>lag-5.0</interface-name> + </interface> + <interface> + <interface-name>lag-7.0</interface-name> + </interface> + <interface> + <interface-name>lag-8.0</interface-name> + </interface> + <interface> + <interface-name>system</interface-name> + </interface> + </rsvp> + <static-routes> + <route> + <ip-prefix>0.0.0.0/0</ip-prefix> + <route-type>unicast</route-type> + <indirect> + <ip-address>62.40.119.2</ip-address> + <admin-state>enable</admin-state> + <description>TEMP_DEFAULT1</description> + </indirect> + <indirect> + <ip-address>62.40.119.5</ip-address> + <admin-state>enable</admin-state> + <description>TEMP_DEFAULT2</description> + <preference>25</preference> + </indirect> + <next-hop> + <ip-address>83.97.90.35</ip-address> + <admin-state>enable</admin-state> + <description>GRT_TO_IAS_IPV4_DEFAULT_ROUTE</description> + </next-hop> + </route> + <route> + <ip-prefix>62.40.96.0/19</ip-prefix> + <route-type>unicast</route-type> + <community>20965:155</community> + <community>20965:65532</community> + <community>20965:65533</community> + <community>64700:65532</community> + <community>64700:65533</community> + <community>64700:65534</community> + <community>21320:20965</community> + <blackhole> + <admin-state>enable</admin-state> + </blackhole> + </route> + <route> + <ip-prefix>192.0.2.101/32</ip-prefix> + <route-type>unicast</route-type> + <blackhole> + <admin-state>enable</admin-state> + <description>USED_for_RTBH_Global</description> + </blackhole> + </route> + <route> + <ip-prefix>::/0</ip-prefix> + <route-type>unicast</route-type> + <indirect> + <ip-address>2001:799:1ab::2</ip-address> + <admin-state>enable</admin-state> + <description>Temp_default1</description> + </indirect> + <indirect> + <ip-address>2001:799:1ab::5</ip-address> + <admin-state>enable</admin-state> + <description>Temp_default2</description> + <preference>25</preference> + </indirect> + <next-hop> + <ip-address>2001:798:1::266</ip-address> + <admin-state>enable</admin-state> + <description>GRT_TO_IAS_IPV6_DEFAULT_ROUTE</description> + </next-hop> + </route> + <route> + <ip-prefix>100::/64</ip-prefix> + <route-type>unicast</route-type> + <blackhole> + <admin-state>enable</admin-state> + <description>USED_for_RTBH_Global_V6</description> + </blackhole> + </route> + <route> + <ip-prefix>2001:798::/32</ip-prefix> + <route-type>unicast</route-type> + <community>20965:155</community> + <community>20965:65532</community> + <community>20965:65533</community> + <community>64700:65532</community> + <community>64700:65533</community> + <community>64700:65534</community> + <community>21320:20965</community> + <blackhole> + <admin-state>enable</admin-state> + </blackhole> + </route> + <route> + <ip-prefix>2001:799::/32</ip-prefix> + <route-type>unicast</route-type> + <community>20965:155</community> + <community>20965:65532</community> + <community>20965:65533</community> + <community>64700:65532</community> + <community>64700:65533</community> + <community>64700:65534</community> + <blackhole> + <admin-state>enable</admin-state> + </blackhole> + </route> + </static-routes> + <twamp-light> + <reflector> + <admin-state>enable</admin-state> + <udp-port>64364</udp-port> + <prefix> + <ip-prefix>62.40.119.64/26</ip-prefix> + </prefix> + </reflector> + </twamp-light> + </router> + <routing-options> + <policy-accounting> + <policy-acct-template> + <name>GEANT_DEST_CLASS_POL_TEMPLATE_01</name> + <destination-class> + <index>1</index> + </destination-class> + <destination-class> + <index>2</index> + </destination-class> + <destination-class> + <index>3</index> + </destination-class> + </policy-acct-template> + </policy-accounting> + </routing-options> + <service> + <epipe> + <service-name>GEANT_EPIPE_10GGBS_12016</service-name> + <admin-state>enable</admin-state> + <description>SRV_10GGBS CUSTOMER CESNET #ams-pra-IX-CESNET-AMS-12016 $GS-00786|</description> + <service-id>12016</service-id> + <customer>1</customer> + <vpn-id>12016</vpn-id> + <service-mtu>9114</service-mtu> + <ignore-l2vpn-mtu-mismatch>false</ignore-l2vpn-mtu-mismatch> + <spoke-sdp> + <sdp-bind-id>642:12016</sdp-bind-id> + <admin-state>enable</admin-state> + <control-word>true</control-word> + <vc-type>ether</vc-type> + <pw-status> + <signaling>true</signaling> + </pw-status> + </spoke-sdp> + <sap> + <sap-id>lag-18</sap-id> + <admin-state>enable</admin-state> + <description>SAP_INGRESS_CLASSIFY_TO_H2</description> + <ingress> + <qos> + <sap-ingress> + <policy-name>SAP_INGRESS_CLASSIFY_TO_H2</policy-name> + </sap-ingress> + </qos> + </ingress> + </sap> + </epipe> + <epipe> + <service-name>GEANT_EPIPE_10GGBS_111111</service-name> + <admin-state>enable</admin-state> + <description>SRV_10GGBS CUSTOMER GEANT_LAB_AMS_TO_DUB</description> + <service-id>111111</service-id> + <customer>1</customer> + <vpn-id>111111</vpn-id> + <service-mtu>9114</service-mtu> + <ignore-l2vpn-mtu-mismatch>false</ignore-l2vpn-mtu-mismatch> + <spoke-sdp> + <sdp-bind-id>642:111111</sdp-bind-id> + <admin-state>enable</admin-state> + <control-word>true</control-word> + <vc-type>ether</vc-type> + <pw-status> + <signaling>true</signaling> + </pw-status> + </spoke-sdp> + <sap> + <sap-id>lag-16:2218</sap-id> + <admin-state>enable</admin-state> + <description> + SAP_INGRESS_CLASSIFY_TO_CS3|SAP_INGRESS_CLASSIFY_TO_CS3|SAP_INGRESS_CLASSIFY_TO_CS3|SAP_INGRESS_CLASSIFY_TO_CS3|SAP_INGRESS_CLASSIFY_TO_CS3</description> + <ingress> <qos> - <network-queue> - <network-queue-policy>GEANT_BASIC</network-queue-policy> - <description>GEANT Basic QoS Queue Policy</description> - <fc> - <fc-name>be</fc-name> - <queue>1</queue> - <multicast-queue>9</multicast-queue> - </fc> - <fc> - <fc-name>h2</fc-name> - <queue>5</queue> - <multicast-queue>13</multicast-queue> - </fc> - <fc> - <fc-name>ef</fc-name> - <queue>6</queue> - <multicast-queue>14</multicast-queue> - </fc> - <fc> - <fc-name>nc</fc-name> - <queue>8</queue> - <multicast-queue>16</multicast-queue> - </fc> - <queue> - <queue-id>1</queue-id> - <cbs>1.0</cbs> - <mbs>50.0</mbs> - <rate> - <pir>100</pir> - <cir>2</cir> - </rate> - <drop-tail> - <low> - <percent-reduction-from-mbs>0</percent-reduction-from-mbs> - </low> - </drop-tail> - </queue> - <queue> - <queue-id>5</queue-id> - <cbs>10.0</cbs> - <mbs>50.0</mbs> - <rate> - <pir>100</pir> - <cir>100</cir> - </rate> - <drop-tail> - <low> - <percent-reduction-from-mbs>20</percent-reduction-from-mbs> - </low> - </drop-tail> - </queue> - <queue> - <queue-id>6</queue-id> - <cbs>3.0</cbs> - <mbs>25.0</mbs> - <rate> - <pir>100</pir> - <cir>15</cir> - </rate> - <drop-tail> - <low> - <percent-reduction-from-mbs>10</percent-reduction-from-mbs> - </low> - </drop-tail> - </queue> - <queue> - <queue-id>8</queue-id> - <cbs>3.0</cbs> - <mbs>25.0</mbs> - <rate> - <pir>100</pir> - <cir>5</cir> - </rate> - <drop-tail> - <low> - <percent-reduction-from-mbs>10</percent-reduction-from-mbs> - </low> - </drop-tail> - </queue> - <queue> - <queue-id>9</queue-id> - <multipoint>true</multipoint> - <cbs>1.0</cbs> - <mbs>50.0</mbs> - <rate> - <pir>100</pir> - <cir>2</cir> - </rate> - <drop-tail> - <low> - <percent-reduction-from-mbs>0</percent-reduction-from-mbs> - </low> - </drop-tail> - </queue> - <queue> - <queue-id>13</queue-id> - <multipoint>true</multipoint> - <cbs>10.0</cbs> - <mbs>50.0</mbs> - <rate> - <pir>100</pir> - <cir>100</cir> - </rate> - <drop-tail> - <low> - <percent-reduction-from-mbs>10</percent-reduction-from-mbs> - </low> - </drop-tail> - </queue> - <queue> - <queue-id>14</queue-id> - <multipoint>true</multipoint> - <cbs>3.0</cbs> - <mbs>25.0</mbs> - <rate> - <pir>100</pir> - <cir>15</cir> - </rate> - <drop-tail> - <low> - <percent-reduction-from-mbs>10</percent-reduction-from-mbs> - </low> - </drop-tail> - </queue> - <queue> - <queue-id>16</queue-id> - <multipoint>true</multipoint> - <cbs>3.0</cbs> - <mbs>25.0</mbs> - <rate> - <pir>100</pir> - <cir>5</cir> - </rate> - <drop-tail> - <low> - <percent-reduction-from-mbs>10</percent-reduction-from-mbs> - </low> - </drop-tail> - </queue> - </network-queue> - <network> - <network-policy-name>GEANT_BASIC</network-policy-name> - <description>GEANT Basic QoS Network Policy</description> - <policy-id>100</policy-id> - <ingress> - <default-action> - <fc>be</fc> - <profile>in</profile> - </default-action> - <dscp> - <dscp-name>ef</dscp-name> - <fc>ef</fc> - <profile>in</profile> - </dscp> - <dscp> - <dscp-name>nc1</dscp-name> - <fc>nc</fc> - <profile>in</profile> - </dscp> - <dscp> - <dscp-name>nc2</dscp-name> - <fc>nc</fc> - <profile>in</profile> - </dscp> - <lsp-exp> - <lsp-exp-value>0</lsp-exp-value> - <fc>be</fc> - <profile>out</profile> - </lsp-exp> - <lsp-exp> - <lsp-exp-value>1</lsp-exp-value> - <fc>be</fc> - <profile>in</profile> - </lsp-exp> - <lsp-exp> - <lsp-exp-value>2</lsp-exp-value> - <fc>ef</fc> - <profile>in</profile> - </lsp-exp> - <lsp-exp> - <lsp-exp-value>3</lsp-exp-value> - <fc>h2</fc> - <profile>in</profile> - </lsp-exp> - <lsp-exp> - <lsp-exp-value>4</lsp-exp-value> - <fc>be</fc> - <profile>out</profile> - </lsp-exp> - <lsp-exp> - <lsp-exp-value>5</lsp-exp-value> - <fc>be</fc> - <profile>out</profile> - </lsp-exp> - <lsp-exp> - <lsp-exp-value>6</lsp-exp-value> - <fc>nc</fc> - <profile>in</profile> - </lsp-exp> - <lsp-exp> - <lsp-exp-value>7</lsp-exp-value> - <fc>nc</fc> - <profile>out</profile> - </lsp-exp> - </ingress> - <egress> - <fc> - <fc-name>be</fc-name> - <dscp-in-profile>be</dscp-in-profile> - <dscp-out-profile>be</dscp-out-profile> - <lsp-exp-in-profile>1</lsp-exp-in-profile> - <lsp-exp-out-profile>0</lsp-exp-out-profile> - </fc> - <fc> - <fc-name>h2</fc-name> - <dscp-in-profile>af21</dscp-in-profile> - <dscp-out-profile>af22</dscp-out-profile> - <lsp-exp-in-profile>3</lsp-exp-in-profile> - <lsp-exp-out-profile>3</lsp-exp-out-profile> - </fc> - <fc> - <fc-name>ef</fc-name> - <dscp-in-profile>ef</dscp-in-profile> - <dscp-out-profile>ef</dscp-out-profile> - <lsp-exp-in-profile>2</lsp-exp-in-profile> - <lsp-exp-out-profile>2</lsp-exp-out-profile> - </fc> - <fc> - <fc-name>nc</fc-name> - <dscp-in-profile>nc1</dscp-in-profile> - <dscp-out-profile>nc1</dscp-out-profile> - <lsp-exp-in-profile>6</lsp-exp-in-profile> - <lsp-exp-out-profile>7</lsp-exp-out-profile> - </fc> - </egress> - </network> + <sap-ingress> + <policy-name>SAP_INGRESS_CLASSIFY_TO_CS3</policy-name> + </sap-ingress> </qos> - <redundancy> - <rollback-sync>rollback-all</rollback-sync> - </redundancy> - <router> - <router-name>Base</router-name> - <autonomous-system>20965</autonomous-system> - <router-id>62.40.119.6</router-id> - <interface> - <interface-name>lag-1.0</interface-name> - <admin-state>enable</admin-state> - <description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK $GS-11001| AMS-AMS | AMS-AMS-IPTRUNK</description> - <ip-mtu>9000</ip-mtu> - <port>lag-1</port> - <ipv4> - <primary> - <address>62.40.119.88</address> - <prefix-length>31</prefix-length> - </primary> - </ipv4> - <ipv6> - <address> - <ipv6-address>2001:799:1ab:2::31</ipv6-address> - <prefix-length>126</prefix-length> - </address> - </ipv6> - <qos> - <network-policy>GEANT_BASIC</network-policy> - </qos> - </interface> - <interface> - <interface-name>lag-2.0</interface-name> - <admin-state>enable</admin-state> - <description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-LON-IPTRUNK $LGS-00011 | AMS-LON | IP-TRUNK-RT0-AMS-to-RT0-LON-400g</description> - <ip-mtu>9000</ip-mtu> - <port>lag-2</port> - <ipv4> - <primary> - <address>62.40.119.90</address> - <prefix-length>31</prefix-length> - </primary> - </ipv4> - <ipv6> - <address> - <ipv6-address>2001:799:1ab:2::41</ipv6-address> - <prefix-length>126</prefix-length> - </address> - </ipv6> - <qos> - <network-policy>GEANT_BASIC</network-policy> - </qos> - </interface> - <interface> - <interface-name>lag-4.0</interface-name> - <admin-state>enable</admin-state> - <description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-BIL-IPTRUNK $LGS-00006| AMS-BIL | IP-TRUNK-RT0-AMS-TO-RT1-BIL-100G</description> - <ip-mtu>9000</ip-mtu> - <port>lag-4</port> - <ipv4> - <primary> - <address>62.40.119.98</address> - <prefix-length>31</prefix-length> - </primary> - </ipv4> - <ipv6> - <address> - <ipv6-address>2001:799:1ab:2::55</ipv6-address> - <prefix-length>126</prefix-length> - </address> - </ipv6> - <qos> - <network-policy>GEANT_BASIC</network-policy> - </qos> - </interface> - <interface> - <interface-name>lag-5.0</interface-name> - <admin-state>enable</admin-state> - <description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK $LGS-000055| AMS-AMS | IP-TRUNK-RT0-AMS-to-RT1.AMS-200G</description> - <ip-mtu>9000</ip-mtu> - <port>lag-5</port> - <ipv4> - <primary> - <address>62.40.119.100</address> - <prefix-length>31</prefix-length> - </primary> - </ipv4> - <ipv6> - <address> - <ipv6-address>2001:799:1ab:2::59</ipv6-address> - <prefix-length>126</prefix-length> - </address> - </ipv6> - <qos> - <network-policy>GEANT_BASIC</network-policy> - </qos> - </interface> - <interface> - <interface-name>lag-6.0</interface-name> - <admin-state>enable</admin-state> - <description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-ATH-IPTRUNK $LGS-00001| AMS-ATH | IP-TRUNK-RT0-AMS-to-RT1.ATH-100G</description> - <ip-mtu>9000</ip-mtu> - <port>lag-6</port> - <ipv4> - <primary> - <address>62.40.119.102</address> - <prefix-length>31</prefix-length> - </primary> - </ipv4> - <ipv6> - <address> - <ipv6-address>2001:799:1ab:2::5d</ipv6-address> - <prefix-length>126</prefix-length> - </address> - </ipv6> - <qos> - <network-policy>GEANT_BASIC</network-policy> - </qos> - </interface> - <interface> - <interface-name>system</interface-name> - <admin-state>enable</admin-state> - <ipv4> - <primary> - <address>62.40.119.6</address> - <prefix-length>32</prefix-length> - </primary> - </ipv4> - <ipv6> - <address> - <ipv6-address>2001:799:1ab::6</ipv6-address> - <prefix-length>128</prefix-length> - </address> - </ipv6> - </interface> - <mpls-labels> - <static-label-range>9968</static-label-range> - <sr-labels> - <start>10000</start> - <end>19999</end> - </sr-labels> - </mpls-labels> - <flowspec> - <ip-filter-max-size>100</ip-filter-max-size> - <ipv6-filter-max-size>100</ipv6-filter-max-size> - </flowspec> - <bgp> - <local-as> - <as-number>20965</as-number> - </local-as> - <best-path-selection> - <compare-origin-validation-state>true</compare-origin-validation-state> - <origin-invalid-unusable>true</origin-invalid-unusable> - </best-path-selection> - <error-handling> - <update-fault-tolerance>true</update-fault-tolerance> - </error-handling> - <next-hop-resolution> - <shortcut-tunnel> - <family> - <family-type>ipv4</family-type> - <resolution>filter</resolution> - <resolution-filter> - <sr-isis>true</sr-isis> - </resolution-filter> - </family> - <family> - <family-type>ipv6</family-type> - <resolution>filter</resolution> - <resolution-filter> - <sr-isis>true</sr-isis> - </resolution-filter> - </family> - </shortcut-tunnel> - </next-hop-resolution> - <group> - <group-name>EGEANT</group-name> - <description>We can add description here</description> - <type>external</type> - <family> - <ipv4>true</ipv4> - <mcast-ipv4>true</mcast-ipv4> - </family> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <local-as> - <as-number>20965</as-number> - </local-as> - <origin-validation> - <ipv4>true</ipv4> - </origin-validation> - <send-communities> - <extended>false</extended> - </send-communities> - </group> - <group> - <group-name>EGEANT6</group-name> - <description>We can add description here</description> - <type>external</type> - <family> - <ipv6>true</ipv6> - <mcast-ipv6>true</mcast-ipv6> - </family> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <local-as> - <as-number>20965</as-number> - </local-as> - <origin-validation> - <ipv6>true</ipv6> - </origin-validation> - <send-communities> - <extended>false</extended> - </send-communities> - </group> - <group> - <group-name>TOOLS</group-name> - <admin-state>enable</admin-state> - <description>PEERING WITH TOOLS</description> - <next-hop-self>true</next-hop-self> - <type>internal</type> - <peer-as>20965</peer-as> - <local-address>62.40.119.6</local-address> - <hold-time> - <seconds>180</seconds> - </hold-time> - <local-as> - <as-number>20965</as-number> - </local-as> - <import> - <policy>PS_DENY_ALL</policy> - </import> - </group> - <group> - <group-name>TOOLSv6</group-name> - <admin-state>enable</admin-state> - <description>PEERING WITH TOOLS</description> - <next-hop-self>true</next-hop-self> - <type>internal</type> - <peer-as>20965</peer-as> - <local-address>2001:799:1ab::6</local-address> - <hold-time> - <seconds>180</seconds> - </hold-time> - <local-as> - <as-number>20965</as-number> - </local-as> - <import> - <policy>PS_DENY_ALL</policy> - </import> - </group> - <group> - <group-name>iGEANT</group-name> - <admin-state>enable</admin-state> - <authentication-key>aX1kndQNDTAHyJttsnoyKZ+GjPOZBz7fLuk= hash2</authentication-key> - <next-hop-self>true</next-hop-self> - <type>internal</type> - <peer-as>20965</peer-as> - <capability-negotiation>true</capability-negotiation> - <local-address>62.40.119.6</local-address> - <family> - <ipv4>true</ipv4> - <vpn-ipv4>true</vpn-ipv4> - <mcast-ipv4>true</mcast-ipv4> - <vpn-ipv6>true</vpn-ipv6> - <l2-vpn>true</l2-vpn> - <flow-ipv4>true</flow-ipv4> - <flow-vpn-ipv4>true</flow-vpn-ipv4> - </family> - <import> - <policy>PS_RTBH_iBGP</policy> - <policy>PS_RPKI_iBGP</policy> - </import> - </group> - <group> - <group-name>iGEANT-P-ONLY</group-name> - <admin-state>enable</admin-state> - <authentication-key>aX1kndQNDTAHyJttsnoyKVBRm1bxaCpuK+c= hash2</authentication-key> - <next-hop-self>true</next-hop-self> - <type>internal</type> - <peer-as>20965</peer-as> - <capability-negotiation>true</capability-negotiation> - <local-address>62.40.119.6</local-address> - <family> - <ipv4>true</ipv4> - <mcast-ipv4>true</mcast-ipv4> - </family> - </group> - <group> - <group-name>iGEANT6</group-name> - <admin-state>enable</admin-state> - <authentication-key>aX1kndQNDTAHyJttsnoyKSOLQWAxUaMOr+I= hash2</authentication-key> - <next-hop-self>true</next-hop-self> - <type>internal</type> - <peer-as>20965</peer-as> - <capability-negotiation>true</capability-negotiation> - <local-address>2001:799:1ab::6</local-address> - <family> - <ipv6>true</ipv6> - <vpn-ipv6>true</vpn-ipv6> - <flow-ipv6>true</flow-ipv6> - <mcast-ipv6>true</mcast-ipv6> - <flow-vpn-ipv6>true</flow-vpn-ipv6> - </family> - <import> - <policy>PS_RTBH_iBGP</policy> - <policy>PS_RPKI_iBGP</policy> - </import> - </group> - <group> - <group-name>iGEANT6-P-ONLY</group-name> - <authentication-key>aX1kndQNDTAHyJttsnoyKQiLcy8euS8do68= hash2</authentication-key> - <next-hop-self>true</next-hop-self> - <type>internal</type> - <peer-as>20965</peer-as> - <capability-negotiation>true</capability-negotiation> - <local-address>2001:799:1ab::6</local-address> - <family> - <ipv6>true</ipv6> - <mcast-ipv6>true</mcast-ipv6> - </family> - </group> - <neighbor> - <ip-address>62.40.119.1</ip-address> - <description>rt1.ath.gr.lab.office.geant.net</description> - <group>iGEANT</group> - </neighbor> - <neighbor> - <ip-address>62.40.119.2</ip-address> - <description>rt1.ams.nl.lab.office.geant.net</description> - <group>iGEANT</group> - </neighbor> - <neighbor> - <ip-address>62.40.119.3</ip-address> - <description>rt1.bil.es.lab.office.geant.net</description> - <group>iGEANT</group> - </neighbor> - <neighbor> - <ip-address>62.40.119.4</ip-address> - <description>rt1.dub.ie.lab.office.geant.net</description> - <group>iGEANT</group> - </neighbor> - <neighbor> - <ip-address>62.40.119.5</ip-address> - <description>rt1.lon.uk.lab.office.geant.net</description> - <group>iGEANT</group> - </neighbor> - <neighbor> - <ip-address>62.40.119.7</ip-address> - <description>rt0.lon.uk.lab.office.geant.net</description> - <group>iGEANT-P-ONLY</group> - </neighbor> - <neighbor> - <ip-address>62.40.124.218</ip-address> - <admin-state>enable</admin-state> - <description>-- Peering with DFN NREN--</description> - <bfd-liveness>true</bfd-liveness> - <group>EGEANT</group> - <min-route-advertisement>10</min-route-advertisement> - <authentication-key>RTRT5Knf8NSwaT257qntVcSMnJm8 hash2</authentication-key> - <peer-as>680</peer-as> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <import> - <policy>BOGONS</policy> - <policy>PS_RPKI_RE_NREN</policy> - <policy>PS_FROM_DFN_NREN</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_TO_DFN_NREN</policy> - </export> - </neighbor> - <neighbor> - <ip-address>208.76.14.223</ip-address> - <description>Kentik US</description> - <group>TOOLS</group> - <authentication-key>8DITvS0aXZJy6DgWlFupnz93Dk6r1SOyfEP6gzZxyg== hash2</authentication-key> - <hold-time> - <seconds>720</seconds> - </hold-time> - <family> - <ipv4>true</ipv4> - <vpn-ipv4>true</vpn-ipv4> - </family> - <cluster> - <cluster-id>62.40.119.6</cluster-id> - </cluster> - </neighbor> - <neighbor> - <ip-address>2001:798:14:10aa::a</ip-address> - <admin-state>enable</admin-state> - <description>-- Peering with DFN V6 NREN--</description> - <bfd-liveness>true</bfd-liveness> - <group>EGEANT6</group> - <min-route-advertisement>10</min-route-advertisement> - <authentication-key>RTRT5Knf8NSwaT257qntVc5utItb hash2</authentication-key> - <peer-as>680</peer-as> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <import> - <policy>BOGONS</policy> - <policy>PS_RPKI_RE_NREN</policy> - <policy>PS_FROM_DFN_NREN_V6</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_TO_DFN_NREN</policy> - </export> - </neighbor> - <neighbor> - <ip-address>2001:799:1ab::1</ip-address> - <description>rt1.ath.gr.lab.office.geant.net</description> - <group>iGEANT6</group> - </neighbor> - <neighbor> - <ip-address>2001:799:1ab::2</ip-address> - <description>rt1.ams.nl.lab.office.geant.net</description> - <group>iGEANT6</group> - </neighbor> - <neighbor> - <ip-address>2001:799:1ab::3</ip-address> - <description>rt1.bil.es.lab.office.geant.net</description> - <group>iGEANT6</group> - </neighbor> - <neighbor> - <ip-address>2001:799:1ab::4</ip-address> - <description>rt1.dub.ie.lab.office.geant.net</description> - <group>iGEANT6</group> - </neighbor> - <neighbor> - <ip-address>2001:799:1ab::5</ip-address> - <description>rt1.lon.uk.lab.office.geant.net</description> - <group>iGEANT6</group> - </neighbor> - <neighbor> - <ip-address>2001:799:1ab::7</ip-address> - <description>rt0.lon.uk.lab.office.geant.net</description> - <group>iGEANT6-P-ONLY</group> - </neighbor> - <neighbor> - <ip-address>2620:129:1:2::1</ip-address> - <description>Kentik US</description> - <group>TOOLSv6</group> - <authentication-key>8DITvS0aXZJy6DgWlFupn6F/s39Ts8wKbIS7VkNkkw== hash2</authentication-key> - <hold-time> - <seconds>720</seconds> - </hold-time> - <family> - <ipv6>true</ipv6> - <vpn-ipv6>true</vpn-ipv6> - </family> - <cluster> - <cluster-id>62.40.119.6</cluster-id> - </cluster> - </neighbor> - </bgp> - <isis> - <isis-instance>0</isis-instance> - <admin-state>enable</admin-state> - <advertise-router-capability>as</advertise-router-capability> - <ldp-sync>false</ldp-sync> - <ipv6-routing>native</ipv6-routing> - <level-capability>2</level-capability> - <router-id>62.40.119.6</router-id> - <system-id>0620.4011.9006</system-id> - <traffic-engineering>true</traffic-engineering> - <area-address>49.51e5.0001</area-address> - <overload-on-boot> - <timeout>300</timeout> - </overload-on-boot> - <loopfree-alternate> - <ti-lfa> - <node-protect> - </node-protect> - </ti-lfa> - </loopfree-alternate> - <segment-routing> - <admin-state>enable</admin-state> - <tunnel-table-pref>8</tunnel-table-pref> - <prefix-sid-range> - <global/> - </prefix-sid-range> - </segment-routing> - <interface> - <interface-name>lag-1.0</interface-name> - <admin-state>enable</admin-state> - <interface-type>point-to-point</interface-type> - <level-capability>2</level-capability> - <level> - <level-number>2</level-number> - <metric>90000</metric> - </level> - </interface> - <interface> - <interface-name>lag-2.0</interface-name> - <admin-state>enable</admin-state> - <interface-type>point-to-point</interface-type> - <level-capability>2</level-capability> - <level> - <level-number>2</level-number> - <metric>210</metric> - </level> - </interface> - <interface> - <interface-name>lag-4.0</interface-name> - <admin-state>enable</admin-state> - <interface-type>point-to-point</interface-type> - <level-capability>2</level-capability> - <level> - <level-number>2</level-number> - <metric>4100</metric> - </level> - </interface> - <interface> - <interface-name>lag-5.0</interface-name> - <admin-state>enable</admin-state> - <interface-type>point-to-point</interface-type> - <level-capability>2</level-capability> - <level> - <level-number>2</level-number> - <metric>5</metric> - </level> - </interface> - <interface> - <interface-name>lag-6.0</interface-name> - <admin-state>enable</admin-state> - <interface-type>point-to-point</interface-type> - <level-capability>2</level-capability> - <level> - <level-number>2</level-number> - <metric>1600</metric> - </level> - </interface> - <interface> - <interface-name>system</interface-name> - <admin-state>enable</admin-state> - <passive>true</passive> - <ipv4-node-sid> - <index>4006</index> - </ipv4-node-sid> - <ipv6-node-sid> - <index>6006</index> - </ipv6-node-sid> - </interface> - <level> - <level-number>2</level-number> - <wide-metrics-only>true</wide-metrics-only> - </level> - </isis> - <mpls> - <admin-state>enable</admin-state> - <interface> - <interface-name>lag-1.0</interface-name> - </interface> - <interface> - <interface-name>lag-2.0</interface-name> - </interface> - <interface> - <interface-name>lag-4.0</interface-name> - </interface> - <interface> - <interface-name>lag-5.0</interface-name> - </interface> - <interface> - <interface-name>lag-6.0</interface-name> - </interface> - <interface> - <interface-name>system</interface-name> - </interface> - </mpls> - <origin-validation> - <rpki-session> - <ip-address>172.16.100.33</ip-address> - <admin-state>enable</admin-state> - <connect-retry>30</connect-retry> - <local-address>62.40.119.6</local-address> - <port>3323</port> - <stale-time>3600</stale-time> - </rpki-session> - <rpki-session> - <ip-address>172.16.100.34</ip-address> - <admin-state>enable</admin-state> - <connect-retry>30</connect-retry> - <local-address>62.40.119.6</local-address> - <port>3323</port> - <stale-time>3600</stale-time> - </rpki-session> - </origin-validation> - <pim> - <ipv4> - <admin-state>enable</admin-state> - <rpf-table>rtable-m</rpf-table> - </ipv4> - <ipv6> - <admin-state>enable</admin-state> - <rpf-table>rtable-m</rpf-table> - </ipv6> - <interface> - <interface-name>lag-1.0</interface-name> - </interface> - <interface> - <interface-name>lag-2.0</interface-name> - </interface> - <interface> - <interface-name>lag-4.0</interface-name> - </interface> - <interface> - <interface-name>lag-5.0</interface-name> - </interface> - <interface> - <interface-name>lag-6.0</interface-name> - </interface> - <interface> - <interface-name>lag-11:100</interface-name> - <admin-state>enable</admin-state> - <ipv4> - <multicast>true</multicast> - </ipv4> - </interface> - <interface> - <interface-name>system</interface-name> - </interface> - <rp> - <ipv4> - <bsr-candidate> - <admin-state>disable</admin-state> - </bsr-candidate> - </ipv4> - <ipv6> - <bsr-candidate> - <admin-state>disable</admin-state> - </bsr-candidate> - <embedded-rp> - <admin-state>enable</admin-state> - </embedded-rp> - </ipv6> - </rp> - </pim> - <rsvp> - <admin-state>enable</admin-state> - <interface> - <interface-name>lag-1.0</interface-name> - </interface> - <interface> - <interface-name>lag-2.0</interface-name> - </interface> - <interface> - <interface-name>lag-4.0</interface-name> - </interface> - <interface> - <interface-name>lag-5.0</interface-name> - </interface> - <interface> - <interface-name>lag-6.0</interface-name> - </interface> - <interface> - <interface-name>system</interface-name> - </interface> - </rsvp> - <static-routes> - <route> - <ip-prefix>0.0.0.0/0</ip-prefix> - <route-type>unicast</route-type> - <indirect> - <ip-address>62.40.119.2</ip-address> - <admin-state>enable</admin-state> - <description>TEMP_DEFAULT1</description> - </indirect> - <indirect> - <ip-address>62.40.119.5</ip-address> - <admin-state>enable</admin-state> - <description>TEMP_DEFAULT2</description> - <preference>25</preference> - </indirect> - </route> - <route> - <ip-prefix>192.0.2.101/32</ip-prefix> - <route-type>unicast</route-type> - <blackhole> - <admin-state>enable</admin-state> - <description>USED_for_RTBH_Global</description> - </blackhole> - </route> - <route> - <ip-prefix>::/0</ip-prefix> - <route-type>unicast</route-type> - <indirect> - <ip-address>2001:799:1ab::2</ip-address> - <admin-state>enable</admin-state> - <description>Temp_default1</description> - </indirect> - <indirect> - <ip-address>2001:799:1ab::5</ip-address> - <admin-state>enable</admin-state> - <description>Temp_default2</description> - <preference>25</preference> - </indirect> - </route> - <route> - <ip-prefix>100::/64</ip-prefix> - <route-type>unicast</route-type> - <blackhole> - <admin-state>enable</admin-state> - <description>USED_for_RTBH_Global_V6</description> - </blackhole> - </route> - </static-routes> - <twamp-light> - <reflector> - <admin-state>enable</admin-state> - <udp-port>64364</udp-port> - <prefix> - <ip-prefix>10.101.1.0/24</ip-prefix> - </prefix> - </reflector> - </twamp-light> - </router> - <service> - <ies> - <service-name>GEANT_GLOBAL</service-name> - <admin-state>enable</admin-state> - <service-id>20965</service-id> - <customer>1</customer> - <interface> - <interface-name>lag-11:100</interface-name> - <description>SRV_GLOBAL CUSTOMER DFN| AS680|</description> - <ip-mtu>9000</ip-mtu> - <cflowd-parameters> - <sampling> - <sampling-type>unicast</sampling-type> - <type>interface</type> - <direction>ingress-only</direction> - <sample-profile>1</sample-profile> - </sampling> - </cflowd-parameters> - <sap> - <sap-id>lag-11:100</sap-id> - <admin-state>enable</admin-state> - </sap> - <ipv4> - <primary> - <address>62.40.124.217</address> - <prefix-length>30</prefix-length> - </primary> - </ipv4> - <ipv6> - <address> - <ipv6-address>2001:798:14:10aa::9</ipv6-address> - <prefix-length>126</prefix-length> - </address> - </ipv6> - </interface> - </ies> - <vprn> - <service-name>IAS</service-name> - <admin-state>enable</admin-state> - <description>GEANT IAS Internet VRF</description> - <service-id>21320</service-id> - <customer>1</customer> - <autonomous-system>21320</autonomous-system> - <bgp-ipvpn> - <mpls> - <admin-state>enable</admin-state> - <route-distinguisher>20965:333</route-distinguisher> - <vrf-target> - <community>target:20965:333</community> - </vrf-target> - <auto-bind-tunnel> - <resolution>filter</resolution> - <resolution-filter> - <sr-isis>true</sr-isis> - </resolution-filter> - </auto-bind-tunnel> - </mpls> - </bgp-ipvpn> - <bgp> - <family> - <ipv6>true</ipv6> - </family> - <best-path-selection> - <compare-origin-validation-state>true</compare-origin-validation-state> - <origin-invalid-unusable>true</origin-invalid-unusable> - </best-path-selection> - <group> - <group-name>GEANT_NRENS</group-name> - <admin-state>enable</admin-state> - <type>external</type> - <bfd-liveness>true</bfd-liveness> - <family> - <ipv4>true</ipv4> - </family> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <local-as> - <as-number>21320</as-number> - <prepend-global-as>false</prepend-global-as> - </local-as> - <origin-validation> - <ipv4>true</ipv4> - </origin-validation> - <import> - <policy>PS_RPKI_IAS_NREN</policy> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - </export> - </group> - <group> - <group-name>GEANT_NRENS6</group-name> - <admin-state>enable</admin-state> - <type>external</type> - <bfd-liveness>true</bfd-liveness> - <family> - <ipv6>true</ipv6> - </family> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <local-as> - <as-number>21320</as-number> - <prepend-global-as>false</prepend-global-as> - </local-as> - <origin-validation> - <ipv6>true</ipv6> - </origin-validation> - <import> - <policy>PS_RPKI_IAS_NREN</policy> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - </export> - </group> - <group> - <group-name>GEANT_PEERS</group-name> - <admin-state>enable</admin-state> - <bfd-liveness>true</bfd-liveness> - <family> - <ipv4>true</ipv4> - </family> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <local-as> - <as-number>21320</as-number> - <prepend-global-as>false</prepend-global-as> - </local-as> - <origin-validation> - <ipv4>true</ipv4> - </origin-validation> - <import> - <policy>PS_RPKI_IAS_PEER</policy> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - </export> - </group> - <group> - <group-name>GEANT_PEERS6</group-name> - <admin-state>enable</admin-state> - <bfd-liveness>true</bfd-liveness> - <family> - <ipv6>true</ipv6> - </family> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <local-as> - <as-number>21320</as-number> - <prepend-global-as>false</prepend-global-as> - </local-as> - <origin-validation> - <ipv6>true</ipv6> - </origin-validation> - <import> - <policy>PS_RPKI_IAS_PEER</policy> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - </export> - </group> - <neighbor> - <ip-address>83.97.88.246</ip-address> - <admin-state>enable</admin-state> - <description>-- Peering with DFN --</description> - <bfd-liveness>true</bfd-liveness> - <group>GEANT_NRENS</group> - <authentication-key>RTRT5Knf8NSwaT257qntVV2RgDBc hash2</authentication-key> - <local-address>83.97.88.245</local-address> - <type>external</type> - <peer-as>680</peer-as> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <local-as> - <as-number>21320</as-number> - </local-as> - <import> - <policy>PS_AS_SELF_REJECT</policy> - <policy>BOGONS</policy> - <policy>PS_RPKI_IAS_NREN</policy> - <policy>PS_FROM_DFN_NREN</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_IAS_TO_DFN_NREN</policy> - </export> - <prefix-limit> - <family>ipv4</family> - <maximum>125000</maximum> - </prefix-limit> - </neighbor> - <neighbor> - <ip-address>2001:7f8:3c::36</ip-address> - <admin-state>enable</admin-state> - <description>-- V6 Peering with DFN --</description> - <bfd-liveness>true</bfd-liveness> - <group>GEANT_NRENS6</group> - <authentication-key>RTRT5Knf8NSwaT257qntVbCj5xd/ hash2</authentication-key> - <local-address>2001:7f8:3c::35</local-address> - <type>external</type> - <peer-as>680</peer-as> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <local-as> - <as-number>21320</as-number> - </local-as> - <import> - <policy>PS_AS_SELF_REJECT</policy> - <policy>BOGONS</policy> - <policy>PS_RPKI_IAS_NREN</policy> - <policy>PS_FROM_DFN_V6_NREN</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_IAS_TO_DFN_V6_NREN</policy> - </export> - </neighbor> - </bgp> - <interface> - <interface-name>LAG-11.333</interface-name> - <admin-state>enable</admin-state> - <description>SRV_IAS CUSTOMER DFN #DFN-AP1-IAS IASPS $GS-xxxx | ASN680 |</description> - <ip-mtu>1500</ip-mtu> - <ipv4> - <bfd> - <admin-state>enable</admin-state> - <transmit-interval>3000</transmit-interval> - <receive>3000</receive> - </bfd> - <primary> - <address>83.97.88.245</address> - <prefix-length>30</prefix-length> - </primary> - </ipv4> - <sap> - <sap-id>lag-11:333</sap-id> - <admin-state>enable</admin-state> - </sap> - <ipv6> - <address> - <ipv6-address>2001:7f8:3c::35</ipv6-address> - <prefix-length>126</prefix-length> - </address> - </ipv6> - </interface> - <static-routes> - <route> - <ip-prefix>0.0.0.0/0</ip-prefix> - <route-type>unicast</route-type> - <blackhole> - <admin-state>enable</admin-state> - </blackhole> - </route> - <route> - <ip-prefix>83.97.88.0/21</ip-prefix> - <route-type>unicast</route-type> - <community>21320:64912</community> - <community>64700:65532</community> - <community>64700:65533</community> - <community>64700:65534</community> - <blackhole> - <admin-state>enable</admin-state> - </blackhole> - </route> - <route> - <ip-prefix>192.0.2.101/32</ip-prefix> - <route-type>unicast</route-type> - <blackhole> - <admin-state>enable</admin-state> - <description>RTBH_V4</description> - </blackhole> - </route> - <route> - <ip-prefix>::/0</ip-prefix> - <route-type>unicast</route-type> - <blackhole> - <admin-state>enable</admin-state> - </blackhole> - </route> - <route> - <ip-prefix>100::/64</ip-prefix> - <route-type>unicast</route-type> - <blackhole> - <admin-state>enable</admin-state> - <description>RTBH_V6</description> - </blackhole> - </route> - <route> - <ip-prefix>2001:798:1::/48</ip-prefix> - <route-type>unicast</route-type> - <community>21320:64912</community> - <blackhole> - <admin-state>enable</admin-state> - </blackhole> - </route> - </static-routes> - <flowspec> - <ip-filter-max-size>100</ip-filter-max-size> - <ipv6-filter-max-size>100</ipv6-filter-max-size> - </flowspec> - </vprn> - <vprn> - <service-name>LHCONE_L3VPN</service-name> - <admin-state>enable</admin-state> - <description>L3 BGP/MPLS VPN for LHCONE</description> - <service-id>111</service-id> - <customer>1</customer> - <autonomous-system>20965</autonomous-system> - <bgp-ipvpn> - <mpls> - <admin-state>enable</admin-state> - <route-distinguisher>20965:111</route-distinguisher> - <vrf-target> - <community>target:20965:111</community> - </vrf-target> - <auto-bind-tunnel> - <resolution>filter</resolution> - <resolution-filter> - <sr-isis>true</sr-isis> - </resolution-filter> - </auto-bind-tunnel> - </mpls> - </bgp-ipvpn> - <bgp> - <family> - <ipv6>true</ipv6> - </family> - <group> - <group-name>LHCONE_NRENS</group-name> - <admin-state>enable</admin-state> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <local-as> - <as-number>20965</as-number> - </local-as> - <import> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - </export> - </group> - <neighbor> - <ip-address>62.40.126.185</ip-address> - <admin-state>enable</admin-state> - <description>LHCONE_PEERING_DFN |AS680</description> - <bfd-liveness>true</bfd-liveness> - <group>LHCONE_NRENS</group> - <authentication-key>RTRT5Knf8NSwaT257qntVdSwO5fI hash2</authentication-key> - <local-address>62.40.126.184</local-address> - <type>external</type> - <peer-as>680</peer-as> - <family> - <ipv4>true</ipv4> - <mcast-ipv4>true</mcast-ipv4> - </family> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <import> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - <policy>PS_FROM_LHCONE_NREN</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - <policy>PS_TO_LHCONE_NREN</policy> - </export> - </neighbor> - <neighbor> - <ip-address>2001:798:111:1::32</ip-address> - <admin-state>enable</admin-state> - <group>LHCONE_NRENS</group> - <authentication-key>RTRT5Knf8NSwaT257qntVe3+cMtK hash2</authentication-key> - <local-address>2001:798:111:1::31</local-address> - <type>external</type> - <peer-as>680</peer-as> - <family> - <ipv6>true</ipv6> - <mcast-ipv6>true</mcast-ipv6> - </family> - <ebgp-default-reject-policy> - <import>true</import> - <export>true</export> - </ebgp-default-reject-policy> - <import> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - <policy>PS_FROM_LHCONE_NREN</policy> - </import> - <export> - <policy>BOGONS</policy> - <policy>PS_PRIVATE_AS_BLOCK</policy> - <policy>PS_TO_LHCONE_NREN</policy> - </export> - </neighbor> - </bgp> - <interface> - <interface-name>LAG-11.111</interface-name> - <admin-state>enable</admin-state> - <description>SRV_L3VPN CUSTOMER DFN AP-LHCONE</description> - <ip-mtu>9000</ip-mtu> - <ipv4> - <bfd> - <admin-state>enable</admin-state> - <transmit-interval>3000</transmit-interval> - <receive>3000</receive> - </bfd> - <primary> - <address>62.40.126.184</address> - <prefix-length>31</prefix-length> - </primary> - </ipv4> - <sap> - <sap-id>lag-11:111</sap-id> - <admin-state>enable</admin-state> - </sap> - <ipv6> - <address> - <ipv6-address>2001:798:111:1::31</ipv6-address> - <prefix-length>126</prefix-length> - </address> - </ipv6> - </interface> - </vprn> - </service> - <sfm> - <sfm-slot>1</sfm-slot> - <admin-state>enable</admin-state> - <sfm-type>sfm2-s</sfm-type> - </sfm> - <sfm> - <sfm-slot>2</sfm-slot> - <admin-state>enable</admin-state> - <sfm-type>sfm2-s</sfm-type> - </sfm> - <sfm> - <sfm-slot>3</sfm-slot> - <admin-state>enable</admin-state> - <sfm-type>sfm2-s</sfm-type> - </sfm> - <sfm> - <sfm-slot>4</sfm-slot> - <admin-state>enable</admin-state> - <sfm-type>sfm2-s</sfm-type> - </sfm> - <system> - <contact>GEANT OC, support@oc.geant.net, +44 (0) 1223 733033</contact> - <name>rt0.ams.nl</name> - <location>Amsterdam,The Netherlands,[52.35640299542275,4.952931412236851]</location> - <load-balancing> - <l4-load-balancing>true</l4-load-balancing> - <lsr-load-balancing>lbl-ip-l4-teid</lsr-load-balancing> - <system-ip-load-balancing>true</system-ip-load-balancing> - </load-balancing> - <management-interface> - <configuration-mode>model-driven</configuration-mode> - <cli> - <md-cli> - <auto-config-save>true</auto-config-save> - </md-cli> - </cli> - <configuration-save> - <configuration-backups>5</configuration-backups> - <incremental-saves>false</incremental-saves> - </configuration-save> - <netconf> - <admin-state>enable</admin-state> - <auto-config-save>true</auto-config-save> - </netconf> - <yang-modules> - <nokia-submodules>true</nokia-submodules> - <nokia-combined-modules>false</nokia-combined-modules> - </yang-modules> - <snmp> - <admin-state>enable</admin-state> - </snmp> - </management-interface> - <power-management> - <power-zone>1</power-zone> - <mode>none</mode> - <power-safety-level>67</power-safety-level> - </power-management> - <bluetooth> - <advertising-timeout>30</advertising-timeout> - </bluetooth> - <login-control> - <motd> - <text>--------------------------------------------------------------------------------------------------\nThis is rt0.ams.nl.lab.office.geant.net, a GEANT Router in Amsterdam, The Netherlands\nWarning Unauthorized access to this equipment is strictly forbidden and will lead to prosecution\n--------------------------------------------------------------------------------------------------\n</text> - </motd> - <pre-login-message> - <message>---------------------------------------------------------\nUnauthorized access to this system/network is prohibited.\n---------------------------------------------------------\n</message> - </pre-login-message> - </login-control> - <security> - <dist-cpu-protection> - <policy> - <policy-name>_default-network-policy</policy-name> - <protocol> - <protocol-name>icmp</protocol-name> - <enforcement> - <static> - <policer-name>ICMP_LIMIT</policer-name> - </static> - </enforcement> - </protocol> - <static-policer> - <policer-name>ICMP_LIMIT</policer-name> - <exceed-action> - <action>discard</action> - </exceed-action> - <rate> - <kbps> - <limit>12000</limit> - <mbs>112500</mbs> - </kbps> - </rate> - </static-policer> - </policy> - </dist-cpu-protection> - <source-address> - <ipv4> - <application>radius</application> - <interface-name>system</interface-name> - </ipv4> - <ipv4> - <application>snmptrap</application> - <interface-name>system</interface-name> - </ipv4> - <ipv4> - <application>syslog</application> - <interface-name>system</interface-name> - </ipv4> - <ipv4> - <application>dns</application> - <interface-name>system</interface-name> - </ipv4> - <ipv4> - <application>ntp</application> - <interface-name>system</interface-name> - </ipv4> - <ipv4> - <application>cflowd</application> - <interface-name>system</interface-name> - </ipv4> - </source-address> - <aaa> - <health-check>none</health-check> - <remote-servers> - <radius> - <authorization>true</authorization> - <server> - <index>1</index> - <address>83.97.94.130</address> - <secret>oYneem3baL16yGOeqRnqCy4vY31EW5azKXZ2s/tL6ywyw9GU hash2</secret> - </server> - <server> - <index>2</index> - <address>83.97.94.129</address> - <secret>oYneem3baL16yGOeqRnqC7OH+f/iW/z+dGseiBhyD7zynDWM hash2</secret> - </server> - </radius> - </remote-servers> - <local-profiles> - <profile> - <user-profile-name>GOC</user-profile-name> - <default-action>permit-all</default-action> - </profile> - <profile> - <user-profile-name>administrative</user-profile-name> - <default-action>permit-all</default-action> - <entry> - <entry-id>10</entry-id> - <match>configure system security</match> - <action>permit</action> - </entry> - <entry> - <entry-id>20</entry-id> - <match>show system security</match> - <action>permit</action> - </entry> - <entry> - <entry-id>30</entry-id> - <match>tools perform security</match> - <action>permit</action> - </entry> - <entry> - <entry-id>40</entry-id> - <match>tools dump security</match> - <action>permit</action> - </entry> - <entry> - <entry-id>50</entry-id> - <match>admin system security</match> - <action>permit</action> - </entry> - <entry> - <entry-id>60</entry-id> - <match>configure li</match> - <action>deny</action> - </entry> - <entry> - <entry-id>70</entry-id> - <match>show li</match> - <action>deny</action> - </entry> - <entry> - <entry-id>80</entry-id> - <match>clear li</match> - <action>deny</action> - </entry> - <entry> - <entry-id>90</entry-id> - <match>tools dump li</match> - <action>deny</action> - </entry> - <netconf> - <base-op-authorization> - <action>true</action> - <cancel-commit>true</cancel-commit> - <close-session>true</close-session> - <commit>true</commit> - <copy-config>true</copy-config> - <create-subscription>true</create-subscription> - <delete-config>true</delete-config> - <discard-changes>true</discard-changes> - <edit-config>true</edit-config> - <get>true</get> - <get-config>true</get-config> - <get-data>true</get-data> - <get-schema>true</get-schema> - <kill-session>true</kill-session> - <lock>true</lock> - <validate>true</validate> - </base-op-authorization> - </netconf> - </profile> - <profile> - <user-profile-name>config_backup</user-profile-name> - <default-action>deny-all</default-action> - <entry> - <entry-id>10</entry-id> - <match>logout</match> - <action>permit</action> - </entry> - <entry> - <entry-id>20</entry-id> - <match>show system information</match> - <action>permit</action> - </entry> - <entry> - <entry-id>30</entry-id> - <match>show log</match> - <action>permit</action> - </entry> - <entry> - <entry-id>40</entry-id> - <match>show card state</match> - <action>permit</action> - </entry> - <entry> - <entry-id>50</entry-id> - <match>show chassis</match> - <action>permit</action> - </entry> - <entry> - <entry-id>60</entry-id> - <match>file show</match> - <action>permit</action> - </entry> - <entry> - <entry-id>70</entry-id> - <match>admin show configuration bof</match> - <action>permit</action> - </entry> - <entry> - <entry-id>80</entry-id> - <match>admin show configuration configure</match> - <action>permit</action> - </entry> - <entry> - <entry-id>90</entry-id> - <match>admin show configuration debug</match> - <action>permit</action> - </entry> - <entry> - <entry-id>100</entry-id> - <match>environment more</match> - <action>permit</action> - </entry> - <entry> - <entry-id>110</entry-id> - <match>admin show configuration</match> - <action>permit</action> - </entry> - <entry> - <entry-id>120</entry-id> - <match>show mda detail</match> - <action>permit</action> - </entry> - <entry> - <entry-id>130</entry-id> - <match>show card detail</match> - <action>permit</action> - </entry> - <entry> - <entry-id>140</entry-id> - <match>show port detail</match> - <action>permit</action> - </entry> - <entry> - <entry-id>150</entry-id> - <match>show system management-interface commit-history</match> - <action>permit</action> - </entry> - <entry> - <entry-id>160</entry-id> - <match>show redundancy synchronization</match> - <action>permit</action> - </entry> - <entry> - <entry-id>170</entry-id> - <match>show version</match> - <action>permit</action> - </entry> - </profile> - <profile> - <user-profile-name>default</user-profile-name> - <entry> - <entry-id>10</entry-id> - <match>exec</match> - <action>permit</action> - </entry> - <entry> - <entry-id>20</entry-id> - <match>exit</match> - <action>permit</action> - </entry> - <entry> - <entry-id>30</entry-id> - <match>help</match> - <action>permit</action> - </entry> - <entry> - <entry-id>40</entry-id> - <match>logout</match> - <action>permit</action> - </entry> - <entry> - <entry-id>50</entry-id> - <match>password</match> - <action>permit</action> - </entry> - <entry> - <entry-id>60</entry-id> - <match>show config</match> - <action>deny</action> - </entry> - <entry> - <entry-id>65</entry-id> - <match>show li</match> - <action>deny</action> - </entry> - <entry> - <entry-id>66</entry-id> - <match>clear li</match> - <action>deny</action> - </entry> - <entry> - <entry-id>67</entry-id> - <match>tools dump li</match> - <action>deny</action> - </entry> - <entry> - <entry-id>68</entry-id> - <match>state li</match> - <action>deny</action> - </entry> - <entry> - <entry-id>70</entry-id> - <match>show</match> - <action>permit</action> - </entry> - <entry> - <entry-id>75</entry-id> - <match>state</match> - <action>permit</action> - </entry> - <entry> - <entry-id>80</entry-id> - <match>enable-admin</match> - <action>permit</action> - </entry> - <entry> - <entry-id>90</entry-id> - <match>enable</match> - <action>permit</action> - </entry> - <entry> - <entry-id>100</entry-id> - <match>configure li</match> - <action>deny</action> - </entry> - </profile> - <profile> - <user-profile-name>netconf_example</user-profile-name> - <default-action>deny-all</default-action> - <entry> - <entry-id>10</entry-id> - <match>logout</match> - <action>permit</action> - </entry> - <netconf> - <base-op-authorization> - <action>true</action> - <close-session>true</close-session> - <get-config>true</get-config> - <get-schema>true</get-schema> - </base-op-authorization> - </netconf> - </profile> - <profile> - <user-profile-name>netconf_inprov</user-profile-name> - <default-action>read-only-all</default-action> - <entry> - <entry-id>10</entry-id> - <match>logout</match> - <action>permit</action> - </entry> - <entry> - <entry-id>20</entry-id> - <match>show port</match> - <action>permit</action> - </entry> - <entry> - <entry-id>30</entry-id> - <match>show lag</match> - <action>permit</action> - </entry> - <entry> - <entry-id>40</entry-id> - <match>show router interface</match> - <action>permit</action> - </entry> - <entry> - <entry-id>50</entry-id> - <match>show system</match> - <action>permit</action> - </entry> - <entry> - <entry-id>60</entry-id> - <match>show chassis</match> - <action>permit</action> - </entry> - <entry> - <entry-id>70</entry-id> - <match>show card</match> - <action>permit</action> - </entry> - <netconf> - <base-op-authorization> - <close-session>true</close-session> - <get>true</get> - <get-config>true</get-config> - <get-schema>true</get-schema> - </base-op-authorization> - </netconf> - </profile> - <profile> - <user-profile-name>nomios</user-profile-name> - <default-action>deny-all</default-action> - <entry> - <entry-id>10</entry-id> - <match>logout</match> - <action>permit</action> - </entry> - <entry> - <entry-id>20</entry-id> - <match>ping</match> - <action>permit</action> - </entry> - <entry> - <entry-id>30</entry-id> - <match>traceroute</match> - <action>permit</action> - </entry> - <entry> - <entry-id>40</entry-id> - <match>show router</match> - <action>permit</action> - </entry> - <entry> - <entry-id>50</entry-id> - <match>show system</match> - <action>permit</action> - </entry> - <entry> - <entry-id>60</entry-id> - <match>show</match> - <action>permit</action> - </entry> - <entry> - <entry-id>70</entry-id> - <match>monitor</match> - <action>permit</action> - </entry> - <entry> - <entry-id>80</entry-id> - <match>file</match> - <action>permit</action> - </entry> - <entry> - <entry-id>90</entry-id> - <match>admin show configuration</match> - <action>permit</action> - </entry> - </profile> - <profile> - <user-profile-name>restricted-mon</user-profile-name> - <default-action>deny-all</default-action> - <entry> - <entry-id>10</entry-id> - <match>logout</match> - <action>permit</action> - </entry> - <entry> - <entry-id>20</entry-id> - <match>show users</match> - <action>permit</action> - </entry> - <entry> - <entry-id>30</entry-id> - <match>show port</match> - <action>permit</action> - </entry> - <entry> - <entry-id>40</entry-id> - <match>show lag</match> - <action>permit</action> - </entry> - <entry> - <entry-id>50</entry-id> - <match>monitor port</match> - <action>permit</action> - </entry> - <entry> - <entry-id>60</entry-id> - <match>monitor lag</match> - <action>permit</action> - </entry> - <entry> - <entry-id>70</entry-id> - <match>show router interface</match> - <action>permit</action> - </entry> - <entry> - <entry-id>80</entry-id> - <match>ping</match> - <action>permit</action> - </entry> - <entry> - <entry-id>90</entry-id> - <match>show router</match> - <action>permit</action> - </entry> - <entry> - <entry-id>100</entry-id> - <match>show snmp</match> - <action>permit</action> - </entry> - <entry> - <entry-id>110</entry-id> - <match>show system</match> - <action>permit</action> - </entry> - <entry> - <entry-id>120</entry-id> - <match>show chassis</match> - <action>permit</action> - </entry> - <entry> - <entry-id>130</entry-id> - <match>show card</match> - <action>permit</action> - </entry> - <entry> - <entry-id>140</entry-id> - <match>show mda</match> - <action>permit</action> - </entry> - <entry> - <entry-id>150</entry-id> - <match>show sfm</match> - <action>permit</action> - </entry> - <entry> - <entry-id>160</entry-id> - <match>show service</match> - <action>permit</action> - </entry> - <entry> - <entry-id>170</entry-id> - <match>admin show configuration</match> - <action>permit</action> - </entry> - <entry> - <entry-id>180</entry-id> - <match>admin display-config</match> - <action>permit</action> - </entry> - <entry> - <entry-id>190</entry-id> - <match>environment</match> - <action>permit</action> - </entry> - </profile> - </local-profiles> - </aaa> - <cpm-filter> - <default-action>drop</default-action> - <ip-filter> - <admin-state>enable</admin-state> - <entry> - <entry-id>10</entry-id> - <description>BGP_PEERS_BASE</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-BGP_PEERS_BASE-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>20</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_OFFICE_NETWORKS</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>30</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_VPN_NETWORKS</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>40</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_RANCID</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>50</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>NOMIOS_SUPPORT</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>60</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_LIBRENMS</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>70</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_IMS</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>80</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_GAP</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>90</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_GAP_GSO_UAT</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>100</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_DASHBOARD</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>110</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_LOOKING_GLASS</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>120</entry-id> - <description>SSH</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_NE_SERVERS</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>130</entry-id> - <description>ICMPV4</description> - <match> - <protocol>icmp</protocol> - <icmp> - <type>0</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>140</entry-id> - <description>ICMPV4</description> - <match> - <protocol>icmp</protocol> - <icmp> - <type>3</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>150</entry-id> - <description>ICMPV4</description> - <match> - <protocol>icmp</protocol> - <icmp> - <type>8</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>160</entry-id> - <description>ICMPV4</description> - <match> - <protocol>icmp</protocol> - <icmp> - <type>11</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>170</entry-id> - <description>ICMPV4</description> - <match> - <protocol>icmp</protocol> - <icmp> - <type>13</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>180</entry-id> - <description>ICMPV4</description> - <match> - <protocol>icmp</protocol> - <icmp> - <type>14</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>190</entry-id> - <description>TWAMP</description> - <match> - <protocol>tcp-udp</protocol> - <src-ip> - <ip-prefix-list>TWAMP_CLIENTS</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-TWAMP-DST_PORT_RANGE</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>200</entry-id> - <description>TWAMP_682</description> - <match> - <protocol>tcp-udp</protocol> - <src-ip> - <ip-prefix-list>TWAMP_CLIENTS</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-TWAMP_682-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>210</entry-id> - <description>NETCONF</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_GAP</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-NETCONF-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>220</entry-id> - <description>NETCONF</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_GAP_GSO_UAT</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-NETCONF-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>230</entry-id> - <description>NETCONF</description> - <match> - <protocol>tcp</protocol> - <src-ip> - <ip-prefix-list>GEANT_DASHBOARD</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-NETCONF-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>240</entry-id> - <description>RADIUS</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>GEANT_DC</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-RADIUS-PORT_RANGE</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>250</entry-id> - <description>NTP</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>GEANT_NTP</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-NTP-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>260</entry-id> - <description>NTP</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>PUBLIC_NTP</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-NTP-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>270</entry-id> - <description>SNMP</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>GEANT_LIBRENMS</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-SNMP-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>280</entry-id> - <description>SNMP</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>GEANT_SNMP</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-SNMP-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>290</entry-id> - <description>SNMP</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>GEANT_SNMP_UAT</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-SNMP-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>295</entry-id> - <description>SNMP</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>TOOLS_KENTIK</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-SNMP-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>300</entry-id> - <description>PIM</description> - <match> - <protocol>pim</protocol> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>310</entry-id> - <description>RSVP</description> - <match> - <protocol>rsvp</protocol> - <src-ip> - <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> - </src-ip> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>315</entry-id> - <description>TRACEROUTE</description> - <match> - <protocol>udp</protocol> - <port> - <port-list>CPMF_V4-TRACEROUTE-PORT_RANGE</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>320</entry-id> - <description>T_LDP</description> - <match> - <protocol>tcp-udp</protocol> - <src-ip> - <ip-prefix-list>GEANT_ROUTERS</ip-prefix-list> - </src-ip> - <port> - <eq>646</eq> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>330</entry-id> - <description>DNS</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>GEANT_DNS</ip-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V4-DNS-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>340</entry-id> - <description>MICRO_BFD</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>GEANT_ROUTERS</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-MICRO_BFD-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>350</entry-id> - <description>T_LDP</description> - <match> - <protocol>tcp-udp</protocol> - <src-ip> - <ip-prefix-list>GEANT_ROUTERS</ip-prefix-list> - </src-ip> - <port> - <eq>646</eq> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>355</entry-id> - <description>RPKI</description> - <match> - <protocol>tcp</protocol> - <src-port> - <port-list>CPMF_V4_RPKI_PORTS</port-list> - </src-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>360</entry-id> - <description>BFD_EBGP</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-BFD-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>370</entry-id> - <description>MH_BFD_EBGP</description> - <match> - <protocol>udp</protocol> - <src-ip> - <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V4-MULTIHOP-BFD-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>380</entry-id> - <description>GRE</description> - <match> - <protocol>gre</protocol> - <src-ip> - <ip-prefix-list>EXTERNAL_GRE</ip-prefix-list> - </src-ip> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>390</entry-id> - <description>IGMP</description> - <match> - <protocol>igmp</protocol> - <src-ip> - <ip-prefix-list>EXTERNAL_IGMP</ip-prefix-list> - </src-ip> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>400</entry-id> - <description>VRRP</description> - <match> - <protocol>vrrp</protocol> - <dst-ip> - <ip-prefix-list>GEANT_DC_VRRP</ip-prefix-list> - </dst-ip> - </match> - <action> - <accept/> - </action> - </entry> - </ip-filter> - <ipv6-filter> - <admin-state>enable</admin-state> - <entry> - <entry-id>10</entry-id> - <description>BGP_PEERS_BASE</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V6-BGP_PEERS_BASE-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>20</entry-id> - <description>SSH</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_OFFICE_NETWORKS</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>30</entry-id> - <description>SSH</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_VPN_NETWORKS</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>40</entry-id> - <description>SSH</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_RANCID</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>50</entry-id> - <description>SSH</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_LIBRENMS</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>60</entry-id> - <description>SSH</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_IMS</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>70</entry-id> - <description>SSH</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_GAP</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>80</entry-id> - <description>SSH</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_GAP_GSO_UAT</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>90</entry-id> - <description>SSH</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_DASHBOARD</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>100</entry-id> - <description>SSH</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_LOOKING_GLASS</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>110</entry-id> - <description>SSH</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_NE_SERVERS</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-SSH-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>120</entry-id> - <description>NETCONF</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_GAP</ipv6-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V6-NETCONF-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>130</entry-id> - <description>NETCONF</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_GAP_GSO_UAT</ipv6-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V6-NETCONF-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>140</entry-id> - <description>NETCONF</description> - <match> - <next-header>tcp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_DASHBOARD</ipv6-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V6-NETCONF-PORTS</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>150</entry-id> - <description>PIM</description> - <match> - <next-header>pim</next-header> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>160</entry-id> - <description>ICMP_GEANT</description> - <match> - <next-header>ipv6-icmp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_IPV6_NETWORKS</ipv6-prefix-list> - </src-ip> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>170</entry-id> - <description>ICMP_GLOBAL</description> - <match> - <next-header>ipv6-icmp</next-header> - <icmp> - <type>1</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>180</entry-id> - <description>ICMP_GLOBAL</description> - <match> - <next-header>ipv6-icmp</next-header> - <icmp> - <type>2</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>190</entry-id> - <description>ICMP_GLOBAL</description> - <match> - <next-header>ipv6-icmp</next-header> - <icmp> - <type>3</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>200</entry-id> - <description>ICMP_GLOBAL</description> - <match> - <next-header>ipv6-icmp</next-header> - <icmp> - <type>4</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>210</entry-id> - <description>ICMP_GLOBAL</description> - <match> - <next-header>ipv6-icmp</next-header> - <icmp> - <type>128</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>220</entry-id> - <description>ICMP_GLOBAL</description> - <match> - <next-header>ipv6-icmp</next-header> - <icmp> - <type>129</type> - </icmp> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>230</entry-id> - <description>ICMP_ND</description> - <match> - <next-header>ipv6-icmp</next-header> - <dst-ip> - <ipv6-prefix-list>IPV6_ND</ipv6-prefix-list> - </dst-ip> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>240</entry-id> - <description>TRACEROUTE</description> - <match> - <next-header>udp</next-header> - <src-ip> - <ipv6-prefix-list>GEANT_ADDRESS_SPACE</ipv6-prefix-list> - </src-ip> - <port> - <port-list>CPMF_V6-TRACEROUTE-PORT_RANGE</port-list> - </port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>280</entry-id> - <description>MLD</description> - <match> - <next-header>58</next-header> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>300</entry-id> - <description>VRRP</description> - <match> - <next-header>vrrp</next-header> - <dst-ip> - <ipv6-prefix-list>GEANT_IPV6_DC_VRRP</ipv6-prefix-list> - </dst-ip> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>340</entry-id> - <description>BFD_EBGP</description> - <match> - <next-header>udp</next-header> - <src-ip> - <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-BFD-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - <entry> - <entry-id>360</entry-id> - <description>MH_BFD_EBGP</description> - <match> - <next-header>udp</next-header> - <src-ip> - <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> - </src-ip> - <dst-port> - <port-list>CPMF_V6-MULTIHOP-BFD-DST_PORTS</port-list> - </dst-port> - </match> - <action> - <accept/> - </action> - </entry> - </ipv6-filter> - </cpm-filter> - <snmp> - <access> - <group>TIMEMAP_VIEW</group> - <context/> - <security-model>snmpv2c</security-model> - <security-level>no-auth-no-privacy</security-level> - <read>TIMEMAP_VIEW</read> - </access> - <community> - <community-string>lO4FkzXlh+UBzEv5BhPggdXcfzE= hash2</community-string> - <access-permissions>r</access-permissions> - </community> - <community> - <community-string>zQyAqg9SYWLrzLBYiTybvsQYcGBBMj1EMVQwJcml hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_tools_mon</source-access-list> - </community> - <community> - <community-string>i0mzNdj0HzPYfU+39WQ8r7GWAZTalWPl0J4= hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_tools_mon</source-access-list> - </community> - <community> - <community-string>ubJcrJkB1hc0UdS6lPxjFpvfCQZLvlZzXpmqhzVUa2Eibg== hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_tools_mon</source-access-list> - </community> - <community> - <community-string>uGThXBKL7ddEUwPoLs0SFx3Bp+leyJdMYcNo1nU= hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_kentik</source-access-list> - </community> - <community> - <community-string>L9NkytHUeg0UTLF+MnUho+Sa31merj4glQ== hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_tools_mon</source-access-list> - </community> - <community> - <community-string>VhwJVM2ldShxI+56jgMGFniEDE7ElNx830kkvdit hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_tools_mon</source-access-list> - </community> - <community> - <community-string>/1IkmOhOpLBshXO9mSH4SZsY15ZGlEywrugOku7Xvp43 hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_global-oc-servers</source-access-list> - </community> - <community> - <community-string>Qr2f8qbBy/hUXEsGDHcEHHG1f4cd7/v3iiTs8Vvt1UWmZQ== hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_librenms</source-access-list> - </community> - <community> - <community-string>ochB1k6FYz7RKZpt/znwjNoJdA+jra6T54E= hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_brian</source-access-list> - </community> - <community> - <community-string>XXKUcZ4zOsQg3H1nOiZvXR8NzGP9wtaCPIkEtWoa hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_dashboard</source-access-list> - </community> - <community> - <community-string>KZ9KjiniM3QC+rnFJqBugdMWHEpuUdG+nI0h hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_inprov</source-access-list> - </community> - <community> - <community-string>MOcM8epLpi88h5dlFL58CLWNeoCs2J3dHTI= hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_brian</source-access-list> - </community> - <community> - <community-string>sAn9155I4QCm8u6kMA38+rL6J2YRal5SfgOmNZxw hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_dashboard</source-access-list> - </community> - <community> - <community-string>DcCEYGV5n2ukDbk/QlOzdzBFRb6Pj3+6SlVK hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_inprov</source-access-list> - </community> - <community> - <community-string>Hfvmpr5kAclNP3gm2NuXjy0gUJD3EGHz7g== hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_brian</source-access-list> - </community> - <community> - <community-string>fif3vWRbIsSVNN/KHjcFx1Pg9X8BlD8hyWcPY3Y= hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_dashboard</source-access-list> - </community> - <community> - <community-string>tLZHtisSDHHQVpFxwQ4HMtefVeY2IIfctzw= hash2</community-string> - <access-permissions>r</access-permissions> - <version>v2c</version> - <source-access-list>snmp_inprov</source-access-list> - </community> - <usm-community> - <community-string>8SAN4EbsP7Og0Hhe40PyiXsCVaDd0PZXaf8= hash2</community-string> - <group>TIMEMAP_VIEW</group> - <source-access-list>snmp_3VfrNKak</source-access-list> - </usm-community> - <source-access-list> - <list-name>snmp_3VfrNKak</list-name> - <source-host> - <host-name>3VfrNKak_TIMEMAP-01</host-name> - <address>193.219.48.249</address> - </source-host> - <source-host> - <host-name>3VfrNKak_TIMEMAP-02</host-name> - <address>193.219.48.250</address> - </source-host> - <source-host> - <host-name>3VfrNKak_TIMEMAP-03</host-name> - <address>83.97.94.180</address> - </source-host> - <source-host> - <host-name>3VfrNKak_TIMEMAP-04</host-name> - <address>83.97.95.193</address> - </source-host> - <source-host> - <host-name>3VfrNKak_TIMEMAP-05</host-name> - <address>83.97.95.194</address> - </source-host> - <source-host> - <host-name>3VfrNKak_TIMEMAP-06</host-name> - <address>83.97.95.195</address> - </source-host> - </source-access-list> - <source-access-list> - <list-name>snmp_brian</list-name> - <source-host> - <host-name>prod-poller-sensu-agent01</host-name> - <address>83.97.95.11</address> - </source-host> - <source-host> - <host-name>prod-poller-sensu-agent02</host-name> - <address>83.97.95.12</address> - </source-host> - <source-host> - <host-name>prod-poller-sensu-agent03</host-name> - <address>83.97.93.155</address> - </source-host> - <source-host> - <host-name>test-poller-sensu-agent01</host-name> - <address>83.97.94.245</address> - </source-host> - <source-host> - <host-name>test-poller-sensu-agent02</host-name> - <address>83.97.94.246</address> - </source-host> - <source-host> - <host-name>test-poller-sensu-agent03</host-name> - <address>83.97.93.52</address> - </source-host> - <source-host> - <host-name>test-poller01</host-name> - <address>83.97.92.94</address> - </source-host> - <source-host> - <host-name>uat-poller-sensu-agent01</host-name> - <address>83.97.95.9</address> - </source-host> - <source-host> - <host-name>uat-poller-sensu-agent02</host-name> - <address>83.97.95.10</address> - </source-host> - <source-host> - <host-name>uat-poller-sensu-agent03</host-name> - <address>83.97.93.154</address> - </source-host> - </source-access-list> - <source-access-list> - <list-name>snmp_dashboard</list-name> - <source-host> - <host-name>test-noc-alarms01</host-name> - <address>83.97.92.228</address> - </source-host> - <source-host> - <host-name>test-noc-alarms02</host-name> - <address>83.97.93.53</address> - </source-host> - <source-host> - <host-name>test-noc-alarms03</host-name> - <address>83.97.94.185</address> - </source-host> - <source-host> - <host-name>uat-noc-alarms01</host-name> - <address>83.97.93.151</address> - </source-host> - <source-host> - <host-name>uat-noc-alarms02</host-name> - <address>83.97.94.51</address> - </source-host> - <source-host> - <host-name>uat-noc-alarms03</host-name> - <address>83.97.94.188</address> - </source-host> - </source-access-list> - <source-access-list> - <list-name>snmp_global-oc-servers</list-name> - <source-host> - <host-name>oc-server-fra-de</host-name> - <address>83.97.93.122</address> - </source-host> - <source-host> - <host-name>oc-server-lon2-uk</host-name> - <address>83.97.94.181</address> - </source-host> - <source-host> - <host-name>oc-server-par-fr</host-name> - <address>83.97.93.123</address> - </source-host> - <source-host> - <host-name>prod-oc-server01</host-name> - <address>83.97.92.92</address> - </source-host> - <source-host> - <host-name>prod-oc-server02</host-name> - <address>83.97.92.99</address> - </source-host> - <source-host> - <host-name>test-oc-server01</host-name> - <address>83.97.92.61</address> - </source-host> - </source-access-list> - <source-access-list> - <list-name>snmp_inprov</list-name> - <source-host> - <host-name>prod-inprov01</host-name> - <address>83.97.94.2</address> - </source-host> - <source-host> - <host-name>prod-inprov02</host-name> - <address>83.97.94.9</address> - </source-host> - <source-host> - <host-name>prod-inprov03</host-name> - <address>83.97.94.15</address> - </source-host> - <source-host> - <host-name>prod-inventory-provider01</host-name> - <address>83.97.94.97</address> - </source-host> - <source-host> - <host-name>prod-inventory-provider02</host-name> - <address>83.97.94.98</address> - </source-host> - <source-host> - <host-name>test-inprov01</host-name> - <address>83.97.93.204</address> - </source-host> - <source-host> - <host-name>test-inprov02</host-name> - <address>83.97.93.244</address> - </source-host> - <source-host> - <host-name>test-inprov03</host-name> - <address>83.97.93.248</address> - </source-host> - <source-host> - <host-name>test-inventory-provider01</host-name> - <address>83.97.93.152</address> - </source-host> - <source-host> - <host-name>test-inventory-provider02</host-name> - <address>83.97.93.153</address> - </source-host> - <source-host> - <host-name>uat-inprov01</host-name> - <address>83.97.93.249</address> - </source-host> - <source-host> - <host-name>uat-inprov02</host-name> - <address>83.97.93.251</address> - </source-host> - <source-host> - <host-name>uat-inprov03</host-name> - <address>83.97.94.1</address> - </source-host> - <source-host> - <host-name>uat-inventory-provider01</host-name> - <address>83.97.94.52</address> - </source-host> - <source-host> - <host-name>uat-inventory-provider02</host-name> - <address>83.97.93.239</address> - </source-host> - </source-access-list> - <source-access-list> - <list-name>snmp_kentik</list-name> - <source-host> - <host-name>kentik-agent01</host-name> - <address>209.50.159.78</address> - </source-host> - </source-access-list> - <source-access-list> - <list-name>snmp_librenms</list-name> - <source-host> - <host-name>librenms-lab</host-name> - <address>62.40.111.47</address> - </source-host> - <source-host> - <host-name>librenms-prod</host-name> - <address>83.97.95.39</address> - </source-host> - <source-host> - <host-name>librenms-uat</host-name> - <address>83.97.95.37</address> - </source-host> - </source-access-list> - <source-access-list> - <list-name>snmp_tools_mon</list-name> - <source-host> - <host-name>FLOWMON-Primary</host-name> - <address>62.40.100.166</address> - </source-host> - <source-host> - <host-name>flowmon</host-name> - <address>62.40.120.90</address> - </source-host> - <source-host> - <host-name>flowmon-ddos-fra</host-name> - <address>62.40.100.190</address> - </source-host> - <source-host> - <host-name>flowmon-ddos-par</host-name> - <address>62.40.100.198</address> - </source-host> - <source-host> - <host-name>flowmon2</host-name> - <address>62.40.122.138</address> - </source-host> - <source-host> - <host-name>intermapper</host-name> - <address>83.97.92.219</address> - </source-host> - <source-host> - <host-name>netsage</host-name> - <address>83.97.94.14</address> - </source-host> - <source-host> - <host-name>prod-fod</host-name> - <address>83.97.93.59</address> - </source-host> - <source-host> - <host-name>prod-fod01</host-name> - <address>83.97.92.79</address> - </source-host> - <source-host> - <host-name>prod-lg</host-name> - <address>83.97.93.39</address> - </source-host> - <source-host> - <host-name>uat-fod</host-name> - <address>83.97.92.183</address> - </source-host> - </source-access-list> - <view> - <view-name>TIMEMAP_VIEW</view-name> - <subtree>.1.3.6.1.4.1.6527.1.1.3.92</subtree> - <type>included</type> - </view> - </snmp> - <ssh> - <preserve-key>true</preserve-key> - <server-cipher-list-v2> - <cipher> - <index>190</index> - <name>aes256-ctr</name> - </cipher> - <cipher> - <index>192</index> - <name>aes192-ctr</name> - </cipher> - <cipher> - <index>194</index> - <name>aes128-ctr</name> - </cipher> - <cipher> - <index>200</index> - <name>aes128-cbc</name> - </cipher> - <cipher> - <index>205</index> - <name>3des-cbc</name> - </cipher> - <cipher> - <index>225</index> - <name>aes192-cbc</name> - </cipher> - <cipher> - <index>230</index> - <name>aes256-cbc</name> - </cipher> - </server-cipher-list-v2> - <client-cipher-list-v2> - <cipher> - <index>190</index> - <name>aes256-ctr</name> - </cipher> - <cipher> - <index>192</index> - <name>aes192-ctr</name> - </cipher> - <cipher> - <index>194</index> - <name>aes128-ctr</name> - </cipher> - <cipher> - <index>200</index> - <name>aes128-cbc</name> - </cipher> - <cipher> - <index>205</index> - <name>3des-cbc</name> - </cipher> - <cipher> - <index>225</index> - <name>aes192-cbc</name> - </cipher> - <cipher> - <index>230</index> - <name>aes256-cbc</name> - </cipher> - </client-cipher-list-v2> - <server-mac-list-v2> - <mac> - <index>200</index> - <name>hmac-sha2-512</name> - </mac> - <mac> - <index>210</index> - <name>hmac-sha2-256</name> - </mac> - <mac> - <index>215</index> - <name>hmac-sha1</name> - </mac> - <mac> - <index>220</index> - <name>hmac-sha1-96</name> - </mac> - <mac> - <index>225</index> - <name>hmac-md5</name> - </mac> - <mac> - <index>240</index> - <name>hmac-md5-96</name> - </mac> - </server-mac-list-v2> - <client-mac-list-v2> - <mac> - <index>200</index> - <name>hmac-sha2-512</name> - </mac> - <mac> - <index>210</index> - <name>hmac-sha2-256</name> - </mac> - <mac> - <index>215</index> - <name>hmac-sha1</name> - </mac> - <mac> - <index>220</index> - <name>hmac-sha1-96</name> - </mac> - <mac> - <index>225</index> - <name>hmac-md5</name> - </mac> - <mac> - <index>240</index> - <name>hmac-md5-96</name> - </mac> - </client-mac-list-v2> - </ssh> - <user-params> - <authentication-order> - <order>radius</order> - <order>local</order> - </authentication-order> - <local-user> - <user> - <user-name>R4nC1dN0k</user-name> - <password>$2y$10$SKQqRBwvLOhdc6dJJ6FeI.1Yv4fztCf1xmoUTMCPRKIu6wDEAsR4G</password> - <access> - <console>true</console> - </access> - <console> - <member>config_backup</member> - </console> - </user> - <user> - <user-name>admin</user-name> - <password>$2y$10$k2TmajZKvyznJSnXDNCVs.UW7z1s5of1Vy/ZRtsMzKMuTKxUKzUAm</password> - <access> - <console>true</console> - <netconf>true</netconf> - </access> - <console> - <member>administrative</member> - </console> - </user> - <user> - <user-name>gap-lso-uat</user-name> - <password>$2y$10$fgpTXYaeLk6fnQjQkF54s.Ns8w94Fw4RiBgc7ymhM3OsHmH0EykVm</password> - <access> - <console>true</console> - <netconf>true</netconf> - </access> - <console> - <member>administrative</member> - </console> - <public-keys> - <ecdsa> - <ecdsa-key> - <ecdsa-public-key-id>1</ecdsa-public-key-id> - <key-value>AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAEipXFRSFzx/4jswTdgKvWuYTV74KOIBePozJ5ojlpiK+uzTbaOQJU/KEgwVeSpRfQx6WFLEGYMuVnZFcnN4RG+7wBNLIMqpb7ZAkIPGp2wF1XcgV/MeTsS54hQqBvP2eou8nHNc2iQjmMPyrfHENpIxVGsth1BqCwKCMTsiN23D4lfsQ==</key-value> - </ecdsa-key> - </ecdsa> - </public-keys> - </user> - <user> - <user-name>geant-ne-na-lab</user-name> - <password>$2y$10$k2TmajZKvyznJSnXDNCVs.UW7z1s5of1Vy/ZRtsMzKMuTKxUKzUAm</password> - <access> - <console>true</console> - <netconf>true</netconf> - </access> - <console> - <member>administrative</member> - </console> - <public-keys> - <rsa> - <rsa-key> - <rsa-public-key-id>1</rsa-public-key-id> - <key-value>AAAAB3NzaC1yc2EAAAADAQABAAABgQDDex80puS4SOcjsY3T4OztwQUO0TXzRrwJABXmcJ80gwKpq6283HNbusMimgN1Q5WFY+nxqVQsCyX9SEP7m92i73bmNum7L0JegY0s96bhzhMqyfCBt2JQ/eCMZ6pRZjvsPEw0iQxErkWIeLWrlMj6h+o4evBVveRQ6I06pWL+mpO3TFrCIKis5UHanqNbJCp3oGMwuYzwP/1bgxxmImdGRfc4wd25aWHqMErZKwVz/0C5UKBXhLBl4+r3As4WvMkzA3ijbQDPkJpP8Rx+Hp7JcHcnjdUlNCXqTdlLMGgeSgXysxQQswimOhwcg5ligFw88tiFl6sSTzIpudHAsWntA9QRmmRU3NU7BFAnPsfjx24STmqiUqrI19VmcjtkpVHsDAHYb5ums5gDQ9eXdLvxjZVUN3Lxb9/28BRW1Wkmjfu7UTSlOvuM9bD4cPIp5gkYrpY05Pp+PwIcvBgFhRR0Jmxugt1pFBHePVnYyA5pHLlxSEA9Da95YN8UrtI+N5M=</key-value> - </rsa-key> - </rsa> - </public-keys> - </user> - <user> - <user-name>inprov</user-name> - <password>$2y$10$KdVzmdaM917QiD2CeK1hI.EAFgTMfjHsLOESCejQytl4bbUNu1EfW</password> - <access> - <console>true</console> - <netconf>true</netconf> - </access> - <console> - <member>netconf_inprov</member> - </console> - <public-keys> - <rsa> - <rsa-key> - <rsa-public-key-id>1</rsa-public-key-id> - <key-value>AAAAB3NzaC1yc2EAAAADAQABAAACAQC8MAtn/FRKr7NzeRZo+AURHNYbBVEp9Xy67Fa4eetETCV5IJZ7VZKuGJC/IUD8OLEAKCfpgHoQ+QeJCp5M4llKqbB9EsKHbq9SWcN0oB39jYHsYQO9/CwG3TaQPbwWDCmJowKOkfDVdNjhmD9E5hvsoazIBny29RfXCnYFcogITQ9z49npQdtF8IF+3qNYxGTJUUEt1EFymYpl9c77LFnZuppDQlTdpa8A33klcrhUKTXxn2AZcFdg5ZGBbajTBvFqG/1U/RgCdHpeLxS1UW29FTu7SFllSG/XvEL9Ai91MPMpr07vQVc8DqZFQ5o7AhHkm3fXpvIgnff2YroXZhjF1sIRS7F5WY48o/sCBN36wGmQgfvuxGeQ1B2LDMhdtX0oN0KiMZ2HFuhGJIpmUhB7iMv9aZxJV+/RCjdJIzq6S/ilPZzwOjFy8H2zDy9YPGNQgAI5JJtRcEbCgnqYWfCkY7sr9vK3wwCGDfqhRyUaTj1teVDrCEWdEPSjsTDc9D1JNr/4vnYW3OJH7Cvu+ELXMwfpkad9A0jfdAtDuUoC63sG4Z6ybRdJ80ozlbwSmXc4vLJKm9chPSu9lBsC9/1Vyvn3PeZ6c3NV0ZTwtfTWRSb5S2Go9uYWHR/wppDvhX0LWbWTXG0OJUIu3ik9/asmSF+kCuQ3+XtYSFiMm4Fz0w==</key-value> - </rsa-key> - </rsa> - </public-keys> - </user> - <user> - <user-name>oxidized</user-name> - <password>$2y$10$TQrZlpBDra86.qoexZUzQeBXDY1FcdDhGWdD9lLxMuFyPVSm0OGy6</password> - <access> - <console>true</console> - </access> - <console> - <member>config_backup</member> - </console> - <public-keys> - <ecdsa> - <ecdsa-key> - <ecdsa-public-key-id>1</ecdsa-public-key-id> - <key-value>AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAGKE1PylcuuY5TzEEx928eZGEsPHeRzxrBRWJoKIvY5/7sgnbxQKWO8evpApZQdAsaz2fZvI5S8D2QsThYUtAV3nAHk2VgMIGUJNZHfyljjVQJMVA6thVcEZCk/VBgch16Yym9FmAst2BjOFbf1WydkM9wxbUcWLabT5uq4+Vp8ams27g==</key-value> - </ecdsa-key> - <ecdsa-key> - <ecdsa-public-key-id>2</ecdsa-public-key-id> - <key-value>AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAGKE1PylcuuY5TzEEx928eZGEsPHeRzxrBRWJoKIvY5/7sgnbxQKWO8evpApZQdAsaz2fZvI5S8D2QsThYUtAV3nAHk2VgMIGUJNZHfyljjVQJMVA6thVcEZCk/VBgch16Yym9FmAst2BjOFbf1WydkM9wxbUcWLabT5uq4+Vp8GBBX7g==</key-value> - </ecdsa-key> - </ecdsa> - <rsa> - <rsa-key> - <rsa-public-key-id>1</rsa-public-key-id> - <key-value>AAAAB3NzaC1yc2EAAAADAQABAAABAQDbIxpccubnBvn918JoKpWkzxsX3aCS7H2BUpb7r6tEboOwwpTAnQtiVjMYUsUCL7I7FdujmYK8bwC6YKYFI8fUEdDpthTbLSIfyhapo6eigz30E1RInBaLDrTKD736EMCVkwZPCLilwYuL/IbuZETbd5xXLiW8By2691OC28bKl2AXiW/6MvQ2Pu3vIN1Y3YEYkSCV8vh/rQUQmwJi6CWw+f5R4KWHyyc9t4kSfZPOTyEkaYp67ipeRtQJU2VxlG35mGdHCPHJo6icVmXcMNQRLwX71MTz1jJCtNv8xIkpZQ0u7U2qYLHTvh/HmwNc8riLFLmm24ZaiKdoCpmfnLBX</key-value> - </rsa-key> - <rsa-key> - <rsa-public-key-id>2</rsa-public-key-id> - <key-value>AAAAB3NzaC1yc2EAAAADAQABAAABAQCsK6oYb/QBeJpHYMGtH5wgnhg6urVDCsbKYVh+0tqMMqXchpjVFts6ulBtRUumHKbeUki6W+bP9GK5UQ/aYoNnBopNZSPAQdMFo/d5wg6aUyZYXp5g6LmTQX+seVilSa11CpMmOYRykU/pMaHev/s0RBMgpskhKJxRp+ws0mTX8jaNsgs8DV7cZ9q2LNPZ6Hb01bmTQjwUDXbuZcmbgbvdSca64+X+4rQT5M0uGt6j9U9xncXtn5kdoUkYcFwYQ+n1patGssM8wU6KTxk2jha+S5bN+aK1ZtPkcRhFZjulXJjM0R1GLJuo6OvGsrfTs6yVaiXi7i3Hlv2wlcXXZ6Gb</key-value> - </rsa-key> - </rsa> - </public-keys> - </user> - <user> - <user-name>ronald.vanos</user-name> - <password>$2y$10$VQzPE0prnCkd.pDM7j/pY.Uxk/hjyy743SdQ/3YTQvwX8MOClcaHa</password> - <access> - <console>true</console> - <netconf>true</netconf> - </access> - <console> - <member>administrative</member> - </console> - <public-keys> - <rsa> - <rsa-key> - <rsa-public-key-id>1</rsa-public-key-id> - <key-value>AAAAB3NzaC1yc2EAAAADAQABAAABAQC8KZQbwczDck01O8CSixnHc4w1Nz2I/WlY8jSjX0uOm3KKiZ9NnvdCMy3SzG5qNZ7fXFo07Jcav84EGJdNOErZhSEW1C/P629+Ki3sxwyXK/0Je0pNlURe2kUwdgdppRiNuM2EUSBERPMiPmvzkcVQsh/Pqlx/1bd5aYv0Q623uGfOW91z86gZfNCLl40FfcGLmrYHToHrgx8P9GxgwG1HnXC1Ng7N41wz3S6xJXpBMnhJf1selGDvZhEI9jHVYr/KPta3hPea6sP5zn6BAuI2oXOKVV6vUTPzhWmMk3rqb8Kl6g9ae2aO2owyiWlUqvq4DDVkLN8Bwlq177FSyepT</key-value> - </rsa-key> - </rsa> - </public-keys> - </user> - <user> - <user-name>srv_ims_SROS</user-name> - <password>$2y$10$Wib89Y3VCmjysYTB/pAmA.IyL7P04aHDMOqLJjD0ZI4ETgM/rLBHq</password> - <access> - <console>true</console> - </access> - <console> - <member>restricted-mon</member> - </console> - </user> - <user> - <user-name>srv_ne_scripts</user-name> - <password>$2y$10$XGlShsd8pSkgNdDXusJVo.fnwZJgC.XZznTG1hB9mg3wzYSb7hGLe</password> - <access> - <console>true</console> - <netconf>true</netconf> - </access> - <console> - <member>administrative</member> - </console> - <public-keys> - <rsa> - <rsa-key> - <rsa-public-key-id>1</rsa-public-key-id> - <key-value>AAAAB3NzaC1yc2EAAAADAQABAAABAQDbIxpccubnBvn918JoKpWkzxsX3aCS7H2BUpb7r6tEboOwwpTAnQtiVjMYUsUCL7I7FdujmYK8bwC6YKYFI8fUEdDpthTbLSIfyhapo6eigz30E1RInBaLDrTKD736EMCVkwZPCLilwYuL/IbuZETbd5xXLiW8By2691OC28bKl2AXiW/6MvQ2Pu3vIN1Y3YEYkSCV8vh/rQUQmwJi6CWw+f5R4KWHyyc9t4kSfZPOTyEkaYp67ipeRtQJU2VxlG35mGdHCPHJo6icVmXcMNQRLwX71MTz1jJCtNv8xIkpZQ0u7U2qYLHTvh/HmwNc8riLFLmm24ZaiKdoCpmfnLBX</key-value> - </rsa-key> - </rsa> - </public-keys> - </user> - </local-user> - </user-params> - </security> - <time> - <zone> - <standard> - <name>utc</name> - </standard> - </zone> - <ntp> - <admin-state>enable</admin-state> - <server> - <ip-address>62.40.123.21</ip-address> - <router-instance>Base</router-instance> - <key-id>10</key-id> - </server> - <server> - <ip-address>62.40.123.23</ip-address> - <router-instance>Base</router-instance> - <key-id>10</key-id> - </server> - <server> - <ip-address>62.40.123.103</ip-address> - <router-instance>Base</router-instance> - <key-id>10</key-id> - </server> - <server> - <ip-address>172.16.100.48</ip-address> - <router-instance>Base</router-instance> - </server> - <server> - <ip-address>192.53.103.108</ip-address> - <router-instance>Base</router-instance> - </server> - <server> - <ip-address>192.87.106.2</ip-address> - <router-instance>Base</router-instance> - </server> - <server> - <ip-address>193.204.114.233</ip-address> - <router-instance>Base</router-instance> - </server> - <server> - <ip-address>195.113.144.201</ip-address> - <router-instance>Base</router-instance> - </server> - <server> - <ip-address>216.239.35.0</ip-address> - <router-instance>Base</router-instance> - </server> - <server> - <ip-address>216.239.35.4</ip-address> - <router-instance>Base</router-instance> - </server> - <authentication-key> - <key-id>10</key-id> - <key>HqPnbTyN1I9H2OI6TlxzuBx8h7+GMgR3 hash2</key> - <type>message-digest</type> - </authentication-key> - </ntp> - </time> - </system> - <test-oam> - <twamp> - <server> - <admin-state>enable</admin-state> - <prefix> - <ip-prefix>62.40.119.89/32</ip-prefix> - <description>rt1.ams.nl</description> - <max-connections>1</max-connections> - <max-sessions>1</max-sessions> - </prefix> - <prefix> - <ip-prefix>62.40.119.98/31</ip-prefix> - <description>rt1.bil.es</description> - <max-connections>1</max-connections> - <max-sessions>1</max-sessions> - </prefix> - <prefix> - <ip-prefix>62.40.119.102/31</ip-prefix> - <description>rt1.ath.gr</description> - <max-connections>1</max-connections> - <max-sessions>1</max-sessions> - </prefix> - </server> - <twamp-light> - <source-udp-port-pools> - <port> - <port-number>64375</port-number> - <pool-type>link-measurement</pool-type> - </port> - </source-udp-port-pools> - </twamp-light> - </twamp> - </test-oam> - </configure> - </data> + </ingress> + </sap> + </epipe> + <epipe> + <service-name>GEANT_EPIPE_60606</service-name> + <admin-state>enable</admin-state> + <description>SRV_L2CIRCUIT CUSTOMER DFN-2 | lab ams-do1q to ath-end-q-in-q</description> + <service-id>606</service-id> + <customer>1</customer> + <vpn-id>60606</vpn-id> + <service-mtu>9114</service-mtu> + <ignore-l2vpn-mtu-mismatch>false</ignore-l2vpn-mtu-mismatch> + <spoke-sdp> + <sdp-bind-id>981:60606</sdp-bind-id> + <admin-state>enable</admin-state> + <control-word>true</control-word> + <vc-type>ether</vc-type> + <pw-status> + <signaling>true</signaling> + </pw-status> + </spoke-sdp> + <sap> + <sap-id>lag-11:1061</sap-id> + <admin-state>enable</admin-state> + </sap> + </epipe> + <epipe> + <service-name>GEANT_EPIPE_121984</service-name> + <admin-state>enable</admin-state> + <service-id>400</service-id> + <customer>1</customer> + <vpn-id>121984</vpn-id> + <service-mtu>9114</service-mtu> + <ignore-l2vpn-mtu-mismatch>false</ignore-l2vpn-mtu-mismatch> + <spoke-sdp> + <sdp-bind-id>981:121984</sdp-bind-id> + <admin-state>enable</admin-state> + <control-word>true</control-word> + <vc-type>vlan</vc-type> + <pw-status> + <signaling>true</signaling> + </pw-status> + </spoke-sdp> + <sap> + <sap-id>lag-11:cp-400</sap-id> + <admin-state>enable</admin-state> + </sap> + </epipe> + <epipe> + <service-name>GEANT_EPIPE_123077</service-name> + <admin-state>enable</admin-state> + <description>SRV_L2CIRCUIT CUSTOMER DFN | lab</description> + <service-id>669</service-id> + <customer>1</customer> + <vpn-id>123077</vpn-id> + <service-mtu>9114</service-mtu> + <ignore-l2vpn-mtu-mismatch>false</ignore-l2vpn-mtu-mismatch> + <spoke-sdp> + <sdp-bind-id>641:123077</sdp-bind-id> + <admin-state>enable</admin-state> + <control-word>true</control-word> + <vc-type>ether</vc-type> + <pw-status> + <signaling>true</signaling> + </pw-status> + </spoke-sdp> + <sap> + <sap-id>lag-11:2413</sap-id> + <admin-state>enable</admin-state> + </sap> + </epipe> + <epipe> + <service-name>GEANT_EPIPE_2022012001</service-name> + <admin-state>enable</admin-state> + <description>SRV_L2CIRCUIT CUSTOMER TAT_xyz_DUB-MX4</description> + <service-id>668</service-id> + <customer>1</customer> + <vpn-id>2022012001</vpn-id> + <service-mtu>9114</service-mtu> + <ignore-l2vpn-mtu-mismatch>false</ignore-l2vpn-mtu-mismatch> + <spoke-sdp> + <sdp-bind-id>641:2022012001</sdp-bind-id> + <admin-state>enable</admin-state> + <control-word>true</control-word> + <vc-type>vlan</vc-type> + <pw-status> + <signaling>true</signaling> + </pw-status> + </spoke-sdp> + <sap> + <sap-id>lag-16:2231</sap-id> + </sap> + </epipe> + <ies> + <service-name>GEANT_GLOBAL</service-name> + <admin-state>enable</admin-state> + <description>GEANT-IP Global R&E service</description> + <service-id>20965</service-id> + <customer>1</customer> + <interface> + <interface-name>dsc.0</interface-name> + <admin-state>enable</admin-state> + <loopback>true</loopback> + <ipv4> + <primary> + <address>192.0.2.112</address> + <prefix-length>32</prefix-length> + </primary> + </ipv4> + </interface> + <interface> + <interface-name>lag-11.100</interface-name> + <description>SRV_GLOBAL CUSTOMER DFN| AS680|</description> + <ip-mtu>9000</ip-mtu> + <cflowd-parameters> + <sampling> + <sampling-type>unicast</sampling-type> + <type>interface</type> + <direction>ingress-only</direction> + <sample-profile>1</sample-profile> + </sampling> + </cflowd-parameters> + <sap> + <sap-id>lag-11:100</sap-id> + <admin-state>enable</admin-state> + <ingress> + <filter> + <ip>DFN_IN</ip> + <ipv6>DFN_IN</ipv6> + </filter> + </ingress> + <egress> + <filter> + <ip>DFN_OUT</ip> + <ipv6>DFN_OUT</ipv6> + </filter> + </egress> + </sap> + <ipv4> + <primary> + <address>62.40.124.217</address> + <prefix-length>30</prefix-length> + </primary> + </ipv4> + <ipv6> + <address> + <ipv6-address>2001:798:14:10aa::9</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lag-16.2201</interface-name> + <description>SRV_GLOBAL CUSTOMER NAME | AS-num|</description> + <ip-mtu>9000</ip-mtu> + <cflowd-parameters> + <sampling> + <sampling-type>unicast</sampling-type> + <type>interface</type> + <direction>ingress-only</direction> + <sample-profile>1</sample-profile> + </sampling> + </cflowd-parameters> + <sap> + <sap-id>lag-16:2201</sap-id> + <admin-state>enable</admin-state> + </sap> + <ipv4> + <primary> + <address>62.40.125.45</address> + <prefix-length>30</prefix-length> + </primary> + </ipv4> + <ipv6> + <address> + <ipv6-address>2001:798:99:1::79</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lag-16:2210</interface-name> + <admin-state>enable</admin-state> + <description>SRV_GLOBAL CUSTOMER CERN #CERN-AP1 $GS-xxxlab | ASN513 |</description> + <cflowd-parameters> + <sampling> + <sampling-type>unicast</sampling-type> + <type>interface</type> + <direction>ingress-only</direction> + <sample-profile>1</sample-profile> + </sampling> + </cflowd-parameters> + <sap> + <sap-id>lag-16:2210</sap-id> + </sap> + <ipv4> + <primary> + <address>62.40.124.157</address> + <prefix-length>30</prefix-length> + </primary> + </ipv4> + <ipv6> + <address> + <ipv6-address>2001:798:99:1::39</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lag-17.251</interface-name> + <description>SRV_GLOBAL CUSTOMER REDIRIS| AS766|</description> + <ip-mtu>9000</ip-mtu> + <cflowd-parameters> + <sampling> + <sampling-type>unicast</sampling-type> + <type>interface</type> + <direction>ingress-only</direction> + <sample-profile>1</sample-profile> + </sampling> + </cflowd-parameters> + <sap> + <sap-id>lag-17:251</sap-id> + <admin-state>enable</admin-state> + <ingress> + <filter> + <ip>REDIRIS_IN</ip> + <ipv6>REDIRIS_IN</ipv6> + </filter> + </ingress> + <egress> + <filter> + <ip>REDIRIS_OUT</ip> + <ipv6>REDIRIS_OUT</ipv6> + </filter> + </egress> + </sap> + <ipv4> + <primary> + <address>62.40.125.134</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <ipv6> + <address> + <ipv6-address>2001:798:99:1::61</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lt-700.a</interface-name> + <description>SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side</description> + <sap> + <sap-id>lag-700:1</sap-id> + <admin-state>enable</admin-state> + </sap> + <ipv4> + <primary> + <address>83.97.90.34</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <ipv6> + <address> + <ipv6-address>2001:798:1::265</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lt-lhcone-700.a</interface-name> + <admin-state>enable</admin-state> + <description>SRV_L3VPN INFRASTRUCTURE ACCESS LHCONE + #MASTER-instance-Peering-geneva-lhcone| MASTER instance </description> + <sap> + <sap-id>lag-700:2</sap-id> + <admin-state>enable</admin-state> + </sap> + <ipv4> + <primary> + <address>62.40.126.18</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + </interface> + </ies> + <sdp> + <sdp-id>641</sdp-id> + <admin-state>enable</admin-state> + <description>SDP_641_LAB</description> + <delivery-type>mpls</delivery-type> + <path-mtu>9200</path-mtu> + <signaling>tldp</signaling> + <sr-isis>true</sr-isis> + <far-end> + <ip-address>62.40.119.4</ip-address> + </far-end> + </sdp> + <sdp> + <sdp-id>642</sdp-id> + <admin-state>enable</admin-state> + <description>SDP_642_RSVP_LAB</description> + <delivery-type>mpls</delivery-type> + <path-mtu>9200</path-mtu> + <sr-isis>false</sr-isis> + <far-end> + <ip-address>62.40.119.4</ip-address> + </far-end> + <lsp> + <lsp-name>LSP_10GGBS_RT0_AMS_TO_RT1_DUB</lsp-name> + </lsp> + </sdp> + <sdp> + <sdp-id>921</sdp-id> + <admin-state>enable</admin-state> + <description>SDP_921</description> + <delivery-type>mpls</delivery-type> + <path-mtu>9200</path-mtu> + <signaling>tldp</signaling> + <sr-isis>true</sr-isis> + <far-end> + <ip-address>62.40.119.2</ip-address> + </far-end> + </sdp> + <sdp> + <sdp-id>931</sdp-id> + <admin-state>enable</admin-state> + <description>SDP_931</description> + <delivery-type>mpls</delivery-type> + <path-mtu>9200</path-mtu> + <signaling>tldp</signaling> + <sr-isis>true</sr-isis> + <far-end> + <ip-address>62.40.119.3</ip-address> + </far-end> + </sdp> + <sdp> + <sdp-id>951</sdp-id> + <admin-state>enable</admin-state> + <description>SDP_951</description> + <delivery-type>mpls</delivery-type> + <path-mtu>9200</path-mtu> + <signaling>tldp</signaling> + <sr-isis>true</sr-isis> + <far-end> + <ip-address>62.40.119.5</ip-address> + </far-end> + </sdp> + <sdp> + <sdp-id>971</sdp-id> + <admin-state>enable</admin-state> + <description>SDP_971</description> + <delivery-type>mpls</delivery-type> + <path-mtu>9200</path-mtu> + <signaling>tldp</signaling> + <sr-isis>true</sr-isis> + <far-end> + <ip-address>62.40.119.7</ip-address> + </far-end> + </sdp> + <sdp> + <sdp-id>981</sdp-id> + <admin-state>enable</admin-state> + <description>SDP_981</description> + <delivery-type>mpls</delivery-type> + <path-mtu>9200</path-mtu> + <signaling>tldp</signaling> + <sr-isis>true</sr-isis> + <far-end> + <ip-address>62.40.119.8</ip-address> + </far-end> + </sdp> + <sdp> + <sdp-id>991</sdp-id> + <admin-state>enable</admin-state> + <description>SDP_991</description> + <delivery-type>mpls</delivery-type> + <path-mtu>9200</path-mtu> + <signaling>tldp</signaling> + <sr-isis>true</sr-isis> + <far-end> + <ip-address>62.40.119.9</ip-address> + </far-end> + </sdp> + <sdp> + <sdp-id>9101</sdp-id> + <admin-state>enable</admin-state> + <description>SDP_9101</description> + <delivery-type>mpls</delivery-type> + <path-mtu>9200</path-mtu> + <signaling>tldp</signaling> + <sr-isis>true</sr-isis> + <far-end> + <ip-address>62.40.119.10</ip-address> + </far-end> + </sdp> + <vpls> + <service-name>SNM_ACCESS_POP_LAN</service-name> + <admin-state>enable</admin-state> + <description>UPLINK TO SECURE NETWORK MANAGEMENT FOR POP LAN</description> + <service-id>12345</service-id> + <customer>1</customer> + <routed-vpls> + </routed-vpls> + <sap> + <sap-id>1/1/c22/1:533</sap-id> + </sap> + <sap> + <sap-id>1/1/c22/2:533</sap-id> + </sap> + </vpls> + <vprn> + <service-name>COPERNICUS</service-name> + <admin-state>enable</admin-state> + <description>L3 BGP/MPLS VPN for COPERNICUS</description> + <service-id>20965668</service-id> + <customer>1</customer> + <autonomous-system>20965</autonomous-system> + <bgp-ipvpn> + <mpls> + <admin-state>enable</admin-state> + <route-distinguisher>20965:668</route-distinguisher> + <vrf-target> + <community>target:20965:668</community> + </vrf-target> + <auto-bind-tunnel> + <resolution>filter</resolution> + <resolution-filter> + <sr-isis>true</sr-isis> + </resolution-filter> + </auto-bind-tunnel> + </mpls> + </bgp-ipvpn> + <bgp> + <description>COPERNICUS</description> + <family> + <ipv6>true</ipv6> + </family> + <error-handling> + <update-fault-tolerance>true</update-fault-tolerance> + </error-handling> + <group> + <group-name>COPERNICUS_PEERS</group-name> + <admin-state>enable</admin-state> + <next-hop-self>false</next-hop-self> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>20965</as-number> + </local-as> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + </group> + </bgp> + </vprn> + <vprn> + <service-name>IAS</service-name> + <admin-state>enable</admin-state> + <description>GEANT IAS Internet VRF</description> + <service-id>21320</service-id> + <customer>1</customer> + <autonomous-system>21320</autonomous-system> + <ecmp>2</ecmp> + <bgp-ipvpn> + <mpls> + <admin-state>enable</admin-state> + <route-distinguisher>20965:333</route-distinguisher> + <vrf-target> + <community>target:20965:333</community> + </vrf-target> + <auto-bind-tunnel> + <resolution>filter</resolution> + <resolution-filter> + <sr-isis>true</sr-isis> + </resolution-filter> + </auto-bind-tunnel> + </mpls> + </bgp-ipvpn> + <bgp> + <description>IAS</description> + <router-id>83.97.90.35</router-id> + <family> + <ipv6>true</ipv6> + </family> + <best-path-selection> + <compare-origin-validation-state>true</compare-origin-validation-state> + <origin-invalid-unusable>true</origin-invalid-unusable> + </best-path-selection> + <error-handling> + <update-fault-tolerance>true</update-fault-tolerance> + </error-handling> + <multipath> + <ebgp>2</ebgp> + <ibgp>1</ibgp> + <family> + <family-type>ipv4</family-type> + <max-paths>2</max-paths> + </family> + <family> + <family-type>ipv6</family-type> + <max-paths>2</max-paths> + </family> + </multipath> + <group> + <group-name>GEANT_IX_PEERS</group-name> + <admin-state>enable</admin-state> + <type>external</type> + <family> + <ipv4>true</ipv4> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + <prepend-global-as>false</prepend-global-as> + </local-as> + <origin-validation> + <ipv4>true</ipv4> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>PS_RPKI_IAS_PEER</policy> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + <graceful-restart> + <restart-time>300</restart-time> + <stale-routes-time>360</stale-routes-time> + <gr-notification>true</gr-notification> + </graceful-restart> + </group> + <group> + <group-name>GEANT_IX_PEERS6</group-name> + <admin-state>enable</admin-state> + <type>external</type> + <family> + <ipv6>true</ipv6> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + <prepend-global-as>false</prepend-global-as> + </local-as> + <origin-validation> + <ipv6>true</ipv6> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>PS_RPKI_IAS_PEER</policy> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + <graceful-restart> + <restart-time>300</restart-time> + <stale-routes-time>360</stale-routes-time> + <gr-notification>true</gr-notification> + </graceful-restart> + </group> + <group> + <group-name>GEANT_NRENS</group-name> + <admin-state>enable</admin-state> + <type>external</type> + <bfd-liveness>true</bfd-liveness> + <family> + <ipv4>true</ipv4> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + <prepend-global-as>false</prepend-global-as> + </local-as> + <origin-validation> + <ipv4>true</ipv4> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>PS_RPKI_IAS_NREN</policy> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + </group> + <group> + <group-name>GEANT_NRENS6</group-name> + <admin-state>enable</admin-state> + <type>external</type> + <bfd-liveness>true</bfd-liveness> + <family> + <ipv6>true</ipv6> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + <prepend-global-as>false</prepend-global-as> + </local-as> + <origin-validation> + <ipv6>true</ipv6> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>PS_RPKI_IAS_NREN</policy> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + </group> + <group> + <group-name>GEANT_PEERS</group-name> + <admin-state>enable</admin-state> + <bfd-liveness>true</bfd-liveness> + <family> + <ipv4>true</ipv4> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + <prepend-global-as>false</prepend-global-as> + </local-as> + <origin-validation> + <ipv4>true</ipv4> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>PS_RPKI_IAS_PEER</policy> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + </group> + <group> + <group-name>GEANT_PEERS6</group-name> + <admin-state>enable</admin-state> + <bfd-liveness>true</bfd-liveness> + <family> + <ipv6>true</ipv6> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + <prepend-global-as>false</prepend-global-as> + </local-as> + <origin-validation> + <ipv6>true</ipv6> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>PS_RPKI_IAS_PEER</policy> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + </group> + <group> + <group-name>GWS_UPSTREAMS</group-name> + <admin-state>enable</admin-state> + <description>GWS IPv4 Peering Group</description> + <type>external</type> + <family> + <ipv4>true</ipv4> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + <prepend-global-as>false</prepend-global-as> + </local-as> + <origin-validation> + <ipv4>true</ipv4> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>PS_RPKI_IAS_PEER</policy> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + <graceful-restart> + <restart-time>300</restart-time> + <stale-routes-time>360</stale-routes-time> + <gr-notification>true</gr-notification> + </graceful-restart> + </group> + <group> + <group-name>GWS_UPSTREAMS6</group-name> + <admin-state>enable</admin-state> + <description>GWS IPv6 Peering Group</description> + <type>external</type> + <family> + <ipv6>true</ipv6> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + <prepend-global-as>false</prepend-global-as> + </local-as> + <origin-validation> + <ipv6>true</ipv6> + </origin-validation> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>PS_RPKI_IAS_PEER</policy> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + <graceful-restart> + <restart-time>300</restart-time> + <stale-routes-time>360</stale-routes-time> + <gr-notification>true</gr-notification> + </graceful-restart> + </group> + <group> + <group-name>IAS_to_INTERNET_IPV4</group-name> + <type>internal</type> + <peer-as>20965</peer-as> + <local-address>83.97.90.35</local-address> + <family> + <ipv4>true</ipv4> + </family> + <local-as> + <as-number>20965</as-number> + </local-as> + <import> + <policy>PS_EXPORT_IAS_IPV4</policy> + </import> + <export> + <policy>PS_DENY_ALL</policy> + </export> + </group> + <group> + <group-name>IAS_to_INTERNET_IPV6</group-name> + <type>internal</type> + <peer-as>20965</peer-as> + <local-address>2001:798:1::266</local-address> + <family> + <ipv6>true</ipv6> + </family> + <local-as> + <as-number>20965</as-number> + </local-as> + <import> + <policy>PS_EXPORT_IAS_IPV6</policy> + </import> + <export> + <policy>PS_DENY_ALL</policy> + </export> + </group> + <neighbor> + <ip-address>62.40.102.18</ip-address> + <admin-state>enable</admin-state> + <description>--Oath AS10310--</description> + <group>GEANT_IX_PEERS</group> + <local-address>62.40.102.17</local-address> + <type>external</type> + <peer-as>10310</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + </local-as> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>BOGONS</policy> + <policy>PS_RPKI_IAS_PEER</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>IAS_PS_FROM_PUBLIC_PEERS_AMS-IX_HEAD</policy> + <policy>IAS_PS_FROM_PUBLIC_PEERS_AS10310_OATH</policy> + <policy>IAS_PS-FROM-PUBLIC-PEERS_AMS-IX_TAIL</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>IAS_PS_TO_PUBLIC_PEERS_AMS-IX_HEAD</policy> + <policy>IAS_PS_TO_PUBLIC_PEER_AS10310_OATH</policy> + <policy>IAS_PS_TO_PUBLIC_PEERS_AMS-IX_TAIL</policy> + </export> + <prefix-limit> + <family>ipv4</family> + <maximum>1500</maximum> + <threshold>80</threshold> + <idle-timeout>30</idle-timeout> + </prefix-limit> + </neighbor> + <neighbor> + <ip-address>83.97.89.74</ip-address> + <admin-state>enable</admin-state> + <description>-- Peering with DFN --</description> + <bfd-liveness>true</bfd-liveness> + <group>GEANT_NRENS</group> + <authentication-key>RTRT5Knf8NSwaT257qntVXZDzp7V hash2</authentication-key> + <local-address>83.97.89.73</local-address> + <type>external</type> + <peer-as>680</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + </local-as> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>BOGONS</policy> + <policy>PS_RPKI_IAS_NREN</policy> + <policy>PS_GLOBAL_ANYCAST_IAS</policy> + <policy>PS_IAS_FROM_DFN_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_IAS_TO_DFN_NREN</policy> + </export> + <prefix-limit> + <family>ipv4</family> + <maximum>125000</maximum> + </prefix-limit> + </neighbor> + <neighbor> + <ip-address>83.97.90.21</ip-address> + <admin-state>enable</admin-state> + <description>-- Peering with REDIRIS --</description> + <bfd-liveness>true</bfd-liveness> + <group>GEANT_NRENS</group> + <local-address>83.97.90.20</local-address> + <type>external</type> + <peer-as>766</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + </local-as> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>BOGONS</policy> + <policy>PS_RPKI_IAS_NREN</policy> + <policy>PS_GLOBAL_ANYCAST_IAS</policy> + <policy>PS_IAS_FROM_REDIRIS_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_IAS_TO_REDIRIS_NREN</policy> + </export> + <prefix-limit> + <family>ipv4</family> + <maximum>125000</maximum> + </prefix-limit> + </neighbor> + <neighbor> + <ip-address>83.97.90.34</ip-address> + <description>20965-to-21320 BGP Peering IPv4</description> + <group>IAS_to_INTERNET_IPV4</group> + </neighbor> + <neighbor> + <ip-address>212.133.7.165</ip-address> + <admin-state>enable</admin-state> + <description>--GWS Traffic IPv4 peering Colt |</description> + <group>GWS_UPSTREAMS</group> + <local-address>212.133.7.166</local-address> + <type>external</type> + <peer-as>3356</peer-as> + <local-as> + <as-number>21320</as-number> + </local-as> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>BOGONS</policy> + <policy>PS_RPKI_IAS_PEER</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>IAS_PS_FROM_GWS_COLT</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>IAS_PS_TO_GWS_COLT</policy> + </export> + </neighbor> + <neighbor> + <ip-address>2001:798:1::242</ip-address> + <admin-state>enable</admin-state> + <description>-- V6 Peering with REDIRIS --</description> + <bfd-liveness>true</bfd-liveness> + <group>GEANT_NRENS6</group> + <local-address>2001:798:1::241</local-address> + <type>external</type> + <peer-as>766</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + </local-as> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>BOGONS</policy> + <policy>PS_RPKI_IAS_NREN</policy> + <policy>PS_GLOBAL_ANYCAST_IAS</policy> + <policy>PS_IAS_FROM_REDIRIS_V6_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_IAS_TO_REDIRIS_NREN</policy> + </export> + </neighbor> + <neighbor> + <ip-address>2001:798:1::265</ip-address> + <description>20965-to-21320 BGP Peering IPv6</description> + <group>IAS_to_INTERNET_IPV6</group> + </neighbor> + <neighbor> + <ip-address>2001:799:1ab:15::2</ip-address> + <admin-state>enable</admin-state> + <description>-- V6_Oath AS10310-</description> + <group>GEANT_IX_PEERS6</group> + <local-address>2001:799:1ab:15::1</local-address> + <type>external</type> + <peer-as>10310</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + </local-as> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>BOGONS</policy> + <policy>PS_RPKI_IAS_PEER</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>IAS_PS_FROM_PUBLIC_PEERS_AMS-IX_HEAD</policy> + <policy>IAS_PS_FROM_PUBLIC_PEERS_AS10310_OATH</policy> + <policy>IAS_PS-FROM-PUBLIC-PEERS_AMS-IX_TAIL</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>IAS_PS_TO_PUBLIC_PEERS_AMS-IX_HEAD</policy> + <policy>IAS_PS_TO_PUBLIC_PEER_AS10310_OATH</policy> + <policy>IAS_PS_TO_PUBLIC_PEERS_AMS-IX_TAIL</policy> + </export> + <prefix-limit> + <family>ipv6</family> + <maximum>750</maximum> + <threshold>80</threshold> + <idle-timeout>30</idle-timeout> + </prefix-limit> + </neighbor> + <neighbor> + <ip-address>2001:7f8:3c::36</ip-address> + <admin-state>enable</admin-state> + <description>-- V6 Peering with DFN --</description> + <bfd-liveness>true</bfd-liveness> + <group>GEANT_NRENS6</group> + <authentication-key>RTRT5Knf8NSwaT257qntVbCj5xd/ hash2</authentication-key> + <local-address>2001:7f8:3c::35</local-address> + <type>external</type> + <peer-as>680</peer-as> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>21320</as-number> + </local-as> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>BOGONS</policy> + <policy>PS_RPKI_IAS_NREN</policy> + <policy>PS_GLOBAL_ANYCAST_IAS</policy> + <policy>PS_IAS_FROM_DFN_V6_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_IAS_TO_DFN_NREN</policy> + </export> + </neighbor> + <neighbor> + <ip-address>2001:1900:5:2:2:0:8:5a55</ip-address> + <admin-state>enable</admin-state> + <description>--GWS Traffic IPv6 Peering Colt --</description> + <group>GWS_UPSTREAMS6</group> + <local-address>2001:1900:5:2:2:0:8:5a56</local-address> + <type>external</type> + <peer-as>3356</peer-as> + <local-as> + <as-number>21320</as-number> + </local-as> + <import> + <policy>PS_AS_SELF_REJECT</policy> + <policy>BOGONS</policy> + <policy>PS_RPKI_IAS_PEER</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>IAS_PS_FROM_GWS_COLT</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>IAS_PS_TO_GWS_COLT</policy> + </export> + </neighbor> + </bgp> + <interface> + <interface-name>LAG-11.333</interface-name> + <admin-state>enable</admin-state> + <description>SRV_IAS CUSTOMER DFN #DFN-AP1-IAS IASPS $GS-xxxx | ASN680 |</description> + <ip-mtu>1500</ip-mtu> + <ingress> + <policy-accounting>GEANT_DEST_CLASS_POL_TEMPLATE_01</policy-accounting> + <destination-class-lookup>true</destination-class-lookup> + </ingress> + <cflowd-parameters> + <sampling> + <sampling-type>unicast</sampling-type> + <type>interface</type> + <direction>ingress-only</direction> + <sample-profile>1</sample-profile> + </sampling> + </cflowd-parameters> + <ipv4> + <bfd> + <admin-state>enable</admin-state> + <transmit-interval>3000</transmit-interval> + <receive>3000</receive> + </bfd> + <primary> + <address>83.97.89.73</address> + <prefix-length>30</prefix-length> + </primary> + </ipv4> + <sap> + <sap-id>lag-11:333</sap-id> + <admin-state>enable</admin-state> + <dist-cpu-protection>EDGE_PROTECT</dist-cpu-protection> + <ingress> + <filter> + <ip>NREN_IAS_DFN_IN</ip> + <ipv6>NREN_IAS_DFN_IN</ipv6> + </filter> + </ingress> + <egress> + <filter> + <ip>NREN_IAS_DFN_OUT</ip> + <ipv6>NREN_IAS_DFN_OUT</ipv6> + </filter> + </egress> + </sap> + <ipv6> + <address> + <ipv6-address>2001:7f8:3c::35</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>LAG-17.252</interface-name> + <admin-state>enable</admin-state> + <description>SRV_IAS CUSTOMER REDIRIS #REDIRIS-AP1-IAS IASPS $GS-xxxx | ASN766 |</description> + <ip-mtu>1500</ip-mtu> + <ingress> + <policy-accounting>GEANT_DEST_CLASS_POL_TEMPLATE_01</policy-accounting> + <destination-class-lookup>true</destination-class-lookup> + </ingress> + <cflowd-parameters> + <sampling> + <sampling-type>unicast</sampling-type> + <type>interface</type> + <direction>ingress-only</direction> + <sample-profile>1</sample-profile> + </sampling> + </cflowd-parameters> + <ipv4> + <primary> + <address>83.97.90.20</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <sap> + <sap-id>lag-17:252</sap-id> + <admin-state>enable</admin-state> + <dist-cpu-protection>EDGE_PROTECT</dist-cpu-protection> + <ingress> + <filter> + <ip>NREN_IAS_REDIRIS_IN</ip> + <ipv6>NREN_IAS_REDIRIS_IN</ipv6> + </filter> + </ingress> + <egress> + <filter> + <ip>NREN_IAS_REDIRIS_OUT</ip> + <ipv6>NREN_IAS_REDIRIS_OUT</ipv6> + </filter> + </egress> + </sap> + <ipv6> + <address> + <ipv6-address>2001:798:1::241</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lag-16.2217</interface-name> + <admin-state>enable</admin-state> + <description>iperf_ias_ams_lon on R730-1</description> + <ip-mtu>1500</ip-mtu> + <cflowd-parameters> + <sampling> + <sampling-type>unicast</sampling-type> + <type>interface</type> + <direction>ingress-only</direction> + <sample-profile>1</sample-profile> + </sampling> + </cflowd-parameters> + <ipv4> + <primary> + <address>192.168.121.0</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <sap> + <sap-id>lag-16:2217</sap-id> + <admin-state>enable</admin-state> + </sap> + </interface> + <interface> + <interface-name>lag-16.2219</interface-name> + <admin-state>enable</admin-state> + <description>SRV_IAS PUBLIC AMS-IX_lab_xxxyyyy|</description> + <ip-mtu>1500</ip-mtu> + <cflowd-parameters> + <sampling> + <sampling-type>unicast</sampling-type> + <type>interface</type> + <direction>ingress-only</direction> + <sample-profile>1</sample-profile> + </sampling> + </cflowd-parameters> + <ipv4> + <allow-directed-broadcasts>false</allow-directed-broadcasts> + <urpf-check> + <ignore-default>true</ignore-default> + <mode>loose</mode> + </urpf-check> + <primary> + <address>62.40.102.17</address> + <prefix-length>28</prefix-length> + </primary> + <neighbor-discovery> + <learn-unsolicited>false</learn-unsolicited> + <local-proxy-arp>false</local-proxy-arp> + <remote-proxy-arp>false</remote-proxy-arp> + </neighbor-discovery> + </ipv4> + <sap> + <sap-id>lag-16:2219</sap-id> + <admin-state>enable</admin-state> + <dist-cpu-protection>ARP_POLICE</dist-cpu-protection> + <ingress> + <filter> + <ip>IAS_AMSIX_IN</ip> + <ipv6>IAS_AMSIX_IN</ipv6> + </filter> + </ingress> + </sap> + <ipv6> + <urpf-check> + <ignore-default>true</ignore-default> + <mode>loose</mode> + </urpf-check> + <address> + <ipv6-address>2001:799:1ab:15::1</ipv6-address> + <prefix-length>64</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lag-16.2220</interface-name> + <admin-state>enable</admin-state> + <description>SRV_IAS UPSTREAM COLT #COLT-GWS-xxx LAB | ASN3356</description> + <ip-mtu>1500</ip-mtu> + <cflowd-parameters> + <sampling> + <sampling-type>unicast</sampling-type> + <type>interface</type> + <direction>ingress-only</direction> + <sample-profile>1</sample-profile> + </sampling> + </cflowd-parameters> + <ipv4> + <primary> + <address>212.133.7.166</address> + <prefix-length>30</prefix-length> + </primary> + </ipv4> + <sap> + <sap-id>lag-16:2220</sap-id> + <admin-state>enable</admin-state> + <dist-cpu-protection>EDGE_PROTECT</dist-cpu-protection> + <ingress> + <filter> + <ip>IAS_COLT_IN</ip> + <ipv6>IAS_COLT_IN</ipv6> + </filter> + </ingress> + </sap> + <ipv6> + <address> + <ipv6-address>2001:1900:5:2:2:0:8:5a56</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lt-701.b</interface-name> + <description>SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side</description> + <ipv4> + <primary> + <address>83.97.90.35</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <sap> + <sap-id>lag-701:1</sap-id> + <admin-state>enable</admin-state> + </sap> + <ipv6> + <address> + <ipv6-address>2001:798:1::266</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <static-routes> + <route> + <ip-prefix>0.0.0.0/0</ip-prefix> + <route-type>unicast</route-type> + <blackhole> + <admin-state>enable</admin-state> + </blackhole> + </route> + <route> + <ip-prefix>83.97.88.0/21</ip-prefix> + <route-type>unicast</route-type> + <community>21320:64912</community> + <community>64700:65532</community> + <community>64700:65533</community> + <community>64700:65534</community> + <blackhole> + <admin-state>enable</admin-state> + </blackhole> + </route> + <route> + <ip-prefix>192.0.2.101/32</ip-prefix> + <route-type>unicast</route-type> + <blackhole> + <admin-state>enable</admin-state> + <description>RTBH_V4</description> + </blackhole> + </route> + <route> + <ip-prefix>::/0</ip-prefix> + <route-type>unicast</route-type> + <blackhole> + <admin-state>enable</admin-state> + </blackhole> + </route> + <route> + <ip-prefix>100::/64</ip-prefix> + <route-type>unicast</route-type> + <blackhole> + <admin-state>enable</admin-state> + <description>RTBH_V6</description> + </blackhole> + </route> + <route> + <ip-prefix>2001:798:1::/48</ip-prefix> + <route-type>unicast</route-type> + <community>21320:64912</community> + <blackhole> + <admin-state>enable</admin-state> + </blackhole> + </route> + </static-routes> + <flowspec> + <ip-filter-max-size>100</ip-filter-max-size> + <ipv6-filter-max-size>100</ipv6-filter-max-size> + </flowspec> + </vprn> + <vprn> + <service-name>LHCONE_L3VPN</service-name> + <admin-state>enable</admin-state> + <description>L3 BGP/MPLS VPN for LHCONE</description> + <service-id>111</service-id> + <customer>1</customer> + <autonomous-system>20965</autonomous-system> + <bgp-ipvpn> + <mpls> + <admin-state>enable</admin-state> + <route-distinguisher>20965:111</route-distinguisher> + <vrf-target> + <community>target:20965:111</community> + </vrf-target> + <auto-bind-tunnel> + <resolution>filter</resolution> + <resolution-filter> + <sr-isis>true</sr-isis> + </resolution-filter> + </auto-bind-tunnel> + </mpls> + </bgp-ipvpn> + <aggregates> + <aggregate> + <ip-prefix>62.40.126.0/24</ip-prefix> + <community>20965:155</community> + <discard-component-communities>true</discard-component-communities> + </aggregate> + <aggregate> + <ip-prefix>2001:798:111:1::/64</ip-prefix> + <community>20965:155</community> + <discard-component-communities>true</discard-component-communities> + </aggregate> + </aggregates> + <bgp> + <description>LHCONE_L3VPN</description> + <family> + <ipv6>true</ipv6> + </family> + <error-handling> + <update-fault-tolerance>true</update-fault-tolerance> + </error-handling> + <group> + <group-name>LHCONE_NRENS</group-name> + <admin-state>enable</admin-state> + <next-hop-self>false</next-hop-self> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>20965</as-number> + </local-as> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + </group> + <group> + <group-name>LHCONE_PEERS</group-name> + <admin-state>enable</admin-state> + <next-hop-self>false</next-hop-self> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>20965</as-number> + </local-as> + <send-communities> + <extended>false</extended> + </send-communities> + <import> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + </export> + </group> + <group> + <group-name>LHCONE_ROUTE_SERVER</group-name> + <local-address>62.40.126.19</local-address> + <family> + <ipv4>true</ipv4> + <ipv6>true</ipv6> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <local-as> + <as-number>20965</as-number> + </local-as> + <import> + <policy>PS_DENY_ALL</policy> + </import> + <export> + <policy>PS_DENY_ALL</policy> + </export> + </group> + <neighbor> + <ip-address>62.40.126.9</ip-address> + <admin-state>enable</admin-state> + <description>KREONET LHCONE IP VPN V4 </description> + <bfd-liveness>true</bfd-liveness> + <group>LHCONE_PEERS</group> + <local-address>62.40.126.8</local-address> + <type>external</type> + <peer-as>17579</peer-as> + <family> + <ipv4>true</ipv4> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>PS_FROM_LHCONE_PEER</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>PS_TO_KREONET_LHCONE_PEER_TE</policy> + <policy>PS_TO_KREONET_LHCONE_PEER_ALLOW_TRANSIT</policy> + <policy>PS_TO_LHCONE_PEER</policy> + </export> + <prefix-limit> + <family>ipv4</family> + <maximum>100</maximum> + <idle-timeout>30</idle-timeout> + </prefix-limit> + </neighbor> + <neighbor> + <ip-address>62.40.126.77</ip-address> + <admin-state>enable</admin-state> + <description>LHCONE_PEERING_DFN |AS680</description> + <bfd-liveness>true</bfd-liveness> + <group>LHCONE_NRENS</group> + <authentication-key>RTRT5Knf8NSwaT257qntVbRfeJn9 hash2</authentication-key> + <local-address>62.40.126.76</local-address> + <type>external</type> + <peer-as>680</peer-as> + <family> + <ipv4>true</ipv4> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>PS_FROM_LHCONE_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>PS_TO_LHCONE_NREN</policy> + </export> + </neighbor> + <neighbor> + <ip-address>192.65.184.146</ip-address> + <description>LHCONE RS</description> + <group>LHCONE_ROUTE_SERVER</group> + <multihop>10</multihop> + <local-address>62.40.126.19</local-address> + <passive>true</passive> + <peer-as>61339</peer-as> + <import> + <policy>PS_DENY_ALL</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>PS_TO_LHCONE_NREN</policy> + </export> + <prefix-limit> + <family>ipv4</family> + <maximum>1</maximum> + <idle-timeout>30</idle-timeout> + </prefix-limit> + <prefix-limit> + <family>ipv6</family> + <maximum>1</maximum> + <idle-timeout>30</idle-timeout> + </prefix-limit> + </neighbor> + <neighbor> + <ip-address>2001:798:111:1::32</ip-address> + <admin-state>enable</admin-state> + <description>IPV6 LHCONE_PEERING_DFN |AS680</description> + <group>LHCONE_NRENS</group> + <authentication-key>RTRT5Knf8NSwaT257qntVe3+cMtK hash2</authentication-key> + <local-address>2001:798:111:1::31</local-address> + <type>external</type> + <peer-as>680</peer-as> + <family> + <ipv6>true</ipv6> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>PS_FROM_LHCONE_NREN</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>PS_TO_LHCONE_NREN</policy> + </export> + </neighbor> + <neighbor> + <ip-address>2001:798:111:1::8a</ip-address> + <admin-state>enable</admin-state> + <description>KREONET LHCONE IP VPN V6</description> + <group>LHCONE_PEERS</group> + <local-address>2001:798:111:1::89</local-address> + <type>external</type> + <peer-as>17579</peer-as> + <family> + <ipv6>true</ipv6> + </family> + <ebgp-default-reject-policy> + <import>true</import> + <export>true</export> + </ebgp-default-reject-policy> + <import> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>PS_FROM_LHCONE_PEER</policy> + </import> + <export> + <policy>BOGONS</policy> + <policy>PS_PRIVATE_AS_BLOCK</policy> + <policy>PS_TO_KREONET_LHCONE_PEER_TE</policy> + <policy>PS_TO_KREONET_LHCONE_PEER_ALLOW_TRANSIT</policy> + <policy>PS_TO_LHCONE_PEER</policy> + </export> + <prefix-limit> + <family>ipv6</family> + <maximum>100</maximum> + <idle-timeout>30</idle-timeout> + </prefix-limit> + </neighbor> + </bgp> + <interface> + <interface-name>LAG-11.111</interface-name> + <admin-state>enable</admin-state> + <description>SRV_L3VPN CUSTOMER DFN AP-LHCONE</description> + <ip-mtu>9000</ip-mtu> + <cflowd-parameters> + <sampling> + <sampling-type>unicast</sampling-type> + <type>interface</type> + <direction>ingress-only</direction> + <sample-profile>1</sample-profile> + </sampling> + </cflowd-parameters> + <ipv4> + <bfd> + <admin-state>enable</admin-state> + <transmit-interval>3000</transmit-interval> + <receive>3000</receive> + </bfd> + <primary> + <address>62.40.126.76</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <sap> + <sap-id>lag-11:111</sap-id> + <admin-state>enable</admin-state> + <ingress> + <filter> + <ip>LHCONE_DFN_IN</ip> + <ipv6>LHCONE_DFN_IN</ipv6> + </filter> + </ingress> + <egress> + <filter> + <ip>LHCONE_DFN_OUT</ip> + <ipv6>LHCONE_DFN_OUT</ipv6> + </filter> + </egress> + </sap> + <ipv6> + <address> + <ipv6-address>2001:798:111:1::31</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lag-16.2223</interface-name> + <admin-state>enable</admin-state> + <description>LAB_SRV_L3VPN RE_INTERCONNECT KREONET LAB_NL-KREONET-LHCONE LAB | ASN17579</description> + <ip-mtu>9000</ip-mtu> + <ipv4> + <bfd> + <admin-state>enable</admin-state> + <transmit-interval>3000</transmit-interval> + <receive>3000</receive> + </bfd> + <primary> + <address>62.40.126.8</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <sap> + <sap-id>lag-16:2223</sap-id> + <admin-state>enable</admin-state> + </sap> + <ipv6> + <address> + <ipv6-address>2001:798:111:1::89</ipv6-address> + <prefix-length>126</prefix-length> + </address> + </ipv6> + </interface> + <interface> + <interface-name>lag-17.111</interface-name> + <sap> + <sap-id>lag-17:111</sap-id> + <admin-state>enable</admin-state> + <ingress> + <filter> + <ip>LHCONE_REDIRIS_IN</ip> + <ipv6>LHCONE_REDIRIS_IN</ipv6> + </filter> + </ingress> + <egress> + <filter> + <ip>LHCONE_REDIRIS_OUT</ip> + <ipv6>LHCONE_REDIRIS_OUT</ipv6> + </filter> + </egress> + </sap> + </interface> + <interface> + <interface-name>lt-lhcone-701.b</interface-name> + <admin-state>enable</admin-state> + <description>SRV_L3VPN INFRASTRUCTURE ACCESS LHCONE + #LHCONE-routing-instance-Peering-geneva-lhcone| LHCONE routing-instance</description> + <ipv4> + <primary> + <address>62.40.126.19</address> + <prefix-length>31</prefix-length> + </primary> + </ipv4> + <sap> + <sap-id>lag-701:2</sap-id> + <admin-state>enable</admin-state> + </sap> + </interface> + <static-routes> + <route> + <ip-prefix>192.65.184.146/32</ip-prefix> + <route-type>unicast</route-type> + <next-hop> + <ip-address>62.40.126.18</ip-address> + <admin-state>enable</admin-state> + <description>LHCONE_EBGP_ROUTER_SERVER</description> + </next-hop> + </route> + </static-routes> + </vprn> + <vprn> + <service-name>SNM_OPTICAL_MGMT</service-name> + <admin-state>enable</admin-state> + <description>L3 BGP/MPLS VPN SNM_OPTICAL_MGMT</description> + <service-id>991</service-id> + <customer>1</customer> + <autonomous-system>20965</autonomous-system> + <bgp-ipvpn> + <mpls> + <admin-state>enable</admin-state> + <route-distinguisher>20965:991</route-distinguisher> + <vrf-target> + <community>target:20965:991</community> + </vrf-target> + <auto-bind-tunnel> + <resolution>filter</resolution> + <resolution-filter> + <sr-isis>true</sr-isis> + </resolution-filter> + </auto-bind-tunnel> + </mpls> + </bgp-ipvpn> + <bgp> + <description>SNM_OPTICAL_MGMT</description> + <family> + <ipv6>true</ipv6> + </family> + </bgp> + <interface> + <interface-name>lag-16.103</interface-name> + <admin-state>enable</admin-state> + <description>SRV_GLOBAL INFRASTRUCTURE | #DCN-MANAGEMENT-AMS-RT0</description> + <ipv4> + <primary> + <address>172.17.22.2</address> + <prefix-length>24</prefix-length> + </primary> + <vrrp> + <virtual-router-id>8</virtual-router-id> + <backup>172.17.22.1</backup> + <priority>150</priority> + <ping-reply>true</ping-reply> + </vrrp> + </ipv4> + <sap> + <sap-id>lag-16:103</sap-id> + <admin-state>enable</admin-state> + </sap> + </interface> + </vprn> + <vprn> + <service-name>SNM_SWITCH_MGMT</service-name> + <admin-state>enable</admin-state> + <description>L3 BGP/MPLS VPN SNM_SWITCH_MGMT</description> + <service-id>521</service-id> + <customer>1</customer> + <autonomous-system>20965</autonomous-system> + <bgp-ipvpn> + <mpls> + <admin-state>enable</admin-state> + <route-distinguisher>20965:521</route-distinguisher> + <vrf-target> + <community>target:20965:521</community> + </vrf-target> + <auto-bind-tunnel> + <resolution>filter</resolution> + <resolution-filter> + <sr-isis>true</sr-isis> + </resolution-filter> + </auto-bind-tunnel> + </mpls> + </bgp-ipvpn> + <bgp> + <description>SNM_SWITCH_MGMT</description> + </bgp> + </vprn> + <vprn> + <service-name>pop-lan</service-name> + <admin-state>enable</admin-state> + <description>L3VPN for Secure POP LAN services</description> + <service-id>533</service-id> + <customer>1</customer> + <autonomous-system>20965</autonomous-system> + <bgp-ipvpn> + <mpls> + <admin-state>enable</admin-state> + <route-distinguisher>20965:533</route-distinguisher> + <vrf-target> + <community>target:20965:533</community> + </vrf-target> + <auto-bind-tunnel> + <resolution>filter</resolution> + <resolution-filter> + <sr-isis>true</sr-isis> + </resolution-filter> + </auto-bind-tunnel> + </mpls> + </bgp-ipvpn> + <bgp> + <description>pop-lan</description> + <family> + <ipv6>true</ipv6> + </family> + <group> + <group-name>SNM_GW-v4</group-name> + <description>UPLINK TO IPV4 FGT FW</description> + <passive>true</passive> + <type>external</type> + <peer-as>65111</peer-as> + <local-address>172.17.255.9</local-address> + <family> + <ipv4>true</ipv4> + </family> + <ebgp-default-reject-policy> + <import>true</import> + </ebgp-default-reject-policy> + <import> + <policy>PS_DEFAULT_V4</policy> + </import> + </group> + <neighbor> + <ip-address>172.17.255.10</ip-address> + <admin-state>enable</admin-state> + <group>SNM_GW-v4</group> + </neighbor> + </bgp> + <interface> + <interface-name>lag-3.533</interface-name> + <admin-state>enable</admin-state> + <ipv4> + <primary> + <address>172.17.255.9</address> + <prefix-length>30</prefix-length> + </primary> + </ipv4> + <vpls> + <vpls-name>SNM_ACCESS_POP_LAN</vpls-name> + </vpls> + </interface> + </vprn> + </service> + <sfm> + <sfm-slot>1</sfm-slot> + <admin-state>enable</admin-state> + <sfm-type>sfm2-s</sfm-type> + </sfm> + <sfm> + <sfm-slot>2</sfm-slot> + <admin-state>enable</admin-state> + <sfm-type>sfm2-s</sfm-type> + </sfm> + <sfm> + <sfm-slot>3</sfm-slot> + <admin-state>enable</admin-state> + <sfm-type>sfm2-s</sfm-type> + </sfm> + <sfm> + <sfm-slot>4</sfm-slot> + <admin-state>enable</admin-state> + <sfm-type>sfm2-s</sfm-type> + </sfm> + <system> + <contact>GEANT OC, support@oc.geant.net, +44 (0) 1223 733033</contact> + <name>rt0.ams.nl</name> + <location>Amsterdam,The Netherlands,[52.35640299542275,4.952931412236851]</location> + <load-balancing> + <l4-load-balancing>true</l4-load-balancing> + <lsr-load-balancing>lbl-ip-l4-teid</lsr-load-balancing> + <system-ip-load-balancing>true</system-ip-load-balancing> + </load-balancing> + <grpc> + <admin-state>enable</admin-state> + <allow-unsecure-connection /> + <gnmi> + <auto-config-save>true</auto-config-save> + </gnmi> + </grpc> + <management-interface> + <configuration-mode>model-driven</configuration-mode> + <cli> + <md-cli> + <auto-config-save>true</auto-config-save> + </md-cli> + </cli> + <configuration-save> + <configuration-backups>5</configuration-backups> + <incremental-saves>false</incremental-saves> + </configuration-save> + <netconf> + <admin-state>enable</admin-state> + <auto-config-save>true</auto-config-save> + </netconf> + <yang-modules> + <nokia-submodules>true</nokia-submodules> + <nokia-combined-modules>false</nokia-combined-modules> + </yang-modules> + <snmp> + <admin-state>enable</admin-state> + </snmp> + </management-interface> + <power-management> + <power-zone>1</power-zone> + <mode>none</mode> + <power-safety-level>67</power-safety-level> + </power-management> + <bluetooth> + <advertising-timeout>30</advertising-timeout> + </bluetooth> + <login-control> + <motd> + <text> + --------------------------------------------------------------------------------------------------\r\nThis + is rt0.bil.es.lab.office.geant.net, a GEANT Router in Bilbao, Spain\r\nWarning + Unauthorized access to this equipment is strictly forbidden and will lead to + prosecution\r\n--------------------------------------------------------------------------------------------------\n</text> + </motd> + <pre-login-message> + <message>---------------------------------------------------------\nUnauthorized access to + this system/network is + prohibited.\n---------------------------------------------------------\n</message> + </pre-login-message> + <ssh> + <inbound-max-sessions>15</inbound-max-sessions> + </ssh> + </login-control> + <security> + <dist-cpu-protection> + <policy> + <policy-name>ARP_POLICE</policy-name> + <protocol> + <protocol-name>arp</protocol-name> + <enforcement> + <static> + <policer-name>RATE_ARP</policer-name> + </static> + </enforcement> + </protocol> + <static-policer> + <policer-name>RATE_ARP</policer-name> + <exceed-action> + <action>discard</action> + </exceed-action> + <rate> + <kbps> + <limit>512</limit> + <mbs>1500</mbs> + </kbps> + </rate> + </static-policer> + </policy> + <policy> + <policy-name>EDGE_PROTECT</policy-name> + <type>access-network</type> + <protocol> + <protocol-name>arp</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>icmp</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>igmp</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>mld</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>all-unspecified</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>mpls-ttl</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>bfd-cpm</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>bgp</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>pim</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>rsvp</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>icmp-ping-check</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <protocol> + <protocol-name>vrrp</protocol-name> + <enforcement> + <dynamic> + <mon-policer-name>DYNAMIC_PROTECT</mon-policer-name> + </dynamic> + </enforcement> + </protocol> + <local-monitoring-policer> + <policer-name>DYNAMIC_PROTECT</policer-name> + <exceed-action>discard</exceed-action> + <rate> + <packets> + <limit>1000</limit> + <within>1</within> + </packets> + </rate> + </local-monitoring-policer> + </policy> + <policy> + <policy-name>_default-network-policy</policy-name> + <protocol> + <protocol-name>icmp</protocol-name> + <enforcement> + <static> + <policer-name>ICMP_LIMIT</policer-name> + </static> + </enforcement> + </protocol> + <static-policer> + <policer-name>ICMP_LIMIT</policer-name> + <exceed-action> + <action>discard</action> + </exceed-action> + <rate> + <kbps> + <limit>12000</limit> + <mbs>900000</mbs> + </kbps> + </rate> + </static-policer> + </policy> + </dist-cpu-protection> + <source-address> + <ipv4> + <application>radius</application> + <interface-name>system</interface-name> + </ipv4> + <ipv4> + <application>snmptrap</application> + <interface-name>system</interface-name> + </ipv4> + <ipv4> + <application>syslog</application> + <interface-name>system</interface-name> + </ipv4> + <ipv4> + <application>dns</application> + <interface-name>system</interface-name> + </ipv4> + <ipv4> + <application>ntp</application> + <interface-name>system</interface-name> + </ipv4> + <ipv4> + <application>cflowd</application> + <interface-name>system</interface-name> + </ipv4> + </source-address> + <aaa> + <health-check>none</health-check> + <remote-servers> + <radius> + <authorization>true</authorization> + <server> + <index>1</index> + <address>83.97.94.130</address> + <secret>oYneem3baL16yGOeqRnqCy4vY31EW5azKXZ2s/tL6ywyw9GU hash2</secret> + </server> + <server> + <index>2</index> + <address>83.97.94.129</address> + <secret>oYneem3baL16yGOeqRnqC7OH+f/iW/z+dGseiBhyD7zynDWM hash2</secret> + </server> + </radius> + </remote-servers> + <local-profiles> + <profile> + <user-profile-name>GOC</user-profile-name> + <default-action>permit-all</default-action> + </profile> + <profile> + <user-profile-name>administrative</user-profile-name> + <default-action>permit-all</default-action> + <entry> + <entry-id>10</entry-id> + <match>configure system security</match> + <action>permit</action> + </entry> + <entry> + <entry-id>20</entry-id> + <match>show system security</match> + <action>permit</action> + </entry> + <entry> + <entry-id>30</entry-id> + <match>tools perform security</match> + <action>permit</action> + </entry> + <entry> + <entry-id>40</entry-id> + <match>tools dump security</match> + <action>permit</action> + </entry> + <entry> + <entry-id>50</entry-id> + <match>admin system security</match> + <action>permit</action> + </entry> + <entry> + <entry-id>60</entry-id> + <match>configure li</match> + <action>deny</action> + </entry> + <entry> + <entry-id>70</entry-id> + <match>show li</match> + <action>deny</action> + </entry> + <entry> + <entry-id>80</entry-id> + <match>clear li</match> + <action>deny</action> + </entry> + <entry> + <entry-id>90</entry-id> + <match>tools dump li</match> + <action>deny</action> + </entry> + <netconf> + <base-op-authorization> + <action>true</action> + <cancel-commit>true</cancel-commit> + <close-session>true</close-session> + <commit>true</commit> + <copy-config>true</copy-config> + <create-subscription>true</create-subscription> + <delete-config>true</delete-config> + <discard-changes>true</discard-changes> + <edit-config>true</edit-config> + <get>true</get> + <get-config>true</get-config> + <get-data>true</get-data> + <get-schema>true</get-schema> + <kill-session>true</kill-session> + <lock>true</lock> + <validate>true</validate> + </base-op-authorization> + </netconf> + </profile> + <profile> + <user-profile-name>config_backup</user-profile-name> + <default-action>deny-all</default-action> + <entry> + <entry-id>10</entry-id> + <match>logout</match> + <action>permit</action> + </entry> + <entry> + <entry-id>20</entry-id> + <match>show system information</match> + <action>permit</action> + </entry> + <entry> + <entry-id>30</entry-id> + <match>show log</match> + <action>permit</action> + </entry> + <entry> + <entry-id>40</entry-id> + <match>show card state</match> + <action>permit</action> + </entry> + <entry> + <entry-id>50</entry-id> + <match>show chassis</match> + <action>permit</action> + </entry> + <entry> + <entry-id>60</entry-id> + <match>file show</match> + <action>permit</action> + </entry> + <entry> + <entry-id>70</entry-id> + <match>admin show configuration bof</match> + <action>permit</action> + </entry> + <entry> + <entry-id>80</entry-id> + <match>admin show configuration configure</match> + <action>permit</action> + </entry> + <entry> + <entry-id>90</entry-id> + <match>admin show configuration debug</match> + <action>permit</action> + </entry> + <entry> + <entry-id>100</entry-id> + <match>environment more</match> + <action>permit</action> + </entry> + <entry> + <entry-id>110</entry-id> + <match>admin show configuration</match> + <action>permit</action> + </entry> + <entry> + <entry-id>120</entry-id> + <match>show mda detail</match> + <action>permit</action> + </entry> + <entry> + <entry-id>130</entry-id> + <match>show card detail</match> + <action>permit</action> + </entry> + <entry> + <entry-id>140</entry-id> + <match>show port</match> + <action>permit</action> + </entry> + <entry> + <entry-id>150</entry-id> + <match>show system management-interface commit-history</match> + <action>permit</action> + </entry> + <entry> + <entry-id>160</entry-id> + <match>show redundancy synchronization</match> + <action>permit</action> + </entry> + <entry> + <entry-id>170</entry-id> + <match>show version</match> + <action>permit</action> + </entry> + <entry> + <entry-id>180</entry-id> + <match>show system alarms</match> + <action>permit</action> + </entry> + <entry> + <entry-id>190</entry-id> + <match>show system license</match> + <action>permit</action> + </entry> + <entry> + <entry-id>200</entry-id> + <match>show debug</match> + <action>permit</action> + </entry> + <entry> + <entry-id>210</entry-id> + <match>show bof booted</match> + <action>permit</action> + </entry> + </profile> + <profile> + <user-profile-name>default</user-profile-name> + <entry> + <entry-id>10</entry-id> + <match>exec</match> + <action>permit</action> + </entry> + <entry> + <entry-id>20</entry-id> + <match>exit</match> + <action>permit</action> + </entry> + <entry> + <entry-id>30</entry-id> + <match>help</match> + <action>permit</action> + </entry> + <entry> + <entry-id>40</entry-id> + <match>logout</match> + <action>permit</action> + </entry> + <entry> + <entry-id>50</entry-id> + <match>password</match> + <action>permit</action> + </entry> + <entry> + <entry-id>60</entry-id> + <match>show config</match> + <action>deny</action> + </entry> + <entry> + <entry-id>65</entry-id> + <match>show li</match> + <action>deny</action> + </entry> + <entry> + <entry-id>66</entry-id> + <match>clear li</match> + <action>deny</action> + </entry> + <entry> + <entry-id>67</entry-id> + <match>tools dump li</match> + <action>deny</action> + </entry> + <entry> + <entry-id>68</entry-id> + <match>state li</match> + <action>deny</action> + </entry> + <entry> + <entry-id>70</entry-id> + <match>show</match> + <action>permit</action> + </entry> + <entry> + <entry-id>75</entry-id> + <match>state</match> + <action>permit</action> + </entry> + <entry> + <entry-id>80</entry-id> + <match>enable-admin</match> + <action>permit</action> + </entry> + <entry> + <entry-id>90</entry-id> + <match>enable</match> + <action>permit</action> + </entry> + <entry> + <entry-id>100</entry-id> + <match>configure li</match> + <action>deny</action> + </entry> + </profile> + <profile> + <user-profile-name>netconf_example</user-profile-name> + <default-action>deny-all</default-action> + <entry> + <entry-id>10</entry-id> + <match>logout</match> + <action>permit</action> + </entry> + <netconf> + <base-op-authorization> + <action>true</action> + <close-session>true</close-session> + <get-config>true</get-config> + <get-schema>true</get-schema> + </base-op-authorization> + </netconf> + </profile> + <profile> + <user-profile-name>netconf_inprov</user-profile-name> + <default-action>read-only-all</default-action> + <entry> + <entry-id>10</entry-id> + <match>logout</match> + <action>permit</action> + </entry> + <entry> + <entry-id>20</entry-id> + <match>show port</match> + <action>permit</action> + </entry> + <entry> + <entry-id>30</entry-id> + <match>show lag</match> + <action>permit</action> + </entry> + <entry> + <entry-id>40</entry-id> + <match>show router interface</match> + <action>permit</action> + </entry> + <entry> + <entry-id>50</entry-id> + <match>show system</match> + <action>permit</action> + </entry> + <entry> + <entry-id>60</entry-id> + <match>show chassis</match> + <action>permit</action> + </entry> + <entry> + <entry-id>70</entry-id> + <match>show card</match> + <action>permit</action> + </entry> + <netconf> + <base-op-authorization> + <close-session>true</close-session> + <get>true</get> + <get-config>true</get-config> + <get-schema>true</get-schema> + </base-op-authorization> + </netconf> + </profile> + <profile> + <user-profile-name>nomios</user-profile-name> + <default-action>deny-all</default-action> + <entry> + <entry-id>10</entry-id> + <match>logout</match> + <action>permit</action> + </entry> + <entry> + <entry-id>20</entry-id> + <match>ping</match> + <action>permit</action> + </entry> + <entry> + <entry-id>30</entry-id> + <match>traceroute</match> + <action>permit</action> + </entry> + <entry> + <entry-id>40</entry-id> + <match>show router</match> + <action>permit</action> + </entry> + <entry> + <entry-id>50</entry-id> + <match>show system</match> + <action>permit</action> + </entry> + <entry> + <entry-id>60</entry-id> + <match>show</match> + <action>permit</action> + </entry> + <entry> + <entry-id>70</entry-id> + <match>monitor</match> + <action>permit</action> + </entry> + <entry> + <entry-id>80</entry-id> + <match>file</match> + <action>permit</action> + </entry> + <entry> + <entry-id>90</entry-id> + <match>admin show configuration</match> + <action>permit</action> + </entry> + </profile> + <profile> + <user-profile-name>restricted-mon</user-profile-name> + <default-action>deny-all</default-action> + <entry> + <entry-id>10</entry-id> + <match>logout</match> + <action>permit</action> + </entry> + <entry> + <entry-id>20</entry-id> + <match>show users</match> + <action>permit</action> + </entry> + <entry> + <entry-id>30</entry-id> + <match>show port</match> + <action>permit</action> + </entry> + <entry> + <entry-id>40</entry-id> + <match>show lag</match> + <action>permit</action> + </entry> + <entry> + <entry-id>50</entry-id> + <match>monitor port</match> + <action>permit</action> + </entry> + <entry> + <entry-id>60</entry-id> + <match>monitor lag</match> + <action>permit</action> + </entry> + <entry> + <entry-id>70</entry-id> + <match>show router interface</match> + <action>permit</action> + </entry> + <entry> + <entry-id>80</entry-id> + <match>ping</match> + <action>permit</action> + </entry> + <entry> + <entry-id>90</entry-id> + <match>show router</match> + <action>permit</action> + </entry> + <entry> + <entry-id>100</entry-id> + <match>show snmp</match> + <action>permit</action> + </entry> + <entry> + <entry-id>110</entry-id> + <match>show system</match> + <action>permit</action> + </entry> + <entry> + <entry-id>120</entry-id> + <match>show chassis</match> + <action>permit</action> + </entry> + <entry> + <entry-id>130</entry-id> + <match>show card</match> + <action>permit</action> + </entry> + <entry> + <entry-id>140</entry-id> + <match>show mda</match> + <action>permit</action> + </entry> + <entry> + <entry-id>150</entry-id> + <match>show sfm</match> + <action>permit</action> + </entry> + <entry> + <entry-id>160</entry-id> + <match>show service</match> + <action>permit</action> + </entry> + <entry> + <entry-id>170</entry-id> + <match>admin show configuration</match> + <action>permit</action> + </entry> + <entry> + <entry-id>180</entry-id> + <match>admin display-config</match> + <action>permit</action> + </entry> + <entry> + <entry-id>190</entry-id> + <match>environment</match> + <action>permit</action> + </entry> + </profile> + <profile> + <user-profile-name>restricted-nren</user-profile-name> + <default-action>deny-all</default-action> + <entry> + <entry-id>10</entry-id> + <match>logout</match> + <action>permit</action> + </entry> + <entry> + <entry-id>20</entry-id> + <match>show users</match> + <action>permit</action> + </entry> + <entry> + <entry-id>30</entry-id> + <match>show port</match> + <action>permit</action> + </entry> + <entry> + <entry-id>40</entry-id> + <match>show lag</match> + <action>permit</action> + </entry> + <entry> + <entry-id>50</entry-id> + <match>monitor port</match> + <action>permit</action> + </entry> + <entry> + <entry-id>60</entry-id> + <match>monitor lag</match> + <action>permit</action> + </entry> + <entry> + <entry-id>70</entry-id> + <match>show router interface</match> + <action>permit</action> + </entry> + <entry> + <entry-id>80</entry-id> + <match>ping</match> + <action>permit</action> + </entry> + <entry> + <entry-id>90</entry-id> + <match>show router</match> + <action>permit</action> + </entry> + <entry> + <entry-id>100</entry-id> + <match>show snmp</match> + <action>permit</action> + </entry> + <entry> + <entry-id>110</entry-id> + <match>show system</match> + <action>permit</action> + </entry> + <entry> + <entry-id>120</entry-id> + <match>show chassis</match> + <action>permit</action> + </entry> + <entry> + <entry-id>130</entry-id> + <match>show card</match> + <action>permit</action> + </entry> + <entry> + <entry-id>140</entry-id> + <match>show mda</match> + <action>permit</action> + </entry> + <entry> + <entry-id>150</entry-id> + <match>show sfm</match> + <action>permit</action> + </entry> + <entry> + <entry-id>160</entry-id> + <match>show service</match> + <action>permit</action> + </entry> + <entry> + <entry-id>170</entry-id> + <match>environment</match> + <action>permit</action> + </entry> + </profile> + </local-profiles> + </aaa> + <cpm-filter> + <default-action>drop</default-action> + <ip-filter> + <admin-state>enable</admin-state> + <entry> + <entry-id>10</entry-id> + <description>BGP_PEERS_BASE</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-BGP_PEERS_BASE-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>20</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_OFFICE_NETWORKS</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>21</entry-id> + <description>SIMONE_GNMIC</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <address>62.40.111.22/32</address> + </src-ip> + <dst-port> + <eq>57400</eq> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>30</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_VPN_NETWORKS</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>40</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_RANCID</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>50</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>NOMIOS_SUPPORT</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>60</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_LIBRENMS</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>70</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_IMS</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>80</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_GAP</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>90</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_GAP_GSO_UAT</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>100</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_DASHBOARD</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>110</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_LOOKING_GLASS</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>120</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_NE_SERVERS</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>125</entry-id> + <description>SSH</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_JUMP_SERVERS</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>130</entry-id> + <description>ICMPV4</description> + <match> + <protocol>icmp</protocol> + <icmp> + <type>0</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>140</entry-id> + <description>ICMPV4</description> + <match> + <protocol>icmp</protocol> + <icmp> + <type>3</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>150</entry-id> + <description>ICMPV4</description> + <match> + <protocol>icmp</protocol> + <icmp> + <type>8</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>160</entry-id> + <description>ICMPV4</description> + <match> + <protocol>icmp</protocol> + <icmp> + <type>11</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>170</entry-id> + <description>ICMPV4</description> + <match> + <protocol>icmp</protocol> + <icmp> + <type>13</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>180</entry-id> + <description>ICMPV4</description> + <match> + <protocol>icmp</protocol> + <icmp> + <type>14</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>190</entry-id> + <description>TWAMP</description> + <match> + <protocol>tcp-udp</protocol> + <src-ip> + <ip-prefix-list>TWAMP_CLIENTS</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-TWAMP-DST_PORT_RANGE</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>200</entry-id> + <description>TWAMP_682</description> + <match> + <protocol>tcp-udp</protocol> + <src-ip> + <ip-prefix-list>TWAMP_CLIENTS</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-TWAMP_682-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>210</entry-id> + <description>NETCONF</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_GAP</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-NETCONF-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>220</entry-id> + <description>NETCONF</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_GAP_GSO_UAT</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-NETCONF-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>230</entry-id> + <description>NETCONF</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>GEANT_DASHBOARD</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-NETCONF-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>240</entry-id> + <description>RADIUS</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>GEANT_DC</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-RADIUS-PORT_RANGE</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>250</entry-id> + <description>NTP</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>GEANT_NTP</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-NTP-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>260</entry-id> + <description>NTP</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>PUBLIC_NTP</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-NTP-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>270</entry-id> + <description>SNMP</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>GEANT_LIBRENMS</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-SNMP-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>280</entry-id> + <description>SNMP</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>GEANT_SNMP</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-SNMP-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>290</entry-id> + <description>SNMP</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>GEANT_SNMP_UAT</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-SNMP-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>295</entry-id> + <description>SNMP</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>TOOLS_KENTIK</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-SNMP-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>298</entry-id> + <description>SNMP</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>TIMEMAP_SNMP</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-SNMP-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>300</entry-id> + <description>PIM</description> + <match> + <protocol>pim</protocol> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>310</entry-id> + <description>RSVP</description> + <match> + <protocol>rsvp</protocol> + <src-ip> + <ip-prefix-list>GEANT_ADDRESS_SPACE</ip-prefix-list> + </src-ip> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>320</entry-id> + <description>TRACEROUTE</description> + <match> + <protocol>udp</protocol> + <port> + <port-list>CPMF_V4-TRACEROUTE-PORT_RANGE</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>325</entry-id> + <description>OAM_MPLS</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>GEANT_ROUTERS</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-OAM_TRACE_PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>330</entry-id> + <description>DNS</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>GEANT_DNS</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-DNS-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>340</entry-id> + <description>MICRO_BFD</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>TWAMP_CLIENTS</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-MICRO_BFD-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>350</entry-id> + <description>T_LDP</description> + <match> + <protocol>tcp-udp</protocol> + <src-ip> + <ip-prefix-list>GEANT_ROUTERS</ip-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V4-T_LDP-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>355</entry-id> + <description>RPKI</description> + <match> + <protocol>tcp</protocol> + <src-port> + <port-list>CPMF_V4_RPKI_PORTS</port-list> + </src-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>360</entry-id> + <description>BFD_EBGP</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-BFD-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>370</entry-id> + <description>MH_BFD_EBGP</description> + <match> + <protocol>udp</protocol> + <src-ip> + <ip-prefix-list>BGP_PEERS_BASE</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-MULTIHOP-BFD-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>380</entry-id> + <description>GRE</description> + <match> + <protocol>gre</protocol> + <src-ip> + <ip-prefix-list>EXTERNAL_GRE</ip-prefix-list> + </src-ip> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>390</entry-id> + <description>IGMP</description> + <match> + <protocol>igmp</protocol> + <src-ip> + <ip-prefix-list>EXTERNAL_IGMP</ip-prefix-list> + </src-ip> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>400</entry-id> + <description>VRRP</description> + <match> + <protocol>vrrp</protocol> + <dst-ip> + <ip-prefix-list>GEANT_DC_VRRP</ip-prefix-list> + </dst-ip> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>430</entry-id> + <description>MOODI_GNMI</description> + <match> + <protocol>tcp</protocol> + <src-ip> + <ip-prefix-list>MOODI_SERVERS</ip-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V4-MOODI_GNMI-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>4000</entry-id> + <description>DF_DENY</description> + <log>102</log> + <match> + <dst-ip> + <ip-prefix-list>GEANT_ROUTERS</ip-prefix-list> + </dst-ip> + </match> + <action> + <drop /> + </action> + </entry> + </ip-filter> + <ipv6-filter> + <admin-state>enable</admin-state> + <entry> + <entry-id>10</entry-id> + <description>BGP_PEERS_BASE</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V6-BGP_PEERS_BASE-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>20</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_OFFICE_NETWORKS</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>30</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_VPN_NETWORKS</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>40</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_RANCID</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>50</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_LIBRENMS</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>60</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_IMS</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>70</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_GAP</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>80</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_GAP_GSO_UAT</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>90</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_DASHBOARD</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>100</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_LOOKING_GLASS</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>110</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_NE_SERVERS</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>115</entry-id> + <description>SSH</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_JUMP_SERVERS</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-SSH-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>120</entry-id> + <description>NETCONF</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_GAP</ipv6-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V6-NETCONF-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>130</entry-id> + <description>NETCONF</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_GAP_GSO_UAT</ipv6-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V6-NETCONF-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>140</entry-id> + <description>NETCONF</description> + <match> + <next-header>tcp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_DASHBOARD</ipv6-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V6-NETCONF-PORTS</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>150</entry-id> + <description>PIM</description> + <match> + <next-header>pim</next-header> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>160</entry-id> + <description>ICMP_GEANT</description> + <match> + <next-header>ipv6-icmp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_IPV6_NETWORKS</ipv6-prefix-list> + </src-ip> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>170</entry-id> + <description>ICMP_GLOBAL</description> + <match> + <next-header>ipv6-icmp</next-header> + <icmp> + <type>1</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>180</entry-id> + <description>ICMP_GLOBAL</description> + <match> + <next-header>ipv6-icmp</next-header> + <icmp> + <type>2</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>190</entry-id> + <description>ICMP_GLOBAL</description> + <match> + <next-header>ipv6-icmp</next-header> + <icmp> + <type>3</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>200</entry-id> + <description>ICMP_GLOBAL</description> + <match> + <next-header>ipv6-icmp</next-header> + <icmp> + <type>4</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>210</entry-id> + <description>ICMP_GLOBAL</description> + <match> + <next-header>ipv6-icmp</next-header> + <icmp> + <type>128</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>220</entry-id> + <description>ICMP_GLOBAL</description> + <match> + <next-header>ipv6-icmp</next-header> + <icmp> + <type>129</type> + </icmp> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>230</entry-id> + <description>ICMP_ND</description> + <match> + <next-header>ipv6-icmp</next-header> + <dst-ip> + <ipv6-prefix-list>IPV6_ND</ipv6-prefix-list> + </dst-ip> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>240</entry-id> + <description>TRACEROUTE</description> + <match> + <next-header>udp</next-header> + <src-ip> + <ipv6-prefix-list>GEANT_ADDRESS_SPACE</ipv6-prefix-list> + </src-ip> + <port> + <port-list>CPMF_V6-TRACEROUTE-PORT_RANGE</port-list> + </port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>280</entry-id> + <description>MLD</description> + <match> + <next-header>58</next-header> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>300</entry-id> + <description>VRRP</description> + <match> + <next-header>vrrp</next-header> + <dst-ip> + <ipv6-prefix-list>GEANT_IPV6_DC_VRRP</ipv6-prefix-list> + </dst-ip> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>340</entry-id> + <description>BFD_EBGP</description> + <match> + <next-header>udp</next-header> + <src-ip> + <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-BFD-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>360</entry-id> + <description>MH_BFD_EBGP</description> + <match> + <next-header>udp</next-header> + <src-ip> + <ipv6-prefix-list>BGP_PEERS_BASE</ipv6-prefix-list> + </src-ip> + <dst-port> + <port-list>CPMF_V6-MULTIHOP-BFD-DST_PORTS</port-list> + </dst-port> + </match> + <action> + <accept /> + </action> + </entry> + <entry> + <entry-id>4000</entry-id> + <description>DF_DENY</description> + <log>102</log> + <match> + <dst-ip> + <ipv6-prefix-list>GEANT_ROUTERS</ipv6-prefix-list> + </dst-ip> + </match> + <action> + <drop /> + </action> + </entry> + </ipv6-filter> + </cpm-filter> + <snmp> + <access> + <group>TIMEMAP_VIEW</group> + <context /> + <security-model>snmpv2c</security-model> + <security-level>no-auth-no-privacy</security-level> + <read>TIMEMAP_VIEW</read> + </access> + <community> + <community-string>lO4FkzXlh+UBzEv5BhPggdXcfzE= hash2</community-string> + <access-permissions>r</access-permissions> + </community> + <community> + <community-string>zQyAqg9SYWLrzLBYiTybvsQYcGBBMj1EMVQwJcml hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_tools_mon</source-access-list> + </community> + <community> + <community-string>i0mzNdj0HzPYfU+39WQ8r7GWAZTalWPl0J4= hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_tools_mon</source-access-list> + </community> + <community> + <community-string>ubJcrJkB1hc0UdS6lPxjFpvfCQZLvlZzXpmqhzVUa2Eibg== hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_tools_mon</source-access-list> + </community> + <community> + <community-string>uGThXBKL7ddEUwPoLs0SFx3Bp+leyJdMYcNo1nU= hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + </community> + <community> + <community-string>L9NkytHUeg0UTLF+MnUho+Sa31merj4glQ== hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_tools_mon</source-access-list> + </community> + <community> + <community-string>VhwJVM2ldShxI+56jgMGFniEDE7ElNx830kkvdit hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_tools_mon</source-access-list> + </community> + <community> + <community-string>/1IkmOhOpLBshXO9mSH4SZsY15ZGlEywrugOku7Xvp43 hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_global-oc-servers</source-access-list> + </community> + <community> + <community-string>Qr2f8qbBy/hUXEsGDHcEHHG1f4cd7/v3iiTs8Vvt1UWmZQ== hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_librenms</source-access-list> + </community> + <community> + <community-string>ochB1k6FYz7RKZpt/znwjNoJdA+jra6T54E= hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_brian</source-access-list> + </community> + <community> + <community-string>XXKUcZ4zOsQg3H1nOiZvXR8NzGP9wtaCPIkEtWoa hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_dashboard</source-access-list> + </community> + <community> + <community-string>KZ9KjiniM3QC+rnFJqBugdMWHEpuUdG+nI0h hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_inprov</source-access-list> + </community> + <community> + <community-string>MOcM8epLpi88h5dlFL58CLWNeoCs2J3dHTI= hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_brian</source-access-list> + </community> + <community> + <community-string>sAn9155I4QCm8u6kMA38+rL6J2YRal5SfgOmNZxw hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_dashboard</source-access-list> + </community> + <community> + <community-string>DcCEYGV5n2ukDbk/QlOzdzBFRb6Pj3+6SlVK hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_inprov</source-access-list> + </community> + <community> + <community-string>Hfvmpr5kAclNP3gm2NuXjy0gUJD3EGHz7g== hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_brian</source-access-list> + </community> + <community> + <community-string>fif3vWRbIsSVNN/KHjcFx1Pg9X8BlD8hyWcPY3Y= hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_dashboard</source-access-list> + </community> + <community> + <community-string>tLZHtisSDHHQVpFxwQ4HMtefVeY2IIfctzw= hash2</community-string> + <access-permissions>r</access-permissions> + <version>v2c</version> + <source-access-list>snmp_inprov</source-access-list> + </community> + <usm-community> + <community-string>SrVB4RtXTrvi8HXjFOlK/V0VPBm9L6Jy hash2</community-string> + <group>TIMEMAP_VIEW</group> + <source-access-list>snmp_3VfrNKak</source-access-list> + </usm-community> + <source-access-list> + <list-name>snmp_3VfrNKak</list-name> + <source-host> + <host-name>3VfrNKak_TIMEMAP-01</host-name> + <address>193.219.48.249</address> + </source-host> + <source-host> + <host-name>3VfrNKak_TIMEMAP-02</host-name> + <address>193.219.48.250</address> + </source-host> + <source-host> + <host-name>3VfrNKak_TIMEMAP-03</host-name> + <address>83.97.94.180</address> + </source-host> + <source-host> + <host-name>3VfrNKak_TIMEMAP-04</host-name> + <address>83.97.95.193</address> + </source-host> + <source-host> + <host-name>3VfrNKak_TIMEMAP-05</host-name> + <address>83.97.95.194</address> + </source-host> + <source-host> + <host-name>3VfrNKak_TIMEMAP-06</host-name> + <address>83.97.95.195</address> + </source-host> + <source-host> + <host-name>3VfrNKak_TIMEMAP-07</host-name> + <address>62.40.111.47</address> + </source-host> + </source-access-list> + <source-access-list> + <list-name>snmp_brian</list-name> + <source-host> + <host-name>prod-poller-sensu-agent01</host-name> + <address>83.97.95.11</address> + </source-host> + <source-host> + <host-name>prod-poller-sensu-agent02</host-name> + <address>83.97.95.12</address> + </source-host> + <source-host> + <host-name>prod-poller-sensu-agent03</host-name> + <address>83.97.93.155</address> + </source-host> + <source-host> + <host-name>test-poller-sensu-agent01</host-name> + <address>83.97.94.245</address> + </source-host> + <source-host> + <host-name>test-poller-sensu-agent02</host-name> + <address>83.97.94.246</address> + </source-host> + <source-host> + <host-name>test-poller-sensu-agent03</host-name> + <address>83.97.93.52</address> + </source-host> + <source-host> + <host-name>test-poller01</host-name> + <address>83.97.92.94</address> + </source-host> + <source-host> + <host-name>uat-poller-sensu-agent01</host-name> + <address>83.97.95.9</address> + </source-host> + <source-host> + <host-name>uat-poller-sensu-agent02</host-name> + <address>83.97.95.10</address> + </source-host> + <source-host> + <host-name>uat-poller-sensu-agent03</host-name> + <address>83.97.93.154</address> + </source-host> + </source-access-list> + <source-access-list> + <list-name>snmp_dashboard</list-name> + <source-host> + <host-name>test-noc-alarms01</host-name> + <address>83.97.92.228</address> + </source-host> + <source-host> + <host-name>test-noc-alarms02</host-name> + <address>83.97.93.53</address> + </source-host> + <source-host> + <host-name>test-noc-alarms03</host-name> + <address>83.97.94.185</address> + </source-host> + <source-host> + <host-name>uat-noc-alarms01</host-name> + <address>83.97.93.151</address> + </source-host> + <source-host> + <host-name>uat-noc-alarms02</host-name> + <address>83.97.94.51</address> + </source-host> + <source-host> + <host-name>uat-noc-alarms03</host-name> + <address>83.97.94.188</address> + </source-host> + </source-access-list> + <source-access-list> + <list-name>snmp_global-oc-servers</list-name> + <source-host> + <host-name>neteamserver01</host-name> + <address>83.97.94.182</address> + </source-host> + <source-host> + <host-name>oc-server-fra-de</host-name> + <address>83.97.93.122</address> + </source-host> + <source-host> + <host-name>oc-server-lon2-uk</host-name> + <address>83.97.94.181</address> + </source-host> + <source-host> + <host-name>oc-server-par-fr</host-name> + <address>83.97.93.123</address> + </source-host> + <source-host> + <host-name>prod-oc-server01</host-name> + <address>83.97.92.92</address> + </source-host> + <source-host> + <host-name>prod-oc-server02</host-name> + <address>83.97.92.99</address> + </source-host> + <source-host> + <host-name>test-oc-server01</host-name> + <address>83.97.92.61</address> + </source-host> + </source-access-list> + <source-access-list> + <list-name>snmp_inprov</list-name> + <source-host> + <host-name>prod-inprov01</host-name> + <address>83.97.94.2</address> + </source-host> + <source-host> + <host-name>prod-inprov02</host-name> + <address>83.97.94.9</address> + </source-host> + <source-host> + <host-name>prod-inprov03</host-name> + <address>83.97.94.15</address> + </source-host> + <source-host> + <host-name>prod-inventory-provider01</host-name> + <address>83.97.94.97</address> + </source-host> + <source-host> + <host-name>prod-inventory-provider02</host-name> + <address>83.97.94.98</address> + </source-host> + <source-host> + <host-name>test-inprov01</host-name> + <address>83.97.93.204</address> + </source-host> + <source-host> + <host-name>test-inprov02</host-name> + <address>83.97.93.244</address> + </source-host> + <source-host> + <host-name>test-inprov03</host-name> + <address>83.97.93.248</address> + </source-host> + <source-host> + <host-name>test-inventory-provider01</host-name> + <address>83.97.93.152</address> + </source-host> + <source-host> + <host-name>test-inventory-provider02</host-name> + <address>83.97.93.153</address> + </source-host> + <source-host> + <host-name>uat-inprov01</host-name> + <address>83.97.93.249</address> + </source-host> + <source-host> + <host-name>uat-inprov02</host-name> + <address>83.97.93.251</address> + </source-host> + <source-host> + <host-name>uat-inprov03</host-name> + <address>83.97.94.1</address> + </source-host> + <source-host> + <host-name>uat-inventory-provider01</host-name> + <address>83.97.94.52</address> + </source-host> + <source-host> + <host-name>uat-inventory-provider02</host-name> + <address>83.97.93.239</address> + </source-host> + </source-access-list> + <source-access-list> + <list-name>snmp_kentik</list-name> + <source-host> + <host-name>kentik-agent01</host-name> + <address>209.50.159.78</address> + </source-host> + </source-access-list> + <source-access-list> + <list-name>snmp_librenms</list-name> + <source-host> + <host-name>librenms-lab</host-name> + <address>62.40.111.47</address> + </source-host> + <source-host> + <host-name>librenms-prod</host-name> + <address>83.97.95.39</address> + </source-host> + <source-host> + <host-name>librenms-uat</host-name> + <address>83.97.95.37</address> + </source-host> + <source-host> + <host-name>uat-librenms-core01</host-name> + <address>62.40.111.30</address> + </source-host> + <source-host> + <host-name>uat-librenms-poller01</host-name> + <address>62.40.111.31</address> + </source-host> + </source-access-list> + <source-access-list> + <list-name>snmp_tools_mon</list-name> + <source-host> + <host-name>FLOWMON-Primary</host-name> + <address>62.40.100.166</address> + </source-host> + <source-host> + <host-name>flowmon</host-name> + <address>62.40.120.90</address> + </source-host> + <source-host> + <host-name>flowmon-ddos-fra</host-name> + <address>62.40.100.190</address> + </source-host> + <source-host> + <host-name>flowmon-ddos-par</host-name> + <address>62.40.100.198</address> + </source-host> + <source-host> + <host-name>flowmon2</host-name> + <address>62.40.122.138</address> + </source-host> + <source-host> + <host-name>intermapper</host-name> + <address>83.97.92.219</address> + </source-host> + <source-host> + <host-name>netsage</host-name> + <address>83.97.94.14</address> + </source-host> + <source-host> + <host-name>prod-fod</host-name> + <address>83.97.93.59</address> + </source-host> + <source-host> + <host-name>prod-fod01</host-name> + <address>83.97.92.79</address> + </source-host> + <source-host> + <host-name>prod-lg</host-name> + <address>83.97.93.39</address> + </source-host> + <source-host> + <host-name>uat-fod</host-name> + <address>83.97.92.183</address> + </source-host> + </source-access-list> + <view> + <view-name>TIMEMAP_VIEW</view-name> + <subtree>.1.3.6.1.4.1.6527.3.1.2.92</subtree> + <type>included</type> + </view> + </snmp> + <ssh> + <preserve-key>true</preserve-key> + <server-cipher-list-v2> + <cipher> + <index>190</index> + <name>aes256-ctr</name> + </cipher> + <cipher> + <index>192</index> + <name>aes192-ctr</name> + </cipher> + <cipher> + <index>194</index> + <name>aes128-ctr</name> + </cipher> + <cipher> + <index>200</index> + <name>aes128-cbc</name> + </cipher> + <cipher> + <index>205</index> + <name>3des-cbc</name> + </cipher> + <cipher> + <index>225</index> + <name>aes192-cbc</name> + </cipher> + <cipher> + <index>230</index> + <name>aes256-cbc</name> + </cipher> + </server-cipher-list-v2> + <client-cipher-list-v2> + <cipher> + <index>190</index> + <name>aes256-ctr</name> + </cipher> + <cipher> + <index>192</index> + <name>aes192-ctr</name> + </cipher> + <cipher> + <index>194</index> + <name>aes128-ctr</name> + </cipher> + <cipher> + <index>200</index> + <name>aes128-cbc</name> + </cipher> + <cipher> + <index>205</index> + <name>3des-cbc</name> + </cipher> + <cipher> + <index>225</index> + <name>aes192-cbc</name> + </cipher> + <cipher> + <index>230</index> + <name>aes256-cbc</name> + </cipher> + </client-cipher-list-v2> + <server-mac-list-v2> + <mac> + <index>200</index> + <name>hmac-sha2-512</name> + </mac> + <mac> + <index>210</index> + <name>hmac-sha2-256</name> + </mac> + <mac> + <index>215</index> + <name>hmac-sha1</name> + </mac> + <mac> + <index>220</index> + <name>hmac-sha1-96</name> + </mac> + <mac> + <index>225</index> + <name>hmac-md5</name> + </mac> + <mac> + <index>240</index> + <name>hmac-md5-96</name> + </mac> + </server-mac-list-v2> + <client-mac-list-v2> + <mac> + <index>200</index> + <name>hmac-sha2-512</name> + </mac> + <mac> + <index>210</index> + <name>hmac-sha2-256</name> + </mac> + <mac> + <index>215</index> + <name>hmac-sha1</name> + </mac> + <mac> + <index>220</index> + <name>hmac-sha1-96</name> + </mac> + <mac> + <index>225</index> + <name>hmac-md5</name> + </mac> + <mac> + <index>240</index> + <name>hmac-md5-96</name> + </mac> + </client-mac-list-v2> + </ssh> + <user-params> + <authentication-order> + <order>radius</order> + <order>local</order> + </authentication-order> + <local-user> + <user> + <user-name>R4nC1dN0k</user-name> + <password>$2y$10$SKQqRBwvLOhdc6dJJ6FeI.1Yv4fztCf1xmoUTMCPRKIu6wDEAsR4G</password> + <access> + <console>true</console> + </access> + <console> + <member>config_backup</member> + </console> + <public-keys> + <ecdsa> + <ecdsa-key> + <ecdsa-public-key-id>1</ecdsa-public-key-id> + <key-value> + AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBH8Qe7NoQCFnKnXRl2sPB1yUXf4hokYsN3HUbj6fKkeDCLDL9MWxXRh2Pbns/q1Y79Ab6GkjcnhxFIMT6Wj1i5E=</key-value> + </ecdsa-key> + </ecdsa> + </public-keys> + </user> + <user> + <user-name>admin</user-name> + <password>$2y$10$k2TmajZKvyznJSnXDNCVs.UW7z1s5of1Vy/ZRtsMzKMuTKxUKzUAm</password> + <access> + <console>true</console> + <netconf>true</netconf> + <grpc>true</grpc> + </access> + <console> + <member>administrative</member> + </console> + </user> + <user> + <user-name>daniel</user-name> + <password>$2y$10$8OtUWKEx3x5T0tN4CsiQM.fdw2rSK.8cppCOczNPD.vKFo8wtvhAS</password> + <access> + <console>true</console> + </access> + <console> + <member>administrative</member> + </console> + <public-keys> + <ecdsa> + <ecdsa-key> + <ecdsa-public-key-id>1</ecdsa-public-key-id> + <key-value> + AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHM0KVy3Ca/+V2xcNtOXJpWkxrZeiITjvTTRw2QnhN2gLcJtkUKI5ylW9hr5gxnvhTH5POIZ39VuHf2fgGqhNs4=</key-value> + </ecdsa-key> + </ecdsa> + </public-keys> + </user> + <user> + <user-name>gap-lso-uat</user-name> + <password>$2y$10$fgpTXYaeLk6fnQjQkF54s.Ns8w94Fw4RiBgc7ymhM3OsHmH0EykVm</password> + <access> + <console>true</console> + <netconf>true</netconf> + </access> + <console> + <member>administrative</member> + </console> + <public-keys> + <ecdsa> + <ecdsa-key> + <ecdsa-public-key-id>1</ecdsa-public-key-id> + <key-value> + AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAEipXFRSFzx/4jswTdgKvWuYTV74KOIBePozJ5ojlpiK+uzTbaOQJU/KEgwVeSpRfQx6WFLEGYMuVnZFcnN4RG+7wBNLIMqpb7ZAkIPGp2wF1XcgV/MeTsS54hQqBvP2eou8nHNc2iQjmMPyrfHENpIxVGsth1BqCwKCMTsiN23D4lfsQ==</key-value> + </ecdsa-key> + </ecdsa> + </public-keys> + </user> + <user> + <user-name>geant-ne-na-lab</user-name> + <password>$2y$10$k2TmajZKvyznJSnXDNCVs.UW7z1s5of1Vy/ZRtsMzKMuTKxUKzUAm</password> + <access> + <console>true</console> + <netconf>true</netconf> + </access> + <console> + <member>administrative</member> + </console> + <public-keys> + <rsa> + <rsa-key> + <rsa-public-key-id>1</rsa-public-key-id> + <key-value> + AAAAB3NzaC1yc2EAAAADAQABAAABgQDDex80puS4SOcjsY3T4OztwQUO0TXzRrwJABXmcJ80gwKpq6283HNbusMimgN1Q5WFY+nxqVQsCyX9SEP7m92i73bmNum7L0JegY0s96bhzhMqyfCBt2JQ/eCMZ6pRZjvsPEw0iQxErkWIeLWrlMj6h+o4evBVveRQ6I06pWL+mpO3TFrCIKis5UHanqNbJCp3oGMwuYzwP/1bgxxmImdGRfc4wd25aWHqMErZKwVz/0C5UKBXhLBl4+r3As4WvMkzA3ijbQDPkJpP8Rx+Hp7JcHcnjdUlNCXqTdlLMGgeSgXysxQQswimOhwcg5ligFw88tiFl6sSTzIpudHAsWntA9QRmmRU3NU7BFAnPsfjx24STmqiUqrI19VmcjtkpVHsDAHYb5ums5gDQ9eXdLvxjZVUN3Lxb9/28BRW1Wkmjfu7UTSlOvuM9bD4cPIp5gkYrpY05Pp+PwIcvBgFhRR0Jmxugt1pFBHePVnYyA5pHLlxSEA9Da95YN8UrtI+N5M=</key-value> + </rsa-key> + </rsa> + </public-keys> + </user> + <user> + <user-name>inprov</user-name> + <password>$2y$10$KdVzmdaM917QiD2CeK1hI.EAFgTMfjHsLOESCejQytl4bbUNu1EfW</password> + <access> + <console>true</console> + <netconf>true</netconf> + </access> + <console> + <member>netconf_inprov</member> + </console> + <public-keys> + <rsa> + <rsa-key> + <rsa-public-key-id>1</rsa-public-key-id> + <key-value> + AAAAB3NzaC1yc2EAAAADAQABAAACAQC8MAtn/FRKr7NzeRZo+AURHNYbBVEp9Xy67Fa4eetETCV5IJZ7VZKuGJC/IUD8OLEAKCfpgHoQ+QeJCp5M4llKqbB9EsKHbq9SWcN0oB39jYHsYQO9/CwG3TaQPbwWDCmJowKOkfDVdNjhmD9E5hvsoazIBny29RfXCnYFcogITQ9z49npQdtF8IF+3qNYxGTJUUEt1EFymYpl9c77LFnZuppDQlTdpa8A33klcrhUKTXxn2AZcFdg5ZGBbajTBvFqG/1U/RgCdHpeLxS1UW29FTu7SFllSG/XvEL9Ai91MPMpr07vQVc8DqZFQ5o7AhHkm3fXpvIgnff2YroXZhjF1sIRS7F5WY48o/sCBN36wGmQgfvuxGeQ1B2LDMhdtX0oN0KiMZ2HFuhGJIpmUhB7iMv9aZxJV+/RCjdJIzq6S/ilPZzwOjFy8H2zDy9YPGNQgAI5JJtRcEbCgnqYWfCkY7sr9vK3wwCGDfqhRyUaTj1teVDrCEWdEPSjsTDc9D1JNr/4vnYW3OJH7Cvu+ELXMwfpkad9A0jfdAtDuUoC63sG4Z6ybRdJ80ozlbwSmXc4vLJKm9chPSu9lBsC9/1Vyvn3PeZ6c3NV0ZTwtfTWRSb5S2Go9uYWHR/wppDvhX0LWbWTXG0OJUIu3ik9/asmSF+kCuQ3+XtYSFiMm4Fz0w==</key-value> + </rsa-key> + </rsa> + </public-keys> + </user> + <user> + <user-name>moodi</user-name> + <password>$2y$10$7Jf7DbqicohrcJeiKp5fg.Ck0DUU3lWzgxi4.treRUQndRX.WASnm</password> + <access> + <console>true</console> + <netconf>true</netconf> + <grpc>true</grpc> + </access> + <console> + <member>administrative</member> + </console> + </user> + <user> + <user-name>nren</user-name> + <password>$2y$10$StuQUFJCw.9TnOf9B2SGA.PMohmTWb/8H5O9d0ZtOvuzzNeJKru/m</password> + <access> + <console>true</console> + </access> + <console> + <member>restricted-nren</member> + </console> + <public-keys> + <rsa> + <rsa-key> + <rsa-public-key-id>1</rsa-public-key-id> + <key-value> + AAAAB3NzaC1yc2EAAAADAQABAAABAQDKTjq6zOFUKU0nbRlE4g5Zwh7QgOTJNYNRSPIV1LstDKzEd8ACCyHdgEgMU1vZUlkmy7EXog3ku+Q2QjgPbezaUya044b9CgZOK2y0STdM936dIMG82AtDgWsroBeBTNNiyDEhIRqZT3d2iZy6FI25mzRWNeoiI354vRCZW1twumQhhSjTFjzI9FMFLeJqoiPOZMju5EVaJ4eZrl66/yq13GPLgCTtAqXCA7zGcy1v4tjYolA5K90P+ZH9JrYHDv2rfocswBEzONlE4iDnlICKCPYJQzCmsUtC0gO0hoVc+fKfE7xOxgVI6D0NPH76/F2+2FZOnnS6YSZKvHUiJu9v</key-value> + </rsa-key> + </rsa> + </public-keys> + </user> + <user> + <user-name>oxidized</user-name> + <password>$2y$10$TQrZlpBDra86.qoexZUzQeBXDY1FcdDhGWdD9lLxMuFyPVSm0OGy6</password> + <access> + <console>true</console> + </access> + <console> + <member>config_backup</member> + </console> + <public-keys> + <ecdsa> + <ecdsa-key> + <ecdsa-public-key-id>1</ecdsa-public-key-id> + <key-value> + AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAGKE1PylcuuY5TzEEx928eZGEsPHeRzxrBRWJoKIvY5/7sgnbxQKWO8evpApZQdAsaz2fZvI5S8D2QsThYUtAV3nAHk2VgMIGUJNZHfyljjVQJMVA6thVcEZCk/VBgch16Yym9FmAst2BjOFbf1WydkM9wxbUcWLabT5uq4+Vp8ams27g==</key-value> + </ecdsa-key> + <ecdsa-key> + <ecdsa-public-key-id>2</ecdsa-public-key-id> + <key-value> + AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAGKE1PylcuuY5TzEEx928eZGEsPHeRzxrBRWJoKIvY5/7sgnbxQKWO8evpApZQdAsaz2fZvI5S8D2QsThYUtAV3nAHk2VgMIGUJNZHfyljjVQJMVA6thVcEZCk/VBgch16Yym9FmAst2BjOFbf1WydkM9wxbUcWLabT5uq4+Vp8GBBX7g==</key-value> + </ecdsa-key> + </ecdsa> + <rsa> + <rsa-key> + <rsa-public-key-id>1</rsa-public-key-id> + <key-value> + AAAAB3NzaC1yc2EAAAADAQABAAABAQDbIxpccubnBvn918JoKpWkzxsX3aCS7H2BUpb7r6tEboOwwpTAnQtiVjMYUsUCL7I7FdujmYK8bwC6YKYFI8fUEdDpthTbLSIfyhapo6eigz30E1RInBaLDrTKD736EMCVkwZPCLilwYuL/IbuZETbd5xXLiW8By2691OC28bKl2AXiW/6MvQ2Pu3vIN1Y3YEYkSCV8vh/rQUQmwJi6CWw+f5R4KWHyyc9t4kSfZPOTyEkaYp67ipeRtQJU2VxlG35mGdHCPHJo6icVmXcMNQRLwX71MTz1jJCtNv8xIkpZQ0u7U2qYLHTvh/HmwNc8riLFLmm24ZaiKdoCpmfnLBX</key-value> + </rsa-key> + <rsa-key> + <rsa-public-key-id>2</rsa-public-key-id> + <key-value> + AAAAB3NzaC1yc2EAAAADAQABAAABAQCsK6oYb/QBeJpHYMGtH5wgnhg6urVDCsbKYVh+0tqMMqXchpjVFts6ulBtRUumHKbeUki6W+bP9GK5UQ/aYoNnBopNZSPAQdMFo/d5wg6aUyZYXp5g6LmTQX+seVilSa11CpMmOYRykU/pMaHev/s0RBMgpskhKJxRp+ws0mTX8jaNsgs8DV7cZ9q2LNPZ6Hb01bmTQjwUDXbuZcmbgbvdSca64+X+4rQT5M0uGt6j9U9xncXtn5kdoUkYcFwYQ+n1patGssM8wU6KTxk2jha+S5bN+aK1ZtPkcRhFZjulXJjM0R1GLJuo6OvGsrfTs6yVaiXi7i3Hlv2wlcXXZ6Gb</key-value> + </rsa-key> + </rsa> + </public-keys> + </user> + <user> + <user-name>ronald.vanos</user-name> + <password>$2y$10$VQzPE0prnCkd.pDM7j/pY.Uxk/hjyy743SdQ/3YTQvwX8MOClcaHa</password> + <access> + <console>true</console> + <netconf>true</netconf> + </access> + <console> + <member>administrative</member> + </console> + <public-keys> + <rsa> + <rsa-key> + <rsa-public-key-id>1</rsa-public-key-id> + <key-value> + AAAAB3NzaC1yc2EAAAADAQABAAABAQC8KZQbwczDck01O8CSixnHc4w1Nz2I/WlY8jSjX0uOm3KKiZ9NnvdCMy3SzG5qNZ7fXFo07Jcav84EGJdNOErZhSEW1C/P629+Ki3sxwyXK/0Je0pNlURe2kUwdgdppRiNuM2EUSBERPMiPmvzkcVQsh/Pqlx/1bd5aYv0Q623uGfOW91z86gZfNCLl40FfcGLmrYHToHrgx8P9GxgwG1HnXC1Ng7N41wz3S6xJXpBMnhJf1selGDvZhEI9jHVYr/KPta3hPea6sP5zn6BAuI2oXOKVV6vUTPzhWmMk3rqb8Kl6g9ae2aO2owyiWlUqvq4DDVkLN8Bwlq177FSyepT</key-value> + </rsa-key> + </rsa> + </public-keys> + </user> + <user> + <user-name>srv_ims_SROS</user-name> + <password>$2y$10$Wib89Y3VCmjysYTB/pAmA.IyL7P04aHDMOqLJjD0ZI4ETgM/rLBHq</password> + <access> + <console>true</console> + </access> + <console> + <member>restricted-mon</member> + </console> + </user> + <user> + <user-name>srv_ne_scripts</user-name> + <password>$2y$10$XGlShsd8pSkgNdDXusJVo.fnwZJgC.XZznTG1hB9mg3wzYSb7hGLe</password> + <access> + <console>true</console> + <netconf>true</netconf> + </access> + <console> + <member>administrative</member> + </console> + <public-keys> + <rsa> + <rsa-key> + <rsa-public-key-id>1</rsa-public-key-id> + <key-value> + AAAAB3NzaC1yc2EAAAADAQABAAABAQDbIxpccubnBvn918JoKpWkzxsX3aCS7H2BUpb7r6tEboOwwpTAnQtiVjMYUsUCL7I7FdujmYK8bwC6YKYFI8fUEdDpthTbLSIfyhapo6eigz30E1RInBaLDrTKD736EMCVkwZPCLilwYuL/IbuZETbd5xXLiW8By2691OC28bKl2AXiW/6MvQ2Pu3vIN1Y3YEYkSCV8vh/rQUQmwJi6CWw+f5R4KWHyyc9t4kSfZPOTyEkaYp67ipeRtQJU2VxlG35mGdHCPHJo6icVmXcMNQRLwX71MTz1jJCtNv8xIkpZQ0u7U2qYLHTvh/HmwNc8riLFLmm24ZaiKdoCpmfnLBX</key-value> + </rsa-key> + </rsa> + </public-keys> + </user> + </local-user> + </user-params> + </security> + <time> + <zone> + <standard> + <name>utc</name> + </standard> + </zone> + <ntp> + <admin-state>enable</admin-state> + <server> + <ip-address>62.40.123.21</ip-address> + <router-instance>Base</router-instance> + <key-id>10</key-id> + </server> + <server> + <ip-address>62.40.123.23</ip-address> + <router-instance>Base</router-instance> + <key-id>10</key-id> + </server> + <server> + <ip-address>62.40.123.103</ip-address> + <router-instance>Base</router-instance> + <key-id>10</key-id> + </server> + <server> + <ip-address>172.16.100.48</ip-address> + <router-instance>Base</router-instance> + </server> + <server> + <ip-address>192.53.103.108</ip-address> + <router-instance>Base</router-instance> + </server> + <server> + <ip-address>192.87.106.2</ip-address> + <router-instance>Base</router-instance> + </server> + <server> + <ip-address>193.204.114.233</ip-address> + <router-instance>Base</router-instance> + </server> + <server> + <ip-address>195.113.144.201</ip-address> + <router-instance>Base</router-instance> + </server> + <server> + <ip-address>216.239.35.0</ip-address> + <router-instance>Base</router-instance> + </server> + <server> + <ip-address>216.239.35.4</ip-address> + <router-instance>Base</router-instance> + </server> + <authentication-key> + <key-id>10</key-id> + <key>HqPnbTyN1I9H2OI6TlxzuBx8h7+GMgR3 hash2</key> + <type>message-digest</type> + </authentication-key> + </ntp> + </time> + </system> + <test-oam> + <twamp> + <server> + <admin-state>enable</admin-state> + <prefix> + <ip-prefix>62.40.119.89/32</ip-prefix> + <description>rt1.ams.nl</description> + <max-connections>1</max-connections> + <max-sessions>1</max-sessions> + </prefix> + <prefix> + <ip-prefix>62.40.119.98/31</ip-prefix> + <description>rt1.bil.es</description> + <max-connections>1</max-connections> + <max-sessions>1</max-sessions> + </prefix> + <prefix> + <ip-prefix>62.40.119.100/31</ip-prefix> + <description>rt1.ams.nl</description> + <max-connections>1</max-connections> + <max-sessions>1</max-sessions> + </prefix> + <prefix> + <ip-prefix>62.40.119.102/31</ip-prefix> + <description>rt1.ath.gr</description> + <max-connections>1</max-connections> + <max-sessions>1</max-sessions> + </prefix> + </server> + <twamp-light> + <source-udp-port-pools> + <port> + <port-number>64375</port-number> + <pool-type>link-measurement</pool-type> + </port> + </source-udp-port-pools> + </twamp-light> + </twamp> + </test-oam> + </configure> +</data> \ No newline at end of file diff --git a/test/test_general_poller_routes.py b/test/test_general_poller_routes.py index 1b9a6741..e1b25893 100644 --- a/test/test_general_poller_routes.py +++ b/test/test_general_poller_routes.py @@ -152,8 +152,8 @@ def test_gws_direct(client): def test_gws_indirect(client): rv = client.get( - '/poller/gws/indirect', - headers=DEFAULT_REQUEST_HEADERS) + "/poller/gws/indirect?vendor=1&ip_filter=1", headers=DEFAULT_REQUEST_HEADERS + ) assert rv.status_code == 200 assert rv.is_json response_data = json.loads(rv.data.decode('utf-8')) @@ -163,6 +163,47 @@ def test_gws_indirect(client): assert all(s['type'] == 'GWS - INDIRECT' for s in response_data) +def test_gws_indirect_nokia(client, mocked_redis): + mocked_redis.set( + "ims:services:gws_indirect:NOKIA-IAS", + json.dumps( + { + "id": 42, + "name": "NOKIA-IAS", + "project": "DUMMY", + "here": { + "pop": {"name": "AMS 1", "abbreviation": "AMS"}, + "equipment": "RT0.AMS.NL", + "port": "LAG-11.333", + }, + "there": { + "pop": {"name": "", "abbreviation": ""}, + "equipment": "", + "port": "", + }, + "speed_value": 1, + "speed_unit": "n/a", + "status": "operational", + "type": "GWS - INDIRECT", + } + ), + ) + mocked_redis.set("nokia-ip-filters:rt0.ams.nl.geant.net", json.dumps({ + "lag-11.333": "IAS_IP_FITLER" + })) + rv = client.get( + "/poller/gws/indirect?vendor=1&ip_filter=1", headers=DEFAULT_REQUEST_HEADERS + ) + assert rv.status_code == 200 + response_data = rv.json + jsonschema.validate(response_data, poller.SERVICES_LIST_SCHEMA) + + services = { + (svc['hostname'], svc['interface']): svc for svc in response_data + } + assert services[('rt0.ams.nl.geant.net', 'lag-11.333')]['ip_filter'] == "IAS_IP_FITLER" + + def test_gws_indirect_snmp(client): # same as test_services_snmp, but also verify that # the snmp data in the response contains counters diff --git a/test/test_nokia.py b/test/test_nokia.py index faa8f070..6fef0bc9 100644 --- a/test/test_nokia.py +++ b/test/test_nokia.py @@ -42,86 +42,118 @@ def state_doc(load_nokia_state_doc): return load_nokia_state_doc("rt0.lon.uk.lab.office.geant.net") -@pytest.mark.parametrize('hostname,expected_bundles', [ - ('rt0.ams.nl.lab.office.geant.net', { - 'lag-1': ['1/1/c2/1'], - 'lag-2': ['1/1/c5/1'], - 'lag-4': ['1/1/c8/1'], - 'lag-5': ['1/1/c11/1', '2/1/c11/1'], - 'lag-6': ['2/1/c8/1'], - 'lag-11': ['1/1/c2/3']}), - ('rt0.ams.nl.geant.net', { - 'lag-5': ['1/1/c19/1', '2/1/c19/1'], - 'lag-8': ['1/1/c1/1', '1/1/c5/1'], - 'lag-RL': ['9/1/c1/1']}), - ('rt0.fra.de.geant.net', {'lag-1': ['1/1/c2/1', '1/1/c2/2']}), - ('rt0.gen.ch.geant.net', {'lag-1': ['1/1/c2/1', '1/1/c2/2']}), - ('rt0.lon.uk.geant.net', {'lag-1': ['1/1/c2/1', '1/1/c2/2']}), - ('rt0.lon2.uk.geant.net', {'lag-1': ['2/1/c2/1', '2/1/c2/2']}), -]) +@pytest.mark.parametrize( + "hostname,expected_bundles", + [ + ( + "rt0.ams.nl.lab.office.geant.net", + { + "lag-2": {"2/1/c1/1"}, + "lag-5": {"1/1/c11/1", "2/1/c11/1"}, + "lag-7": {"1/1/c1/1"}, + "lag-8": {"1/1/c5/1"}, + "lag-11": {"1/1/c2/3"}, + "lag-16": {"1/1/c2/1", "1/1/c2/2"}, + "lag-17": {"1/1/c2/4"}, + "lag-18": {"1/1/c19/1"}, + }, + ), + ( + "rt0.ams.nl.geant.net", + { + "lag-5": {"1/1/c19/1", "2/1/c19/1"}, + "lag-8": {"1/1/c1/1", "1/1/c5/1"}, + "lag-RL": {"9/1/c1/1"}, + }, + ), + ("rt0.fra.de.geant.net", {"lag-1": {"1/1/c2/1", "1/1/c2/2"}}), + ("rt0.gen.ch.geant.net", {"lag-1": {"1/1/c2/1", "1/1/c2/2"}}), + ("rt0.lon.uk.geant.net", {"lag-1": {"1/1/c2/1", "1/1/c2/2"}}), + ("rt0.lon2.uk.geant.net", {"lag-1": {"2/1/c2/1", "2/1/c2/2"}}), + ], +) def test_get_lags(hostname, expected_bundles, load_nokia_netconf_config): netconf_doc = load_nokia_netconf_config(hostname) - lags = {lag['name']: lag for lag in nokia.get_lags_config(netconf_doc)} - assert set(lags.keys()) == set(expected_bundles.keys()) - for ex_name, ex_ports in expected_bundles.items(): - assert lags[ex_name]['ports'] == ex_ports + bundles = { + lag["name"]: set(lag["ports"]) for lag in nokia.get_lags_config(netconf_doc) + } + assert bundles == expected_bundles @pytest.mark.parametrize( - 'hostname,all_expected_data', [ - ('rt0.ams.nl.lab.office.geant.net', ( - ('lag-1.0', {'62.40.119.88/31'}, {'2001:799:1ab:2::31/126'}), - ('lag-2.0', {'62.40.119.90/31'}, {'2001:799:1ab:2::41/126'}), - ('lag-4.0', {'62.40.119.98/31'}, {'2001:799:1ab:2::55/126'}), - ('lag-5.0', {'62.40.119.100/31'}, {'2001:799:1ab:2::59/126'}), - ('lag-6.0', {'62.40.119.102/31'}, {'2001:799:1ab:2::5d/126'}), - ('system', {'62.40.119.6/32'}, {'2001:799:1ab::6/128'}), - ('lag-11:100', {'62.40.124.217/30'}, {'2001:798:14:10aa::9/126'}), - ('LAG-11.333', {'83.97.88.245/30'}, {'2001:7f8:3c::35/126'}), - ('LAG-11.111', {'62.40.126.184/31'}, {'2001:798:111:1::31/126'}), - )), - ('rt0.ams.nl.geant.net', ( - ('lag-5.0', {'62.40.98.39/31'}, {'2001:798:cc::62/126'}), - ('lag-8.0', {'62.40.98.20/31'}, {'2001:798:cc::21/126'}), - ('system', {'62.40.96.16/32'}, {'2001:798:aa:1::8/128'}), - )), - ('rt0.fra.de.geant.net', ( - ('lag-1.0', {'62.40.98.73/31'}, {'2001:798:cc::72/126'}), - ('system', {'62.40.96.26/32'}, {'2001:798:aa:1::a/128'}), - )), - ('rt0.gen.ch.geant.net', ( - ('lag-1.0', {'62.40.98.77/31'}, {'2001:798:cc::7a/126'}), - ('system', {'62.40.96.29/32'}, {'2001:798:aa:1::20/128'}), - )), - ('rt0.lon.uk.geant.net', ( - ('lag-1.0', {'62.40.98.60/31'}, {'2001:798:cc::65/126'}), - ('system', {'62.40.96.21/32'}, {'2001:798:aa:1::9/128'}), - )), - ('rt0.lon2.uk.geant.net', ( - ('lag-1.0', {'62.40.98.62/31'}, {'2001:798:cc::69/126'}), - ('system', {'62.40.96.25/32'}, {'2001:798:aa:1::b/128'}), - )), - ]) + "hostname,all_expected_data", + [ + ( + "rt0.ams.nl.lab.office.geant.net", + ( + ("lag-2.0", {"62.40.119.124/31"}, {"2001:799:1ab:2::89/126"}), + ("lag-5.0", {"62.40.119.100/31"}, {"2001:799:1ab:2::59/126"}), + ("lag-7.0", {"62.40.119.116/31"}, {"2001:799:1ab:2::79/126"}), + ("lag-8.0", {"62.40.119.123/31"}, {"2001:799:1ab:2::86/126"}), + ), + ), + ( + "rt0.ams.nl.geant.net", + ( + ("lag-5.0", {"62.40.98.39/31"}, {"2001:798:cc::62/126"}), + ("lag-8.0", {"62.40.98.20/31"}, {"2001:798:cc::21/126"}), + ("system", {"62.40.96.16/32"}, {"2001:798:aa:1::8/128"}), + ), + ), + ( + "rt0.fra.de.geant.net", + ( + ("lag-1.0", {"62.40.98.73/31"}, {"2001:798:cc::72/126"}), + ("system", {"62.40.96.26/32"}, {"2001:798:aa:1::a/128"}), + ), + ), + ( + "rt0.gen.ch.geant.net", + ( + ("lag-1.0", {"62.40.98.77/31"}, {"2001:798:cc::7a/126"}), + ("system", {"62.40.96.29/32"}, {"2001:798:aa:1::20/128"}), + ), + ), + ( + "rt0.lon.uk.geant.net", + ( + ("lag-1.0", {"62.40.98.60/31"}, {"2001:798:cc::65/126"}), + ("system", {"62.40.96.21/32"}, {"2001:798:aa:1::9/128"}), + ), + ), + ( + "rt0.lon2.uk.geant.net", + ( + ("lag-1.0", {"62.40.98.62/31"}, {"2001:798:cc::69/126"}), + ("system", {"62.40.96.25/32"}, {"2001:798:aa:1::b/128"}), + ), + ), + ], +) def test_interface_info(hostname, all_expected_data, load_nokia_netconf_config): netconf_doc = load_nokia_netconf_config(hostname=hostname) - interfaces_by_id = {ifc['interface-name']: ifc for ifc in - nokia.get_interfaces_config(netconf_doc)} - assert len(interfaces_by_id) == len(all_expected_data) - for expected_data in all_expected_data: - ifc = interfaces_by_id[expected_data[0]] - assert ifc['interface-name'] == expected_data[0] - assert set(ifc['ipv4']) == expected_data[1] - assert set(ifc['ipv6']) == expected_data[2] - - -@pytest.mark.parametrize('hostname,port_count', [ - ('rt0.ams.nl.lab.office.geant.net', 65), - ('rt0.ams.nl.geant.net', 66), - ('rt0.fra.de.geant.net', 58), - ('rt0.gen.ch.geant.net', 141), - ('rt0.lon.uk.geant.net', 58), - ('rt0.lon2.uk.geant.net', 139), -]) + + expected_data = {d[0]: tuple(d[1:]) for d in all_expected_data} + result = { + ifc["interface-name"]: (set(ifc["ipv4"]), set(ifc["ipv6"])) + for ifc in nokia.get_interfaces_config(netconf_doc) + if ifc["interface-name"] in expected_data + } + assert all(k in result for k in expected_data) + assert result == expected_data + + +@pytest.mark.parametrize( + "hostname,port_count", + [ + ("rt0.ams.nl.lab.office.geant.net", 72), + ("rt0.ams.nl.geant.net", 66), + ("rt0.fra.de.geant.net", 58), + ("rt0.gen.ch.geant.net", 141), + ("rt0.lon.uk.geant.net", 58), + ("rt0.lon2.uk.geant.net", 139), + ], +) def test_get_ports(hostname, port_count, load_nokia_netconf_config): netconf_doc = load_nokia_netconf_config(hostname=hostname) ports = list(nokia.get_ports_config(netconf_doc)) diff --git a/test/test_worker.py b/test/test_worker.py index 51b39336..25edf021 100644 --- a/test/test_worker.py +++ b/test/test_worker.py @@ -2,12 +2,18 @@ import json import jsonschema from ncclient.transport import TransportError from inventory_provider.tasks import common -from inventory_provider.tasks.worker import populate_error_report_interfaces_cache, \ - transform_ims_data, \ - extract_ims_data, persist_ims_data, \ - retrieve_and_persist_neteng_managed_device_list, \ - populate_poller_interfaces_cache, refresh_nokia_interface_list, \ - retrieve_and_persist_config_nokia, refresh_epipe_to_sap_mappings +from inventory_provider.tasks.worker import ( + populate_error_report_interfaces_cache, + refresh_nokia_gws_indirect_ip_filters, + transform_ims_data, + extract_ims_data, + persist_ims_data, + retrieve_and_persist_neteng_managed_device_list, + populate_poller_interfaces_cache, + refresh_nokia_interface_list, + retrieve_and_persist_config_nokia, + refresh_epipe_to_sap_mappings, +) import pytest from requests import HTTPError @@ -1131,3 +1137,18 @@ def test_refresh_epipe_to_sap_mappings(data_config, mocked_redis, load_nokia_net f"{keybase}123456:98765": "lag-123:456", } assert epipe_sap_mappings == expected_mappings + + +def test_refresh_nokia_gws_indirect_ip_filters( + data_config, mocked_redis, load_nokia_netconf_config +): + hostname = "rt0.ams.nl.lab.office.geant.net" + netconf_config = load_nokia_netconf_config(hostname) + r = common._get_redis(data_config) + refresh_nokia_gws_indirect_ip_filters(hostname, netconf_config, r) + result = json.loads(r.get(f"nokia-ip-filters:{hostname}")) + + assert result == { + "lag-11:333": "NREN_IAS_DFN_OUT", + "lag-17:252": "NREN_IAS_REDIRIS_OUT", + } -- GitLab From 0beb65ab5ad0109147d7df907db240d4d492257c Mon Sep 17 00:00:00 2001 From: Pelle Koster <pelle.koster@geant.org> Date: Wed, 26 Feb 2025 10:47:50 +0100 Subject: [PATCH 2/2] revert unneeded change --- inventory_provider/routes/poller.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inventory_provider/routes/poller.py b/inventory_provider/routes/poller.py index c61f2377..6afd12de 100644 --- a/inventory_provider/routes/poller.py +++ b/inventory_provider/routes/poller.py @@ -75,11 +75,11 @@ support method: _get_dashboards """ from collections import defaultdict from enum import Enum, auto -import functools import itertools import json import logging import re +from functools import partial from typing import Dict from flask import Blueprint, Response, current_app, request, jsonify @@ -1615,13 +1615,13 @@ def _get_services_internal(service_type=None): result = map(_format_services, result) if include_snmp: all_snmp_info = common.load_snmp_indexes(config) - result = map(functools.partial(_add_snmp, all_snmp_info=all_snmp_info), result) + result = map(partial(_add_snmp, all_snmp_info=all_snmp_info), result) if include_vendor: result = map(_add_vendor, result) if include_ip_filter: all_ip_filters = common.load_gws_indirect_ip_filters(config) result = map( - functools.partial(_add_ip_filter, all_ip_filters=all_ip_filters), result + partial(_add_ip_filter, all_ip_filters=all_ip_filters), result ) result = map(_strip_original, result) -- GitLab