diff --git a/Changelog.md b/Changelog.md index 853920da13387fff19262ec1e1296afe7d4688f7..1b882357019522231ea6e6fd80dbe8141b22771f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.87] - 2022-06-15 +- POL1-526: added bgp all peerings endpoint for msr +- POL1-526: return list of BRIAN dashboard info (one for each customer) +- DBOARD3-571: added mic endpoint returning all interface / service data + + ## [0.86] - 2022-03-22 - POL1-552: neteng pop api - POL1-571: poller/interfaces cache bug fix diff --git a/inventory_provider/__init__.py b/inventory_provider/__init__.py index b3ab8f8a1f71ef03c5a0ca0f456de37578e38042..73970ad2da56426c1820c43a4a87c8d620bf6471 100644 --- a/inventory_provider/__init__.py +++ b/inventory_provider/__init__.py @@ -65,6 +65,9 @@ def create_app(): from inventory_provider.routes import default app.register_blueprint(default.routes, url_prefix='/') + from inventory_provider.routes import mic + app.register_blueprint(mic.routes, url_prefix='/mic') + from inventory_provider.routes import poller app.register_blueprint(poller.routes, url_prefix='/poller') diff --git a/inventory_provider/db/ims.py b/inventory_provider/db/ims.py index da9de8681630e2be979a0346e7d88a9cc14c1890..ef5210af75f39ebd2f87c8fef4342ab9303c60b9 100644 --- a/inventory_provider/db/ims.py +++ b/inventory_provider/db/ims.py @@ -148,6 +148,17 @@ IMS_SERVICE_NAMES = { } +class CustomerType(Enum): + COMMERCIAL_PEER = 1 + CONNECTIVITY_SUPPLIER = 2 + EU_NREN = 3 + HOUSING_SUPPLIER = 4 + IX_SUPPLIER = 5 + OTHER = 6 + R_AND_E_PEER = 7 + UNKNOWN = 'UNKNOWN' + + class InventoryStatus(Enum): PLANNED = 1 READY_FOR_SERVICE = 2 diff --git a/inventory_provider/db/ims_data.py b/inventory_provider/db/ims_data.py index ec9717ffec56b98c807fd7266a105deb0d87008b..2d616f09b419584365701802bec1ba87ac795ee6 100644 --- a/inventory_provider/db/ims_data.py +++ b/inventory_provider/db/ims_data.py @@ -2,8 +2,7 @@ import logging import re from collections import defaultdict from copy import copy -from itertools import chain, groupby -from operator import itemgetter +from itertools import chain from inventory_provider import environment from inventory_provider.db import ims @@ -127,20 +126,20 @@ def get_customer_service_emails(ds: IMS): def get_circuit_related_customers(ds: IMS): - relations = sorted( - list( - ds.get_filtered_entities( + + return_value = defaultdict(list) + for ccr in ds.get_filtered_entities( 'CircuitCustomerRelation', 'circuit.inventoryStatusId== 3', - ims.CIRCUIT_CUSTOMER_RELATION['Customer'] - ) - ), key=itemgetter('circuitid')) - - return {k: [{ - 'id': c['customer']['id'], - 'name': c['customer']['name'] - } for c in v] for k, v in - groupby(relations, key=itemgetter('circuitid'))} + ims.CIRCUIT_CUSTOMER_RELATION['Customer']): + return_value[ccr['circuitid']].append( + { + 'id': ccr['customer']['id'], + 'name': ccr['customer']['name'], + 'type': ccr['customer']['customertypeid'] + } + ) + return return_value def get_port_id_services(ds: IMS): @@ -219,16 +218,20 @@ def get_port_id_services(ds: IMS): 'customerid': circuit['customerid'] } ports = [] + cd['port_type'] = 'unknowm' if circuit['internalports']: ports = sorted( circuit['internalports'], key=lambda x: x['sequencenumber']) ports = [p['id'] for p in ports] + cd['port_type'] = 'internal' elif circuit['ports']: ports = sorted( circuit['ports'], key=lambda x: x['sequencenumber']) ports = [p['id'] for p in ports] + cd['port_type'] = 'ports' elif circuit['portaid'] or circuit['portbid']: ports = [circuit['portaid'], circuit['portbid']] + cd['port_type'] = 'ab' yield from _populate_end_info(cd, ports) ignore_status_str = ''.join([ @@ -265,7 +268,8 @@ def get_port_id_services(ds: IMS): 'customerid': circuit['customerid'], 'port_a_id': portrelate.get( 'portid', - portrelate.get('internalportid', '')) + portrelate.get('internalportid', '')), + 'port_type': 'port relate' } diff --git a/inventory_provider/routes/classifier_schema.py b/inventory_provider/routes/classifier_schema.py index 9c8b0ffe9bbc4a1541d6b008db2c76a9af7a758d..4259d5fe39e925a7e79596c6991778867659c547 100644 --- a/inventory_provider/routes/classifier_schema.py +++ b/inventory_provider/routes/classifier_schema.py @@ -53,7 +53,8 @@ _common_schema_definitions = { }, "service_type": {"type": "string"}, "project": {"type": "string"}, - "sid": {"type": "string"} + "sid": {"type": "string"}, + "contacts": {"type": "array", "items": {"type": "string"}} }, "additionalProperties": False }, @@ -254,10 +255,17 @@ _juniper_link_response_schema_definitions = { }, "service_type": {"type": "string"}, "project": {"type": "string"}, - "sid": {"type": "string"} + "sid": {"type": "string"}, + "contacts": {"type": "array", "items": {"type": "string"}} }, "required": [ - "name", "status", "circuit_type", "service_type", "project"], + "name", + "status", + "circuit_type", + "service_type", + "project", + "contacts" + ], "additionalProperties": False } } @@ -508,10 +516,17 @@ _infinera_lambda_response_schema_definitions = { }, "service_type": {"type": "string"}, "project": {"type": "string"}, - "sid": {"type": "string"} + "sid": {"type": "string"}, + "contacts": {"type": "array", "items": {"type": "string"}} }, "required": [ - "name", "status", "circuit_type", "service_type", "project"], + "name", + "status", + "circuit_type", + "service_type", + "project", + "contacts" + ], "additionalProperties": False }, "geant-lambda": { diff --git a/inventory_provider/routes/mic.py b/inventory_provider/routes/mic.py new file mode 100644 index 0000000000000000000000000000000000000000..78379c914b38948fdf54b3270d71fc23ededdd3c --- /dev/null +++ b/inventory_provider/routes/mic.py @@ -0,0 +1,229 @@ +""" +Maintenance Impact Calculator support Endpoints +================================================= + +These endpoints are intended for use by the Maintenance Impact Calculator tool + +.. contents:: :local: + +/mic/sites +---------------------- + +.. autofunction:: inventory_provider.routes.mic.sites + + +""" +import itertools +import json +import logging +from collections import defaultdict + +from flask import Blueprint, request, current_app, Response + +from inventory_provider.routes import common +from inventory_provider.routes.common import _ignore_cache_or_retrieve + +logger = logging.getLogger(__name__) +routes = Blueprint('mic-support-routes', __name__) + +SITES_LIST_SCHEMA = { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "array", + "items": { + "type": "object", + "properties": { + "name": {"type": "string"}, + "abbreviation": {"type": "string"} + }, + "required": ["name", "abbreviation"], + "additionalProperties": False + } +} + +NODES_LIST_SCHEMA = { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "array", + "items": {"type": "string"}, + "additionalProperties": False +} + +INTERFACES_LIST_SCHEMA = { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "array", + "items": {"type": "string"}, + "additionalProperties": False +} + +IMPACT_SCHEMA = { + "schema": "http:json-schema.org/draft-07/schema#", + "type": "object", + "patternProperties": { + "^.*$": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": {"type": "integer"}, + "sid": {"type": "string"}, + "name": {"type": "string"}, + "service_type": {"type": "string"}, + "contacts": { + "type": "array", + "items": {"type": "string"} + } + }, + "required": ["id", "sid", "name", "service_type", "contacts"], + "additionalProperties": False + } + } + }, + "additionalProperties": False +} + + +@routes.route('/sites') +def get_sites(): + cache_key = 'classifier-cache:mic:sites' + r = common.get_current_redis() + result = _ignore_cache_or_retrieve(request, cache_key, r) + if not result: + def _fetch_sites(): + config = current_app.config['INVENTORY_PROVIDER_CONFIG'] + for doc in common.load_json_docs( + config_params=config, + key_pattern='ims:pop:*' + ): + yield { + 'name': doc['value']['name'], + 'abbreviation': doc['value']['abbreviation'], + } + sites = sorted(_fetch_sites(), key=lambda x: x['name']) + result = json.dumps(sites) + r.set(cache_key, result.encode('utf-8')) + + return Response(result, mimetype='application/json') + + +@routes.route('/nodes/<site>') +def get_nodes(site): + cache_key = f'classifier-cache:mic:nodes:{site}' + r = common.get_current_redis() + result = _ignore_cache_or_retrieve(request, cache_key, r) + if not result: + result = r.get(f'ims:pop_nodes:{site}') + if result: + r.set(cache_key, result) + result = result.decode('utf-8') + return Response(result, mimetype='application/json') + + +@routes.route('/interfaces/<node>') +def get_interfaces(node): + cache_key = f'classifier-cache:mic:interfaces:{node}' + r = common.get_current_redis() + result = _ignore_cache_or_retrieve(request, cache_key, r) + if not result: + def _get_intefaces(): + key_pattern = f"ims:interface_services:{node}:*" + for k in r.scan_iter(key_pattern, count=1000): + yield ":".join(k.decode('utf-8').split(':')[3:]) + + interfaces_ = sorted(_get_intefaces()) + if interfaces_: + result = json.dumps(interfaces_) + r.set(cache_key, result.encode('utf-8')) + return Response(result, mimetype='application/json') + + +@routes.route('/impact/<site>', defaults={'node': None, 'interface_': None}) +@routes.route('/impact/<site>/<node>', defaults={'interface_': None}) +@routes.route('/impact/<site>/<node>/<path:interface_>') +def get_impact(site, node, interface_): + cache_key_end = ':'.join(filter(None, (site, node, interface_))) + cache_key = f"classifier-cache:mic:impact:{cache_key_end}" + logger.debug(cache_key) + r = common.get_current_redis() + result = _ignore_cache_or_retrieve(request, cache_key, r) + if not result: + data = [] + config = current_app.config['INVENTORY_PROVIDER_CONFIG'] + if interface_: + key_pattern = f"ims:interface_services:{node}:{interface_}" + raw_data = r.get(key_pattern) + if raw_data: + data = json.loads(raw_data.decode('utf-8')) + else: + def _get_data(_key_pattern): + for doc in common.load_json_docs( + config_params=config, + key_pattern=_key_pattern, + num_threads=20,): + yield from doc['value'] + if node: + key_pattern = f"ims:interface_services:{node}:*" + else: + key_pattern = "ims:interface_services:*" + data = _get_data(key_pattern) + + services_by_type = defaultdict(list) + if data: + + rs = itertools.chain( + *(d.get('related-services', []) + for d in data if d['pop_name'] == site)) + + rs = filter( + lambda x: x['circuit_type'] == 'service' + and x['status'] == 'operational', + rs) + unique_services = sorted({d['id']: d for d in rs}.values(), + key=lambda x: x['name']) + try: + for service in unique_services: + services_by_type[service['service_type']].append({ + 'id': service['id'], + 'sid': service.get('sid', ''), + 'name': service['name'], + 'service_type': service['service_type'], + 'contacts': service['contacts'] + }) + except Exception as e: + logger.debug(json.dumps(service, indent=2)) + raise e + result = json.dumps(services_by_type) + + r.set(cache_key, result.encode('utf-8')) + return Response(result, mimetype='application/json') + + +@routes.route("/all-data") +def get_everything(): + cache_key = "classifier-cache:mic:impact:all-data" + logger.debug(cache_key) + r = common.get_current_redis() + result = _ignore_cache_or_retrieve(request, cache_key, r) + if not result: + config = current_app.config['INVENTORY_PROVIDER_CONFIG'] + all_data = defaultdict(lambda: defaultdict(dict)) + + def _get_data(_key_pattern): + for doc in common.load_json_docs( + config_params=config, + key_pattern=_key_pattern, + num_threads=20,): + yield from doc['value'] + + key_pattern = "ims:interface_services:*" + data = _get_data(key_pattern) + if data: + + for d in data: + if d.get('related-services'): + site = f'{d["pop_name"]} ({d["pop_abbreviation"]})' + eq_name = d['equipment'] + if_name = d['port'] + all_data[site][eq_name][if_name] = d['related-services'] + result = json.dumps(all_data) + + r.set(cache_key, result.encode('utf-8')) + return Response(result, mimetype='application/json') diff --git a/inventory_provider/routes/msr.py b/inventory_provider/routes/msr.py index 95887f10015a6ee23f467616bf5524e5dd9d4312..6f5087b2fdf6ff14fa2ddd40c298a0ba140c2733 100644 --- a/inventory_provider/routes/msr.py +++ b/inventory_provider/routes/msr.py @@ -54,6 +54,11 @@ These endpoints are intended for use by MSR. .. autofunction:: inventory_provider.routes.msr.bgp_routing_instance_peerings +/msr/bgp +-------------------------------------------- + +.. autofunction:: inventory_provider.routes.msr.bgp_all_peerings + /msr/services -------------------------------------------- @@ -849,3 +854,24 @@ def get_system_correlation_services(): mimetype="text/html") return Response(response, mimetype="application/json") + + +@routes.route('/bgp', methods=['GET', 'POST']) +@common.require_accepts_json +def bgp_all_peerings(): + """ + Handler for `/bgp` + + This method returns a list of all BGP peerigns. + + The response will be formatted according to the following schema: + + .. asjson:: + inventory_provider.routes.msr.PEERING_LIST_SCHEMA + + :return: + """ + + r = common.get_current_redis() + response = r.get('juniper-peerings:all') + return Response(response.decode('utf-8'), mimetype="application/json") diff --git a/inventory_provider/routes/poller.py b/inventory_provider/routes/poller.py index 525564e86ab84ae0cb9e54544bf380a9ad7aa48a..c8a78993a3024bb09f6fb723097a8c5da57d8b37 100644 --- a/inventory_provider/routes/poller.py +++ b/inventory_provider/routes/poller.py @@ -61,6 +61,7 @@ support method: _get_dashboards """ +from collections import defaultdict from enum import Enum, auto import itertools import json @@ -140,6 +141,15 @@ INTERFACE_LIST_SCHEMA = { 'required': ['id', 'name', 'type', 'status'], 'additionalProperties': False }, + 'db_info': { + 'type': 'object', + 'properties': { + 'name': {'type': 'string'}, + 'interface_type': {'enum': _INTERFACE_TYPES} + }, + 'required': ['name', 'interface_type'], + 'additionalProperties': False + }, 'interface': { 'type': 'object', 'properties': { @@ -167,13 +177,11 @@ INTERFACE_LIST_SCHEMA = { 'items': {'enum': _DASHBOARD_IDS} }, 'dashboard_info': { - 'type': 'object', - 'properties': { - 'name': {'type': 'string'}, - 'interface_type': {'enum': _INTERFACE_TYPES} - }, - 'required': ['name', 'interface_type'], - 'additionalProperties': False + '$ref': '#/definitions/db_info', + }, + 'dashboards_info': { + 'type': 'array', + 'items': {'$ref': '#/definitions/db_info'} } }, 'required': [ @@ -467,7 +475,7 @@ def _get_dashboards(interface): yield BRIAN_DASHBOARDS.NREN -def _get_dashboard_data(ifc): +def _get_dashboard_data(ifc, customers): def _get_interface_type(description): if re.match(r'^PHY', description): @@ -487,6 +495,13 @@ def _get_dashboard_data(ifc): if len(dashboards) == 0: return ifc + def _get_l2_customer_names(description): + info = description.upper().split('#')[0].split('|')[0].split()[1:] + yield info[1] + if info[0] in ['CUSTOMER', 'RE_INTERCONNECT'] \ + and len(info) > 2 and info[2]: + yield info[2] + def _get_customer_name(description): name = description.split(' ') if len(name) >= 3: @@ -507,21 +522,38 @@ def _get_dashboard_data(ifc): return description if BRIAN_DASHBOARDS.INFRASTRUCTURE_BACKBONE.name in dashboards: - name = _get_backbone_name(description) + names = [_get_backbone_name(description)] elif BRIAN_DASHBOARDS.GWS_PHY_UPSTREAM.name in dashboards: - name = _get_customer_name(description) host = ifc['router'] location = host.split('.')[1].upper() - name = f'{name} - {location}' + names = [f'{_get_customer_name(description)} - {location}'] + elif BRIAN_DASHBOARDS.L2_CIRCUIT.name in dashboards: + # This will give names derived from the Interface Description + # names = list(_get_l2_customer_names(description)) + # This will give first 2 names IMS + names = [c['name'] for c in customers][:2] + else: - name = _get_customer_name(description) + names = [_get_customer_name(description)] + # if no customers found just return the original data + if not names: + return ifc + + # to maintain compatability with current brian dashboard manager we will + # continue to return dashboard_info with the first customer name. We will + # also return dashboards_info (note the plural of dashboards) with up to + # two customers return { **ifc, 'dashboard_info': { + 'name': names[0], + 'interface_type': interface_type.name + }, + 'dashboards_info': [{ 'name': name, 'interface_type': interface_type.name - } + } for name in set(names)] } @@ -554,46 +586,48 @@ def _load_interface_bundles(config, hostname=None, use_next_redis=False): return result -def _load_services(config, hostname=None, use_next_redis=False): +def _get_services_and_customers(config, hostname=None, use_next_redis=False): if hostname: hostname = get_ims_equipment_name(hostname) - result = dict() + result = defaultdict(dict) key_pattern = f'ims:interface_services:{hostname}:*' \ if hostname else 'ims:interface_services:*' - def _filter_and_format_services(_services): + for doc in common.load_json_docs( + config_params=config, + key_pattern=key_pattern, + num_threads=20, + use_next_redis=use_next_redis): + cs = { + 'services': [], + 'customers': [] + } included_service_ids = set() - for s in _services: + for s in doc['value']: if s['id'] in included_service_ids: continue + if s.get('port_type', '') == 'ab': + continue + included_service_ids.add(s['id']) + + cs['customers'].append({ + 'name': s['customer'], + 'type': 'UNKNOWN' + }) + for c in s.get('additional_customers', []): + cs['customers'].append({ + 'name': c['name'], + 'type': c.get('type', 'UNKNOWN') + }) if s['circuit_type'] == 'service': - included_service_ids.add(s['id']) - yield { + cs['services'].append({ 'id': s['id'], 'name': s['name'], 'type': s['service_type'], - 'status': s['status'] - } - - for doc in common.load_json_docs( - config_params=config, - key_pattern=key_pattern, - num_threads=20, - use_next_redis=use_next_redis): - - m = re.match(r'^ims:interface_services:([^:]+):(.+)', doc['key']) - if not m: - logger.warning(f'can\'t parse redis service key {doc["key"]}') - # there are some weird records (dtn*, dp1*) - continue - - router = m.group(1) - interface = m.group(2) - result.setdefault(router, dict()) - result[router][interface] = \ - list(_filter_and_format_services(doc['value'])) - + 'status': s['status'], + }) + result[s['equipment']][s['port']] = cs return result @@ -641,9 +675,6 @@ def _load_interfaces( :return: """ def _load_docs(key_pattern): - # print('') - # logger.debug(f'docs Key: {key_pattern}') - # print('') for doc in _load_netconf_docs(config, key_pattern, use_next_redis): @@ -691,7 +722,8 @@ def load_interfaces_to_poll( basic_interfaces = \ list(_load_interfaces(config, hostname, no_lab, use_next_redis)) bundles = _load_interface_bundles(config, hostname, use_next_redis) - services = _load_services(config, hostname, use_next_redis) + services_and_customers = \ + _get_services_and_customers(config, hostname, use_next_redis) snmp_indexes = common.load_snmp_indexes(config, hostname, use_next_redis) def _get_populated_interfaces(all_interfaces): @@ -709,16 +741,21 @@ def load_interfaces_to_poll( base_ifc = ifc['name'].split('.')[0] ifc['bundle-parents'] = router_bundle.get(base_ifc, []) - router_services = services.get( - get_ims_equipment_name(ifc['router'], r), None) - if router_services: - ifc['circuits'] = router_services.get( - get_ims_interface(ifc['name']), [] + router_services_and_customers = services_and_customers.get( + get_ims_equipment_name(ifc['router'], r), {}) + ifc_services_and_customers = \ + router_services_and_customers.get( + get_ims_interface(ifc['name']), {} ) + if 'services' in ifc_services_and_customers \ + and ifc_services_and_customers['services']: + ifc['circuits'] = ifc_services_and_customers['services'] + dashboards = _get_dashboards(ifc) ifc['dashboards'] = sorted([d.name for d in dashboards]) - yield _get_dashboard_data(ifc) + yield _get_dashboard_data( + ifc, ifc_services_and_customers.get('customers', [])) else: continue return _get_populated_interfaces(basic_interfaces) diff --git a/inventory_provider/tasks/worker.py b/inventory_provider/tasks/worker.py index c6057747dfb24b55f1f938d92ed680a68762768f..3517bb0377fa4b6acf5e1310223de180fd01bba6 100644 --- a/inventory_provider/tasks/worker.py +++ b/inventory_provider/tasks/worker.py @@ -294,6 +294,7 @@ def _build_juniper_peering_db(update_callback=lambda s: None): peerings_per_logical_system = {} peerings_per_group = {} peerings_per_routing_instance = {} + all_peerings = [] # scan with bigger batches, to mitigate network latency effects key_prefix = 'juniper-peerings:hosts:' @@ -321,6 +322,7 @@ def _build_juniper_peering_db(update_callback=lambda s: None): if routing_instance: peerings_per_routing_instance.setdefault( routing_instance, []).append(p) + all_peerings.append(p) # sort ix peerings by group ix_groups = {} @@ -331,6 +333,9 @@ def _build_juniper_peering_db(update_callback=lambda s: None): rp = r.pipeline() + # for use with /msr/bgp + rp.set('juniper-peerings:all', json.dumps(all_peerings)) + # create peering entries, keyed by remote addresses update_callback(f'saving {len(peerings_per_address)} remote peers') for k, v in peerings_per_address.items(): @@ -991,6 +996,10 @@ def transform_ims_data(data): interface_services = defaultdict(list) # using a dict to ensure no duplicates node_pair_services = defaultdict(dict) + pop_nodes = defaultdict(list) + + for value in locations.values(): + pop_nodes[value['pop']['name']].append(value['equipment-name']) for key, value in port_id_details.items(): for details in value: @@ -1013,7 +1022,9 @@ def transform_ims_data(data): _get_related_services(circ['id']) for tlc in circ['related-services']: - contacts.update(tlc.pop('contacts')) + # why were these removed? + # contacts.update(tlc.pop('contacts')) + contacts.update(tlc.get('contacts')) circ['contacts'] = sorted(list(contacts)) circ['calculated-speed'] = _get_speed(circ['id']) @@ -1058,7 +1069,8 @@ def transform_ims_data(data): 'interface_services': interface_services, 'services_by_type': services_by_type, 'node_pair_services': node_pair_services, - 'sid_services': sid_services + 'sid_services': sid_services, + 'pop_nodes': pop_nodes } @@ -1070,6 +1082,7 @@ def persist_ims_data(data, use_current=False): services_by_type = data['services_by_type'] node_pair_services = data['node_pair_services'] sid_services = data['sid_services'] + pop_nodes = data['pop_nodes'] def _get_pops(): # de-dupe the sites (by abbreviation) @@ -1094,7 +1107,8 @@ def persist_ims_data(data, use_current=False): 'ims:interface_services:*', 'ims:access_services:*', 'ims:gws_indirect:*', - 'ims:node_pair_services:*' + 'ims:node_pair_services:*', + 'ims:pop_nodes:*' ]: rp = r.pipeline() for k in r.scan_iter(key_pattern, count=1000): @@ -1129,6 +1143,12 @@ def persist_ims_data(data, use_current=False): f'ims:node_pair_services:{k}', json.dumps(list(v.values()))) rp.execute() + rp = r.pipeline() + for k, v in pop_nodes.items(): + rp.set( + f'ims:pop_nodes:{k}', + json.dumps(sorted(v))) + rp.execute() rp = r.pipeline() diff --git a/setup.py b/setup.py index 9508ab83c38fddb17b8ce8db5c5fdcb6925aae00..18298bf079a54b48149f54e4d248dc6eedfcfc79 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='inventory-provider', - version="0.86", + version="0.87", author='GEANT', author_email='swd@geant.org', description='Dashboard inventory provider', diff --git a/test/data/mx1.lis.pt.geant.net-netconf.xml b/test/data/mx1.lis.pt.geant.net-netconf.xml deleted file mode 100644 index 47a2a9565ad928dea9cdd28d6080e37b5dbb435b..0000000000000000000000000000000000000000 --- a/test/data/mx1.lis.pt.geant.net-netconf.xml +++ /dev/null @@ -1,82 +0,0 @@ -<configuration changed-seconds="1617276147" changed-localtime="2021-04-01 11:22:27 UTC"><version>18.4R3-S4.2</version><groups><name>re0</name><system><host-name>mx1.lis.pt.re0</host-name></system><interfaces><interface><name>fxp0</name><description>PHY INFRASTRUCTURE MANAGEMENT | re0</description><speed>1g</speed><unit><name>0</name><family><inet><address><name>172.16.44.100/24</name></address></inet></family></unit></interface></interfaces></groups><groups><name>re1</name><system><host-name>mx1.lis.pt.re1</host-name></system><interfaces><interface><name>fxp0</name><description>PHY INFRASTRUCTURE MANAGEMENT | re1</description><speed>1g</speed><unit><name>0</name><family><inet><address><name>172.16.44.101/24</name></address></inet></family></unit></interface></interfaces></groups><groups><name>urpf-template</name><firewall><family><inet><filter><name><*></name><interface-specific/><term><name>permit-multicast</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>urpf-multicast</count><accept/></then></term><term><name>discard-bogons</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>urpf-fail-bogons</count><discard> - </discard></then></term><term><name>discard</name><then><count>urpf-fail</count><discard> - </discard></then></term></filter></inet><inet6><filter><name><*></name><interface-specific/><term><name>permit-multicast</name><from><destination-address><name>ff00::/8</name></destination-address></from><then><count>urpfv6-multicast</count><accept/></then></term><term><name>discard-bogons</name><from><source-prefix-list><name>bogons-list6</name></source-prefix-list></from><then><count>urpfv6-fail-bogons</count><discard/></then></term><term><name>discard</name><then><count>urpfv6-fail</count><discard/></then></term></filter></inet6></family></firewall></groups><groups><name>load-balance-adaptive</name><interfaces><interface><name><ae*></name><aggregated-ether-options><load-balance><adaptive> - </adaptive></load-balance></aggregated-ether-options></interface></interfaces></groups><system><apply-groups>re0</apply-groups><apply-groups>re1</apply-groups><commit><fast-synchronize/><synchronize/></commit><login><class><name>DANTE-Class</name><idle-timeout>15</idle-timeout><permissions>admin</permissions><permissions>firewall</permissions><permissions>firewall-control</permissions><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>trace-control</permissions><permissions>view</permissions></class><class><name>NOC-Class</name><idle-timeout>60</idle-timeout><permissions>all</permissions></class><class><name>dante</name><idle-timeout>20</idle-timeout><permissions>admin</permissions><permissions>firewall</permissions><permissions>firewall-control</permissions><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>trace-control</permissions><permissions>view</permissions></class><class><name>geantnms</name><idle-timeout>15</idle-timeout><permissions>all</permissions></class><class><name>isisView</name><idle-timeout>5</idle-timeout><permissions>routing</permissions><allow-commands>(exit|show isis)</allow-commands><deny-commands>show route.*</deny-commands></class><class><name>level1</name><idle-timeout>5</idle-timeout><permissions>admin</permissions><permissions>clear</permissions><permissions>firewall</permissions><permissions>firewall-control</permissions><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>trace-control</permissions><permissions>view</permissions></class><class><name>mdvpn-si</name><idle-timeout>5</idle-timeout><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>view</permissions><allow-commands>show .*</allow-commands><deny-commands>(ssh .*|telnet .*)</deny-commands></class><class><name>nessus</name><permissions>access</permissions><permissions>admin</permissions><permissions>firewall</permissions><permissions>interface</permissions><permissions>routing</permissions><permissions>security</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>view</permissions><permissions>view-configuration</permissions></class><class><name>nren</name><idle-timeout>5</idle-timeout><permissions>firewall</permissions><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>view</permissions><allow-commands>show .*</allow-commands><deny-commands>(file.*)|(load.*)|(op.*)|(request.*)|(save.*)|(start.*)|(test.*)|(set cli.*)|(set date.*)|(clear.*)|(help.*)|(telnet.*)|(ssh.*)|(mtrace.*)|(monitor.*)|(set.*)</deny-commands></class><class><name>nrn</name><idle-timeout>5</idle-timeout><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>view</permissions><allow-commands>show .*</allow-commands><deny-commands>(ssh .*|telnet .*)</deny-commands></class><class><name>opennsa</name><idle-timeout>5</idle-timeout><permissions>configure</permissions><deny-commands>(file.*)|(request.*)|(save.*)|(start.*)|(test.*)|(set cli.*)|(set date.*)|(clear.*)|(help.*)|(telnet.*)|(ssh.*)|(traceroute.*)|(mtrace.*)|(monitor.*)|(ping.*)|(show.*)|(set.*)</deny-commands><allow-configuration-regexps>interfaces .*</allow-configuration-regexps><allow-configuration-regexps>protocols l2circuit.*</allow-configuration-regexps><allow-configuration-regexps>protocols connections .*</allow-configuration-regexps><allow-configuration-regexps>protocols connections interface-switch .*</allow-configuration-regexps><deny-configuration-regexps>vmhost .*</deny-configuration-regexps><deny-configuration-regexps>session-limit-group .*</deny-configuration-regexps><deny-configuration-regexps>multi-chassis .*</deny-configuration-regexps><deny-configuration-regexps>jsrc-partition .*</deny-configuration-regexps><deny-configuration-regexps>jsrc .*</deny-configuration-regexps><deny-configuration-regexps>groups .*</deny-configuration-regexps><deny-configuration-regexps>dynamic-profiles .*</deny-configuration-regexps><deny-configuration-regexps>diameter .*</deny-configuration-regexps><deny-configuration-regexps>apply-groups .*</deny-configuration-regexps><deny-configuration-regexps>access-profile .*</deny-configuration-regexps><deny-configuration-regexps>interfaces traceoptions .*</deny-configuration-regexps><deny-configuration-regexps>interfaces interface-set .*</deny-configuration-regexps><deny-configuration-regexps>interfaces interface-range .*</deny-configuration-regexps><deny-configuration-regexps>interfaces apply-groups .*</deny-configuration-regexps><deny-configuration-regexps>interfaces apply-groups-except .*</deny-configuration-regexps><deny-configuration-regexps>interfaces lt-.*</deny-configuration-regexps><deny-configuration-regexps>interfaces ms-.*</deny-configuration-regexps><deny-configuration-regexps>interfaces si-.*</deny-configuration-regexps><deny-configuration-regexps>interfaces gr-.*</deny-configuration-regexps><deny-configuration-regexps>interfaces lo.*</deny-configuration-regexps><deny-configuration-regexps>interfaces dsc.*</deny-configuration-regexps><deny-configuration-regexps>interfaces irb.*</deny-configuration-regexps></class><class><name>readonly-permissions</name><idle-timeout>15</idle-timeout><permissions>view</permissions><permissions>view-configuration</permissions><allow-commands>show .*|quit|ping .*|monitor .*|traceroute .*|file archive .*</allow-commands></class><class><name>restricted-mon</name><idle-timeout>5</idle-timeout><permissions>access</permissions><permissions>admin</permissions><permissions>firewall</permissions><permissions>interface</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>view</permissions></class><class><name>xantaro-yukon</name><idle-timeout>15</idle-timeout><permissions>view</permissions><permissions>view-configuration</permissions><allow-commands>show .*|quit|ping .*|monitor .*|traceroute .*|file archive .*|request support information</allow-commands></class><user><name>DANTE</name><uid>2016</uid><class>DANTE-Class</class></user><user><name>Monit0r</name><full-name>Monitor</full-name><uid>2010</uid><class>dante</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>NOC</name><uid>2015</uid><class>NOC-Class</class></user><user><name>aconet</name><uid>2006</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>amres</name><uid>2007</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ansible</name><uid>2000</uid><class>NOC-Class</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>arnes</name><uid>2008</uid><class>nrn</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>basnet</name><uid>2009</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>belnet</name><uid>2011</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>bren</name><uid>2012</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>carnet</name><uid>2014</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ccssupport</name><uid>2049</uid><class>readonly-permissions</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>cnis</name><comment>/* For cNIS NDM - TR Feb 07 */</comment><uid>2080</uid><class>isisView</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>cnis-dev</name><uid>2082</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>cnis-prod</name><uid>2081</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>dfn</name><uid>2018</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>garr</name><uid>2019</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-cesnet</name><uid>2020</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-cynet</name><uid>2021</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-eenet</name><uid>2022</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-fccn</name><uid>2003</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-garr</name><uid>2023</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-hungar</name><uid>2024</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-malta</name><uid>2025</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-ne-salt-robot</name><uid>2057</uid><class>super-user</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>geant-switch</name><uid>2026</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>grnet</name><uid>2027</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>heanet</name><uid>2028</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>hungarnet</name><uid>2029</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>iucc</name><uid>2030</uid><class>nrn</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>janet</name><uid>2031</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>junosrestore</name><full-name>Emergency Router Restore Login</full-name><uid>2060</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>lat</name><uid>2042</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>litnet</name><uid>2032</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>marnet</name><uid>2033</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>mdvpn-si</name><uid>2058</uid><class>mdvpn-si</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>mren</name><uid>2034</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ncc</name><full-name>NOC Team Backup Account</full-name><uid>2017</uid><class>super-user</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>nessus.geant</name><uid>2099</uid><class>nessus</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>nordunet</name><uid>2035</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>nren</name><uid>2054</uid><class>nren</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>opennsa</name><uid>2002</uid><class>opennsa</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>opnet</name><full-name>OPNET NEOP Planning system @ 62.40.105.114</full-name><uid>2004</uid><class>dante</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>opsdbv2</name><uid>2053</uid><class>readonly-permissions</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>pionier</name><uid>2036</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>python</name><uid>2046</uid><class>NOC-Class</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>rediris</name><uid>2037</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>renater</name><uid>2038</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>reporting</name><uid>2048</uid><class>readonly-permissions</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>restena</name><full-name>NREN RESTENA</full-name><uid>2039</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>restricted-mon</name><uid>2250</uid><class>restricted-mon</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>roedunet</name><uid>2040</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ruby</name><full-name>NOC Ruby script account</full-name><uid>2005</uid><class>level1</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>sanet</name><uid>2041</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>space</name><full-name>NCC - Junos Space application login</full-name><uid>2013</uid><class>geantnms</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>space15.2R2.4-paris</name><uid>2052</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>space17.1R1.7-london</name><uid>2001</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>srv-space-ssh</name><uid>2050</uid><class>super-user</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>srv_ims</name><full-name>VC4 IMS Mediation servers</full-name><uid>2056</uid><class>restricted-mon</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>srv_opnet</name><full-name>Riverbed Opnet NetIM VM LON2 62.40.99.51</full-name><uid>2055</uid><class>restricted-mon</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>surfnet</name><uid>2043</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ulakbim</name><uid>2044</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>uran</name><uid>2045</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>xantaro</name><uid>2051</uid><class>xantaro-yukon</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><password><minimum-length>10</minimum-length><minimum-numerics>1</minimum-numerics><minimum-upper-cases>1</minimum-upper-cases><minimum-lower-cases>1</minimum-lower-cases><minimum-punctuations>1</minimum-punctuations></password><message>----------------------------------------------------------------\n\n This is mx1.lis.pt.geant.net, a GEANT Router in Lisbon, Portugal \n Warning: Unauthorized access to this equipment is strictly forbidden and will lead to prosecution \n\n-------------------------------------------------------------\n</message></login><root-authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></root-authentication><services><ssh><root-login>deny</root-login><no-tcp-forwarding/><protocol-version>v2</protocol-version><max-sessions-per-connection>32</max-sessions-per-connection><ciphers>chacha20-poly1305@openssh.com</ciphers><ciphers>aes256-ctr</ciphers><ciphers>aes192-ctr</ciphers><ciphers>aes128-ctr</ciphers><ciphers>aes128-gcm@openssh.com</ciphers><ciphers>aes256-gcm@openssh.com</ciphers><ciphers>3des-cbc</ciphers><ciphers>blowfish-cbc</ciphers><key-exchange>curve25519-sha256</key-exchange><key-exchange>dh-group1-sha1</key-exchange><key-exchange>dh-group14-sha1</key-exchange><key-exchange>ecdh-sha2-nistp256</key-exchange><key-exchange>ecdh-sha2-nistp384</key-exchange><key-exchange>ecdh-sha2-nistp521</key-exchange><key-exchange>group-exchange-sha2</key-exchange><connection-limit>125</connection-limit><rate-limit>150</rate-limit></ssh><netconf><ssh> - </ssh></netconf></services><domain-name>geant.net</domain-name><domain-search>geant2.net</domain-search><domain-search>geant.net</domain-search><backup-router><address>172.16.44.254</address><destination>172.16.5.252/30</destination></backup-router><time-zone>UTC</time-zone><authentication-order>radius</authentication-order><authentication-order>password</authentication-order><location><country-code>pt</country-code></location><name-server><name>62.40.104.250</name></name-server><name-server><name>62.40.116.122</name></name-server><name-server><name>62.40.116.114</name></name-server><radius-server><name>83.97.94.129</name><timeout>2</timeout><source-address>62.40.96.16</source-address></radius-server><radius-server><name>83.97.94.130</name><timeout>2</timeout><source-address>62.40.96.16</source-address></radius-server><static-host-mapping><name>ts1.lis.pt</name><inet>172.16.44.254</inet></static-host-mapping><static-host-mapping><name>lo0</name><inet>62.40.96.16</inet></static-host-mapping><syslog><user><name>*</name><contents><name>any</name><emergency/></contents></user><host><name>83.97.94.11</name><contents><name>any</name><any/></contents><match>!(kernel:rts_commi.*|RPD_MSDP_SRC_ACTIVE.*|rtslib_dfwsm_get_async_cb:*|USF.*|.*ppe_img_ucode_redistribute.*|.*nd6-change.*)</match></host><host><name>62.40.99.47</name><contents><name>any</name><any/></contents></host><host><name>83.97.95.23</name><contents><name>any</name><any/></contents><match>!(kernel:rts_commi.*|RPD_MSDP_SRC_ACTIVE.*|rtslib_dfwsm_get_async_cb:*|USF.*|.*ppe_img_ucode_redistribute.*|.*nd6-change.*)</match><structured-data><brief/></structured-data></host><file><name>messages</name><contents><name>any</name><notice/></contents><contents><name>authorization</name><info/></contents><match>!(RPD_MSDP_SRC_ACTIVE.*|in6_services_jfm_rnhoutput_internal.*|.*ppe_img_ucode_redistribute.*)</match><archive><size>10m</size><files>10</files></archive></file><file><name>interactive-commands</name><contents><name>interactive-commands</name><any/></contents><archive><size>10m</size><files>10</files></archive></file><file><name>authorization</name><contents><name>authorization</name><any/></contents></file><file><name>firewall-log</name><contents><name>firewall</name><critical/></contents></file><file><name>daemon</name><contents><name>daemon</name><error/></contents></file><file><name>conf-history</name><contents><name>conflict-log</name><any/></contents><contents><name>change-log</name><any/></contents><archive><size>10m</size><files>10</files></archive></file><file><name>net-alarms</name><contents><name>daemon</name><warning/></contents></file><file><name>low-messages</name><contents><undocumented><name>cron</name></undocumented><notice/></contents><contents><name>kernel</name><notice/></contents><contents><name>user</name><notice/></contents><contents><name>pfe</name><notice/></contents><match>!(.*ppe_img_ucode_redistribute.*)</match></file><file><name>high-messages</name><contents><undocumented><name>cron</name></undocumented><error/></contents><contents><name>kernel</name><error/></contents><contents><name>user</name><error/></contents><contents><name>pfe</name><error/></contents><match>(!PCF8584) | (!CHASSISD_VOLTAGE_SENSOR_INIT)</match></file><file><name>commands-log</name><contents><name>interactive-commands</name><info/></contents></file><file><name>dnoc-events</name><contents><name>daemon</name><info/></contents><match>.*SNMP_TRAP_LINK_.*|.*RPD_BGP_NEIGHBOR_STATE_CHANGED.*|.*SNMPD_TRAP_COLD_START.*</match><archive><size>10m</size><files>10</files></archive></file><file><name>default-log-messages</name><contents><name>any</name><info/></contents><match>(requested 'commit' operation)|(requested 'commit synchronize' operation)|(copying configuration to juniper.save)|(commit complete)|ifAdminStatus|(FRU power)|(FRU removal)|(FRU insertion)|(link UP)|transitioned|Transferred|transfer-file|(license add)|(license delete)|(package -X update)|(package -X delete)|(FRU Online)|(FRU Offline)|(plugged in)|(unplugged)|CFMD_CCM_DEFECT| LFMD_3AH | RPD_MPLS_PATH_BFD|(Master Unchanged, Members Changed)|(Master Changed, Members Changed)|(Master Detected, Members Changed)|(vc add)|(vc delete)|(Master detected)|(Master changed)|(Backup detected)|(Backup changed)|(interface vcp-)|(AIS_DATA_AVAILABLE)</match><structured-data> - </structured-data></file><file><name>pfed</name><contents><name>pfe</name><any/></contents><match>!(.*ppe_img_ucode_redistribute.*)</match><archive><size>20m</size><files>10</files></archive></file><time-format><year/><millisecond/></time-format><source-address>62.40.96.16</source-address></syslog><ntp><boot-server>193.62.22.66</boot-server><authentication-key><name>1</name><type>md5</type><value>/* SECRET-DATA */</value></authentication-key><authentication-key><name>10</name><type>md5</type><value>/* SECRET-DATA */</value></authentication-key><server><name>62.40.97.11</name><key>/* SECRET-DATA */</key></server><server><name>62.40.97.12</name><key>/* SECRET-DATA */</key></server><server><name>62.40.97.14</name><key>/* SECRET-DATA */</key></server><server><name>62.40.123.21</name><key>/* SECRET-DATA */</key></server><server><name>62.40.123.23</name><key>/* SECRET-DATA */</key></server><server><name>62.40.123.103</name><key>/* SECRET-DATA */</key></server><trusted-key>1</trusted-key><trusted-key>10</trusted-key><source-address><name>62.40.96.16</name></source-address></ntp></system><chassis><undocumented><dump-on-panic/></undocumented><redundancy><routing-engine><name>0</name><master/></routing-engine><routing-engine><name>1</name><backup/></routing-engine><failover><on-loss-of-keepalives/><on-disk-failure/></failover><graceful-switchover> - </graceful-switchover></redundancy><aggregated-devices><ethernet><device-count>32</device-count></ethernet></aggregated-devices><fpc><name>0</name><pic><name>0</name><tunnel-services><bandwidth>10g</bandwidth></tunnel-services></pic><sampling-instance><name>ipfx</name></sampling-instance><inline-services><flow-table-size><ipv4-flow-table-size>5</ipv4-flow-table-size><ipv6-flow-table-size>5</ipv6-flow-table-size></flow-table-size></inline-services></fpc><fpc><name>1</name><pic><name>2</name><adaptive-services><service-package><extension-provider><syslog><name>daemon</name><critical/></syslog></extension-provider></service-package></adaptive-services></pic><sampling-instance><name>ipfx</name></sampling-instance><inline-services><flow-table-size><ipv4-flow-table-size>5</ipv4-flow-table-size><ipv6-flow-table-size>5</ipv6-flow-table-size></flow-table-size></inline-services></fpc><fpc><name>2</name><sampling-instance><name>ipfx</name></sampling-instance><inline-services><flow-table-size><ipv4-flow-table-size>5</ipv4-flow-table-size><ipv6-flow-table-size>5</ipv6-flow-table-size></flow-table-size></inline-services></fpc><fpc><name>3</name><sampling-instance><name>ipfx</name></sampling-instance><inline-services><flow-table-size><ipv4-flow-table-size>5</ipv4-flow-table-size><ipv6-flow-table-size>5</ipv6-flow-table-size></flow-table-size></inline-services></fpc></chassis><services><flow-monitoring><version-ipfix><template><name>ipv4</name><flow-active-timeout>60</flow-active-timeout><flow-inactive-timeout>60</flow-inactive-timeout><nexthop-learning><enable/></nexthop-learning><template-refresh-rate><seconds>300</seconds></template-refresh-rate><option-refresh-rate><seconds>300</seconds></option-refresh-rate><ipv4-template> - </ipv4-template></template><template><name>ipv6</name><flow-active-timeout>60</flow-active-timeout><flow-inactive-timeout>60</flow-inactive-timeout><nexthop-learning><enable/></nexthop-learning><template-refresh-rate><seconds>300</seconds></template-refresh-rate><option-refresh-rate><seconds>300</seconds></option-refresh-rate><ipv6-template> - </ipv6-template></template></version-ipfix></flow-monitoring><rpm><probe><name>iGEANT_mx1.tal.ee_62.40.96.1</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.1</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.tal.ee_62.40.96.2</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.2</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.rig.lv_62.40.96.4</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.4</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.kau.lt_62.40.96.5</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.5</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.kau.lt_62.40.96.6</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.6</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.zag.hr_62.40.96.8</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.8</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.lju.si_62.40.96.10</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.10</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.lis.pt_62.40.96.17</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.17</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.bru.be_62.40.96.20</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.20</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.bud.hu_62.40.97.1</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.1</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.pra.cz_62.40.97.2</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.2</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.bra.sk_62.40.97.4</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.4</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.lon.uk_62.40.97.5</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.5</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.vie.at_62.40.97.7</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.7</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.poz.pl_62.40.97.10</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.10</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.ams.nl_62.40.97.11</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.11</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.fra.de_62.40.97.12</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.12</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.par.fr_62.40.97.13</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.13</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.gen.ch_62.40.97.14</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.14</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.mil2.it_62.40.97.15</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.15</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.mad.es_62.40.97.16</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.16</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.ath.gr_62.40.96.11</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.11</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.buc.ro_62.40.96.19</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.19</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.sof.bg_62.40.96.21</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.21</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.ham.de_62.40.96.26</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.26</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.mar.fr_62.40.96.12</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.12</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.lon2.uk_62.40.96.15</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.15</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.dub.ie_62.40.96.3</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.3</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.dub2.ie_62.40.96.25</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.25</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.ath2.gr_62.40.96.39</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.39</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt1.tal.ee_62.40.96.51</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.51</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt2.tal.ee_62.40.96.60</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.60</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt1.kau.lt_62.40.96.52</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.52</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt2.kau.lt_62.40.96.53</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.53</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt1.rig.lv_62.40.96.58</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.58</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt2.rig.lv_62.40.96.59</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.59</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt2.ams.nl_62.40.96.62</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.62</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>eGEANT_AS1930_62.40.124.186</name><test><name>icmp-test</name><probe-type>icmp-ping</probe-type><target><address>62.40.124.186</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>3600</test-interval><history-size>512</history-size></test></probe><twamp><server><authentication-mode><none/></authentication-mode><max-connection-duration>1</max-connection-duration><maximum-sessions>100</maximum-sessions><maximum-sessions-per-connection>50</maximum-sessions-per-connection><maximum-connections>50</maximum-connections><maximum-connections-per-client>10</maximum-connections-per-client><port>862</port><client-list><name>WP6_LOLA</name><address><name>194.81.18.224/27</name></address></client-list><client-list><name>GEANT_PERFSONAR</name><address><name>62.40.106.157/32</name></address><address><name>62.40.104.197/32</name></address><address><name>62.40.106.129/32</name></address><address><name>62.40.106.137/32</name></address><address><name>62.40.106.145/32</name></address><address><name>62.40.106.149/32</name></address><address><name>62.40.106.153/32</name></address><address><name>62.40.106.165/32</name></address><address><name>62.40.106.169/32</name></address><address><name>62.40.106.193/32</name></address><address><name>62.40.106.197/32</name></address><address><name>62.40.106.255/32</name></address><address><name>62.40.106.81/32</name></address><address><name>62.40.114.45/32</name></address><address><name>62.40.114.51/32</name></address><address><name>62.40.114.57/32</name></address><address><name>62.40.114.63/32</name></address><address><name>62.40.114.69/32</name></address><address><name>62.40.114.75/32</name></address><address><name>62.40.114.81/32</name></address><address><name>62.40.114.85/32</name></address><address><name>62.40.114.99/32</name></address><address><name>62.40.126.155/32</name></address><address><name>62.40.126.179/32</name></address><address><name>62.40.126.187/32</name></address><address><name>62.40.126.191/32</name></address><address><name>62.40.126.27/32</name></address><address><name>62.40.123.61/32</name></address><address><name>62.40.123.62/32</name></address><address><name>62.40.107.221/32</name></address></client-list></server></twamp></rpm></services><interfaces><apply-groups>re0</apply-groups><apply-groups>re1</apply-groups><apply-groups>load-balance-adaptive</apply-groups><interface><name>lt-0/0/0</name><description>TUN INFRASTRUCTURE ACCESS SRF0000001 </description><unit><name>16</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-lis-pt-RE_IAS| BGP Peering - RE Side</description><encapsulation>ethernet</encapsulation><peer-unit>61</peer-unit><family><inet><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>83.97.89.36/31</name></address></inet><inet6><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:1::145/126</name></address></inet6></family></unit><unit><name>61</name><description>SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #LIS-IAS-RE-Peering | BGP Peering - IAS Side</description><encapsulation>ethernet</encapsulation><peer-unit>16</peer-unit><family><inet><address><name>83.97.89.37/31</name></address></inet><inet6><address><name>2001:798:1::146/126</name></address></inet6></family></unit></interface><interface><name>xe-0/0/0</name><description>PHY CUSTOMER FCCN P_AE10 SRF9928601 </description><gigether-options><ieee-802.3ad><bundle>ae10</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-0/0/1</name><description>PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |</description><gigether-options><ieee-802.3ad><bundle>ae0</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-0/1/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9945509 | PT ID: LIS/FCC-LON/LD8 10G0003 LIS-LON</description><comment>/* PR1508794 - do not remove */</comment><hold-time><up>100</up><down>50</down></hold-time><framing><wan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae5</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-0/1/1</name><description>PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9943311 | PT ID: LIS/FCC-LON/LD8 10G0001 LIS-LON</description><comment>/* PR1508794 - do not remove */</comment><hold-time><up>100</up><down>50</down></hold-time><framing><wan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae5</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/0/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |</description><gigether-options><ieee-802.3ad><bundle>ae0</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/0/1</name><description>PHY CUSTOMER FCCN P_AE10 SRF9913981 </description><gigether-options><ieee-802.3ad><bundle>ae10</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/1/0</name><description>PHY CUSTOMER FCCN P_AE10 SRF18096 </description><gigether-options><ieee-802.3ad><bundle>ae10</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/1/1</name><description>PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9943313 | PT ID: LIS/FCC-LON/LD8 10G0002 LIS-LON</description><comment>/* PR1508794 - do not remove */</comment><hold-time><up>100</up><down>50</down></hold-time><framing><wan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae5</bundle></ieee-802.3ad></gigether-options></interface><interface><name>ms-1/2/0</name><unit><name>0</name><family><inet> - </inet></family></unit><unit><name>1</name><family><inet6> - </inet6></family></unit><unit><name>2</name><family><mpls> - </mpls></family></unit></interface><interface><name>xe-2/0/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |</description><gigether-options><ieee-802.3ad><bundle>ae0</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-2/0/1</name><description>PHY SPARE</description></interface><interface><name>xe-2/1/0</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/1/1</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-3/0/0</name><description>PHY CUSTOMER FCCN P_AE10 SRF19080 </description><gigether-options><ieee-802.3ad><bundle>ae10</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-3/0/1</name><description>PHY INFRASTRUCTURE BACKBONE P_AE5 SRF9949500 | PT ID: LIS/FCC-LON/LD8 10G0004 LIS-LON</description><comment>/* PR1508794 - do not remove */</comment><hold-time><up>100</up><down>50</down></hold-time><framing><wan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae5</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-3/0/2</name><description>PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |</description><gigether-options><ieee-802.3ad><bundle>ae0</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-3/0/3</name><description>PHY SPARE</description></interface><interface><name>et-3/1/0</name><description>PHY SPARE</description><disable/></interface><interface><name>et-3/1/1</name><disable/></interface><interface><name>xe-3/2/0</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-3/2/1</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-3/2/2</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-3/2/3</name><description>PHY SPARE</description><disable/></interface><interface><name>et-3/3/0</name><description>PHY SPARE</description><disable/></interface><interface><name>ae0</name><description>LAG INFRASTRUCTURE BACKBONE LIS SRF0000001 | lis-lis</description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.96.17</neighbor><local-address>62.40.96.16</local-address></bfd-liveness-detection><minimum-links>3</minimum-links><link-speed>10g</link-speed><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS_LIS_IPTRUNK | LIS-LIS | </description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9000</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.104/31</name></address></inet><iso> - </iso><inet6><mtu>9000</mtu><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:cc:2f01:2f01::1/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae5</name><description>LAG INFRASTRUCTURE BACKBONE LON SRF0000001 | lis-lon</description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.97.5</neighbor><local-address>62.40.96.16</local-address></bfd-liveness-detection><minimum-links>3</minimum-links><link-speed>oc192</link-speed><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS_LON_IPTRUNK | LON-LIS | </description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9000</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.102/31</name></address></inet><iso> - </iso><inet6><mtu>9000</mtu><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:cc:2f01:2801::1/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae10</name><description>LAG CUSTOMER FCCN SRF9928603 </description><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><aggregated-ether-options><minimum-links>3</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>333</name><description>SRV_IAS CUSTOMER FCCN #FCCN_AP2_IAS IASGWS | ASN1930 </description><vlan-id>333</vlan-id><family><inet><accounting><source-class-usage><output/></source-class-usage><destination-class-usage/></accounting><mtu>1500</mtu><filter><input><filter-name>nren_IAS_FCCN_IN</filter-name></input><output><filter-name>nren_IAS_FCCN_OUT</filter-name></output></filter><address><name>83.97.88.61/30</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>nren_IAS_FCCN_V6_IN</filter-name></input><output><filter-name>nren_IAS_FCCN_V6_OUT</filter-name></output></filter><address><name>2001:798:1::49/126</name></address></inet6></family></unit><unit><name>1931</name><description>SRV_GLOBAL CUSTOMER FCCN #FCCN_AP2 | ASN1930 </description><vlan-id>1931</vlan-id><family><inet><accounting><source-class-usage><output/></source-class-usage><destination-class-usage/></accounting><filter><input><filter-name>FCCN-in</filter-name></input><output><filter-name>FCCN-out</filter-name></output></filter><address><name>62.40.124.185/30</name></address></inet><iso> - </iso><inet6><filter><input><filter-name>FCCN6-in</filter-name></input><output><filter-name>FCCN6-out</filter-name></output></filter><address><name>2001:798:24:10aa::1/126</name></address></inet6></family></unit><unit><name>1934</name><description>SRV_MDVPN CUSTOMER FCCN #FCCN_AP_B_BGP_LU_CoC </description><vlan-id>1934</vlan-id><family><inet><address><name>62.40.102.62/31</name></address></inet><mpls> - </mpls></family></unit><unit><name>1944</name><description>SRV_GCS CUSTOMER FCCN #FCCN_NoveSBE_ExpressRoute_Vlan1944 UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1944</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1946</name><description>SRV_GCS CUSTOMER FCCN #FCCN_IPP_ExpressRoute_Vlan1946 UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1946</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit></interface><interface><name>dsc</name><unit><name>0</name><description>PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring</description><family><inet><address><name>192.0.2.108/32</name></address></inet></family></unit></interface><interface><name>lo0</name><unit><name>0</name><family><inet><filter><input><filter-name>ROUTER_access</filter-name></input><output><filter-name>router-access-out</filter-name></output></filter><address><name>62.40.96.16/32</name></address></inet><iso><address><name>49.51e5.0001.0620.4009.6016.00</name></address></iso><inet6><filter><input><filter-name>ROUTER_access_V6</filter-name></input></filter><address><name>2001:798:2f:20ff::1/128</name></address></inet6></family></unit></interface></interfaces><snmp><location>lis, pt##LOC 38 45 32.75 N 9 8 31.9 W ##</location><contact>GEANT OC, support@oc.geant.net, +44 (0) 1223 733033</contact><community><name>As4n0gN!</name><authorization>read-only</authorization><clients><name>212.51.192.2/32</name></clients><clients><name>212.51.192.18/32</name></clients><clients><name>212.51.192.185/32</name></clients><comment>/* FCCN Ops */</comment><clients><name>193.136.7.0/25</name></clients><comment>/* JANET monitoring tool */</comment><clients><name>128.86.32.16/29</name></clients><clients><name>193.137.199.130/32</name></clients></community><community><name>G4@NTWP6T7</name><authorization>read-only</authorization><clients><name>194.81.18.224/27</name></clients><clients><name>83.97.94.160/32</name></clients><clients><name>83.97.94.180/32</name></clients></community><community><name>0pBiFbD</name><authorization>read-only</authorization><clients><name>62.40.100.194/32</name></clients><clients><name>62.40.100.202/32</name></clients><clients><name>62.40.106.182/32</name></clients><clients><name>62.40.106.200/29</name></clients><clients><name>62.40.111.254/32</name></clients><clients><name>62.40.113.88/29</name></clients><clients><name>62.40.114.0/28</name></clients><clients><name>62.40.114.114/32</name></clients><clients><name>62.40.114.16/28</name></clients><clients><name>62.40.100.190/32</name></clients><clients><name>62.40.100.166/32</name></clients><clients><name>62.40.100.198/32</name></clients><clients><name>62.40.118.224/28</name></clients><clients><name>62.40.118.50/32</name></clients><clients><name>62.40.120.18/32</name></clients><clients><name>62.40.120.90/32</name></clients><clients><name>62.40.122.138/32</name></clients><clients><name>62.40.99.32/29</name></clients><clients><name>62.40.99.40/30</name></clients><clients><name>62.40.99.44/31</name></clients><clients><name>62.40.99.51/32</name></clients><clients><name>62.40.99.52/32</name></clients><clients><name>62.40.99.53/32</name></clients><clients><name>83.97.91.0/24</name></clients><clients><name>83.97.92.0/24</name></clients><clients><name>83.97.92.114/32</name></clients><clients><name>83.97.92.159/32</name></clients><clients><name>83.97.92.183/32</name></clients><clients><name>83.97.92.94/32</name></clients><clients><name>83.97.93.122/32</name></clients><clients><name>83.97.93.137/32</name></clients><clients><name>83.97.93.152/32</name></clients><clients><name>83.97.93.153/32</name></clients><clients><name>83.97.93.154/32</name></clients><clients><name>83.97.93.195/32</name></clients><clients><name>83.97.93.196/32</name></clients><clients><name>83.97.93.22/32</name></clients><clients><name>83.97.93.23/32</name></clients><clients><name>83.97.93.238/32</name></clients><clients><name>83.97.93.239/32</name></clients><clients><name>83.97.93.37/32</name></clients><clients><name>83.97.93.39/32</name></clients><clients><name>83.97.93.45/32</name></clients><clients><name>83.97.93.59/32</name></clients><clients><name>83.97.94.12/32</name></clients><clients><name>83.97.94.13/32</name></clients><clients><name>83.97.94.14/32</name></clients><clients><name>83.97.94.151/32</name></clients><clients><name>83.97.94.52/32</name></clients><clients><name>83.97.94.97/32</name></clients><clients><name>83.97.94.98/32</name></clients><clients><name>193.177.128.0/22</name></clients><clients><name>83.97.94.245/32</name></clients><clients><name>83.97.94.246/32</name></clients><clients><name>83.97.95.9/32</name></clients><clients><name>83.97.95.10/32</name></clients><clients><name>83.97.95.11/32</name></clients><clients><name>83.97.95.12/32</name></clients><clients><name>83.97.95.84/32</name></clients><clients><name>83.97.92.228/32</name></clients><clients><name>83.97.93.53/32</name></clients><clients><name>83.97.94.185/32</name></clients><clients><name>83.97.93.151/32</name></clients><clients><name>83.97.94.51/32</name></clients><clients><name>83.97.94.188/32</name></clients><clients><name>62.40.114.3/32</name></clients><clients><name>62.40.114.19/32</name></clients><clients><name>62.40.114.18/32</name></clients><clients><name>83.97.93.52/32</name></clients><clients><name>83.97.93.155/32</name></clients><clients><name>83.97.93.84/32</name></clients></community><community><name>MdM53r6Sk</name><authorization>read-only</authorization><clients><name>62.40.123.162/32</name></clients></community><community><name>S3cur1tyS3rv1cE</name><authorization>read-only</authorization><clients><name>62.40.106.106/32</name></clients></community><community><name>XantaroXSE</name><authorization>read-only</authorization><clients><name>62.40.99.47/32</name></clients></community><community><name>c6N2rt5s</name><authorization>read-only</authorization><clients><name>62.40.122.226/32</name></clients></community><trap-options><source-address><address>62.40.96.16</address></source-address></trap-options><trap-group><name>space</name><version>v2</version><targets><name>62.40.120.19</name></targets><targets><name>62.40.99.3</name></targets></trap-group><trap-group><name>geantnms</name><version>v2</version><categories><chassis/><link/><routing/></categories><targets><name>62.40.114.18</name></targets><targets><name>62.40.114.19</name></targets><targets><name>62.40.114.2</name></targets><targets><name>62.40.114.3</name></targets><targets><name>83.97.92.228</name></targets><targets><name>83.97.93.151</name></targets><targets><name>83.97.93.53</name></targets><targets><name>83.97.94.51</name></targets><targets><name>83.97.94.185</name></targets><targets><name>83.97.94.188</name></targets></trap-group></snmp><forwarding-options><sampling><instance><name>ipfx</name><input><rate>300</rate></input><family><inet><output><flow-server><name>62.40.100.166</name><port>7711</port><version-ipfix><template><template-name>ipv4</template-name></template></version-ipfix></flow-server><flow-server><name>62.40.106.182</name><port>7712</port><version-ipfix><template><template-name>ipv4</template-name></template></version-ipfix></flow-server><flow-server><name>83.97.94.190</name><port>9995</port><version-ipfix><template><template-name>ipv4</template-name></template></version-ipfix></flow-server><inline-jflow><source-address>62.40.96.16</source-address><flow-export-rate>30</flow-export-rate></inline-jflow></output></inet><inet6><output><flow-server><name>62.40.100.166</name><port>7711</port><version-ipfix><template><template-name>ipv6</template-name></template></version-ipfix></flow-server><flow-server><name>62.40.106.182</name><port>7712</port><version-ipfix><template><template-name>ipv6</template-name></template></version-ipfix></flow-server><flow-server><name>83.97.94.190</name><port>9995</port><version-ipfix><template><template-name>ipv6</template-name></template></version-ipfix></flow-server><inline-jflow><source-address>62.40.96.16</source-address><flow-export-rate>30</flow-export-rate></inline-jflow></output></inet6></family></instance></sampling></forwarding-options><policy-options><prefix-list><name>geant-address-space</name><prefix-list-item><name>62.40.96.0/19</name></prefix-list-item></prefix-list><prefix-list><name>geant-address-space-short</name><prefix-list-item><name>62.40.96.0/24</name></prefix-list-item><prefix-list-item><name>62.40.98.0/23</name></prefix-list-item><prefix-list-item><name>62.40.99.0/29</name></prefix-list-item><prefix-list-item><name>62.40.100.0/24</name></prefix-list-item><prefix-list-item><name>62.40.102.0/24</name></prefix-list-item><prefix-list-item><name>62.40.104.40/29</name></prefix-list-item><prefix-list-item><name>62.40.104.120/29</name></prefix-list-item><prefix-list-item><name>62.40.106.202/32</name></prefix-list-item><prefix-list-item><name>62.40.109.16/29</name></prefix-list-item><prefix-list-item><name>62.40.111.27/32</name></prefix-list-item><prefix-list-item><name>62.40.114.0/23</name></prefix-list-item><prefix-list-item><name>62.40.116.0/23</name></prefix-list-item><prefix-list-item><name>62.40.118.0/24</name></prefix-list-item><prefix-list-item><name>64.40.109.16/29</name></prefix-list-item><prefix-list-item><name>64.40.112.0/22</name></prefix-list-item><prefix-list-item><name>64.40.116.0/23</name></prefix-list-item></prefix-list><prefix-list><name>geant-address-space-V6</name><prefix-list-item><name>2001:798::/32</name></prefix-list-item></prefix-list><prefix-list><name>geant-external-beacon</name><prefix-list-item><name>62.8.32.8/32</name></prefix-list-item><prefix-list-item><name>62.16.32.8/32</name></prefix-list-item><prefix-list-item><name>128.139.197.70/32</name></prefix-list-item><prefix-list-item><name>131.251.128.240/32</name></prefix-list-item><prefix-list-item><name>137.44.1.95/32</name></prefix-list-item><prefix-list-item><name>146.97.49.2/32</name></prefix-list-item><prefix-list-item><name>193.2.1.77/32</name></prefix-list-item><prefix-list-item><name>193.206.158.32/32</name></prefix-list-item><prefix-list-item><name>193.219.61.8/32</name></prefix-list-item><prefix-list-item><name>194.83.179.78/32</name></prefix-list-item><prefix-list-item><name>194.83.179.238/32</name></prefix-list-item><prefix-list-item><name>194.83.179.254/32</name></prefix-list-item><prefix-list-item><name>194.210.30.200/32</name></prefix-list-item></prefix-list><prefix-list><name>route-from-FCCN</name><prefix-list-item><name>91.231.216.0/24</name></prefix-list-item><prefix-list-item><name>91.231.217.0/24</name></prefix-list-item><prefix-list-item><name>139.83.0.0/16</name></prefix-list-item><prefix-list-item><name>146.193.0.0/19</name></prefix-list-item><prefix-list-item><name>146.193.32.0/19</name></prefix-list-item><prefix-list-item><name>146.193.64.0/18</name></prefix-list-item><prefix-list-item><name>146.193.128.0/18</name></prefix-list-item><prefix-list-item><name>146.193.192.0/19</name></prefix-list-item><prefix-list-item><name>146.193.224.0/19</name></prefix-list-item><prefix-list-item><name>158.162.0.0/18</name></prefix-list-item><prefix-list-item><name>158.162.64.0/19</name></prefix-list-item><prefix-list-item><name>158.162.96.0/20</name></prefix-list-item><prefix-list-item><name>158.162.112.0/21</name></prefix-list-item><prefix-list-item><name>158.162.128.0/18</name></prefix-list-item><prefix-list-item><name>158.162.192.0/18</name></prefix-list-item><prefix-list-item><name>185.39.208.0/24</name></prefix-list-item><prefix-list-item><name>185.39.209.0/24</name></prefix-list-item><prefix-list-item><name>185.39.210.0/24</name></prefix-list-item><prefix-list-item><name>185.39.211.0/24</name></prefix-list-item><prefix-list-item><name>185.41.116.0/22</name></prefix-list-item><prefix-list-item><name>185.41.116.0/23</name></prefix-list-item><prefix-list-item><name>185.41.118.0/23</name></prefix-list-item><prefix-list-item><name>185.175.184.0/22</name></prefix-list-item><prefix-list-item><name>192.0.40.0/24</name></prefix-list-item><prefix-list-item><name>192.0.41.0/24</name></prefix-list-item><prefix-list-item><name>192.12.232.0/24</name></prefix-list-item><prefix-list-item><name>192.26.231.0/24</name></prefix-list-item><prefix-list-item><name>192.26.236.0/24</name></prefix-list-item><prefix-list-item><name>192.35.246.0/24</name></prefix-list-item><prefix-list-item><name>192.67.76.0/24</name></prefix-list-item><prefix-list-item><name>192.68.186.0/24</name></prefix-list-item><prefix-list-item><name>192.68.209.0/24</name></prefix-list-item><prefix-list-item><name>192.68.216.0/24</name></prefix-list-item><prefix-list-item><name>192.68.221.0/24</name></prefix-list-item><prefix-list-item><name>192.68.224.0/24</name></prefix-list-item><prefix-list-item><name>192.76.242.0/24</name></prefix-list-item><prefix-list-item><name>192.80.20.0/24</name></prefix-list-item><prefix-list-item><name>192.80.21.0/24</name></prefix-list-item><prefix-list-item><name>192.82.127.0/24</name></prefix-list-item><prefix-list-item><name>192.84.13.0/24</name></prefix-list-item><prefix-list-item><name>192.84.15.0/24</name></prefix-list-item><prefix-list-item><name>192.86.138.0/24</name></prefix-list-item><prefix-list-item><name>192.88.17.0/24</name></prefix-list-item><prefix-list-item><name>192.88.250.0/23</name></prefix-list-item><prefix-list-item><name>192.88.250.0/24</name></prefix-list-item><prefix-list-item><name>192.88.251.0/24</name></prefix-list-item><prefix-list-item><name>192.88.252.0/23</name></prefix-list-item><prefix-list-item><name>192.88.252.0/24</name></prefix-list-item><prefix-list-item><name>192.88.253.0/24</name></prefix-list-item><prefix-list-item><name>192.88.254.0/24</name></prefix-list-item><prefix-list-item><name>192.92.133.0/24</name></prefix-list-item><prefix-list-item><name>192.92.142.0/24</name></prefix-list-item><prefix-list-item><name>192.92.144.0/24</name></prefix-list-item><prefix-list-item><name>192.92.145.0/24</name></prefix-list-item><prefix-list-item><name>192.92.146.0/24</name></prefix-list-item><prefix-list-item><name>192.92.147.0/24</name></prefix-list-item><prefix-list-item><name>192.92.148.0/24</name></prefix-list-item><prefix-list-item><name>192.92.149.0/24</name></prefix-list-item><prefix-list-item><name>192.92.152.0/24</name></prefix-list-item><prefix-list-item><name>192.92.153.0/24</name></prefix-list-item><prefix-list-item><name>192.104.48.0/24</name></prefix-list-item><prefix-list-item><name>192.107.122.0/24</name></prefix-list-item><prefix-list-item><name>192.122.238.0/23</name></prefix-list-item><prefix-list-item><name>192.122.240.0/23</name></prefix-list-item><prefix-list-item><name>192.122.242.0/24</name></prefix-list-item><prefix-list-item><name>192.132.53.0/24</name></prefix-list-item><prefix-list-item><name>192.132.55.0/24</name></prefix-list-item><prefix-list-item><name>192.135.129.0/24</name></prefix-list-item><prefix-list-item><name>192.135.187.0/24</name></prefix-list-item><prefix-list-item><name>192.135.219.0/24</name></prefix-list-item><prefix-list-item><name>192.136.49.0/24</name></prefix-list-item><prefix-list-item><name>192.136.52.0/24</name></prefix-list-item><prefix-list-item><name>192.138.86.0/24</name></prefix-list-item><prefix-list-item><name>192.138.204.0/24</name></prefix-list-item><prefix-list-item><name>192.190.174.0/24</name></prefix-list-item><prefix-list-item><name>192.195.195.0/24</name></prefix-list-item><prefix-list-item><name>192.228.87.0/24</name></prefix-list-item><prefix-list-item><name>193.136.0.0/15</name></prefix-list-item><prefix-list-item><name>193.236.16.0/20</name></prefix-list-item><prefix-list-item><name>193.236.32.0/19</name></prefix-list-item><prefix-list-item><name>193.236.64.0/19</name></prefix-list-item><prefix-list-item><name>193.236.100.0/23</name></prefix-list-item><prefix-list-item><name>193.236.160.0/20</name></prefix-list-item><prefix-list-item><name>194.117.0.0/20</name></prefix-list-item><prefix-list-item><name>194.117.16.0/21</name></prefix-list-item><prefix-list-item><name>194.117.24.0/21</name></prefix-list-item><prefix-list-item><name>194.117.32.0/22</name></prefix-list-item><prefix-list-item><name>194.117.40.0/21</name></prefix-list-item><prefix-list-item><name>194.117.48.0/23</name></prefix-list-item><prefix-list-item><name>194.210.0.0/16</name></prefix-list-item><prefix-list-item><name>194.210.6.0/24</name></prefix-list-item><prefix-list-item><name>199.7.82.0/23</name></prefix-list-item><prefix-list-item><name>199.7.82.0/24</name></prefix-list-item><prefix-list-item><name>199.7.83.0/24</name></prefix-list-item><prefix-list-item><name>199.7.94.0/24</name></prefix-list-item><prefix-list-item><name>199.7.95.0/24</name></prefix-list-item><prefix-list-item><name>199.43.132.0/24</name></prefix-list-item></prefix-list><prefix-list><name>route-from-FCCN-v6</name><prefix-list-item><name>2001:0000::/32</name></prefix-list-item><prefix-list-item><name>2001:500:3::/48</name></prefix-list-item><prefix-list-item><name>2001:500:6c::/48</name></prefix-list-item><prefix-list-item><name>2001:500:8c::/48</name></prefix-list-item><prefix-list-item><name>2001:500:9c::/48</name></prefix-list-item><prefix-list-item><name>2001:500:9d::/48</name></prefix-list-item><prefix-list-item><name>2001:500:9e::/47</name></prefix-list-item><prefix-list-item><name>2001:500:9f::/48</name></prefix-list-item><prefix-list-item><name>2001:690::/29</name></prefix-list-item><prefix-list-item><name>2001:690::/32</name></prefix-list-item><prefix-list-item><name>2001:697::/32</name></prefix-list-item><prefix-list-item><name>2001:7f8:a::/48</name></prefix-list-item><prefix-list-item><name>2002::/16</name></prefix-list-item><prefix-list-item><name>2620:0:22b0::/48</name></prefix-list-item><prefix-list-item><name>2620:0:2ee0::/48</name></prefix-list-item><prefix-list-item><name>2a04:6d80::/29</name></prefix-list-item><prefix-list-item><name>2a04:6d80::/32</name></prefix-list-item><prefix-list-item><name>2a04:6d81::/32</name></prefix-list-item><prefix-list-item><name>2a04:6d82::/32</name></prefix-list-item></prefix-list><prefix-list><name>external-project-interfaces</name><prefix-list-item><name>62.40.100.160/32</name></prefix-list-item><prefix-list-item><name>62.40.100.162/32</name></prefix-list-item><prefix-list-item><name>62.40.100.169/32</name></prefix-list-item><prefix-list-item><name>62.40.100.209/32</name></prefix-list-item><prefix-list-item><name>62.40.104.20/32</name></prefix-list-item><prefix-list-item><name>62.40.104.224/32</name></prefix-list-item><prefix-list-item><name>62.40.104.226/32</name></prefix-list-item><prefix-list-item><name>62.40.106.17/32</name></prefix-list-item><prefix-list-item><name>62.40.106.25/32</name></prefix-list-item><prefix-list-item><name>62.40.106.33/32</name></prefix-list-item><prefix-list-item><name>62.40.106.41/32</name></prefix-list-item><prefix-list-item><name>62.40.106.57/32</name></prefix-list-item><prefix-list-item><name>62.40.106.60/32</name></prefix-list-item><prefix-list-item><name>62.40.106.62/32</name></prefix-list-item><prefix-list-item><name>62.40.106.65/32</name></prefix-list-item><prefix-list-item><name>62.40.106.113/32</name></prefix-list-item><prefix-list-item><name>62.40.106.121/32</name></prefix-list-item><prefix-list-item><name>62.40.106.174/32</name></prefix-list-item><prefix-list-item><name>62.40.106.178/32</name></prefix-list-item><prefix-list-item><name>62.40.107.213/32</name></prefix-list-item><prefix-list-item><name>62.40.108.1/32</name></prefix-list-item><prefix-list-item><name>62.40.108.5/32</name></prefix-list-item><prefix-list-item><name>62.40.108.9/32</name></prefix-list-item><prefix-list-item><name>62.40.108.33/32</name></prefix-list-item><prefix-list-item><name>62.40.108.57/32</name></prefix-list-item><prefix-list-item><name>62.40.108.65/32</name></prefix-list-item><prefix-list-item><name>62.40.108.73/32</name></prefix-list-item><prefix-list-item><name>62.40.108.81/32</name></prefix-list-item><prefix-list-item><name>62.40.108.89/32</name></prefix-list-item><prefix-list-item><name>62.40.108.97/32</name></prefix-list-item><prefix-list-item><name>62.40.109.65/32</name></prefix-list-item><prefix-list-item><name>62.40.110.1/32</name></prefix-list-item><prefix-list-item><name>62.40.113.56/32</name></prefix-list-item><prefix-list-item><name>62.40.113.129/32</name></prefix-list-item><prefix-list-item><name>62.40.114.1/32</name></prefix-list-item><prefix-list-item><name>62.40.114.102/32</name></prefix-list-item><prefix-list-item><name>62.40.114.177/32</name></prefix-list-item><prefix-list-item><name>62.40.114.185/32</name></prefix-list-item><prefix-list-item><name>62.40.114.193/32</name></prefix-list-item><prefix-list-item><name>62.40.114.209/32</name></prefix-list-item><prefix-list-item><name>62.40.114.225/32</name></prefix-list-item><prefix-list-item><name>62.40.114.233/32</name></prefix-list-item><prefix-list-item><name>62.40.114.241/32</name></prefix-list-item><prefix-list-item><name>62.40.120.25/32</name></prefix-list-item><prefix-list-item><name>62.40.120.33/32</name></prefix-list-item><prefix-list-item><name>62.40.120.41/32</name></prefix-list-item><prefix-list-item><name>62.40.120.65/32</name></prefix-list-item><prefix-list-item><name>62.40.120.97/32</name></prefix-list-item><prefix-list-item><name>62.40.121.1/32</name></prefix-list-item><prefix-list-item><name>62.40.121.5/32</name></prefix-list-item><prefix-list-item><name>62.40.121.9/32</name></prefix-list-item><prefix-list-item><name>62.40.121.13/32</name></prefix-list-item><prefix-list-item><name>62.40.121.17/32</name></prefix-list-item><prefix-list-item><name>62.40.121.21/32</name></prefix-list-item><prefix-list-item><name>62.40.121.25/32</name></prefix-list-item><prefix-list-item><name>62.40.121.29/32</name></prefix-list-item><prefix-list-item><name>62.40.121.33/32</name></prefix-list-item><prefix-list-item><name>62.40.121.37/32</name></prefix-list-item><prefix-list-item><name>62.40.121.41/32</name></prefix-list-item><prefix-list-item><name>62.40.121.45/32</name></prefix-list-item><prefix-list-item><name>62.40.121.49/32</name></prefix-list-item><prefix-list-item><name>62.40.121.53/32</name></prefix-list-item><prefix-list-item><name>62.40.121.57/32</name></prefix-list-item><prefix-list-item><name>62.40.121.61/32</name></prefix-list-item><prefix-list-item><name>62.40.121.65/32</name></prefix-list-item><prefix-list-item><name>62.40.121.69/32</name></prefix-list-item><prefix-list-item><name>62.40.121.73/32</name></prefix-list-item><prefix-list-item><name>62.40.121.77/32</name></prefix-list-item><prefix-list-item><name>62.40.121.81/32</name></prefix-list-item><prefix-list-item><name>62.40.121.101/32</name></prefix-list-item><prefix-list-item><name>62.40.121.105/32</name></prefix-list-item><prefix-list-item><name>62.40.121.241/32</name></prefix-list-item><prefix-list-item><name>62.40.122.1/32</name></prefix-list-item><prefix-list-item><name>62.40.122.9/32</name></prefix-list-item><prefix-list-item><name>62.40.122.17/32</name></prefix-list-item><prefix-list-item><name>62.40.122.25/32</name></prefix-list-item><prefix-list-item><name>62.40.122.33/32</name></prefix-list-item><prefix-list-item><name>62.40.122.49/32</name></prefix-list-item><prefix-list-item><name>62.40.122.57/32</name></prefix-list-item><prefix-list-item><name>62.40.122.65/32</name></prefix-list-item><prefix-list-item><name>62.40.122.73/32</name></prefix-list-item><prefix-list-item><name>62.40.122.81/32</name></prefix-list-item><prefix-list-item><name>62.40.122.89/32</name></prefix-list-item><prefix-list-item><name>62.40.122.97/32</name></prefix-list-item><prefix-list-item><name>62.40.122.105/32</name></prefix-list-item><prefix-list-item><name>62.40.122.113/32</name></prefix-list-item><prefix-list-item><name>62.40.122.121/32</name></prefix-list-item><prefix-list-item><name>62.40.122.129/32</name></prefix-list-item><prefix-list-item><name>62.40.122.145/32</name></prefix-list-item><prefix-list-item><name>62.40.122.153/32</name></prefix-list-item><prefix-list-item><name>62.40.122.169/32</name></prefix-list-item><prefix-list-item><name>62.40.122.185/32</name></prefix-list-item><prefix-list-item><name>62.40.122.193/32</name></prefix-list-item><prefix-list-item><name>62.40.123.1/32</name></prefix-list-item><prefix-list-item><name>62.40.123.9/32</name></prefix-list-item><prefix-list-item><name>62.40.123.18/32</name></prefix-list-item><prefix-list-item><name>62.40.123.141/32</name></prefix-list-item><prefix-list-item><name>62.40.123.148/32</name></prefix-list-item><prefix-list-item><name>62.40.123.150/32</name></prefix-list-item><prefix-list-item><name>62.40.123.209/32</name></prefix-list-item><prefix-list-item><name>62.40.123.217/32</name></prefix-list-item><prefix-list-item><name>62.40.123.225/32</name></prefix-list-item><prefix-list-item><name>62.40.123.233/32</name></prefix-list-item><prefix-list-item><name>62.40.123.241/32</name></prefix-list-item><prefix-list-item><name>62.40.123.249/32</name></prefix-list-item><prefix-list-item><name>62.40.126.9/32</name></prefix-list-item></prefix-list><prefix-list><name>external-project6</name><prefix-list-item><name>2001:798:1:1::/64</name></prefix-list-item><prefix-list-item><name>2001:798:1:2::/64</name></prefix-list-item><prefix-list-item><name>2001:798:2::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:2:1::2/128</name></prefix-list-item><prefix-list-item><name>2001:0798:0002:284d::/64</name></prefix-list-item><prefix-list-item><name>2001:798:2:284d::/128</name></prefix-list-item><prefix-list-item><name>2001:798:2:284d::60/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::/64</name></prefix-list-item><prefix-list-item><name>2001:798:3::103/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::104/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::10a/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::10b/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::147/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::151/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:1::/64</name></prefix-list-item><prefix-list-item><name>2001:798:4:2::/64</name></prefix-list-item><prefix-list-item><name>2001:798:4:3::/64</name></prefix-list-item><prefix-list-item><name>2001:798:4:3::d/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:5::/64</name></prefix-list-item><prefix-list-item><name>2001:798:4:6::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:6::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:6::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:6::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:8::/64</name></prefix-list-item><prefix-list-item><name>2001:798:11::/64</name></prefix-list-item><prefix-list-item><name>2001:798:14:96::/64</name></prefix-list-item><prefix-list-item><name>2001:798:14:aa::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:14:aa::3/128</name></prefix-list-item><prefix-list-item><name>2001:0798:14:c8::/64</name></prefix-list-item><prefix-list-item><name>2001:0798:18:96::/64</name></prefix-list-item><prefix-list-item><name>2001:0798:18:99::/64</name></prefix-list-item><comment>/* HADES */</comment><prefix-list-item><name>2001:798:22:16::0/64</name></prefix-list-item><prefix-list-item><name>2001:798:28:50::11/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:59::7/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:99::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::16/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::1a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::1b/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::1c/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::22/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::26/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::2a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::2e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::32/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::33/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::36/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::38/126</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::3a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::3e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::42/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::46/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::4a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::4e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::52/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::56/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::5a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::5e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::62/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::66/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::6a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::6e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::72/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::76/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::7a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::7e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::82/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::86/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::8a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::8e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::92/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::96/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::9a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::9e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::a2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::a6/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::aa/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::ae/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::b2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::ba/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::be/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::c2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::ce/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::d2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::d6/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::da/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:5::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:c::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:c::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:d::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:1a::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:1b::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:1e::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:1e::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:1e::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:23::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:25::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:25::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2a::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2a::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2b::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2b::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2e::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2e::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:33::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:34::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:34::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:34::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:35::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:36::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:37::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:38::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:39::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:3a::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:41::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:42::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:43::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:49::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:4d::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:dd:3::0/64</name></prefix-list-item><prefix-list-item><name>2001:798:dd:7::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ee:b::42/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:b::46/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:10::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:21::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ee:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::52/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::56/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::5a/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::5e/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::62/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::66/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::6a/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::6e/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::72/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::76/128</name></prefix-list-item><prefix-list-item><name>2001:798:2001::/48</name></prefix-list-item><prefix-list-item><name>2001:798:2002::/48</name></prefix-list-item><prefix-list-item><name>2001:798:2012:47::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:f27a:10::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f27a:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f27a:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f27a:28::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f27a:2d::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f99a:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f9a1:10::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f9a2:10::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f9a3:28::0/125</name></prefix-list-item><prefix-list-item><name>2001:798:fa78:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa78:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa78:28::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa78:2d01::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa78:2d02::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:10::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:28::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:2d01::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:2d02::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:10::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:10::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:12::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:12::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:13::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:13::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:14::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:14::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:14::a/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:16::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:16::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:17::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:17::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:18::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:18::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:19::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:19::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1b::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1b::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1e::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1e::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1f::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:21::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:21::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:22::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:22::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:23::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:23::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:28::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:28::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:2b::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:2b::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:2c::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:2c::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff10:a5::/64</name></prefix-list-item><comment>/* SHAREPOINT */</comment><prefix-list-item><name>2001:0798:ff10:00a5::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff17:11::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff23:28::2/128</name></prefix-list-item><comment>/* TT#2016083134000549 pS LS testing instance access on port 8090 */</comment><prefix-list-item><name>2001:798:ff32:2e::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff98:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ff9b:18::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ff9b:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ff9d:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ff9e:10::2/128</name></prefix-list-item><comment>/* Site Archives */</comment><prefix-list-item><name>2001:798:ff9e:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ff9e:28::/64</name></prefix-list-item><comment>/* HADES */</comment><prefix-list-item><name>2001:798:ffa4:14::0/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2::/48</name></prefix-list-item></prefix-list><prefix-list><name>external-project-interfaces6</name><prefix-list-item><name>::/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::b9/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::bd/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::c1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::cd/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:5::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:d::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:33::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:35::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:36::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:37::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:38::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:39::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:3a::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:41::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:42::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:49::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:dd:3::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:dd:7::1/128</name></prefix-list-item></prefix-list><prefix-list><name>geantnoc-address-space6</name></prefix-list><prefix-list><name>bogons-list6</name><prefix-list-item><name>::/8</name></prefix-list-item><prefix-list-item><name>100::/8</name></prefix-list-item><prefix-list-item><name>200::/7</name></prefix-list-item><prefix-list-item><name>400::/7</name></prefix-list-item><prefix-list-item><name>600::/7</name></prefix-list-item><prefix-list-item><name>800::/5</name></prefix-list-item><prefix-list-item><name>1000::/4</name></prefix-list-item><prefix-list-item><name>2000::/16</name></prefix-list-item><prefix-list-item><name>3fff::/16</name></prefix-list-item><prefix-list-item><name>4000::/3</name></prefix-list-item><prefix-list-item><name>6000::/3</name></prefix-list-item><prefix-list-item><name>8000::/3</name></prefix-list-item><prefix-list-item><name>a000::/3</name></prefix-list-item><prefix-list-item><name>c000::/3</name></prefix-list-item><prefix-list-item><name>e000::/4</name></prefix-list-item><prefix-list-item><name>f000::/5</name></prefix-list-item><prefix-list-item><name>f800::/6</name></prefix-list-item><prefix-list-item><name>fc00::/7</name></prefix-list-item><prefix-list-item><name>fe00::/9</name></prefix-list-item><prefix-list-item><name>fec0::/10</name></prefix-list-item></prefix-list><prefix-list><name>pref-list-router-access</name><prefix-list-item><name>62.40.106.232/29</name></prefix-list-item><prefix-list-item><name>62.40.120.72/29</name></prefix-list-item><prefix-list-item><name>62.40.121.102/32</name></prefix-list-item><prefix-list-item><name>128.139.197.70/32</name></prefix-list-item><prefix-list-item><name>128.139.227.249/32</name></prefix-list-item><prefix-list-item><name>130.104.230.45/32</name></prefix-list-item><prefix-list-item><name>139.165.223.48/32</name></prefix-list-item><comment>/* FCCN OPS */</comment><prefix-list-item><name>193.136.7.100/32</name></prefix-list-item></prefix-list><prefix-list><name>external-project</name><prefix-list-item><name>62.40.99.0/29</name></prefix-list-item><prefix-list-item><name>62.40.99.8/31</name></prefix-list-item><prefix-list-item><name>62.40.99.42/32</name></prefix-list-item><prefix-list-item><name>62.40.99.45/32</name></prefix-list-item><prefix-list-item><name>62.40.99.50/32</name></prefix-list-item><prefix-list-item><name>62.40.99.51/32</name></prefix-list-item><prefix-list-item><name>62.40.99.106/32</name></prefix-list-item><prefix-list-item><name>62.40.99.114/32</name></prefix-list-item><prefix-list-item><name>62.40.99.129/32</name></prefix-list-item><prefix-list-item><name>62.40.99.136/29</name></prefix-list-item><prefix-list-item><name>62.40.99.138/32</name></prefix-list-item><prefix-list-item><name>62.40.99.139/32</name></prefix-list-item><prefix-list-item><name>62.40.99.144/29</name></prefix-list-item><prefix-list-item><name>62.40.99.160/27</name></prefix-list-item><prefix-list-item><name>62.40.99.192/26</name></prefix-list-item><prefix-list-item><name>62.40.99.215/32</name></prefix-list-item><prefix-list-item><name>62.40.100.128/25</name></prefix-list-item><prefix-list-item><name>62.40.100.161/32</name></prefix-list-item><prefix-list-item><name>62.40.100.163/32</name></prefix-list-item><prefix-list-item><name>62.40.100.168/29</name></prefix-list-item><prefix-list-item><name>62.40.100.208/29</name></prefix-list-item><prefix-list-item><name>62.40.101.0/24</name></prefix-list-item><prefix-list-item><name>62.40.104.0/29</name></prefix-list-item><prefix-list-item><name>62.40.104.8/29</name></prefix-list-item><prefix-list-item><name>62.40.104.21/32</name></prefix-list-item><comment>/* tools.geant.net */</comment><prefix-list-item><name>62.40.104.32/29</name></prefix-list-item><prefix-list-item><name>62.40.104.56/29</name></prefix-list-item><prefix-list-item><name>62.40.104.72/29</name></prefix-list-item><prefix-list-item><name>62.40.104.76/30</name></prefix-list-item><prefix-list-item><name>62.40.104.80/29</name></prefix-list-item><prefix-list-item><name>62.40.104.88/29</name></prefix-list-item><comment>/* OC Server */</comment><prefix-list-item><name>62.40.104.98/32</name></prefix-list-item><prefix-list-item><name>62.40.104.104/29</name></prefix-list-item><prefix-list-item><name>62.40.104.112/29</name></prefix-list-item><comment>/* cbt.geant.net */</comment><prefix-list-item><name>62.40.104.132/31</name></prefix-list-item><comment>/* mail.geant.net */</comment><prefix-list-item><name>62.40.104.134/31</name></prefix-list-item><prefix-list-item><name>62.40.104.136/29</name></prefix-list-item><prefix-list-item><name>62.40.104.168/29</name></prefix-list-item><prefix-list-item><name>62.40.104.176/30</name></prefix-list-item><prefix-list-item><name>62.40.104.180/30</name></prefix-list-item><prefix-list-item><name>62.40.104.184/29</name></prefix-list-item><prefix-list-item><name>62.40.104.192/29</name></prefix-list-item><prefix-list-item><name>62.40.104.197/32</name></prefix-list-item><prefix-list-item><name>62.40.104.199/32</name></prefix-list-item><prefix-list-item><name>62.40.104.202/31</name></prefix-list-item><prefix-list-item><name>62.40.104.205/32</name></prefix-list-item><prefix-list-item><name>62.40.104.207/32</name></prefix-list-item><prefix-list-item><name>62.40.104.210/32</name></prefix-list-item><prefix-list-item><name>62.40.104.211/32</name></prefix-list-item><prefix-list-item><name>62.40.104.212/32</name></prefix-list-item><prefix-list-item><name>62.40.104.224/27</name></prefix-list-item><prefix-list-item><name>62.40.104.225/32</name></prefix-list-item><prefix-list-item><name>62.40.104.227/32</name></prefix-list-item><prefix-list-item><name>62.40.104.250/32</name></prefix-list-item><prefix-list-item><name>62.40.105.0/24</name></prefix-list-item><prefix-list-item><name>62.40.106.0/24</name></prefix-list-item><prefix-list-item><name>62.40.106.3/32</name></prefix-list-item><prefix-list-item><name>62.40.106.9/32</name></prefix-list-item><prefix-list-item><name>62.40.106.16/29</name></prefix-list-item><prefix-list-item><name>62.40.106.18/32</name></prefix-list-item><prefix-list-item><name>62.40.106.24/29</name></prefix-list-item><prefix-list-item><name>62.40.106.32/29</name></prefix-list-item><prefix-list-item><name>62.40.106.34/32</name></prefix-list-item><prefix-list-item><name>62.40.106.35/32</name></prefix-list-item><prefix-list-item><name>62.40.106.42/32</name></prefix-list-item><prefix-list-item><name>62.40.106.48/29</name></prefix-list-item><prefix-list-item><name>62.40.106.56/29</name></prefix-list-item><prefix-list-item><name>62.40.106.61/32</name></prefix-list-item><prefix-list-item><name>62.40.106.63/32</name></prefix-list-item><prefix-list-item><name>62.40.106.67/32</name></prefix-list-item><prefix-list-item><name>62.40.106.68/32</name></prefix-list-item><prefix-list-item><name>62.40.106.80/29</name></prefix-list-item><prefix-list-item><name>62.40.106.81/32</name></prefix-list-item><prefix-list-item><name>62.40.106.83/32</name></prefix-list-item><prefix-list-item><name>62.40.106.90/32</name></prefix-list-item><comment>/* Netflow Auditor */</comment><prefix-list-item><name>62.40.106.104/29</name></prefix-list-item><prefix-list-item><name>62.40.106.112/29</name></prefix-list-item><prefix-list-item><name>62.40.106.120/29</name></prefix-list-item><prefix-list-item><name>62.40.106.129/32</name></prefix-list-item><prefix-list-item><name>62.40.106.131/32</name></prefix-list-item><prefix-list-item><name>62.40.106.133/32</name></prefix-list-item><prefix-list-item><name>62.40.106.135/32</name></prefix-list-item><prefix-list-item><name>62.40.106.137/32</name></prefix-list-item><prefix-list-item><name>62.40.106.139/32</name></prefix-list-item><prefix-list-item><name>62.40.106.141/32</name></prefix-list-item><prefix-list-item><name>62.40.106.145/32</name></prefix-list-item><prefix-list-item><name>62.40.106.147/32</name></prefix-list-item><prefix-list-item><name>62.40.106.149/32</name></prefix-list-item><prefix-list-item><name>62.40.106.151/32</name></prefix-list-item><prefix-list-item><name>62.40.106.153/32</name></prefix-list-item><prefix-list-item><name>62.40.106.155/32</name></prefix-list-item><prefix-list-item><name>62.40.106.157/32</name></prefix-list-item><prefix-list-item><name>62.40.106.159/32</name></prefix-list-item><prefix-list-item><name>62.40.106.161/32</name></prefix-list-item><prefix-list-item><name>62.40.106.163/32</name></prefix-list-item><prefix-list-item><name>62.40.106.165/32</name></prefix-list-item><prefix-list-item><name>62.40.106.167/32</name></prefix-list-item><prefix-list-item><name>62.40.106.169/32</name></prefix-list-item><prefix-list-item><name>62.40.106.171/32</name></prefix-list-item><prefix-list-item><name>62.40.106.173/32</name></prefix-list-item><prefix-list-item><name>62.40.106.175/32</name></prefix-list-item><prefix-list-item><name>62.40.106.177/32</name></prefix-list-item><prefix-list-item><name>62.40.106.179/32</name></prefix-list-item><prefix-list-item><name>62.40.106.181/32</name></prefix-list-item><prefix-list-item><name>62.40.106.183/32</name></prefix-list-item><prefix-list-item><name>62.40.106.185/32</name></prefix-list-item><prefix-list-item><name>62.40.106.189/32</name></prefix-list-item><prefix-list-item><name>62.40.106.191/32</name></prefix-list-item><prefix-list-item><name>62.40.106.193/32</name></prefix-list-item><prefix-list-item><name>62.40.106.195/32</name></prefix-list-item><prefix-list-item><name>62.40.106.197/32</name></prefix-list-item><prefix-list-item><name>62.40.106.199/32</name></prefix-list-item><prefix-list-item><name>62.40.106.201/32</name></prefix-list-item><prefix-list-item><name>62.40.106.202/32</name></prefix-list-item><prefix-list-item><name>62.40.106.240/29</name></prefix-list-item><prefix-list-item><name>62.40.106.249/32</name></prefix-list-item><prefix-list-item><name>62.40.106.251/32</name></prefix-list-item><prefix-list-item><name>62.40.106.253/32</name></prefix-list-item><prefix-list-item><name>62.40.106.255/32</name></prefix-list-item><prefix-list-item><name>62.40.107.182/32</name></prefix-list-item><prefix-list-item><name>62.40.107.194/32</name></prefix-list-item><prefix-list-item><name>62.40.107.198/32</name></prefix-list-item><prefix-list-item><name>62.40.107.206/32</name></prefix-list-item><prefix-list-item><name>62.40.107.214/32</name></prefix-list-item><prefix-list-item><name>62.40.107.221/32</name></prefix-list-item><prefix-list-item><name>62.40.107.222/32</name></prefix-list-item><prefix-list-item><name>62.40.107.223/32</name></prefix-list-item><prefix-list-item><name>62.40.107.230/32</name></prefix-list-item><prefix-list-item><name>62.40.107.238/32</name></prefix-list-item><prefix-list-item><name>62.40.107.246/32</name></prefix-list-item><prefix-list-item><name>62.40.107.248/29</name></prefix-list-item><prefix-list-item><name>62.40.108.50/32</name></prefix-list-item><prefix-list-item><name>62.40.108.58/32</name></prefix-list-item><prefix-list-item><name>62.40.108.98/32</name></prefix-list-item><prefix-list-item><name>62.40.108.102/32</name></prefix-list-item><prefix-list-item><name>62.40.108.140/32</name></prefix-list-item><prefix-list-item><name>62.40.108.192/26</name></prefix-list-item><prefix-list-item><name>62.40.109.0/24</name></prefix-list-item><prefix-list-item><name>62.40.109.0/28</name></prefix-list-item><prefix-list-item><name>62.40.109.25/32</name></prefix-list-item><prefix-list-item><name>62.40.109.26/32</name></prefix-list-item><prefix-list-item><name>62.40.110.0/27</name></prefix-list-item><prefix-list-item><name>62.40.110.32/27</name></prefix-list-item><prefix-list-item><name>62.40.110.64/27</name></prefix-list-item><prefix-list-item><name>62.40.110.96/27</name></prefix-list-item><prefix-list-item><name>62.40.110.128/27</name></prefix-list-item><prefix-list-item><name>62.40.111.0/24</name></prefix-list-item><prefix-list-item><name>62.40.111.253/32</name></prefix-list-item><prefix-list-item><name>62.40.112.0/24</name></prefix-list-item><prefix-list-item><name>62.40.113.29/32</name></prefix-list-item><prefix-list-item><name>62.40.113.56/29</name></prefix-list-item><prefix-list-item><name>62.40.113.58/32</name></prefix-list-item><prefix-list-item><name>62.40.113.59/32</name></prefix-list-item><prefix-list-item><name>62.40.113.60/32</name></prefix-list-item><prefix-list-item><name>62.40.113.88/29</name></prefix-list-item><prefix-list-item><name>62.40.113.104/29</name></prefix-list-item><prefix-list-item><name>62.40.113.115/32</name></prefix-list-item><prefix-list-item><name>62.40.113.128/25</name></prefix-list-item><prefix-list-item><name>62.40.113.157/32</name></prefix-list-item><prefix-list-item><name>62.40.113.166/32</name></prefix-list-item><prefix-list-item><name>62.40.113.167/32</name></prefix-list-item><prefix-list-item><name>62.40.113.168/32</name></prefix-list-item><prefix-list-item><name>62.40.113.182/32</name></prefix-list-item><prefix-list-item><name>62.40.114.0/28</name></prefix-list-item><prefix-list-item><name>62.40.114.2/32</name></prefix-list-item><prefix-list-item><name>62.40.114.3/32</name></prefix-list-item><prefix-list-item><name>62.40.114.16/28</name></prefix-list-item><prefix-list-item><name>62.40.114.18/32</name></prefix-list-item><prefix-list-item><name>62.40.114.19/32</name></prefix-list-item><prefix-list-item><name>62.40.114.33/32</name></prefix-list-item><prefix-list-item><name>62.40.114.35/32</name></prefix-list-item><prefix-list-item><name>62.40.114.37/32</name></prefix-list-item><prefix-list-item><name>62.40.114.39/32</name></prefix-list-item><prefix-list-item><name>62.40.114.41/32</name></prefix-list-item><prefix-list-item><name>62.40.114.43/32</name></prefix-list-item><prefix-list-item><name>62.40.114.45/32</name></prefix-list-item><prefix-list-item><name>62.40.114.47/32</name></prefix-list-item><prefix-list-item><name>62.40.114.49/32</name></prefix-list-item><prefix-list-item><name>62.40.114.51/32</name></prefix-list-item><prefix-list-item><name>62.40.114.53/32</name></prefix-list-item><prefix-list-item><name>62.40.114.55/32</name></prefix-list-item><prefix-list-item><name>62.40.114.57/32</name></prefix-list-item><prefix-list-item><name>62.40.114.59/32</name></prefix-list-item><prefix-list-item><name>62.40.114.61/32</name></prefix-list-item><prefix-list-item><name>62.40.114.63/32</name></prefix-list-item><prefix-list-item><name>62.40.114.65/32</name></prefix-list-item><prefix-list-item><name>62.40.114.67/32</name></prefix-list-item><prefix-list-item><name>62.40.114.69/32</name></prefix-list-item><prefix-list-item><name>62.40.114.71/32</name></prefix-list-item><prefix-list-item><name>62.40.114.73/32</name></prefix-list-item><prefix-list-item><name>62.40.114.75/32</name></prefix-list-item><prefix-list-item><name>62.40.114.77/32</name></prefix-list-item><prefix-list-item><name>62.40.114.79/32</name></prefix-list-item><prefix-list-item><name>62.40.114.81/32</name></prefix-list-item><prefix-list-item><name>62.40.114.83/32</name></prefix-list-item><prefix-list-item><name>62.40.114.85/32</name></prefix-list-item><prefix-list-item><name>62.40.114.87/32</name></prefix-list-item><prefix-list-item><name>62.40.114.97/32</name></prefix-list-item><prefix-list-item><name>62.40.114.99/32</name></prefix-list-item><prefix-list-item><name>62.40.114.101/32</name></prefix-list-item><prefix-list-item><name>62.40.114.103/32</name></prefix-list-item><prefix-list-item><name>62.40.114.107/32</name></prefix-list-item><prefix-list-item><name>62.40.114.108/32</name></prefix-list-item><prefix-list-item><name>62.40.114.114/32</name></prefix-list-item><prefix-list-item><name>62.40.114.130/32</name></prefix-list-item><prefix-list-item><name>62.40.114.138/32</name></prefix-list-item><comment>/* requested Massimiliano Adamo */</comment><prefix-list-item><name>62.40.114.146/32</name></prefix-list-item><prefix-list-item><name>62.40.114.162/32</name></prefix-list-item><prefix-list-item><name>62.40.114.163/32</name></prefix-list-item><prefix-list-item><name>62.40.114.164/32</name></prefix-list-item><prefix-list-item><name>62.40.114.170/32</name></prefix-list-item><prefix-list-item><name>62.40.114.176/29</name></prefix-list-item><prefix-list-item><name>62.40.114.184/29</name></prefix-list-item><prefix-list-item><name>62.40.114.192/28</name></prefix-list-item><prefix-list-item><name>62.40.114.208/28</name></prefix-list-item><prefix-list-item><name>62.40.114.224/29</name></prefix-list-item><prefix-list-item><name>62.40.114.232/29</name></prefix-list-item><prefix-list-item><name>62.40.114.240/29</name></prefix-list-item><prefix-list-item><name>62.40.114.250/32</name></prefix-list-item><prefix-list-item><name>62.40.115.46/32</name></prefix-list-item><prefix-list-item><name>62.40.115.107/32</name></prefix-list-item><prefix-list-item><name>62.40.115.111/32</name></prefix-list-item><prefix-list-item><name>62.40.115.156/32</name></prefix-list-item><prefix-list-item><name>62.40.116.2/32</name></prefix-list-item><prefix-list-item><name>62.40.116.18/32</name></prefix-list-item><prefix-list-item><name>62.40.116.73/32</name></prefix-list-item><prefix-list-item><name>62.40.116.74/32</name></prefix-list-item><prefix-list-item><name>62.40.116.114/32</name></prefix-list-item><prefix-list-item><name>62.40.116.122/32</name></prefix-list-item><prefix-list-item><name>62.40.116.202/32</name></prefix-list-item><prefix-list-item><name>62.40.117.2/32</name></prefix-list-item><prefix-list-item><name>62.40.117.82/32</name></prefix-list-item><prefix-list-item><name>62.40.117.126/32</name></prefix-list-item><prefix-list-item><name>62.40.117.153/32</name></prefix-list-item><prefix-list-item><name>62.40.120.0/22</name></prefix-list-item><prefix-list-item><name>62.40.120.26/32</name></prefix-list-item><prefix-list-item><name>62.40.120.48/29</name></prefix-list-item><comment>/* TT#2016083134000549 pS LS testing instance access on port 8090 */</comment><prefix-list-item><name>62.40.120.50/32</name></prefix-list-item><prefix-list-item><name>62.40.120.66/32</name></prefix-list-item><prefix-list-item><name>62.40.120.67/32</name></prefix-list-item><prefix-list-item><name>62.40.121.240/29</name></prefix-list-item><prefix-list-item><name>62.40.122.92/32</name></prefix-list-item><prefix-list-item><name>62.40.122.110/32</name></prefix-list-item><prefix-list-item><name>62.40.122.201/32</name></prefix-list-item><prefix-list-item><name>62.40.123.26/32</name></prefix-list-item><prefix-list-item><name>62.40.123.92/32</name></prefix-list-item><prefix-list-item><name>62.40.123.97/32</name></prefix-list-item><prefix-list-item><name>62.40.123.101/32</name></prefix-list-item><prefix-list-item><name>62.40.123.114/32</name></prefix-list-item><prefix-list-item><name>62.40.123.139/32</name></prefix-list-item><prefix-list-item><name>62.40.123.142/32</name></prefix-list-item><prefix-list-item><name>62.40.123.149/32</name></prefix-list-item><prefix-list-item><name>62.40.123.151/32</name></prefix-list-item><prefix-list-item><name>62.40.123.210/32</name></prefix-list-item><prefix-list-item><name>62.40.123.218/32</name></prefix-list-item><prefix-list-item><name>62.40.123.226/32</name></prefix-list-item><prefix-list-item><name>62.40.123.234/32</name></prefix-list-item><prefix-list-item><name>62.40.123.235/32</name></prefix-list-item><prefix-list-item><name>62.40.123.242/32</name></prefix-list-item><prefix-list-item><name>62.40.123.250/32</name></prefix-list-item><prefix-list-item><name>62.40.125.254/32</name></prefix-list-item><prefix-list-item><name>62.40.126.0/24</name></prefix-list-item><prefix-list-item><name>62.40.126.155/32</name></prefix-list-item><prefix-list-item><name>62.40.126.163/32</name></prefix-list-item><prefix-list-item><name>62.40.126.171/32</name></prefix-list-item><prefix-list-item><name>62.40.126.179/32</name></prefix-list-item><prefix-list-item><name>62.40.126.187/32</name></prefix-list-item><prefix-list-item><name>62.40.126.189/32</name></prefix-list-item><prefix-list-item><name>62.40.126.191/32</name></prefix-list-item><prefix-list-item><name>62.40.126.193/32</name></prefix-list-item><prefix-list-item><name>62.40.126.195/32</name></prefix-list-item><prefix-list-item><name>62.40.126.197/32</name></prefix-list-item><prefix-list-item><name>62.40.127.0/24</name></prefix-list-item><prefix-list-item><name>62.40.127.32/31</name></prefix-list-item><prefix-list-item><name>83.97.88.190/32</name></prefix-list-item><prefix-list-item><name>83.97.89.64/26</name></prefix-list-item><prefix-list-item><name>83.97.89.128/26</name></prefix-list-item><prefix-list-item><name>83.97.92.0/22</name></prefix-list-item><prefix-list-item><name>83.97.92.245/32</name></prefix-list-item><prefix-list-item><name>83.97.92.246/32</name></prefix-list-item><prefix-list-item><name>83.97.93.51/32</name></prefix-list-item><prefix-list-item><name>83.97.93.61/32</name></prefix-list-item></prefix-list><prefix-list><name>bogons-list</name><prefix-list-item><name>0.0.0.0/8</name></prefix-list-item><prefix-list-item><name>10.0.0.0/8</name></prefix-list-item><prefix-list-item><name>100.64.0.0/10</name></prefix-list-item><prefix-list-item><name>127.0.0.0/8</name></prefix-list-item><prefix-list-item><name>169.254.0.0/16</name></prefix-list-item><prefix-list-item><name>172.16.0.0/12</name></prefix-list-item><prefix-list-item><name>192.0.0.0/24</name></prefix-list-item><prefix-list-item><name>192.0.2.0/24</name></prefix-list-item><prefix-list-item><name>192.168.0.0/16</name></prefix-list-item><prefix-list-item><name>198.18.0.0/15</name></prefix-list-item><prefix-list-item><name>198.51.100.0/24</name></prefix-list-item><prefix-list-item><name>203.0.113.0/24</name></prefix-list-item><prefix-list-item><name>224.0.0.0/3</name></prefix-list-item></prefix-list><prefix-list><name>cnis-server</name><prefix-list-item><name>62.40.122.226/32</name></prefix-list-item><prefix-list-item><name>62.40.123.130/32</name></prefix-list-item></prefix-list><prefix-list><name>ncc-oob-address-space</name><prefix-list-item><name>172.16.5.252/30</name></prefix-list-item><prefix-list-item><name>172.16.14.0/24</name></prefix-list-item></prefix-list><prefix-list><name>space-local</name><prefix-list-item><name>127.0.0.1/32</name></prefix-list-item></prefix-list><prefix-list><name>geant-routers</name><prefix-list-item><name>62.40.96.0/23</name></prefix-list-item></prefix-list><prefix-list><name>geantncc-address-space</name><comment>/* NCC DR VPN */</comment><prefix-list-item><name>62.40.108.192/27</name></prefix-list-item><prefix-list-item><name>62.40.125.250/32</name></prefix-list-item></prefix-list><prefix-list><name>FCCN-address-space</name><prefix-list-item><name>193.136.7.0/25</name></prefix-list-item><prefix-list-item><name>193.136.88.240/28</name></prefix-list-item><prefix-list-item><name>193.136.216.0/24</name></prefix-list-item><prefix-list-item><name>193.137.199.130/32</name></prefix-list-item><prefix-list-item><name>193.137.219.0/24</name></prefix-list-item><prefix-list-item><name>194.117.35.110/32</name></prefix-list-item></prefix-list><prefix-list><name>allowed-pert</name><prefix-list-item><name>150.254.160.180/32</name></prefix-list-item><prefix-list-item><name>193.136.2.77/32</name></prefix-list-item></prefix-list><prefix-list><name>int-pert-servers</name><prefix-list-item><name>62.40.100.242/32</name></prefix-list-item></prefix-list><prefix-list><name>nren-access</name><prefix-list-item><name>62.40.96.11/32</name></prefix-list-item><prefix-list-item><name>62.40.110.2/32</name></prefix-list-item><prefix-list-item><name>62.40.124.22/32</name></prefix-list-item><prefix-list-item><name>62.40.124.89/32</name></prefix-list-item><prefix-list-item><name>62.40.124.141/32</name></prefix-list-item><prefix-list-item><name>80.94.160.0/26</name></prefix-list-item><prefix-list-item><name>81.180.250.128/26</name></prefix-list-item><prefix-list-item><name>82.116.200.194/32</name></prefix-list-item><prefix-list-item><name>83.212.9.70/32</name></prefix-list-item><prefix-list-item><name>85.254.248.15/32</name></prefix-list-item><prefix-list-item><name>85.254.248.34/32</name></prefix-list-item><prefix-list-item><name>109.105.113.42/32</name></prefix-list-item><prefix-list-item><name>109.105.113.85/32</name></prefix-list-item><prefix-list-item><name>128.139.197.70/32</name></prefix-list-item><prefix-list-item><name>128.139.202.17/32</name></prefix-list-item><prefix-list-item><name>128.139.229.249/32</name></prefix-list-item><prefix-list-item><name>130.59.0.0/16</name></prefix-list-item><prefix-list-item><name>130.59.211.0/24</name></prefix-list-item><prefix-list-item><name>130.206.6.0/27</name></prefix-list-item><prefix-list-item><name>141.85.128.0/26</name></prefix-list-item><prefix-list-item><name>150.254.160.38/32</name></prefix-list-item><prefix-list-item><name>158.64.1.128/25</name></prefix-list-item><prefix-list-item><name>158.64.15.0/24</name></prefix-list-item><prefix-list-item><name>192.65.185.0/24</name></prefix-list-item><prefix-list-item><name>193.1.192.160/27</name></prefix-list-item><prefix-list-item><name>193.1.219.0/24</name></prefix-list-item><prefix-list-item><name>193.1.228.0/24</name></prefix-list-item><prefix-list-item><name>193.1.231.128/25</name></prefix-list-item><prefix-list-item><name>193.1.247.0/25</name></prefix-list-item><prefix-list-item><name>193.1.248.0/25</name></prefix-list-item><prefix-list-item><name>193.1.249.0/25</name></prefix-list-item><prefix-list-item><name>193.1.250.0/25</name></prefix-list-item><prefix-list-item><name>193.2.18.160/27</name></prefix-list-item><prefix-list-item><name>193.136.7.96/27</name></prefix-list-item><prefix-list-item><name>193.136.44.0/24</name></prefix-list-item><prefix-list-item><name>193.136.46.0/24</name></prefix-list-item><prefix-list-item><name>193.174.247.0/24</name></prefix-list-item><prefix-list-item><name>193.188.32.211/32</name></prefix-list-item><prefix-list-item><name>193.206.158.0/24</name></prefix-list-item><prefix-list-item><name>193.231.140.0/29</name></prefix-list-item><prefix-list-item><name>194.42.9.200/32</name></prefix-list-item><prefix-list-item><name>194.42.9.252/32</name></prefix-list-item><prefix-list-item><name>194.141.0.0/24</name></prefix-list-item><prefix-list-item><name>194.141.251.0/24</name></prefix-list-item><prefix-list-item><name>194.160.23.0/27</name></prefix-list-item><prefix-list-item><name>194.177.210.213/32</name></prefix-list-item><prefix-list-item><name>194.177.211.163/32</name></prefix-list-item><prefix-list-item><name>194.177.211.179/32</name></prefix-list-item><prefix-list-item><name>195.98.238.194/32</name></prefix-list-item><prefix-list-item><name>195.113.228.0/24</name></prefix-list-item><prefix-list-item><name>195.178.64.0/28</name></prefix-list-item><prefix-list-item><name>195.251.27.7/32</name></prefix-list-item><prefix-list-item><name>2001:660:3001:4019::194/128</name></prefix-list-item><prefix-list-item><name>2001:770:18::/48</name></prefix-list-item><prefix-list-item><name>2001:770:1c::/48</name></prefix-list-item><prefix-list-item><name>2001:770:f0:10::/64</name></prefix-list-item><prefix-list-item><name>2001:770:400::/48</name></prefix-list-item><prefix-list-item><name>2001:798:19:10aa::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:19:20ff::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:1e:10aa::5/128</name></prefix-list-item><prefix-list-item><name>2001:948:4:2::42/128</name></prefix-list-item><prefix-list-item><name>2001:948:4:3::85/128</name></prefix-list-item><prefix-list-item><name>2001:b30:1::/64</name></prefix-list-item><prefix-list-item><name>2001:b30:1:140::/64</name></prefix-list-item><prefix-list-item><name>fe80::21d:b500:64d6:127a/128</name></prefix-list-item><prefix-list-item><name>fe80::21d:b5ff:fe69:893d/128</name></prefix-list-item></prefix-list><prefix-list><name>restena-access-v6</name><prefix-list-item><name>2001:a18:1:4::/64</name></prefix-list-item><prefix-list-item><name>2001:a18:1:8::/64</name></prefix-list-item><prefix-list-item><name>2001:a18:1:40::/60</name></prefix-list-item><prefix-list-item><name>2001:a18:1:1000::/52</name></prefix-list-item><prefix-list-item><name>2004:a18:1:4::/64</name></prefix-list-item><prefix-list-item><name>2004:a18:1:8::/64</name></prefix-list-item><prefix-list-item><name>2004:a18:1:40::/60</name></prefix-list-item><prefix-list-item><name>2004:a18:1:1000::/52</name></prefix-list-item></prefix-list><prefix-list><name>restena-access</name><prefix-list-item><name>158.64.1.128/25</name></prefix-list-item><prefix-list-item><name>158.64.15.0/24</name></prefix-list-item></prefix-list><prefix-list><name>nmteam-dev-servers</name><prefix-list-item><name>62.40.106.202/32</name></prefix-list-item><prefix-list-item><name>62.40.111.253/32</name></prefix-list-item><prefix-list-item><name>62.40.111.254/32</name></prefix-list-item><prefix-list-item><name>83.97.94.182/32</name></prefix-list-item></prefix-list><prefix-list><name>route-from-</name></prefix-list><prefix-list><name>route-f</name></prefix-list><prefix-list><name>r</name></prefix-list><prefix-list><name>vuln-scanner</name><prefix-list-item><name>83.97.93.49/32</name></prefix-list-item><prefix-list-item><name>2001:798:3::145/128</name></prefix-list-item></prefix-list><prefix-list><name>renater-access</name><prefix-list-item><name>195.98.238.194/32</name></prefix-list-item><prefix-list-item><name>2001:660:3001:4019::194/128</name></prefix-list-item></prefix-list><prefix-list><name>geant-anycast</name><prefix-list-item><name>192.33.14.0/24</name></prefix-list-item><prefix-list-item><name>192.58.128.0/24</name></prefix-list-item><prefix-list-item><name>194.0.1.0/24</name></prefix-list-item><prefix-list-item><name>194.0.2.0/24</name></prefix-list-item></prefix-list><prefix-list><name>geant-anycast-v6</name><prefix-list-item><name>2001:678:4::/48</name></prefix-list-item><prefix-list-item><name>2001:678:5::/48</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-destination</name><prefix-list-item><name>0.0.0.0/32</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-destination6</name><prefix-list-item><name>::/128</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-destination-count</name><prefix-list-item><name>0.0.0.0/32</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-destination-count6</name><prefix-list-item><name>::/128</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-source</name><prefix-list-item><name>0.0.0.0/32</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-source6</name><prefix-list-item><name>::/128</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-source-count</name><prefix-list-item><name>0.0.0.0/32</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-source-count6</name><prefix-list-item><name>::/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-Infrastructure</name><prefix-list-item><name>62.40.97.11/32</name></prefix-list-item><prefix-list-item><name>62.40.97.12/32</name></prefix-list-item><prefix-list-item><name>62.40.97.14/32</name></prefix-list-item><prefix-list-item><name>62.40.97.15/32</name></prefix-list-item><prefix-list-item><name>62.40.99.218/32</name></prefix-list-item><prefix-list-item><name>62.40.100.178/32</name></prefix-list-item><prefix-list-item><name>62.40.104.48/29</name></prefix-list-item><prefix-list-item><name>62.40.104.134/31</name></prefix-list-item><prefix-list-item><name>62.40.104.152/29</name></prefix-list-item><prefix-list-item><name>62.40.104.250/32</name></prefix-list-item><prefix-list-item><name>62.40.106.9/32</name></prefix-list-item><prefix-list-item><name>62.40.106.16/28</name></prefix-list-item><prefix-list-item><name>62.40.106.48/29</name></prefix-list-item><prefix-list-item><name>62.40.106.210/32</name></prefix-list-item><prefix-list-item><name>62.40.106.211/32</name></prefix-list-item><prefix-list-item><name>62.40.106.212/32</name></prefix-list-item><prefix-list-item><name>62.40.106.228/32</name></prefix-list-item><prefix-list-item><name>62.40.106.253/32</name></prefix-list-item><prefix-list-item><name>62.40.107.35/32</name></prefix-list-item><prefix-list-item><name>62.40.107.166/32</name></prefix-list-item><prefix-list-item><name>62.40.107.182/32</name></prefix-list-item><prefix-list-item><name>62.40.107.186/32</name></prefix-list-item><prefix-list-item><name>62.40.107.198/32</name></prefix-list-item><prefix-list-item><name>62.40.107.202/32</name></prefix-list-item><prefix-list-item><name>62.40.107.210/32</name></prefix-list-item><prefix-list-item><name>62.40.107.218/32</name></prefix-list-item><prefix-list-item><name>62.40.107.226/32</name></prefix-list-item><prefix-list-item><name>62.40.107.238/32</name></prefix-list-item><prefix-list-item><name>62.40.107.242/32</name></prefix-list-item><prefix-list-item><name>62.40.108.10/32</name></prefix-list-item><prefix-list-item><name>62.40.108.14/32</name></prefix-list-item><prefix-list-item><name>62.40.108.22/32</name></prefix-list-item><prefix-list-item><name>62.40.108.34/32</name></prefix-list-item><prefix-list-item><name>62.40.108.38/32</name></prefix-list-item><prefix-list-item><name>62.40.108.46/32</name></prefix-list-item><prefix-list-item><name>62.40.108.58/32</name></prefix-list-item><prefix-list-item><name>62.40.108.77/32</name></prefix-list-item><prefix-list-item><name>62.40.108.128/27</name></prefix-list-item><prefix-list-item><name>62.40.108.129/32</name></prefix-list-item><prefix-list-item><name>62.40.108.130/32</name></prefix-list-item><prefix-list-item><name>62.40.108.131/32</name></prefix-list-item><prefix-list-item><name>62.40.108.132/32</name></prefix-list-item><prefix-list-item><name>62.40.108.133/32</name></prefix-list-item><prefix-list-item><name>62.40.108.134/32</name></prefix-list-item><prefix-list-item><name>62.40.108.135/32</name></prefix-list-item><prefix-list-item><name>62.40.108.136/32</name></prefix-list-item><prefix-list-item><name>62.40.108.137/32</name></prefix-list-item><prefix-list-item><name>62.40.108.138/32</name></prefix-list-item><prefix-list-item><name>62.40.108.139/32</name></prefix-list-item><prefix-list-item><name>62.40.108.140/32</name></prefix-list-item><prefix-list-item><name>62.40.108.141/32</name></prefix-list-item><prefix-list-item><name>62.40.108.142/32</name></prefix-list-item><prefix-list-item><name>62.40.108.143/32</name></prefix-list-item><prefix-list-item><name>62.40.108.144/32</name></prefix-list-item><prefix-list-item><name>62.40.108.145/32</name></prefix-list-item><prefix-list-item><name>62.40.108.146/32</name></prefix-list-item><prefix-list-item><name>62.40.108.147/32</name></prefix-list-item><prefix-list-item><name>62.40.113.29/32</name></prefix-list-item><prefix-list-item><name>62.40.114.53/32</name></prefix-list-item><prefix-list-item><name>62.40.114.130/32</name></prefix-list-item><prefix-list-item><name>62.40.114.138/32</name></prefix-list-item><prefix-list-item><name>62.40.114.146/32</name></prefix-list-item><prefix-list-item><name>62.40.115.50/32</name></prefix-list-item><prefix-list-item><name>62.40.116.76/32</name></prefix-list-item><prefix-list-item><name>62.40.116.114/32</name></prefix-list-item><prefix-list-item><name>62.40.116.122/32</name></prefix-list-item><prefix-list-item><name>62.40.116.202/32</name></prefix-list-item><prefix-list-item><name>62.40.118.214/32</name></prefix-list-item><prefix-list-item><name>62.40.118.218/32</name></prefix-list-item><prefix-list-item><name>62.40.118.222/32</name></prefix-list-item><prefix-list-item><name>62.40.120.32/29</name></prefix-list-item><prefix-list-item><name>62.40.120.40/29</name></prefix-list-item><prefix-list-item><name>62.40.121.150/32</name></prefix-list-item><prefix-list-item><name>62.40.121.154/32</name></prefix-list-item><prefix-list-item><name>62.40.121.155/32</name></prefix-list-item><prefix-list-item><name>62.40.121.156/32</name></prefix-list-item><prefix-list-item><name>62.40.121.157/32</name></prefix-list-item><prefix-list-item><name>62.40.121.158/32</name></prefix-list-item><prefix-list-item><name>62.40.121.163/32</name></prefix-list-item><prefix-list-item><name>62.40.121.165/32</name></prefix-list-item><prefix-list-item><name>62.40.121.179/32</name></prefix-list-item><prefix-list-item><name>62.40.121.181/32</name></prefix-list-item><prefix-list-item><name>62.40.121.184/32</name></prefix-list-item><prefix-list-item><name>62.40.121.195/32</name></prefix-list-item><prefix-list-item><name>62.40.121.211/32</name></prefix-list-item><prefix-list-item><name>62.40.121.227/32</name></prefix-list-item><prefix-list-item><name>62.40.122.146/32</name></prefix-list-item><prefix-list-item><name>62.40.122.147/32</name></prefix-list-item><prefix-list-item><name>62.40.122.186/32</name></prefix-list-item><prefix-list-item><name>62.40.123.21/32</name></prefix-list-item><prefix-list-item><name>62.40.123.23/32</name></prefix-list-item><prefix-list-item><name>62.40.123.103/32</name></prefix-list-item><prefix-list-item><name>62.40.123.146/32</name></prefix-list-item><prefix-list-item><name>62.40.123.150/32</name></prefix-list-item><prefix-list-item><name>62.40.123.180/32</name></prefix-list-item><prefix-list-item><name>83.97.92.41/32</name></prefix-list-item><prefix-list-item><name>83.97.92.63/32</name></prefix-list-item><prefix-list-item><name>83.97.92.87/32</name></prefix-list-item><prefix-list-item><name>83.97.93.49/32</name></prefix-list-item><prefix-list-item><name>83.97.93.85/32</name></prefix-list-item><prefix-list-item><name>83.97.93.138/32</name></prefix-list-item><prefix-list-item><name>193.63.90.187/32</name></prefix-list-item><prefix-list-item><name>193.63.211.5/32</name></prefix-list-item><prefix-list-item><name>193.63.211.16/32</name></prefix-list-item><prefix-list-item><name>193.63.211.25/32</name></prefix-list-item><prefix-list-item><name>193.63.211.68/32</name></prefix-list-item><prefix-list-item><name>193.63.211.80/32</name></prefix-list-item><prefix-list-item><name>193.63.211.101/32</name></prefix-list-item><prefix-list-item><name>193.63.211.104/32</name></prefix-list-item><prefix-list-item><name>193.63.211.107/32</name></prefix-list-item><prefix-list-item><name>193.63.211.119/32</name></prefix-list-item><prefix-list-item><name>195.169.24.0/28</name></prefix-list-item><prefix-list-item><name>195.169.24.16/30</name></prefix-list-item><prefix-list-item><name>195.169.24.20/31</name></prefix-list-item><prefix-list-item><name>195.169.24.56/29</name></prefix-list-item><prefix-list-item><name>195.169.24.66/32</name></prefix-list-item><prefix-list-item><name>195.169.24.81/32</name></prefix-list-item><prefix-list-item><name>2001:798:3::145/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DNS</name><prefix-list-item><name>62.40.104.250/32</name></prefix-list-item><prefix-list-item><name>62.40.106.9/32</name></prefix-list-item><prefix-list-item><name>62.40.113.29/32</name></prefix-list-item><prefix-list-item><name>62.40.116.114/32</name></prefix-list-item><prefix-list-item><name>62.40.116.122/32</name></prefix-list-item><prefix-list-item><name>62.40.122.146/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DNS-V6</name><prefix-list-item><name>2001:798:2:284d::30/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:4d::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:10::2/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DC</name><prefix-list-item><name>62.40.120.134/32</name></prefix-list-item><prefix-list-item><name>62.40.120.136/32</name></prefix-list-item><prefix-list-item><name>62.40.121.121/32</name></prefix-list-item><prefix-list-item><name>83.97.93.15/32</name></prefix-list-item><prefix-list-item><name>83.97.94.116/32</name></prefix-list-item><prefix-list-item><name>83.97.94.129/32</name></prefix-list-item><prefix-list-item><name>83.97.94.130/32</name></prefix-list-item><prefix-list-item><name>195.169.24.66/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DC-v6</name><prefix-list-item><name>2001:610:9d8:5::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::123/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::24a/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::257/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::258/128</name></prefix-list-item><prefix-list-item><name>2001:798:3:0:9dde:e417:7eb0:c47a/128</name></prefix-list-item><prefix-list-item><name>2001:798:3:0:ac78:a1b4:c117:cade/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-JUNOSSPACE</name><prefix-list-item><name>62.40.113.90/32</name></prefix-list-item><prefix-list-item><name>62.40.120.18/32</name></prefix-list-item></prefix-list><prefix-list><name>geant-ias-address-space</name><prefix-list-item><name>83.97.88.0/21</name></prefix-list-item></prefix-list><prefix-list><name>geant-ias-address-space-V6</name><prefix-list-item><name>2001:798:1::/48</name></prefix-list-item></prefix-list><prefix-list><name>RE_BGP_inet</name><apply-path>protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>RE_BGP_inet6</name><apply-path>protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>IAS_BGP_inet</name><apply-path>routing-instances IAS protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>IAS_BGP_inet6</name><apply-path>routing-instances IAS protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>CLS_BGP_inet</name><apply-path>routing-instances CLS protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>CLS_BGP_inet6</name><apply-path>routing-instances CLS protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>IAS_DUMMY_BGP_inet</name><apply-path>routing-instances IAS_DUMMY protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>IAS_DUMMY_BGP_inet6</name><apply-path>routing-instances IAS_DUMMY protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>lhcone-l3vpn_BGP_inet</name><apply-path>routing-instances lhcone-l3vpn protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>lhcone-l3vpn_BGP_inet6</name><apply-path>routing-instances lhcone-l3vpn protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>taas-control_BGP_inet</name><apply-path>routing-instances taas-control protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>taas-control_BGP_inet6</name><apply-path>routing-instances taas-control protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>mgmt-l3vpn_BGP_inet</name><apply-path>routing-instances mgmt-l3vpn protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>mgmt-l3vpn_BGP_inet6</name><apply-path>routing-instances mgmt-l3vpn protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>mdvpn_BGP_inet</name><apply-path>routing-instances mdvpn protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>mdvpn_BGP_inet6</name><apply-path>routing-instances mdvpn protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>mdvpn-nren-gn_BGP_inet</name><apply-path>routing-instances mdvpn-nren-gn protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>mdvpn-nren-gn_BGP_inet6</name><apply-path>routing-instances mdvpn-nren-gn protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>confine-l3vpn_BGP_inet</name><apply-path>routing-instances confine-l3vpn protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>confine-l3vpn_BGP_inet6</name><apply-path>routing-instances confine-l3vpn protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>VPN-PROXY_BGP_inet</name><apply-path>logical-systems VPN-PROXY protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>VPN-PROXY_BGP_inet6</name><apply-path>logical-systems VPN-PROXY protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>VRR_BGP_inet</name><apply-path>logical-systems VRR protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>VRR_BGP_inet6</name><apply-path>logical-systems VRR protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>geant-cameras</name><prefix-list-item><name>62.40.115.250/32</name></prefix-list-item><prefix-list-item><name>62.40.116.64/29</name></prefix-list-item><prefix-list-item><name>62.40.116.128/28</name></prefix-list-item><prefix-list-item><name>62.40.116.144/29</name></prefix-list-item><prefix-list-item><name>62.40.116.152/29</name></prefix-list-item><prefix-list-item><name>62.40.116.160/29</name></prefix-list-item><prefix-list-item><name>62.40.116.168/29</name></prefix-list-item><prefix-list-item><name>62.40.117.32/29</name></prefix-list-item><prefix-list-item><name>62.40.118.16/28</name></prefix-list-item></prefix-list><prefix-list><name>xantaro-address-space</name><prefix-list-item><name>213.86.104.34/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DNS-EXT</name><prefix-list-item><name>62.40.104.250/32</name></prefix-list-item><prefix-list-item><name>62.40.116.114/32</name></prefix-list-item><prefix-list-item><name>62.40.116.122/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-MSDP</name><apply-path>protocols msdp group <*> peer <*></apply-path></prefix-list><prefix-list><name>GEANT-SNMP</name><apply-path>snmp community <*> clients <*></apply-path></prefix-list><prefix-list><name>GEANT-LDP</name><apply-path>protocols l2circuit neighbor <*></apply-path></prefix-list><prefix-list><name>ddos-scrubbing</name><prefix-list-item><name>62.40.100.178/32</name></prefix-list-item><prefix-list-item><name>83.97.92.41/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-lg</name><prefix-list-item><name>83.97.92.82/32</name></prefix-list-item><prefix-list-item><name>83.97.92.141/32</name></prefix-list-item><prefix-list-item><name>83.97.93.39/32</name></prefix-list-item><prefix-list-item><name>83.97.93.62/32</name></prefix-list-item><prefix-list-item><name>83.97.93.63/32</name></prefix-list-item><prefix-list-item><name>83.97.94.134/32</name></prefix-list-item><prefix-list-item><name>83.97.94.135/32</name></prefix-list-item><prefix-list-item><name>83.97.94.136/32</name></prefix-list-item><prefix-list-item><name>83.97.94.137/32</name></prefix-list-item><prefix-list-item><name>83.97.94.138/32</name></prefix-list-item><prefix-list-item><name>83.97.94.139/32</name></prefix-list-item><prefix-list-item><name>2001:798:3::25c/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::25d/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::25e/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::25f/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::260/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::261/128</name></prefix-list-item></prefix-list><prefix-list><name>dashboard-servers</name><prefix-list-item><name>62.40.104.48/29</name></prefix-list-item><prefix-list-item><name>62.40.104.152/29</name></prefix-list-item><prefix-list-item><name>62.40.114.0/28</name></prefix-list-item><prefix-list-item><name>62.40.114.16/28</name></prefix-list-item></prefix-list><prefix-list><name>dashboard-servers-v6</name><prefix-list-item><name>2001:798:f99c:18::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f99c:22::/64</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-Superpop-v4</name><prefix-list-item><name>83.97.92.0/22</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-Superpop-v6</name><prefix-list-item><name>2001:798:3::/64</name></prefix-list-item></prefix-list><prefix-list><name>geant-address-space-v6</name><prefix-list-item><name>2001:798::/32</name></prefix-list-item></prefix-list><prefix-list><name>opennsa-servers</name><prefix-list-item><name>83.97.93.92/32</name></prefix-list-item></prefix-list><prefix-list><name>opennsa-servers-v6</name><prefix-list-item><name>2001:798:3::15f/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-rancid</name><comment>/* TEST */</comment><prefix-list-item><name>83.97.92.115/32</name></prefix-list-item><comment>/* UAT */</comment><prefix-list-item><name>83.97.92.142/32</name></prefix-list-item><comment>/* PROD */</comment><prefix-list-item><name>83.97.92.246/32</name></prefix-list-item></prefix-list><prefix-list><name>corporate-address-space6</name><prefix-list-item><name>2001:610:9d8::/62</name></prefix-list-item><prefix-list-item><name>2001:610:9d8:4::/62</name></prefix-list-item><prefix-list-item><name>2001:610:9d8:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:4::/48</name></prefix-list-item><prefix-list-item><name>2001:799:cb2::/56</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:100::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:101::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:102::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:103::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:104::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:108::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:110::/64</name></prefix-list-item></prefix-list><prefix-list><name>corporate-address-space</name><prefix-list-item><name>62.40.99.129/32</name></prefix-list-item><prefix-list-item><name>62.40.99.148/32</name></prefix-list-item><prefix-list-item><name>62.40.99.160/27</name></prefix-list-item><prefix-list-item><name>62.40.99.194/32</name></prefix-list-item><prefix-list-item><name>62.40.99.201/32</name></prefix-list-item><prefix-list-item><name>62.40.101.0/24</name></prefix-list-item><prefix-list-item><name>62.40.111.0/24</name></prefix-list-item><prefix-list-item><name>62.40.112.0/24</name></prefix-list-item><prefix-list-item><name>62.40.122.248/29</name></prefix-list-item><prefix-list-item><name>195.169.24.0/24</name></prefix-list-item></prefix-list><prefix-list><name>geant-ims</name><prefix-list-item><name>83.97.94.123/32</name></prefix-list-item><prefix-list-item><name>83.97.94.124/32</name></prefix-list-item><prefix-list-item><name>83.97.94.125/32</name></prefix-list-item><prefix-list-item><name>83.97.95.109/32</name></prefix-list-item></prefix-list><prefix-list><name>NE-Saltmaster-v4</name><prefix-list-item><name>83.97.93.58/32</name></prefix-list-item><prefix-list-item><name>83.97.94.150/32</name></prefix-list-item><prefix-list-item><name>83.97.94.151/32</name></prefix-list-item></prefix-list><prefix-list><name>NE-Saltmaster-v6</name><prefix-list-item><name>2001:798:3::14e/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::26b/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::26c/128</name></prefix-list-item></prefix-list><prefix-list><name>TWAMP_CLIENTS</name><apply-path>services rpm twamp server client-list <*> address <*.*></apply-path></prefix-list><prefix-list><name>GEANT-Infrastructure-v6</name><prefix-list-item><name>2001:798:bb:4d::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:10::2/128</name></prefix-list-item></prefix-list><prefix-list><name>MDVPN-SI-TOOLS-V4</name><prefix-list-item><name>83.97.93.234/32</name></prefix-list-item><prefix-list-item><name>83.97.95.48/32</name></prefix-list-item></prefix-list><prefix-list><name>MDVPN-SI-TOOLS-V6</name><prefix-list-item><name>2001:798:3::1cb/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:3::2cb/128</name></prefix-list-item></prefix-list><prefix-list><name>FXP_SUBNET</name><apply-path>interfaces fxp0 unit 0 family inet address <*.*></apply-path></prefix-list><policy-statement><name>ASM-Allow</name><term><name>Bogon-Groups</name><from><route-filter><address>224.0.1.2/32</address><exact/></route-filter><route-filter><address>224.0.1.1/32</address><exact/></route-filter><route-filter><address>224.0.1.3/32</address><exact/></route-filter><route-filter><address>224.0.1.8/32</address><exact/></route-filter><route-filter><address>224.0.1.22/32</address><exact/></route-filter><route-filter><address>224.0.1.24/32</address><exact/></route-filter><route-filter><address>224.0.1.25/32</address><exact/></route-filter><route-filter><address>224.0.1.35/32</address><exact/></route-filter><route-filter><address>224.0.1.39/32</address><exact/></route-filter><route-filter><address>224.0.1.40/32</address><exact/></route-filter><route-filter><address>224.0.1.60/32</address><exact/></route-filter><route-filter><address>224.0.1.76/32</address><exact/></route-filter><route-filter><address>224.0.2.1/32</address><exact/></route-filter><route-filter><address>224.0.2.2/32</address><exact/></route-filter><route-filter><address>224.1.0.1/32</address><exact/></route-filter><route-filter><address>224.1.0.38/32</address><exact/></route-filter><route-filter><address>224.77.0.0/16</address><orlonger/></route-filter><route-filter><address>224.128.0.0/24</address><orlonger/></route-filter><route-filter><address>232.0.0.0/8</address><orlonger/></route-filter><route-filter><address>233.0.0.0/24</address><orlonger/></route-filter><route-filter><address>233.128.0.0/24</address><orlonger/></route-filter><route-filter><address>239.0.0.0/8</address><orlonger/></route-filter><route-filter><address>224.0.0.0/24</address><orlonger/></route-filter></from><then><trace/><reject/></then></term><term><name>ASM-Whitelist</name><from><route-filter><address>224.0.0.0/4</address><orlonger/></route-filter></from><then><accept/></then></term><term><name>Deny-Everything-Else</name><then><reject/></then></term></policy-statement><policy-statement><name>Bogon-Sources</name><term><name>RFC-1918-Addresses</name><from><source-address-filter><address>10.0.0.0/8</address><orlonger/></source-address-filter><source-address-filter><address>127.0.0.0/8</address><orlonger/></source-address-filter><source-address-filter><address>172.16.0.0/12</address><orlonger/></source-address-filter><source-address-filter><address>192.168.0.0/16</address><orlonger/></source-address-filter></from><then><reject/></then></term><term><name>accept-everything-else</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>PS_TO_DEEPFIELD</name><term><name>BOGONS_REJECT</name><from><prefix-list><name>bogons-list</name></prefix-list></from><then><reject/></then></term><term><name>REDISTRIBUTE_CONNECTED</name><from><protocol>direct</protocol></from><then><community><add/><community-name>IGP_ROUTES_DEEPFIELD</community-name></community><accept/></then></term><term><name>BGP_ACCEPT</name><from><protocol>bgp</protocol></from><then><accept/></then></term><term><name>DEFAULT</name><then><reject/></then></term></policy-statement><policy-statement><name>accept-all-flowspec</name><then><accept/></then></policy-statement><policy-statement><name>dest-class-usage</name><term><name>DWS</name><from><community>geant-dws</community></from><then><destination-class>dws-in</destination-class></then></term><term><name>google-in</name><from><community>geant-google</community></from><then><destination-class>google-in</destination-class></then></term><term><name>ixpeers-in</name><from><community>geant-ixpeers</community></from><then><destination-class>ixpeers-in</destination-class></then></term></policy-statement><policy-statement><name>mdvpn-export</name><term><name>1</name><from><protocol>bgp</protocol><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><community><add/><community-name>mdvpn-comm</community-name></community><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><policy-statement><name>mdvpn-import</name><term><name>1</name><from><protocol>bgp</protocol><community>mdvpn-comm</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><policy-statement><name>nhs-ibgp</name><term><name>next-hop-self</name><then><next-hop><self/></next-hop></then></term></policy-statement><policy-statement><name>no-bsr</name><then><reject/></then></policy-statement><policy-statement><name>pim-export</name><from><interface>ae10.0</interface></from><then><reject/></then></policy-statement><policy-statement><name>pim-import</name><from><interface>ae10.0</interface></from><then><reject/></then></policy-statement><policy-statement><name>ps-AS-SELF-REJECT</name><term><name>1</name><from><as-path>AS-SELF</as-path></from><then><reject/></then></term></policy-statement><policy-statement><name>ps-BOGONS</name><term><name>bogons</name><from><route-filter><address>0.0.0.0/0</address><exact/></route-filter><route-filter><address>0.0.0.0/8</address><orlonger/></route-filter><route-filter><address>10.0.0.0/8</address><orlonger/></route-filter><route-filter><address>127.0.0.0/8</address><orlonger/></route-filter><route-filter><address>169.254.0.0/16</address><orlonger/></route-filter><route-filter><address>172.16.0.0/12</address><orlonger/></route-filter><route-filter><address>192.0.0.0/24</address><orlonger/></route-filter><route-filter><address>192.0.2.0/24</address><orlonger/></route-filter><route-filter><address>192.168.0.0/16</address><orlonger/></route-filter><route-filter><address>198.18.0.0/15</address><orlonger/></route-filter><route-filter><address>198.51.100.0/24</address><orlonger/></route-filter><route-filter><address>203.0.113.0/24</address><orlonger/></route-filter><route-filter><address>224.0.0.0/3</address><orlonger/></route-filter><route-filter><address>100.64.0.0/10</address><orlonger/></route-filter></from><then><reject/></then></term><term><name>as-path-length-limit</name><from><protocol>bgp</protocol><as-path>MAX-AS_PATH</as-path></from><then><reject/></then></term><term><name>community-limit</name><from><protocol>bgp</protocol><community-count><name>50</name><orhigher/></community-count><community-count><name>100</name><orhigher/></community-count></from><then><reject/></then></term><term><name>REJECT_IX_PREFIXES</name><from><route-filter><address>80.249.208.0/21</address><orlonger/></route-filter><route-filter><address>193.203.0.0/24</address><orlonger/></route-filter><route-filter><address>195.66.224.0/22</address><orlonger/></route-filter><route-filter><address>217.29.66.0/23</address><orlonger/></route-filter><route-filter><address>192.65.185.0/24</address><orlonger/></route-filter><route-filter><address>91.210.16.0/24</address><orlonger/></route-filter><route-filter><address>185.1.47.0/24</address><orlonger/></route-filter><route-filter><address>80.81.192.0/21</address><orlonger/></route-filter><route-filter><address>185.1.68.0/24</address><orlonger/></route-filter><route-filter><address>193.188.137.0/24</address><orlonger/></route-filter></from><then><reject/></then></term></policy-statement><policy-statement><name>ps-BOGONS-V6</name><term><name>martians</name><from><family>inet6</family><route-filter><address>::/0</address><exact/></route-filter><route-filter><address>::/96</address><exact/></route-filter><route-filter><address>::1/128</address><exact/></route-filter><route-filter><address>fec0::/10</address><orlonger/></route-filter><route-filter><address>fe80::/10</address><orlonger/></route-filter><route-filter><address>ff00::/8</address><orlonger/></route-filter><route-filter><address>3ffe::/16</address><orlonger/></route-filter><route-filter><address>2001:0db8::/32</address><orlonger/></route-filter><route-filter><address>fc00::/7</address><orlonger/></route-filter></from><then><reject/></then></term><term><name>as-path-length-limit</name><from><family>inet6</family><protocol>bgp</protocol><as-path>MAX-AS_PATH</as-path></from><then><reject/></then></term><term><name>community-limit</name><from><family>inet6</family><protocol>bgp</protocol><community-count><name>50</name><orhigher/></community-count><community-count><name>100</name><orhigher/></community-count></from><then><reject/></then></term><term><name>REJECT_IX_PREFIXES</name><from><route-filter><address>2001:7f8:30::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:1::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:4::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:b:100::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:1c:24a::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:14::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:36::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:a0::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:35::/64</address><orlonger/></route-filter></from><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-FCCN2-V6-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-FCCN-v6</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>100::</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community><prefix-list><name>geant-anycast-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-nren-lis</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-FCCN-V6-nren</name><from><prefix-list><name>route-from-FCCN-v6</name></prefix-list></from><then><local-preference><local-preference>125</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-nren-lis</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-FCCN-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-FCCN2-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-FCCN</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>192.0.2.101</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community><prefix-list><name>geant-anycast</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-nren-lis</community-name></community><accept/></then></term><term><name>from-FCCN-nren</name><from><prefix-list><name>route-from-FCCN</name></prefix-list></from><then><local-preference><local-preference>125</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-nren-lis</community-name></community><accept/></then></term><term><name>from-FCCN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-FCCN2-V6-nren</name><term><name>exception-block</name><from><community>geant-dummy</community></from></term><term><name>to-nren-block</name><from><community>geant-fccn-block</community></from><then><reject/></then></term><term><name>to-FCCN-V6-nren-general</name><from><family>inet6</family><community>geant-google</community><community>geant-ixpeers</community><community>geant-peers</community><community>geant-dws</community><community>IAS_AGGREGATE_ROUTES</community></from><then><metric><metric>20</metric></metric><accept/></then></term><term><name>to-FCCN-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-FCCN2-nren</name><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-nren-block</name><from><community>geant-fccn-block</community></from><then><reject/></then></term><term><name>to-FCCN-nren-general</name><from><community>geant-google</community><community>geant-ixpeers</community><community>geant-peers</community><community>geant-dws</community><community>geant-helix</community><community>IAS_AGGREGATE_ROUTES</community></from><then><metric><metric>20</metric></metric><accept/></then></term><term><name>to-FCCN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-PRIVATE-AS-BLOCK</name><from><as-path>AS-PRIVATE</as-path></from><then><reject/></then></policy-statement><policy-statement><name>ps-RPKI-CLS-NREN</name><term><name>RTBH-bypass</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>RTBH-bypass-V6</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-CLS-PEER</name><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-IAS-NREN</name><term><name>RTBH-bypass</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>RTBH-bypass-V6</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-IAS-PEER</name><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-RE-NREN</name><term><name>RTBH-bypass</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>RTBH-bypass-V6</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-RE-PEER</name><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-iBGP</name><term><name>unknown</name><from><community>origin-validation-state-unknown</community></from><then><validation-state>unknown</validation-state></then></term><term><name>valid</name><from><community>origin-validation-state-valid</community></from><then><validation-state>valid</validation-state></then></term><term><name>invalid</name><from><community>origin-validation-state-invalid</community></from><then><validation-state>invalid</validation-state></then></term></policy-statement><policy-statement><name>ps-deny-all</name><term><name>deny-all</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-direct-route-label</name><term><name>1</name><from><protocol>direct</protocol></from><then><label-allocation>per-table</label-allocation><accept/></then></term><term><name>2</name><then><label-allocation>per-nexthop</label-allocation><accept/></then></term></policy-statement><policy-statement><name>ps-eGEANT-V6-static</name><from><prefix-list><name>geant-address-space-V6</name></prefix-list></from><then><community><add/><community-name>geant-nrn</community-name></community><accept/></then></policy-statement><policy-statement><name>ps-eGEANT-V6-static-MED20</name><from><prefix-list><name>geant-address-space-V6</name></prefix-list></from><then><metric><metric>20</metric></metric><community><add/><community-name>geant-nrn</community-name></community><accept/></then></policy-statement><policy-statement><name>ps-eGEANT-static</name><term><name>static</name><from><prefix-list><name>geant-address-space</name></prefix-list></from><then><community><add/><community-name>geant-nrn</community-name></community><accept/></then></term></policy-statement><policy-statement><name>ps-eGEANT-static-MED20</name><term><name>static</name><from><prefix-list><name>geant-address-space</name></prefix-list></from><then><metric><metric>20</metric></metric><community><add/><community-name>geant-nrn</community-name></community><accept/></then></term></policy-statement><policy-statement><name>ps-from-CLS-vrf</name><term><name>CLS-routes</name><from><protocol>bgp</protocol></from><then><community><add/><community-name>CLS-vpn</community-name></community><accept/></then></term><term><name>CLS-interface-routes</name><from><protocol>direct</protocol></from><then><community><add/><community-name>CLS-vpn</community-name></community><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-FCCN2-V6-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-FCCN-v6</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>100::</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community><prefix-list><name>geant-anycast-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><accept/></then></term><term><name>from-FCCN-V6-nren</name><from><prefix-list><name>route-from-FCCN-v6</name></prefix-list></from><then><local-preference><local-preference>125</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><accept/></then></term><term><name>from-FCCN-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-FCCN2-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-FCCN</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>192.0.2.101</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community><prefix-list><name>geant-anycast</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><accept/></then></term><term><name>from-FCCN-nren</name><from><prefix-list><name>route-from-FCCN</name></prefix-list></from><then><local-preference><local-preference>125</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><accept/></then></term><term><name>from-FCCN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-coriant-vrf</name><term><name>mgmt-routes</name><from><protocol>direct</protocol><protocol>static</protocol></from><then><community><add/><community-name>coriant-mgmt</community-name></community><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-ias-vrf</name><term><name>ias-routes</name><from><protocol>bgp</protocol></from><then><community><add/><community-name>ias-routes</community-name></community><accept/></then></term><term><name>ias-interface-routes</name><from><protocol>direct</protocol></from><then><community><add/><community-name>ias-routes</community-name></community><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-lhcone-nren</name><then><community><add/><community-name>geant-nrn</community-name></community><accept/></then></policy-statement><policy-statement><name>ps-from-lhcone-peer</name><then><community><add/><community-name>geant-peer-RE</community-name></community><accept/></then></policy-statement><policy-statement><name>ps-from-lhcone-vrf</name><term><name>lhcone-routes</name><from><protocol>bgp</protocol></from><then><community><add/><community-name>lhcone-vpn</community-name></community><accept/></then></term><term><name>lhcone-geant-ptp</name><from><route-filter><address>62.40.126.0/24</address><orlonger/></route-filter></from><then><community><add/><community-name>lhcone-vpn</community-name></community><accept/></then></term><term><name>lhcone-geant-ptp6</name><from><route-filter><address>2001:798:111:1::/64</address><orlonger/></route-filter></from><then><community><add/><community-name>lhcone-vpn</community-name></community><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-into-CLS-vrf</name><term><name>CLS-routes</name><from><protocol>bgp</protocol><community>CLS-vpn</community></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-into-ias-vrf</name><term><name>ias-routes</name><from><protocol>bgp</protocol><community>ias-routes</community></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-into-lhcone-vrf</name><term><name>lhcone-routes</name><from><protocol>bgp</protocol><community>lhcone-vpn</community></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-FCCN2-V6-nren</name><term><name>exception-block</name><from><community>geant-dummy</community></from></term><term><name>to-nren-block</name><from><community>geant-fccn-block</community></from><then><reject/></then></term><term><name>to-FCCN-V6-nren-general</name><from><family>inet6</family><community>geant-nrn</community><community>geant-google</community><community>geant-ixpeers</community><community>geant-peers</community><community>geant-dws</community><community>geant-peer-RE</community><community>geant-m6bone</community></from><then><metric><metric>20</metric></metric><accept/></then></term><term><name>to-FCCN-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-FCCN2-nren</name><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-nren-block</name><from><community>geant-fccn-block</community></from><then><reject/></then></term><term><name>to-FCCN-nren-general</name><from><community>geant-nrn</community><community>geant-google</community><community>geant-ixpeers</community><community>geant-peers</community><community>geant-dws</community><community>geant-peer-RE</community><community>geant-helix</community></from><then><metric><metric>20</metric></metric><accept/></then></term><term><name>to-FCCN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-coriant-vrf</name><term><name>mgmt-routes</name><from><protocol>bgp</protocol><community>coriant-mgmt</community></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-lhcone-nren</name><term><name>ptp-routes</name><from><route-filter><address>62.40.126.0/24</address><exact/></route-filter></from><then><accept/></then></term><term><name>ptp-routes-specific-deny</name><from><route-filter><address>62.40.103.0/25</address><orlonger/></route-filter><route-filter><address>62.40.126.0/24</address><orlonger/></route-filter></from><then><reject/></then></term><then><accept/></then></policy-statement><policy-statement><name>ps-to-lhcone-nren-v6</name><term><name>ptp-routes</name><from><route-filter><address>2001:798:111:1::/64</address><exact/></route-filter></from><then><accept/></then></term><term><name>ptp-routes-specific-deny</name><from><route-filter><address>2001:798:111:1::/64</address><orlonger/></route-filter></from><then><reject/></then></term><then><accept/></then></policy-statement><policy-statement><name>ps-to-lhcone-peer</name><term><name>ptp-routes</name><from><route-filter><address>62.40.126.0/24</address><exact/></route-filter></from><then><metric><igp> - </igp></metric><accept/></then></term><term><name>ptp-routes-specific-deny</name><from><route-filter><address>62.40.103.0/25</address><orlonger/></route-filter><route-filter><address>62.40.126.0/24</address><orlonger/></route-filter></from><then><reject/></then></term><term><name>allow-nren-routes</name><from><community>geant-nrn</community></from><then><metric><igp> - </igp></metric><accept/></then></term><then><default-action>reject</default-action></then></policy-statement><policy-statement><name>ps-to-lhcone-peer-v6</name><term><name>ptp-routes</name><from><route-filter><address>2001:798:111:1::/64</address><exact/></route-filter></from><then><metric><igp> - </igp></metric><accept/></then></term><term><name>ptp-routes-specific-deny</name><from><route-filter><address>2001:798:111:1::/64</address><orlonger/></route-filter></from><then><reject/></then></term><term><name>allow-nren-routes</name><from><community>geant-nrn</community></from><then><metric><igp> - </igp></metric><accept/></then></term><then><default-action>reject</default-action></then></policy-statement><policy-statement><name>reject-bsr-inet-only</name><term><name>reject-BSR-inet</name><from><family>inet</family></from><then><reject/></then></term><term><name>accept-BSR-inet6</name><from><family>inet6</family></from><then><accept/></then></term></policy-statement><policy-statement><name>rtbh-ibgp</name><term><name>1</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><next-hop><address>192.0.2.101</address></next-hop><accept/></then></term><term><name>2</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter></from><then><next-hop><address>0100::</address></next-hop><accept/></then></term></policy-statement><policy-statement><name>rtbh-policy</name><term><name>11</name><from><community>geant-RTBH</community></from><then><accept/></then></term><term><name>22</name><then><reject/></then></term></policy-statement><policy-statement><name>source-class-usage</name><term><name>DWS</name><from><community>geant-dws</community></from><then><source-class>dws-out</source-class></then></term><term><name>google-out</name><from><community>geant-google</community></from><then><source-class>google-out</source-class></then></term><term><name>ixpeers-out</name><from><community>geant-ixpeers</community></from><then><source-class>ixpeers-out</source-class></then></term></policy-statement><community><name>AS20965_ROUTES</name><members>21320:20965</members></community><community><name>CLS-vpn</name><members>target:20965:667</members></community><community><name>CLS_AGGREGATE_ROUTES</name><members>20965:64912</members></community><community><name>IAS_AGGREGATE_ROUTES</name><members>21320:64912</members></community><community><name>IGP_ROUTES_DEEPFIELD</name><members>20965:65002</members></community><community><name>INFO_PUBLIC_PEER</name><members>21320:646..</members></community><community><name>L2-VPN-JSCC-UCM-1</name><members>2:622</members></community><community><name>L2-VPN-PSNC-I2CAT-1</name><members>2:622</members></community><community><name>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</name><members>64712:65532</members></community><community><name>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</name><members>20965:65532</members></community><community><name>TE_BLOCK_ALL_PUBLIC_PEERS</name><members>64512:65532</members></community><community><name>TE_BLOCK_PEERS_2</name><members>64512:65533</members></community><community><name>TE_PRIVATE_COMMUNITIES</name><members>^(6451[2-9]|645[2-9][0-9]|64[6-9][0-9][0-9]|65[0-4][0-9][0-9]|655[0-2][0-9]|6553[0-5]).*$</members></community><community><name>coriant-mgmt</name><members>target:20965:991</members></community><community><name>geant-IAS-dws-block</name><members>64512:65534</members></community><community><name>geant-IAS-dws-nren</name><members>64700:65534</members></community><community><name>geant-NORDUNET-IXs-block</name><members>20965:0014</members></community><community><name>geant-NORDUnet-IXs-prepend-1</name><members>20965:0114</members></community><community><name>geant-NORDUnet-IXs-prepend-3</name><members>20965:0314</members></community><community><name>geant-RTBH</name><members>20965:0008</members></community><community><name>geant-TWAREN</name><members>20965:7539</members></community><community><name>geant-adv2-private-peer</name><members>20965:65533</members></community><community><name>geant-adv2-public-peer</name><members>20965:65532</members></community><community><name>geant-anycast</name><members>20965:0002</members></community><community><name>geant-dummy</name><members>20965:65000</members></community><community><name>geant-dws</name><members>20965:7777</members></community><community><name>geant-dws-nren</name><members>20965:65534</members></community><community><name>geant-dws-prepend6</name><members>20965:7060</members></community><community><name>geant-eenet-block</name><members>64512:3221</members></community><community><name>geant-ernet</name><members>20965:2697</members></community><community><name>geant-esnet</name><members>20965:293</members></community><community><name>geant-esnet-block</name><members>20965:6000</members></community><community><name>geant-fccn-block</name><members>64512:1930</members></community><community><name>geant-garr-block</name><members>64512:137</members></community><community><name>geant-google</name><members>20965:15169</members></community><community><name>geant-grnet-block</name><members>64512:5408</members></community><community><name>geant-heanet-block</name><members>64512:1213</members></community><community><name>geant-helix</name><members>20965:65293</members></community><community><name>geant-hungarnet-block</name><members>64512:1955</members></community><community><name>geant-interco-block</name><members>20965:0000</members></community><community><name>geant-interco-prepend3</name><members>20965:0030</members></community><community><name>geant-interco-prepend6</name><members>20965:0060</members></community><community><name>geant-istf-block</name><members>64512:6802</members></community><community><name>geant-iucc-block</name><members>64512:378</members></community><community><name>geant-ixpeers</name><members>20965:0003</members></community><community><name>geant-janet-block</name><members>64512:786</members></community><community><name>geant-kaust</name><members>20965:50999</members></community><community><name>geant-kaust-block</name><members>20965:12000</members></community><community><name>geant-kaust-prepend1</name><members>20965:12010</members></community><community><name>geant-kaust-prepend2</name><members>20965:12020</members></community><community><name>geant-kaust-prepend3</name><members>20965:12030</members></community><community><name>geant-kaust-prepend6</name><members>20965:12060</members></community><community><name>geant-litnet-block</name><members>64512:2847</members></community><community><name>geant-low-pref</name><members>20965:0001</members></community><community><name>geant-m6bone</name><members>20965:1717</members></community><community><name>geant-marnet-block</name><members>64512:5379</members></community><community><name>geant-mren-block</name><members>64512:40981</members></community><community><name>geant-nisn</name><members>20965:297</members></community><community><name>geant-nisn-block</name><members>20965:8500</members></community><community><name>geant-nordunet</name><members>20965:2603</members></community><community><name>geant-nordunet-block</name><members>64512:2603</members></community><community><name>geant-nordunet-peer</name><members>20965:64520</members></community><community><name>geant-nren-lis</name><members>21320:64926</members></community><community><name>geant-nrn</name><members>20965:0155</members></community><community><name>geant-peer-RE</name><members>20965:65530</members></community><community><name>geant-peers</name><members>20965:0004</members></community><community><name>geant-peers-block</name><members>20965:0013</members></community><community><name>geant-pionier-block</name><members>64512:8501</members></community><community><name>geant-private-peers-block</name><members>20965:0011</members></community><community><name>geant-private-peers-prepend</name><members>20965:65531</members></community><community><name>geant-private-peers-prepend-1</name><members>20965:1111</members></community><community><name>geant-public-peers-block</name><members>20965:0012</members></community><community><name>geant-rediris-block</name><members>64512:766</members></community><community><name>geant-renater-block</name><members>64512:2200</members></community><community><name>geant-restena-block</name><members>64512:2602</members></community><community><name>geant-roedunet-block</name><members>64512:2614</members></community><community><name>geant-sanet-block</name><members>64512:2607</members></community><community><name>geant-sigmanet-block</name><members>64512:5538</members></community><community><name>geant-silk</name><members>20965:55434</members></community><community><name>geant-silk-block</name><members>20965:11000</members></community><community><name>geant-silk-prepend1</name><members>20965:11010</members></community><community><name>geant-silk-prepend2</name><members>20965:11020</members></community><community><name>geant-silk-prepend3</name><members>20965:11030</members></community><community><name>geant-silk-prepend6</name><members>20965:11060</members></community><community><name>geant-sinet</name><members>20965:6683</members></community><community><name>geant-sinet-block</name><members>20965:2000</members></community><community><name>geant-sinet-prepend1</name><members>20965:2010</members></community><community><name>geant-sinet-prepend2</name><members>20965:2020</members></community><community><name>geant-surfnet-block</name><members>64512:1103</members></community><community><name>geant-switch-block</name><members>64512:559</members></community><community><name>geant-tein2</name><members>20965:24490</members></community><community><name>geant-tein2-block</name><members>20965:9000</members></community><community><name>geant-tein2-prepend1</name><members>20965:9010</members></community><community><name>geant-tein2-prepend2</name><members>20965:9020</members></community><community><name>geant-tein2-prepend3</name><members>20965:9030</members></community><community><name>geant-tein2-prepend6</name><members>20965:9060</members></community><community><name>geant-tifr</name><members>20965:64512</members></community><community><name>geant-tifr-block</name><members>20965:13000</members></community><community><name>geant-tifr-prepend1</name><members>20965:13010</members></community><community><name>geant-tifr-prepend2</name><members>20965:13020</members></community><community><name>geant-tifr-prepend3</name><members>20965:13030</members></community><community><name>geant-tifr-prepend6</name><members>20965:13060</members></community><community><name>geant-ubuntunet</name><members>20965:36944</members></community><community><name>geant-ulakbim-block</name><members>64512:8517</members></community><community><name>geant-uom-block</name><members>64512:12046</members></community><community><name>geant-uran-block</name><members>64512:12687</members></community><community><name>ias-routes</name><members>target:20965:333</members></community><community><name>ixpeers-block</name><members>20965:0006</members></community><community><name>ixpeers-prepend</name><members>20965:0005</members></community><community><name>ixpeers-prepend-3</name><members>20965:0312</members></community><community><name>lhcone-vpn</name><members>target:20965:111</members></community><community><name>mdvpn-comm</name><members>target:20965:65100</members></community><community><name>nisn-prepend1</name><members>20965:8510</members></community><community><name>nisn-prepend2</name><members>20965:8520</members></community><community><name>nisn-prepend3</name><members>20965:8530</members></community><community><name>nisn-prepend6</name><members>20965:8560</members></community><community><name>no-export</name><members>no-export</members></community><community><name>origin-validation-state-invalid</name><members>0x4300:0.0.0.0:2</members></community><community><name>origin-validation-state-unknown</name><members>0x4300:0.0.0.0:1</members></community><community><name>origin-validation-state-valid</name><members>0x4300:0.0.0.0:0</members></community><community><name>peers-prepend-3</name><members>20965:0313</members></community><community><name>tein2-cernet</name><members>^4538:(4538|65155)$</members></community><as-path><name>AS-ARNES</name><path>20965* 2107 .*</path></as-path><as-path><name>AS-CARNET</name><path>20965* 2108 .*</path></as-path><as-path><name>AS-EENET</name><path>20965* 3221 .*</path></as-path><as-path><name>AS-GRNET</name><path>20965* 5408 .*</path></as-path><as-path><name>AS-HUNGARNET</name><path>20965* 1955 .*</path></as-path><as-path><name>AS-LATNET</name><path>20965* 5538 .*</path></as-path><as-path><name>AS-IUCC</name><path>20965* 378 .*</path></as-path><as-path><name>AS-PLNET</name><path>20965* 8501 .*</path></as-path><as-path><name>AS-RESTENA</name><path>20965* 2602 .*</path></as-path><as-path><name>AS-ROEDUNET</name><path>20965* 2614 .*</path></as-path><as-path><name>AS-CYNET</name><path>20965* 3268 .*</path></as-path><as-path><name>AS-URAN</name><path>20965* 12687 .*</path></as-path><as-path><name>AS-REDIRIS</name><path>20965* 766 .*</path></as-path><as-path><name>AS-PALNET</name><path>20965* 35385 .*</path></as-path><as-path><name>AS-GRENA</name><path>20965* 20545 .*</path></as-path><as-path><name>AS-NASRA</name><path>20965* 47623 .*</path></as-path><as-path><name>AS-AzRENA</name><path>20965* 29630 .*</path></as-path><as-path><name>AS-PRIVATE</name><path>.* (0|64512-65535|4200000000-4294967295) .*</path></as-path><as-path><name>MAX-AS_PATH</name><path>.{41,}</path></as-path><as-path><name>AS-SELF</name><path>.*(20965|21320).*</path></as-path></policy-options><class-of-service><classifiers><dscp><name>GEANT-BASIC</name><import>default</import><forwarding-class><name>best-effort</name><loss-priority><name>low</name><code-points>af11</code-points><code-points>af12</code-points><code-points>af13</code-points></loss-priority></forwarding-class></dscp><dscp-ipv6><name>GEANT-BASIC</name><import>default</import><forwarding-class><name>best-effort</name><loss-priority><name>low</name><code-points>af11</code-points><code-points>af12</code-points><code-points>af13</code-points></loss-priority></forwarding-class></dscp-ipv6><exp><name>GEANT-BASIC</name><import>default</import><forwarding-class><name>best-effort</name><loss-priority><name>low</name><code-points>100</code-points><code-points>101</code-points></loss-priority></forwarding-class><forwarding-class><name>gold</name><loss-priority><name>high</name><code-points>011</code-points></loss-priority></forwarding-class></exp></classifiers><drop-profiles><name>BEST-EFFORT</name><interpolate><fill-level>75</fill-level><fill-level>80</fill-level><fill-level>85</fill-level><fill-level>90</fill-level><fill-level>95</fill-level><fill-level>100</fill-level><drop-probability>0</drop-probability><drop-probability>25</drop-probability><drop-probability>75</drop-probability><drop-probability>90</drop-probability><drop-probability>95</drop-probability><drop-probability>100</drop-probability></interpolate></drop-profiles><forwarding-classes><class><name>gold</name><queue-num>4</queue-num><priority>high</priority></class></forwarding-classes><interfaces><interface><name>et-*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>ge-*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>gr-*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>lt-*</name><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6></classifiers></unit></interface><interface><name>so-*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>xe-*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>ae*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>irb</name><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface></interfaces><rewrite-rules><exp><name>GEANT-BASIC</name><import>default</import><forwarding-class><name>expedited-forwarding</name><loss-priority><name>low</name><code-point>010</code-point></loss-priority><loss-priority><name>high</name><code-point>010</code-point></loss-priority></forwarding-class></exp></rewrite-rules><scheduler-maps><name>GEANT-BASIC</name><forwarding-class><name>expedited-forwarding</name><scheduler>EXPEDITED-FORWARDING</scheduler></forwarding-class><forwarding-class><name>network-control</name><scheduler>NETWORK-CONTROL</scheduler></forwarding-class><forwarding-class><name>best-effort</name><scheduler>BEST-EFFORT</scheduler></forwarding-class><forwarding-class><name>assured-forwarding</name><scheduler>BEST-EFFORT</scheduler></forwarding-class><forwarding-class><name>gold</name><scheduler>GOLD</scheduler></forwarding-class></scheduler-maps><schedulers><name>EXPEDITED-FORWARDING</name><transmit-rate><percent>15</percent></transmit-rate><buffer-size><temporal>15k</temporal></buffer-size><priority>high</priority></schedulers><schedulers><name>BEST-EFFORT</name><transmit-rate><remainder> - </remainder></transmit-rate><buffer-size><remainder> - </remainder></buffer-size><priority>low</priority><drop-profile-map><loss-priority>any</loss-priority><protocol>any</protocol><drop-profile>BEST-EFFORT</drop-profile></drop-profile-map></schedulers><schedulers><name>NETWORK-CONTROL</name><transmit-rate><percent>5</percent></transmit-rate><buffer-size><percent>5</percent></buffer-size><priority>high</priority></schedulers><schedulers><name>GOLD</name><transmit-rate><percent>40</percent></transmit-rate><buffer-size><temporal>5k</temporal></buffer-size><priority>strict-high</priority></schedulers></class-of-service><firewall><family><inet><filter><name>router-access-out</name><term><name>geant-network-control-traffic</name><from><dscp>48</dscp><dscp>56</dscp></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><accept/></then></term><term><name>accept</name><then><accept/></then></term></filter><filter><name>urpf-filter-FCCN</name><apply-groups>urpf-template</apply-groups></filter><filter><name>FCCN-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>BOGON-filter</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>bogons-source</count><discard> - </discard></then></term><term><name>dos-source-counting</name><from><source-prefix-list><name>dos-attack-source-count</name></source-prefix-list></from><then><count>dos-attack-traffic-count</count><next>term</next></then></term><term><name>dos-destination-counting</name><from><destination-prefix-list><name>dos-attack-destination-count</name></destination-prefix-list></from><then><count>dos-attack-traffic-count</count><next>term</next></then></term><term><name>dos-source-filtering</name><from><source-prefix-list><name>dos-attack-source</name></source-prefix-list></from><then><count>dos-attack-traffic</count><discard> - </discard></then></term><term><name>dos-destination-filtering</name><from><destination-prefix-list><name>dos-attack-destination</name></destination-prefix-list></from><then><count>dos-attack-traffic</count><discard> - </discard></then></term><term><name>transit-network-control-traffic</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><dscp>48</dscp><dscp>56</dscp></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><next>term</next></then></term><term><name>BGP-protect</name><from><source-address inactive="inactive"><name>62.40.124.190/32</name></source-address><source-address><name>62.40.124.186/32</name></source-address><source-address><name>193.136.5.32/32</name></source-address><source-address><name>193.136.0.1/32</name></source-address><source-address><name>193.136.0.2/32</name></source-address><destination-address inactive="inactive"><name>62.40.124.189/32</name></destination-address><destination-address><name>62.40.124.185/32</name></destination-address><destination-address><name>62.40.96.23/32</name></destination-address><destination-address><name>62.40.96.24/32</name></destination-address><protocol>tcp</protocol><port>bgp</port></from><then><count>bgp-accept</count><accept/></then></term><term><name>BGP-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>bgp</port></from><then><count>bgp-attack</count><syslog/><discard> - </discard></then></term><term><name>MSDP-protect</name><from><source-address inactive="inactive"><name>62.40.124.190/32</name></source-address><source-address><name>62.40.124.186/32</name></source-address><destination-address inactive="inactive"><name>62.40.124.189/32</name></destination-address><destination-address><name>62.40.124.185/32</name></destination-address><protocol>tcp</protocol><port>msdp</port></from><then><count>msdp-accept</count><accept/></then></term><term><name>MSDP-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>msdp</port></from><then><count>msdp-attack</count><syslog/><discard> - </discard></then></term><term><name>PIM-protect</name><from><source-address><name>62.40.124.186/32</name></source-address><source-address inactive="inactive"><name>62.40.124.190/32</name></source-address><destination-address><name>62.40.124.185/32</name></destination-address><destination-address inactive="inactive"><name>62.40.124.189/32</name></destination-address><protocol>pim</protocol><protocol>igmp</protocol></from><then><accept/></then></term><term><name>PIM-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>pim</protocol><protocol>igmp</protocol></from><then><count>pim-attack</count><syslog/><discard> - </discard></then></term><term><name>TUNNEL-accept</name><from><prefix-list><name>geant-address-space</name></prefix-list><protocol>gre</protocol><protocol>ipip</protocol></from><then><accept/></then></term><term><name>SPOOF-filter</name><from><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>geantncc-address-space</name></source-prefix-list></from><then><count>spoofed-attack-traffic</count><discard> - </discard></then></term><term><name>WEB-server-accept</name><from><destination-address><name>62.40.98.20/32</name></destination-address><destination-address><name>62.40.98.84/32</name></destination-address><destination-address><name>62.40.98.116/32</name></destination-address><protocol>tcp</protocol><port>http</port></from><then><accept/></then></term><term><name>NTP-server-accept</name><from><source-address><name>193.136.5.14/32</name></source-address><protocol>udp</protocol><port>123</port></from><then><accept/></then></term><term><name>SNMP-allow</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>FCCN-address-space</name></destination-prefix-list><protocol>udp</protocol><port>161</port></from><then><accept/></then></term><term><name>PERT-allow</name><from><source-prefix-list><name>allowed-pert</name></source-prefix-list><destination-prefix-list><name>int-pert-servers</name></destination-prefix-list></from><then><accept/></then></term><term><name>MAIL-server-accept</name><from><destination-address><name>62.40.99.130/32</name></destination-address><protocol>tcp</protocol><port>smtp</port></from><then><accept/></then></term><term><name>NREN-router-accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>BEACON-accept</name><from><destination-address><name>62.40.98.212/32</name></destination-address><source-prefix-list><name>geant-external-beacon</name></source-prefix-list><protocol>udp</protocol><destination-port>19997</destination-port></from><then><accept/></then></term><term><name>ICMP-accept</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>External-project-interfaces</name><from><destination-prefix-list><name>external-project-interfaces</name></destination-prefix-list></from><then><discard> - </discard></then></term><term><name>External-Projects</name><from><destination-prefix-list><name>external-project</name></destination-prefix-list></from><then><accept/></then></term><term><name>UDP-traceroute</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>udp</protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>NOC-accept</name><from><destination-prefix-list><name>geantncc-address-space</name></destination-prefix-list></from><then><accept/></then></term><term><name>CORE-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list></from><then><count>core-attack</count><discard> - </discard></then></term><term><name>DWS-in</name><from><dscp>32</dscp></from><then><count>dws-in</count><accept/></then></term><term><name>LBE-in</name><from><dscp>8</dscp></from><then><count>lbe-in</count><accept/></then></term><term><name>mcast-in</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-in</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>FCCN-out</name><interface-specific/><term><name>DWS-out</name><from><dscp>32</dscp></from><then><count>DWS-out</count><next>term</next></then></term><term><name>LBE-out</name><from><dscp>8</dscp></from><then><count>LBE-out</count><accept/></then></term><term><name>mcast-out</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-out</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>LHCONE-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>RTBH-count</name><term><name>count</name><then><count>RTBH-count</count></then></term></filter><filter><name>nren_IAS_FCCN_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>FCCN_blocking_service</name><from><destination-prefix-list><name>FCCN-blocking-list</name></destination-prefix-list></from><then><count>FCCN-blocking-service</count><discard> - </discard></then></term><term><name>BOGON_filter</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>bogons-source</count><discard> - </discard></then></term><term><name>DOS_source_filtering</name><from><source-prefix-list><name>dos-attack-source</name></source-prefix-list></from><then><count>dos-attack-traffic-src</count><discard> - </discard></then></term><term><name>DOS_destination_filtering</name><from><destination-prefix-list><name>dos-attack-destination</name></destination-prefix-list></from><then><count>dos-attack-traffic-dst</count><discard> - </discard></then></term><term><name>Transit_network_control_traffic</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><dscp>48</dscp><dscp>56</dscp></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><next>term</next></then></term><term><name>BGP_protect</name><from><source-address><name>83.97.88.62/32</name></source-address><destination-address><name>83.97.88.61/32</name></destination-address><protocol>tcp</protocol><port>bgp</port></from><then><accept/></then></term><term><name>BGP_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>bgp</port></from><then><syslog/><discard> - </discard></then></term><term><name>MSDP_protect</name><from><source-address><name>83.97.88.62/32</name></source-address><destination-address><name>83.97.88.61/32</name></destination-address><protocol>tcp</protocol><port>msdp</port></from><then><accept/></then></term><term><name>MSDP_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>msdp</port></from><then><syslog/><discard> - </discard></then></term><term><name>PIM_protect</name><from><source-address><name>83.97.88.62/32</name></source-address><destination-address><name>83.97.88.61/32</name></destination-address><protocol>pim</protocol><protocol>igmp</protocol></from><then><accept/></then></term><term><name>PIM_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>pim</protocol><protocol>igmp</protocol></from><then><syslog/><discard> - </discard></then></term><term><name>SPOOF_filter</name><from><source-address><name>83.97.88.62/32</name><except/></source-address><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>geant-address-space</name></source-prefix-list><source-prefix-list><name>geant-ias-address-space</name></source-prefix-list></from><then><count>spoofed-attack-traffic</count><discard> - </discard></then></term><term><name>DNS_server_accept</name><from><destination-prefix-list><name>GEANT-DNS</name></destination-prefix-list><protocol>udp</protocol><protocol>tcp</protocol><port>domain</port></from><then><accept/></then></term><term><name>NREN_router_accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>External_project_interfaces</name><from><destination-prefix-list><name>external-project-interfaces</name></destination-prefix-list></from><then><discard> - </discard></then></term><term><name>External_Projects</name><from><destination-prefix-list><name>external-project</name></destination-prefix-list></from><then><accept/></then></term><term><name>RSVP_allow</name><from><protocol>rsvp</protocol></from><then><accept/></then></term><term><name>ICMP_accept</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>UDP_traceroute</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>udp</protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>CORE_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list></from><then><count>core-attack</count><discard> - </discard></then></term><term><name>MCAST_in</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-in</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_IAS_FCCN_OUT</name><interface-specific/><term><name>DWS_out</name><from><dscp>32</dscp></from><then><policer>pol-FCCN-DWS-out</policer><count>DWS-out</count><accept/></then></term><term><name>DWS_same_out</name><from><interface-group>1</interface-group></from><then><count>DWS-out</count><accept/></then></term><term><name>MCAST_out</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-out</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>ROUTER_access</name><term><name>TCP_established_accept</name><from><protocol>tcp</protocol><tcp-established/></from><then><accept/></then></term><term><name>SSH_accept</name><from><source-prefix-list><name>geant-address-space-short</name></source-prefix-list><source-prefix-list><name>geantncc-address-space</name></source-prefix-list><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>pref-list-router-access</name></source-prefix-list><source-prefix-list><name>cnis-server</name></source-prefix-list><source-prefix-list><name>ncc-oob-address-space</name></source-prefix-list><source-prefix-list><name>space-local</name></source-prefix-list><source-prefix-list><name>nren-access</name></source-prefix-list><source-prefix-list><name>restena-access</name></source-prefix-list><source-prefix-list><name>nmteam-dev-servers</name></source-prefix-list><source-prefix-list><name>vuln-scanner</name></source-prefix-list><source-prefix-list><name>renater-access</name></source-prefix-list><source-prefix-list><name>GEANT-JUNOSSPACE</name></source-prefix-list><source-prefix-list><name>xantaro-address-space</name></source-prefix-list><source-prefix-list><name>GEANT-lg</name></source-prefix-list><source-prefix-list><name>dashboard-servers</name></source-prefix-list><source-prefix-list><name>opennsa-servers</name></source-prefix-list><source-prefix-list><name>GEANT-rancid</name></source-prefix-list><source-prefix-list><name>geant-ims</name></source-prefix-list><source-prefix-list><name>MDVPN-SI-TOOLS-V4</name></source-prefix-list><source-prefix-list><name>FXP_SUBNET</name></source-prefix-list><protocol>tcp</protocol><destination-port>ssh</destination-port></from><then><accept/></then></term><term><name>NE-Saltmaster</name><from><source-prefix-list><name>NE-Saltmaster-v4</name></source-prefix-list><protocol>tcp</protocol><destination-port>ssh</destination-port><destination-port>830</destination-port></from><then><accept/></then></term><term><name>BGP_accept</name><from><source-prefix-list><name>RE_BGP_inet</name></source-prefix-list><source-prefix-list><name>IAS_DUMMY_BGP_inet</name></source-prefix-list><source-prefix-list><name>IAS_BGP_inet</name></source-prefix-list><source-prefix-list><name>CLS_BGP_inet</name></source-prefix-list><source-prefix-list><name>lhcone-l3vpn_BGP_inet</name></source-prefix-list><source-prefix-list><name>taas-control_BGP_inet</name></source-prefix-list><source-prefix-list><name>mgmt-l3vpn_BGP_inet</name></source-prefix-list><source-prefix-list><name>mdvpn_BGP_inet</name></source-prefix-list><source-prefix-list><name>mdvpn-nren-gn_BGP_inet</name></source-prefix-list><source-prefix-list><name>confine-l3vpn_BGP_inet</name></source-prefix-list><source-prefix-list><name>VPN-PROXY_BGP_inet</name></source-prefix-list><source-prefix-list><name>VRR_BGP_inet</name></source-prefix-list><protocol>tcp</protocol><port>bgp</port></from><then><accept/></then></term><term><name>FTP_accept</name><from><source-prefix-list><name>geant-address-space-short</name></source-prefix-list><source-prefix-list><name>geantncc-address-space</name></source-prefix-list><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>ncc-oob-address-space</name></source-prefix-list><source-prefix-list><name>xantaro-address-space</name></source-prefix-list><protocol>tcp</protocol><destination-port>ftp</destination-port><destination-port>ftp-data</destination-port></from><then><accept/></then></term><term><name>RADIUS_accept</name><from><source-prefix-list><name>GEANT-DC</name></source-prefix-list><source-prefix-list><name>GEANT-Infrastructure</name></source-prefix-list><protocol>udp</protocol><port>1812</port><port>1813</port></from><then><accept/></then></term><term><name>NTP_accept</name><from><source-prefix-list><name>geant-routers</name></source-prefix-list><source-prefix-list><name>GEANT-DC</name></source-prefix-list><source-prefix-list><name>GEANT-Infrastructure</name></source-prefix-list><source-prefix-list><name>geant-cameras</name></source-prefix-list><source-prefix-list><name>ddos-scrubbing</name></source-prefix-list><protocol>udp</protocol><port>ntp</port></from><then><accept/></then></term><term><name>Netconf_accept</name><from><source-prefix-list><name>GEANT-JUNOSSPACE</name></source-prefix-list><source-prefix-list><name>GEANT-Superpop-v4</name></source-prefix-list><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>geant-address-space</name></source-prefix-list><protocol>tcp</protocol><port>830</port></from><then><accept/></then></term><term><name>SNMP_accept</name><from><source-prefix-list><name>GEANT-SNMP</name></source-prefix-list><destination-port>161</destination-port></from><then><policer>lo0-flood</policer><accept/></then></term><term><name>DNS_accept</name><from><source-prefix-list><name>GEANT-DNS</name></source-prefix-list><source-prefix-list><name>GEANT-DNS-EXT</name></source-prefix-list><port>domain</port></from><then><accept/></then></term><term><name>LDP_accept</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><source-prefix-list><name>GEANT-LDP</name></source-prefix-list><destination-port>646</destination-port></from><then><accept/></then></term><term><name>MPLS_LSP_echo_accept</name><from><source-prefix-list><name>geant-routers</name></source-prefix-list><protocol>udp</protocol><port>3503</port></from><then><accept/></then></term><term><name>RSVP_accept</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><protocol>rsvp</protocol></from><then><accept/></then></term><term><name>PIM_access</name><from><protocol>pim</protocol></from><then><accept/></then></term><term><name>BFD_accept</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><port>3784</port><port>4784</port><port>3785</port></from><then><accept/></then></term><term><name>uBFD_accept</name><from><source-prefix-list><name>geant-routers</name></source-prefix-list><protocol>udp</protocol><port>6784</port></from><then><accept/></then></term><term><name>IGMP_accept</name><from><protocol>igmp</protocol></from><then><accept/></then></term><term><name>MSDP_accept</name><from><source-prefix-list><name>GEANT-MSDP</name></source-prefix-list><port>msdp</port></from><then><accept/></then></term><term><name>TRACEROUTE_accept</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><protocol>udp</protocol><destination-port>33434-33534</destination-port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><protocol>icmp</protocol><icmp-type>echo-reply</icmp-type><icmp-type>echo-request</icmp-type><icmp-type>unreachable</icmp-type><icmp-type>time-exceeded</icmp-type><icmp-type>timestamp</icmp-type><icmp-type>timestamp-reply</icmp-type></from><then><policer>lo0-flood</policer><accept/></then></term><term><name>TWAMP</name><from><prefix-list><name>TWAMP_CLIENTS</name></prefix-list><port>862</port><port>64600-64700</port></from><then><accept/></then></term><term><name>default</name><then><discard> - </discard></then></term></filter><filter><name>PROTECTED_EXTERNAL_HEAD_OUT</name><term><name>SuperPoP_DC_accept</name><from><source-address><name>83.97.92.0/22</name></source-address><destination-prefix-list><name>GEANT-DC</name></destination-prefix-list><protocol>tcp</protocol><port>88</port><port>389</port><port>445</port><port>464</port><port>3268</port></from><then><accept/></then></term></filter><filter><name>bone-out</name><term><name>default</name><then><accept/></then></term></filter><filter><name>bone-in</name><term><name>default</name><then><accept/></then></term></filter><filter><name>LAN-in</name><term><name>LAN-DWS-in</name><then><forwarding-class>best-effort</forwarding-class></then></term></filter></inet><inet6><filter><name>router-access-ipv6</name><term><name>nren-access-ssh</name><from><source-prefix-list><name>restena-access-v6</name></source-prefix-list><port>ssh</port></from><then><accept/></then></term><term><name>allow-ssh-ftp</name><from><comment>/* RANCID Instances */</comment><source-address><name>2001:798:f99b:14::/64</name></source-address><comment>/* MRLG Instances */</comment><source-address><name>2001:798:ff9a:28::/64</name></source-address><comment>/* LG Instances */</comment><source-address><name>2001:798:22:96::/64</name></source-address><source-address><name>2001:798:5e00::/48</name></source-address><source-address><name>2001:798:2::/35</name></source-address><source-address><name>2001:630:280::/48</name></source-address><destination-port>ftp</destination-port><destination-port>ftp-data</destination-port><destination-port>ssh</destination-port></from><then><accept/></then></term><term><name>discard</name><from><destination-port>ftp</destination-port><destination-port>ftp-data</destination-port><destination-port>ssh</destination-port><destination-port>telnet</destination-port></from><then><discard/></then></term><term><name>ubfd-block</name><from><payload-protocol>udp</payload-protocol><destination-port>6784</destination-port></from><then><discard/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>FCCN6-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>PIM-register-to-RP</name><from><destination-address><name>2001:660:3007:300:1::/128</name></destination-address></from><then><count>pim-registerv6</count><next>term</next></then></term><term><name>BOGON-filter6</name><from><source-prefix-list><name>bogons-list6</name></source-prefix-list></from><then><count>bogons-source6</count><discard/></then></term><term><name>dos-source-counting6</name><from><source-prefix-list><name>dos-attack-source-count6</name></source-prefix-list></from><then><count>dos-attack-traffic-count6</count><next>term</next></then></term><term><name>dos-destination-counting6</name><from><destination-prefix-list><name>dos-attack-destination-count6</name></destination-prefix-list></from><then><count>dos-attack-traffic-count6</count><next>term</next></then></term><term><name>dos-source-filtering6</name><from><source-prefix-list><name>dos-attack-source6</name></source-prefix-list></from><then><count>dos-attack-traffic6</count><discard/></then></term><term><name>dos-destination-filtering6</name><from><destination-prefix-list><name>dos-attack-destination6</name></destination-prefix-list></from><then><count>dos-attack-traffic6</count><discard/></then></term><term><name>SPOOF-filter6</name><from><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>geantnoc-address-space6</name></source-prefix-list></from><then><count>spoofed-attack-traffic6</count><discard/></then></term><term><name>NOC6-accept</name><from><destination-prefix-list><name>geantnoc-address-space6</name></destination-prefix-list></from><then><accept/></then></term><term><name>TTM-allow-tcp</name><from><destination-address><name>2001:798:2012:0047::2/128</name></destination-address><payload-protocol>tcp</payload-protocol><port>9142</port><port>10259</port></from><then><accept/></then></term><term><name>TTM-allow-udp</name><from><destination-address><name>2001:798:2012:0047::2/128</name></destination-address><payload-protocol>udp</payload-protocol></from><then><accept/></then></term><term><name>BGP6-protect</name><from><source-address><name>2001:0798:0024:10aa::6/128</name></source-address><source-address><name>2001:0798:0024:10aa::2/128</name></source-address><destination-address><name>2001:0798:0024:10aa::5/128</name></destination-address><destination-address><name>2001:0798:0024:10aa::1/128</name></destination-address><port>bgp</port></from><then><count>bgpv6-accept</count><accept/></then></term><term><name>BGP6-filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><port>bgp</port></from><then><count>bgpv6-attack</count><syslog/><discard/></then></term><term><name>NREN-router-accept</name><from><destination-address><name>2001:798:28:10ff::1/128</name></destination-address><port>ssh</port></from><then><accept/></then></term><term><name>ICMP-accept</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><payload-protocol>icmp6</payload-protocol></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>WEB6-accept</name><from><destination-address><name>2001:798:2:284d::60/128</name></destination-address><destination-address><name>2001:798:2:284d::30/128</name></destination-address><payload-protocol>tcp</payload-protocol><port>http</port></from><then><accept/></then></term><term><name>DNSv6-server-accept</name><from><destination-address><name>2001:798:2:284d::30/128</name></destination-address><payload-protocol>udp</payload-protocol><payload-protocol>tcp</payload-protocol><port>domain</port></from><then><accept/></then></term><term><name>workstations-SSHv6-accept</name><from><source-address><name>2001:0798:5e00::/48</name></source-address><source-address><name>2001:0798:5e01::/48</name></source-address><destination-address><name>2001:798:2028:006e::10/64</name></destination-address><payload-protocol>tcp</payload-protocol><port>ssh</port></from><then><accept/></then></term><term><name>UDP-traceroute6</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><payload-protocol>udp</payload-protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>External-Projects-interfaces6</name><from><destination-prefix-list><name>external-project-interfaces6</name></destination-prefix-list></from><then><count>extv6-attack</count><discard/></then></term><term><name>External-Projects6</name><from><destination-prefix-list><name>external-project6</name></destination-prefix-list></from><then><accept/></then></term><term><name>CORE-filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list></from><then><count>corev6-attack</count><discard/></then></term><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>FCCN6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>urpfv6-filter-FCCN</name><apply-groups>urpf-template</apply-groups></filter><filter><name>bone6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>LHCONE6-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>bone6-in</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_IAS_FCCN_V6_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>FCCN_blocking_service</name><from><destination-prefix-list><name>FCCN6-blocking-list</name></destination-prefix-list></from><then><count>FCCN-blocking-service6</count><discard/></then></term><term><name>BOGON_filter</name><from><source-prefix-list><name>bogons-list6</name></source-prefix-list></from><then><count>bogons-source6</count><discard/></then></term><term><name>DOS_source_filtering</name><from><source-prefix-list><name>dos-attack-source6</name></source-prefix-list></from><then><count>dos-attack-traffic6-src</count><discard/></then></term><term><name>DOS_destination_filtering</name><from><destination-prefix-list><name>dos-attack-destination6</name></destination-prefix-list></from><then><count>dos-attack-traffic6-dst</count><discard/></then></term><term><name>BGP_protect</name><from><source-address><name>2001:798:1::4a/128</name></source-address><destination-address><name>2001:798:1::49/128</name></destination-address><port>bgp</port></from><then><accept/></then></term><term><name>BGP_filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list><port>bgp</port></from><then><syslog/><discard/></then></term><term><name>SPOOF_filter</name><from><source-address><name>2001:798:1::4a/128</name><except/></source-address><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>geant-address-space-V6</name></source-prefix-list><source-prefix-list><name>geant-ias-address-space-V6</name></source-prefix-list></from><then><count>spoofed-attack-traffic6</count><discard/></then></term><term><name>NREN_router_accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><port>ssh</port></from><then><accept/></then></term><term><name>DNS_server_accept</name><from><destination-prefix-list><name>GEANT-DNS-V6</name></destination-prefix-list><payload-protocol>udp</payload-protocol><payload-protocol>tcp</payload-protocol><port>domain</port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list><payload-protocol>icmp6</payload-protocol></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>UDP_traceroute</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list><payload-protocol>udp</payload-protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>External_Projects_interfaces</name><from><destination-prefix-list><name>external-project-interfaces6</name></destination-prefix-list></from><then><discard/></then></term><term><name>External_Projects</name><from><destination-prefix-list><name>external-project6</name></destination-prefix-list></from><then><accept/></then></term><term><name>CORE_filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list></from><then><count>corev6-attack</count><discard/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_IAS_FCCN_V6_OUT</name><interface-specific/><term><name>default</name><then><accept/></then></term></filter><filter><name>ROUTER_access_V6</name><term><name>SSH_accept</name><from><source-address><name>2001:798:f99b:14::/64</name></source-address><source-address><name>2001:798:ff9a:28::/64</name></source-address><source-address><name>2001:798:22:96::/64</name></source-address><source-address><name>2001:798:5e00::/48</name></source-address><source-address><name>2001:798:2::/35</name></source-address><source-address><name>2001:630:280::/48</name></source-address><source-address><name>2001:798:ffb4:6f::/64</name></source-address><source-address><name>2001:798:15:a2::/64</name></source-address><source-address><name>2001:610:9d8:7:8000::/112</name></source-address><source-address><name>2001:610:9d8:1::4/128</name></source-address><source-address><name>2001:798:64::/64</name></source-address><source-address><name>2001:799:cb2:101::/64</name></source-address><source-address><name>2001:799:cb2:111::/64</name></source-address><source-address><name>2001:610:9d8:4::/64</name></source-address><source-prefix-list><name>restena-access-v6</name></source-prefix-list><source-prefix-list><name>dashboard-servers-v6</name></source-prefix-list><source-prefix-list><name>opennsa-servers-v6</name></source-prefix-list><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>MDVPN-SI-TOOLS-V6</name></source-prefix-list><next-header>tcp</next-header><port>ssh</port></from><then><accept/></then></term><term><name>NE-Saltmaster</name><from><source-prefix-list><name>NE-Saltmaster-v6</name></source-prefix-list><payload-protocol>tcp</payload-protocol><destination-port>ssh</destination-port><destination-port>830</destination-port></from><then><accept/></then></term><term><name>Netconf_accept</name><from><source-prefix-list><name>GEANT-Superpop-v6</name></source-prefix-list><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>geant-address-space-v6</name></source-prefix-list><payload-protocol>tcp</payload-protocol><destination-port>830</destination-port></from><then><accept/></then></term><term><name>SSH_discard</name><from><port>22</port></from><then><discard/></then></term><term><name>FTP_accept</name><from><source-address><name>2001:798:f99b:14::/64</name></source-address><source-address><name>2001:798:ff9a:28::/64</name></source-address><source-address><name>2001:798:22:96::/64</name></source-address><source-address><name>2001:798:5e00::/48</name></source-address><source-address><name>2001:798:2::/35</name></source-address><source-address><name>2001:630:280::/48</name></source-address><destination-port>ftp</destination-port><destination-port>ftp-data</destination-port></from><then><accept/></then></term><term><name>BGP_accept</name><from><source-prefix-list><name>RE_BGP_inet6</name></source-prefix-list><source-prefix-list><name>IAS_DUMMY_BGP_inet6</name></source-prefix-list><source-prefix-list><name>IAS_BGP_inet6</name></source-prefix-list><source-prefix-list><name>CLS_BGP_inet6</name></source-prefix-list><source-prefix-list><name>lhcone-l3vpn_BGP_inet6</name></source-prefix-list><source-prefix-list><name>taas-control_BGP_inet6</name></source-prefix-list><source-prefix-list><name>mgmt-l3vpn_BGP_inet6</name></source-prefix-list><source-prefix-list><name>mdvpn_BGP_inet6</name></source-prefix-list><source-prefix-list><name>mdvpn-nren-gn_BGP_inet6</name></source-prefix-list><source-prefix-list><name>confine-l3vpn_BGP_inet6</name></source-prefix-list><source-prefix-list><name>VPN-PROXY_BGP_inet6</name></source-prefix-list><source-prefix-list><name>VRR_BGP_inet6</name></source-prefix-list><next-header>tcp</next-header><port>bgp</port></from><then><accept/></then></term><term><name>BFD_accept</name><from><source-prefix-list><name>geant-address-space-v6</name></source-prefix-list><port>3784</port><port>3785</port><port>4784</port></from><then><accept/></then></term><term><name>DENY</name><from><next-header>tcp</next-header><next-header>udp</next-header><port>bgp</port><port>ftp</port><port>ftp-data</port><port>ssh</port><port>telnet</port><port>6784</port><port>830</port></from><then><syslog/><discard/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>router-access-out_V6</name><term><name>geant-network-control-traffic</name><from><traffic-class>48</traffic-class><traffic-class>56</traffic-class></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><accept/></then></term><term><name>accept</name><then><accept/></then></term></filter><filter><name>PROTECTED_EXTERNAL_V6_HEAD_OUT</name><term><name>SuperPoP_DC_accept</name><from><source-address><name>2001:798:3::0/64</name></source-address><destination-prefix-list><name>GEANT-DC-v6</name></destination-prefix-list><payload-protocol>tcp</payload-protocol><port>88</port><port>389</port><port>445</port><port>464</port><port>3268</port></from><then><accept/></then></term></filter></inet6></family><policer><name>pol-DWS-in</name><if-exceeding><bandwidth-limit>5m</bandwidth-limit><burst-size-limit>625k</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>ICMP-flood</name><if-exceeding><bandwidth-limit>10m</bandwidth-limit><burst-size-limit>1m</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>ICMPv6-flood</name><if-exceeding><bandwidth-limit>10m</bandwidth-limit><burst-size-limit>1m</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>pol-FCCN-DWS-out</name><filter-specific/><comment>/* Upgraded to 3Gbps Feb-2013 */</comment><if-exceeding><bandwidth-limit>7g</bandwidth-limit><burst-size-limit>6250000</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>lo0-flood</name><if-exceeding><bandwidth-limit>12m</bandwidth-limit><burst-size-limit>900k</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>pol-rate-limiting</name><if-exceeding><bandwidth-limit>10m</bandwidth-limit><burst-size-limit>125k</burst-size-limit></if-exceeding><then><discard/></then></policer></firewall><routing-instances><instance><name>CLS</name><description>L3 BGP/MPLS VPN for Cloud Services (CLS)</description><instance-type>vrf</instance-type><route-distinguisher><rd-type>62.40.96.16:667</rd-type></route-distinguisher><vrf-import>ps-into-CLS-vrf</vrf-import><vrf-export>ps-from-CLS-vrf</vrf-export><vrf-target><community>target:20965:667</community></vrf-target><vrf-table-label> - </vrf-table-label><routing-options><rib><name>CLS.inet.0</name><martians><address>128.0.0.0/16</address><orlonger/><allow/></martians><martians><address>191.255.0.0/16</address><orlonger/><allow/></martians><martians><address>223.255.255.0/24</address><orlonger/><allow/></martians></rib><rib><name>CLS.inet6.0</name><static><route><name>::/0</name><discard/></route><route><name>0100::/64</name><discard/><no-readvertise/></route></static><aggregate><route><name>2001:798::/64</name><community>20965:64912</community></route></aggregate></rib><static><route><name>0.0.0.0/0</name><discard/></route><route><name>192.0.2.101/32</name><discard/><no-readvertise/></route></static><aggregate><route><name>62.40.100.0/24</name><community>20965:64912</community></route></aggregate><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options><protocols><bgp><log-updown/><group><name>CLS-NRENS-ipv6</name><description>NRENS</description></group><group><name>CLS-NRENS</name><description>NRENS</description></group><group><name>CLS-PROVIDERS</name><description>PROVIDERS</description><family><inet><unicast><rib-group><ribgroup-name>cls-to-geant-geant-rtbh</ribgroup-name></rib-group></unicast></inet></family></group><group><name>CLS-PROVIDERS-ipv6</name><description>PROVIDERS</description><family><inet6><unicast><rib-group><ribgroup-name>cls-to-geant-geant-rtbh6</ribgroup-name></rib-group></unicast></inet6></family></group></bgp></protocols></instance><instance><name>IAS</name><description>GEANT IAS Internet VRF</description><instance-type>vrf</instance-type><interface><name>lt-0/0/0.61</name></interface><interface><name>ae10.333</name></interface><route-distinguisher><rd-type>20965:333</rd-type></route-distinguisher><vrf-import>ps-into-ias-vrf</vrf-import><vrf-export>ps-from-ias-vrf</vrf-export><vrf-target><community>target:20965:333</community></vrf-target><vrf-table-label><source-class-usage/></vrf-table-label><routing-options><rib><name>IAS.inet6.0</name><static><route><name>0100::/64</name><discard/><no-readvertise/></route><route><name>2001:798:1::/48</name><discard/><community>21320:64912</community></route></static></rib><static><route><name>83.97.88.0/21</name><discard/><community>21320:64912</community><community>64700:65532</community><community>64700:65533</community><community>64700:65534</community></route><route><name>192.0.2.101/32</name><discard/><no-readvertise/></route></static><label><allocation>ps-direct-route-label</allocation></label><flow><route><name>IP_Scanning_3RB6SU</name><match><destination>82.116.200.248/29</destination><source>92.118.38.53/32</source></match><then><discard/></then></route><route><name>Regra_sbc_voip_fccn_pt_S3HSJV</name><match><protocol>tcp</protocol><protocol>udp</protocol><destination-port>3478</destination-port><destination>193.137.57.194/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>minedu-gov-gr_VT2UPO</name><match><protocol>udp</protocol><port>443</port><destination>83.212.170.25/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-matriculas_NP301B</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>123</source-port><source-port>389</source-port><source-port>1900</source-port><source-port>3283</source-port><source-port>3702</source-port><destination>193.236.75.210/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-matriculas-2_PJLFJK</name><match><protocol>udp</protocol><destination-port>442</destination-port><destination>193.236.75.210/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>protect-ehealth_M08K0L</name><match><protocol>tcp</protocol><port>80</port><port>443</port><destination>195.251.99.226/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Regra_prevencao_ataques_193_136_6_51_0IWSJJ</name><match><protocol>udp</protocol><source-port>53</source-port><destination>193.136.6.51/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>1m</rate-limit></then></route><route><name>Regra_prevencao_ataques_193_136_6_49_GC0XHT</name><match><protocol>icmp</protocol><protocol>udp</protocol><destination>193.136.6.48/29</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Ataque_DDoS_193_236_38_121_LP4YXO</name><match><protocol>udp</protocol><source-port>1900</source-port><source-port>53</source-port><source-port>123</source-port><source-port>443</source-port><source-port>0</source-port><source-port>389</source-port><destination>193.236.38.121/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Maquina_comprometida_LPR9GA</name><match><destination>193.137.197.26/32</destination><source>188.120.249.106/32</source></match><then><discard/></then></route><route><name>Ataques_DDoS_UNIV_COIMBRA_Z8XDSF</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>443</source-port><source-port>389</source-port><destination>193.137.208.253/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-2_DQ6AKD</name><match><protocol>udp</protocol><fragment>is-fragment</fragment><destination>193.236.57.113/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>1m</rate-limit></then></route><route><name>Ataque_UNIV-CATOLICA_CIZC2W</name><match><destination>193.137.1.46/32</destination><source>91.213.50.0/24</source></match><then><discard/></then></route><route><name>Ataques_SQLI_193_137_197_37_T21CFI</name><match><destination>193.137.197.37/32</destination><source>45.146.164.254/32</source></match><then><discard/></then></route><route><name>ddos-rae-15dez_OLOBQL</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>123</source-port><source-port>389</source-port><source-port>1900</source-port><source-port>3283</source-port><source-port>3702</source-port><destination>193.236.75.208/31</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-ddos-15dez_7L4Q79</name><match><protocol>udp</protocol><destination-port>442</destination-port><destination>193.236.75.208/31</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ataque_univ_aveiro_SSFYYR</name><match><protocol>udp</protocol><source-port>123</source-port><source-port>53</source-port><source-port>389</source-port><destination>193.136.173.58/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>xervers-check_F2S7CV</name><match><protocol>icmp</protocol><protocol>tcp</protocol><protocol>udp</protocol><destination>193.136.250.115/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Ataque-inesctec-194_117_27_60_7FHSL7</name><match><protocol>udp</protocol><destination>194.117.27.60/32</destination><source>3.13.170.34/32</source></match><then><discard/></then></route><route><name>ddos_193_219_169_206_A9QRP4</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>389</source-port><fragment>is-fragment</fragment><destination>193.219.169.206/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_83_171_6_154_4RL81Z</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>83.171.5.154/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_193_219_61_9_4N9FEO</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>193.219.61.9/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>http_193_219_61_9_MGAEVF</name><match><protocol>tcp</protocol><destination-port>443</destination-port><destination>193.219.61.9/32</destination><source>198.54.128.151/32</source></match><then><discard/></then></route><route><name>Block_to_worpress1-geant-org_3OTITF</name><match><protocol>tcp</protocol><destination>83.97.92.46/32</destination><source>41.112.0.0/14</source></match><then><discard/></then></route><route><name>uom-ntp-1_2LQINL</name><match><protocol>udp</protocol><destination>83.212.88.5/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>100k</rate-limit></then></route><route><name>uom-ntp-2_XSL671</name><match><protocol>udp</protocol><destination>195.251.213.76/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>100k</rate-limit></then></route><route><name>EENet_tahvel_edu_ee_src3283_8WNAAR</name><match><protocol>udp</protocol><source-port>3283</source-port><destination>193.40.55.99/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Wordpress1_5MBYCH</name><match><protocol>tcp</protocol><protocol>udp</protocol><destination>83.97.92.46/32</destination><source>45.0.0.0/8</source></match><then><discard/></then></route><route><name>EENet_moodle_edu_ee_UDP_fragment_C33QQE</name><match><protocol>udp</protocol><fragment>is-fragment</fragment><destination>193.40.55.60/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_158_129_0_159_S5STD5</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>158.129.0.159/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route></flow></routing-options><protocols><bgp><log-updown/><group><name>IAS-NRENS</name><family><inet><unicast><rib-group><ribgroup-name>ias-to-geant-cls-rtbh</ribgroup-name></rib-group></unicast></inet></family><neighbor><name>83.97.88.62</name><description>FCT</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-NREN</import><import>ps-IAS-from-FCCN2-nren</import><family><inet><unicast><prefix-limit><maximum>125000</maximum></prefix-limit></unicast></inet></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-IAS-to-FCCN2-nren</export><peer-as>1930</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>IAS-NRENS-ipv6</name><family><inet6><unicast><rib-group><ribgroup-name>ias-to-geant-cls-rtbh6</ribgroup-name></rib-group></unicast></inet6></family><neighbor><name>2001:798:1::4a</name><description>FCT</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-NREN</import><import>ps-IAS-from-FCCN2-V6-nren</import><family><inet6><unicast><prefix-limit><maximum>125000</maximum></prefix-limit></unicast></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-IAS-to-FCCN2-V6-nren</export><peer-as>1930</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group></bgp></protocols></instance><instance><name>coriant-mgmt</name><description>L3VPN for Coriant Groove Management</description><instance-type>vrf</instance-type><route-distinguisher><rd-type>20965:991</rd-type></route-distinguisher><vrf-import>ps-to-coriant-vrf</vrf-import><vrf-export>ps-from-coriant-vrf</vrf-export><vrf-target><community>target:20965:991</community></vrf-target><vrf-table-label> - </vrf-table-label><routing-options><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options></instance><instance><name>lhcone-l3vpn</name><description>L3 BGP/MPLS VPN for LHCONE</description><instance-type>vrf</instance-type><route-distinguisher><rd-type>62.40.96.16:111</rd-type></route-distinguisher><vrf-import>ps-into-lhcone-vrf</vrf-import><vrf-export>ps-from-lhcone-vrf</vrf-export><vrf-target><community>target:20965:111</community></vrf-target><comment>/* vrf-table label required to allow IP lookup for directly connected routes, in effect, ping and traceroute from other nodes in the VRF */</comment><vrf-table-label inactive="inactive"> - </vrf-table-label><routing-options><rib><name>lhcone-l3vpn.inet.0</name><martians><address>128.0.0.0/16</address><orlonger/><allow/></martians><martians><address>191.255.0.0/16</address><orlonger/><allow/></martians><martians><address>223.255.255.0/24</address><orlonger/><allow/></martians></rib><rib><name>lhcone-l3vpn.inet6.0</name><aggregate><route><name>2001:798:111:1::/64</name><community>20965:0155</community></route></aggregate></rib><static><route><name>62.40.126.0/24</name><discard/><community>20965:0155</community></route></static><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options><protocols><bgp><log-updown/><group><name>lhcone-nrens</name><import>ps-BOGONS</import><import>ps-PRIVATE-AS-BLOCK</import><import>ps-from-lhcone-nren</import><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>ps-to-lhcone-nren</export></group><group><name>lhcone-peers</name><import>ps-BOGONS</import><import>ps-PRIVATE-AS-BLOCK</import><import>ps-from-lhcone-peer</import><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>ps-to-lhcone-peer</export></group><group><name>lhcone6-nrens</name><import>ps-BOGONS-V6</import><import>ps-PRIVATE-AS-BLOCK</import><import>ps-from-lhcone-nren</import><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>ps-to-lhcone-nren-v6</export></group></bgp></protocols></instance><instance><name>mdvpn</name><instance-type>vrf</instance-type><interface><name>ae10.1934</name></interface><route-distinguisher><rd-type>62.40.96.16:65100</rd-type></route-distinguisher><vrf-import>mdvpn-import</vrf-import><vrf-export>mdvpn-export</vrf-export><vrf-table-label> - </vrf-table-label><routing-options><static><route><name>62.40.102.0/26</name><discard/></route></static><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options><protocols><bgp><log-updown/><group><name>BGPLU</name><type>external</type><neighbor><name>62.40.102.63</name><description>MD VPN CoC - FCT</description><out-delay>10</out-delay><family><inet><labeled-unicast><prefix-limit><maximum>1000</maximum><teardown><limit-threshold>90</limit-threshold><idle-timeout><timeout>15</timeout></idle-timeout></teardown></prefix-limit></labeled-unicast></inet></family><authentication-key>/* SECRET-DATA */</authentication-key><peer-as>1930</peer-as></neighbor></group></bgp></protocols></instance></routing-instances><routing-options><nonstop-routing/><interface-routes><rib-group><inet>unicast-multicast</inet><inet6>unicast-multicastv6</inet6></rib-group></interface-routes><rib><name>inet.2</name><static inactive="inactive"><route><name>62.40.96.0/19</name><reject/></route></static></rib><rib><name>inet6.0</name><static><route><name>0100::/64</name><discard/><no-readvertise/></route><route><name>::/0</name><next-hop>2001:798:1::146</next-hop></route><route><name>2001:798::/32</name><discard/><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></route><route><name>2001:799::/32</name><discard/><community>20965:155</community><community>20965:65532</community><community>20965:65533</community><community>64700:65532</community><community>64700:65533</community><community>64700:65534</community></route></static></rib><rib><name>inet6.2</name><static><route><name>2001:798::/32</name><reject/></route></static></rib><rib><name>inetflow.0</name><maximum-prefixes><limit>100</limit><threshold>90</threshold></maximum-prefixes></rib><static><route><name>172.16.5.252/30</name><next-hop>172.16.44.254</next-hop><retain/><no-readvertise/></route><route><name>10.10.10.0/31</name><next-hop>10.10.10.1</next-hop></route><route><name>0.0.0.0/0</name><next-hop>83.97.89.37</next-hop></route><route><name>192.0.2.101/32</name><discard/><no-readvertise/></route><route><name>62.40.96.0/19</name><discard/><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></route></static><flow><route><name>IP_Scanning_3RB6SU</name><match><destination>82.116.200.248/29</destination><source>92.118.38.53/32</source></match><then><discard/></then></route><route><name>Regra_sbc_voip_fccn_pt_S3HSJV</name><match><protocol>tcp</protocol><protocol>udp</protocol><destination-port>3478</destination-port><destination>193.137.57.194/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>minedu-gov-gr_VT2UPO</name><match><protocol>udp</protocol><port>443</port><destination>83.212.170.25/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-matriculas_NP301B</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>123</source-port><source-port>389</source-port><source-port>1900</source-port><source-port>3283</source-port><source-port>3702</source-port><destination>193.236.75.210/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-matriculas-2_PJLFJK</name><match><protocol>udp</protocol><destination-port>442</destination-port><destination>193.236.75.210/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>protect-ehealth_M08K0L</name><match><protocol>tcp</protocol><port>80</port><port>443</port><destination>195.251.99.226/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Regra_prevencao_ataques_193_136_6_51_0IWSJJ</name><match><protocol>udp</protocol><source-port>53</source-port><destination>193.136.6.51/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>1m</rate-limit></then></route><route><name>Regra_prevencao_ataques_193_136_6_49_GC0XHT</name><match><protocol>icmp</protocol><protocol>udp</protocol><destination>193.136.6.48/29</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Ataque_DDoS_193_236_38_121_LP4YXO</name><match><protocol>udp</protocol><source-port>1900</source-port><source-port>53</source-port><source-port>123</source-port><source-port>443</source-port><source-port>0</source-port><source-port>389</source-port><destination>193.236.38.121/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Maquina_comprometida_LPR9GA</name><match><destination>193.137.197.26/32</destination><source>188.120.249.106/32</source></match><then><discard/></then></route><route><name>Ataques_DDoS_UNIV_COIMBRA_Z8XDSF</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>443</source-port><source-port>389</source-port><destination>193.137.208.253/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-2_DQ6AKD</name><match><protocol>udp</protocol><fragment>is-fragment</fragment><destination>193.236.57.113/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>1m</rate-limit></then></route><route><name>Ataque_UNIV-CATOLICA_CIZC2W</name><match><destination>193.137.1.46/32</destination><source>91.213.50.0/24</source></match><then><discard/></then></route><route><name>Ataques_SQLI_193_137_197_37_T21CFI</name><match><destination>193.137.197.37/32</destination><source>45.146.164.254/32</source></match><then><discard/></then></route><route><name>ddos-rae-15dez_OLOBQL</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>123</source-port><source-port>389</source-port><source-port>1900</source-port><source-port>3283</source-port><source-port>3702</source-port><destination>193.236.75.208/31</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-ddos-15dez_7L4Q79</name><match><protocol>udp</protocol><destination-port>442</destination-port><destination>193.236.75.208/31</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ataque_univ_aveiro_SSFYYR</name><match><protocol>udp</protocol><source-port>123</source-port><source-port>53</source-port><source-port>389</source-port><destination>193.136.173.58/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>xervers-check_F2S7CV</name><match><protocol>icmp</protocol><protocol>tcp</protocol><protocol>udp</protocol><destination>193.136.250.115/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Ataque-inesctec-194_117_27_60_7FHSL7</name><match><protocol>udp</protocol><destination>194.117.27.60/32</destination><source>3.13.170.34/32</source></match><then><discard/></then></route><route><name>ddos_193_219_169_206_A9QRP4</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>389</source-port><fragment>is-fragment</fragment><destination>193.219.169.206/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_83_171_6_154_4RL81Z</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>83.171.5.154/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_193_219_61_9_4N9FEO</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>193.219.61.9/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>http_193_219_61_9_MGAEVF</name><match><protocol>tcp</protocol><destination-port>443</destination-port><destination>193.219.61.9/32</destination><source>198.54.128.151/32</source></match><then><discard/></then></route><route><name>Block_to_worpress1-geant-org_3OTITF</name><match><protocol>tcp</protocol><destination>83.97.92.46/32</destination><source>41.112.0.0/14</source></match><then><discard/></then></route><route><name>uom-ntp-1_2LQINL</name><match><protocol>udp</protocol><destination>83.212.88.5/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>100k</rate-limit></then></route><route><name>uom-ntp-2_XSL671</name><match><protocol>udp</protocol><destination>195.251.213.76/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>100k</rate-limit></then></route><route><name>EENet_tahvel_edu_ee_src3283_8WNAAR</name><match><protocol>udp</protocol><source-port>3283</source-port><destination>193.40.55.99/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Wordpress1_5MBYCH</name><match><protocol>tcp</protocol><protocol>udp</protocol><destination>83.97.92.46/32</destination><source>45.0.0.0/8</source></match><then><discard/></then></route><route><name>EENet_moodle_edu_ee_UDP_fragment_C33QQE</name><match><protocol>udp</protocol><fragment>is-fragment</fragment><destination>193.40.55.60/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_158_129_0_159_S5STD5</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>158.129.0.159/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route></flow><rib-groups><name>multicast</name><export-rib>inet.2</export-rib><import-rib>inet.2</import-rib></rib-groups><rib-groups><name>unicast-multicast</name><export-rib>inet.0</export-rib><import-rib>inet.0</import-rib><import-rib>inet.2</import-rib></rib-groups><rib-groups><name>multicastv6</name><import-rib>inet6.2</import-rib></rib-groups><rib-groups><name>unicast-multicastv6</name><export-rib>inet6.0</export-rib><import-rib>inet6.0</import-rib><import-rib>inet6.2</import-rib></rib-groups><rib-groups><name>ias-to-geant-cls-rtbh</name><import-rib>IAS.inet.0</import-rib><import-rib>CLS.inet.0</import-rib><import-rib>inet.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><rib-groups><name>ias-to-geant-cls-rtbh6</name><import-rib>IAS.inet6.0</import-rib><import-rib>CLS.inet6.0</import-rib><import-rib>inet6.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><rib-groups><name>geant-to-ias-cls-rtbh</name><import-rib>inet.0</import-rib><import-rib>IAS.inet.0</import-rib><import-rib>CLS.inet.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><rib-groups><name>geant-to-ias-cls-rtbh6</name><import-rib>inet6.0</import-rib><import-rib>IAS.inet6.0</import-rib><import-rib>CLS.inet6.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><rib-groups><name>cls-to-geant-geant-rtbh</name><import-rib>CLS.inet.0</import-rib><import-rib>inet.0</import-rib><import-rib>IAS.inet.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><rib-groups><name>cls-to-geant-geant-rtbh6</name><import-rib>CLS.inet6.0</import-rib><import-rib>inet6.0</import-rib><import-rib>IAS.inet6.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><router-id>62.40.96.16</router-id><autonomous-system><as-number>20965</as-number></autonomous-system><forwarding-table><export>dest-class-usage</export><export>source-class-usage</export></forwarding-table><validation><notification-rib>IAS.inet.0</notification-rib><notification-rib>IAS.inet6.0</notification-rib><notification-rib>CLS.inet6.0</notification-rib><notification-rib>CLS.inet.0</notification-rib><notification-rib>inet.0</notification-rib><notification-rib>inet6.0</notification-rib><group><name>octo-rpki</name><session><name>83.97.94.110</name><port>8282</port><local-address>62.40.96.16</local-address></session></group><group><name>routinator</name><session><name>83.97.94.109</name><port>8282</port><local-address>62.40.96.16</local-address></session></group></validation><multicast><forwarding-cache><threshold><suppress>20000</suppress><reuse>18000</reuse></threshold></forwarding-cache></multicast></routing-options><protocols><neighbor-discovery><onlink-subnet-only/></neighbor-discovery><msdp><rib-group><ribgroup-name>multicast</ribgroup-name></rib-group><active-source-limit><maximum>20000</maximum><threshold>20000</threshold><log-interval>32700</log-interval></active-source-limit><local-address>62.40.96.16</local-address><source><name>0.0.0.0/0</name><active-source-limit><maximum>1000</maximum><threshold>900</threshold><log-interval>32700</log-interval></active-source-limit></source><group><name>external_msdp</name><export>Bogon-Sources</export><export>ASM-Allow</export><import>Bogon-Sources</import><import>ASM-Allow</import><peer><name>62.40.124.186</name><local-address>62.40.124.185</local-address></peer></group><group><name>internal_msdp</name><mode>mesh-group</mode><export>Bogon-Sources</export><export>ASM-Allow</export><import>Bogon-Sources</import><import>ASM-Allow</import><peer><name>62.40.96.8</name></peer><peer><name>62.40.96.10</name></peer><peer><name>62.40.96.17</name></peer><peer><name>62.40.97.1</name></peer><peer><name>62.40.97.2</name></peer><peer><name>62.40.97.4</name></peer><peer><name>62.40.97.5</name></peer><peer><name>62.40.97.7</name></peer><peer><name>62.40.97.10</name></peer><peer><name>62.40.97.11</name></peer><peer><name>62.40.97.12</name></peer><peer><name>62.40.97.13</name></peer><peer><name>62.40.97.14</name></peer><peer><name>62.40.97.16</name></peer><peer><name>62.40.96.20</name></peer><peer><name>62.40.97.15</name></peer><peer><name>62.40.96.11</name></peer><peer><name>62.40.96.19</name></peer><peer><name>62.40.96.21</name></peer><peer><name>62.40.96.26</name></peer><peer><name>62.40.96.25</name></peer><peer><name>62.40.96.3</name></peer><peer><name>62.40.96.12</name></peer><peer><name>62.40.96.15</name></peer><peer><name>62.40.96.39</name></peer><peer><name>62.40.96.51</name></peer><peer><name>62.40.96.60</name></peer><peer><name>62.40.96.52</name></peer><peer><name>62.40.96.53</name></peer><peer><name>62.40.96.58</name></peer><peer><name>62.40.96.59</name></peer></group></msdp><ldp><preference>16</preference><track-igp-metric/><deaggregate/><interface><name>ae0.0</name></interface><interface><name>ae5.0</name></interface><interface><name>lo0.0</name></interface></ldp><bgp><precision-timers/><path-selection><external-router-id/></path-selection><log-updown/><undocumented><drop-path-attributes>128</drop-path-attributes></undocumented><group><name>iGEANT</name><type>internal</type><local-address>62.40.96.16</local-address><import>rtbh-ibgp</import><import>ps-RPKI-iBGP</import><family><inet><unicast><rib-group><ribgroup-name>geant-to-ias-cls-rtbh</ribgroup-name></rib-group></unicast><flow inactive="inactive"><no-validate>accept-all-flowspec</no-validate></flow><any> - </any></inet><inet-vpn><unicast> - </unicast><flow inactive="inactive"> - </flow></inet-vpn><inet6-vpn><unicast> - </unicast></inet6-vpn><l2vpn><signaling> - </signaling></l2vpn><evpn><signaling> - </signaling></evpn></family><authentication-key>/* SECRET-DATA */</authentication-key><neighbor><name>62.40.96.8</name><description>mx2.zag.hr.geant.net</description></neighbor><neighbor><name>62.40.96.10</name><description>mx2.lju.si.geant.net</description></neighbor><neighbor><name>62.40.96.17</name><description>mx2.lis.pt.geant.net</description></neighbor><neighbor><name>62.40.96.20</name><description>mx2.bru.be.geant.net</description></neighbor><neighbor><name>62.40.97.1</name><description>mx1.bud.hu.geant.net</description></neighbor><neighbor><name>62.40.97.2</name><description>mx1.pra.cz.geant.net</description></neighbor><neighbor><name>62.40.97.4</name><description>mx2.bra.sk.geant.net</description></neighbor><neighbor><name>62.40.97.5</name><description>mx1.lon.uk.geant.net</description></neighbor><neighbor><name>62.40.97.7</name><description>mx1.vie.at.geant.net</description></neighbor><neighbor><name>62.40.97.10</name><description>mx1.poz.pl.geant.net</description></neighbor><neighbor><name>62.40.97.11</name><description>mx1.ams.nl.geant.net</description></neighbor><neighbor><name>62.40.97.12</name><description>mx1.fra.de.geant.net</description></neighbor><neighbor><name>62.40.97.13</name><description>mx1.par.fr.geant.net</description></neighbor><neighbor><name>62.40.97.14</name><description>mx1.gen.ch.geant.net</description></neighbor><neighbor><name>62.40.97.15</name><description>mx1.mil2.it.geant.net</description></neighbor><neighbor><name>62.40.97.16</name><description>mx1.mad.es.geant.net</description></neighbor><neighbor><name>62.40.96.11</name><description>mx2.ath.gr.geant.net</description></neighbor><neighbor><name>62.40.96.19</name><description>mx1.buc.ro.geant.net</description></neighbor><neighbor><name>62.40.96.21</name><description>mx1.sof.bg.geant.net</description></neighbor><neighbor><name>62.40.96.26</name><description>mx1.ham.de.geant.net</description></neighbor><neighbor><name>62.40.96.12</name><description>mx1.mar.fr.geant.net</description></neighbor><neighbor><name>62.40.96.15</name><description>mx1.lon2.uk.geant.net</description></neighbor><neighbor><name>62.40.96.3</name><description>mx1.dub.ie.geant.net</description></neighbor><neighbor><name>62.40.96.25</name><description>mx1.dub2.ie.geant.net</description></neighbor><neighbor><name>62.40.96.39</name><description>mx1.ath2.gr.geant.net</description></neighbor><neighbor><name>62.40.96.51</name><description>rt1.tal.ee.geant.net</description></neighbor><neighbor><name>62.40.96.60</name><description>rt2.tal.ee.geant.net</description></neighbor><neighbor><name>62.40.96.52</name><description>rt1.kau.lt.geant.net</description></neighbor><neighbor><name>62.40.96.53</name><description>rt2.kau.lt.geant.net</description></neighbor><neighbor><name>62.40.96.58</name><description>rt1.rig.lv.geant.net</description></neighbor><neighbor><name>62.40.96.59</name><description>rt2.rig.lv.geant.net</description></neighbor><neighbor><name>62.40.96.62</name><description>rt2.ams.nl.geant.net</description></neighbor><neighbor><name>62.40.96.36</name><description>rt1.por.pt.geant.net</description></neighbor><neighbor><name>62.40.96.42</name><description>rt1.bil.es.geant.net</description></neighbor></group><group><name>eGEANT</name><type>external</type><description>-- EBGP Peering --</description><family><inet><unicast><rib-group><ribgroup-name>geant-to-ias-cls-rtbh</ribgroup-name></rib-group></unicast><multicast> - </multicast><any> - </any></inet></family><neighbor><name>62.40.124.186</name><description>FCT</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-RE-NREN</import><import>ps-from-FCCN2-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-to-FCCN2-nren</export><peer-as>1930</peer-as></neighbor></group><group><name>iGEANT6</name><type>internal</type><local-address>2001:798:2f:20ff::1</local-address><import>rtbh-ibgp</import><import>ps-RPKI-iBGP</import><family><inet6><unicast><rib-group><ribgroup-name>geant-to-ias-cls-rtbh6</ribgroup-name></rib-group></unicast><any> - </any></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><neighbor><name>2001:798:19:20ff::1</name><description>mx2.ath.gr.geant.net</description></neighbor><neighbor><name>2001:798:2d:20ff::2</name><description>mx2.zag.hr.geant.net</description></neighbor><neighbor><name>2001:798:33:20ff::2</name><description>mx2.bra.sk.geant.net</description></neighbor><neighbor><name>2001:798:2f:20ff::2</name><description>mx2.lis.pt.geant.net</description></neighbor><neighbor><name>2001:798:2b:20ff::2</name><description>mx2.bru.be.geant.net</description></neighbor><neighbor><name>2001:798:32:20ff::2</name><description>mx2.lju.si.geant.net</description></neighbor><neighbor><name>2001:798:10:20ff::1</name><description>mx1.vie.at.geant.net</description></neighbor><neighbor><name>2001:798:14:20ff::1</name><description>mx1.fra.de.geant.net</description></neighbor><neighbor><name>2001:798:12:20ff::1</name><description>mx1.gen.ch.geant.net</description></neighbor><neighbor><name>2001:798:17:20ff::1</name><description>mx1.mad.es.geant.net</description></neighbor><neighbor><name>2001:798:23:20ff::1</name><description>mx1.poz.pl.geant.net</description></neighbor><neighbor><name>2001:798:13:20ff::1</name><description>mx1.pra.cz.geant.net</description></neighbor><neighbor><name>2001:798:1b:20ff::1</name><description>mx1.bud.hu.geant.net</description></neighbor><neighbor><name>2001:798:18:20ff::3</name><description>mx1.par.fr.geant.net</description></neighbor><neighbor><name>2001:798:22:20ff::3</name><description>mx1.ams.nl.geant.net</description></neighbor><neighbor><name>2001:798:1e:20ff::3</name><description>mx1.mil2.it.geant.net</description></neighbor><neighbor><name>2001:798:28:20ff::1</name><description>mx1.lon.uk.geant.net</description></neighbor><neighbor><name>2001:798:2b:10ff::3</name><description>mx1.buc.ro.geant.net</description></neighbor><neighbor><name>2001:798:2c:10ff::2</name><description>mx1.sof.bg.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::3</name><description>mx1.ham.de.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::4</name><description>mx1.mar.fr.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::5</name><description>mx1.lon2.uk.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::1</name><description>mx1.dub.ie.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::2</name><description>mx1.dub2.ie.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::a</name><description>mx1.ath2.gr.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::17</name><description>rt1.tal.ee.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::20</name><description>rt2.tal.ee.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::18</name><description>rt1.kau.lt.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::19</name><description>rt2.kau.lt.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::1e</name><description>rt1.rig.lv.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::1f</name><description>rt2.rig.lv.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::c</name><description>rt2.ams.nl.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::22</name><description>rt1.por.pt.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::d</name><description>rt1.bil.es.geant.net</description></neighbor></group><group><name>eGEANT6</name><type>external</type><family><inet6><unicast><rib-group><ribgroup-name>geant-to-ias-cls-rtbh6</ribgroup-name></rib-group></unicast><multicast> - </multicast><any> - </any></inet6></family><neighbor><name>2001:0798:0024:10aa::2</name><description>FCT</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-RPKI-RE-NREN</import><import>ps-from-FCCN2-V6-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-to-FCCN2-V6-nren</export><peer-as>1930</peer-as></neighbor></group><group><name>TOOLS</name><type>internal</type><description>PEERING WITH TOOLS</description><local-address>62.40.96.16</local-address><neighbor><name>83.97.93.247</name><description>EARL Netflow/ISIS/BGP feed VM</description><hold-time>180</hold-time><passive/><import>ps-deny-all</import><family><inet><unicast> - </unicast><multicast> - </multicast></inet><inet-vpn><unicast> - </unicast></inet-vpn></family><local-as><as-number>20965</as-number></local-as></neighbor><neighbor><name>193.177.129.61</name><description>Kentik EU</description><hold-time>720</hold-time><import>ps-deny-all</import><family><inet><unicast> - </unicast></inet><inet-vpn><unicast> - </unicast></inet-vpn><inet6-vpn><unicast> - </unicast></inet6-vpn></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.96.16</cluster><local-as><as-number>20965</as-number></local-as></neighbor></group><group><name>DUMMY_EBGP</name><type>external</type><description>Dummy group for stability; see XTAC TT#2016122634000229</description><local-address>62.40.96.16</local-address><family><inet><unicast> - </unicast><multicast> - </multicast><flow inactive="inactive"> - </flow></inet><inet-vpn><unicast> - </unicast><flow inactive="inactive"> - </flow></inet-vpn><inet6><unicast> - </unicast><multicast> - </multicast></inet6><inet6-vpn><unicast> - </unicast></inet6-vpn><l2vpn><signaling> - </signaling></l2vpn></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.96.16</cluster><peer-as>56902</peer-as><local-as><as-number>20965</as-number></local-as><neighbor><name>192.168.254.254</name><passive/><import>ps-deny-all</import><export>nhs-ibgp</export></neighbor></group><group><name>DUMMY_EBGP6</name><type>external</type><description>Dummy group for stability; see XTAC TT#2016122634000229</description><local-address>2001:798:2f:20ff::1</local-address><family><inet6><unicast> - </unicast><multicast> - </multicast></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.96.16</cluster><peer-as>56902</peer-as><local-as><as-number>20965</as-number></local-as><neighbor><name>100::1</name><passive/><import>ps-deny-all</import><export>nhs-ibgp</export></neighbor></group><group><name>TOOLSv6</name><type>internal</type><description>PEERING WITH TOOLS</description><local-address>2001:798:2f:20ff::1</local-address><neighbor><name>2001:798:3::1de</name><description>EARL Netflow/ISIS/BGP feed VM</description><hold-time>180</hold-time><import>ps-deny-all</import><family><inet6><unicast> - </unicast><multicast> - </multicast></inet6></family><local-as><as-number>20965</as-number></local-as></neighbor><neighbor><name>2a0c:dec0:f100:1::179</name><description>Kentik EU</description><hold-time>720</hold-time><import>ps-deny-all</import><family><inet6><unicast> - </unicast></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.96.16</cluster><local-as><as-number>20965</as-number></local-as></neighbor></group></bgp><isis><rib-group><inet>unicast-multicast</inet><inet6>unicast-multicastv6</inet6></rib-group><backup-spf-options><use-post-convergence-lfa> - </use-post-convergence-lfa><use-source-packet-routing> - </use-source-packet-routing></backup-spf-options><source-packet-routing><node-segment><ipv4-index>4616</ipv4-index><ipv6-index>6616</ipv6-index><index-range>8192</index-range></node-segment></source-packet-routing><level><name>1</name><disable/></level><level><name>2</name><wide-metrics-only/></level><interface><name>ae0.0</name><point-to-point/><level><name>2</name><post-convergence-lfa><node-protection> - </node-protection></post-convergence-lfa><metric>5</metric></level></interface><interface><name>ae5.0</name><point-to-point/><level><name>2</name><post-convergence-lfa><node-protection> - </node-protection></post-convergence-lfa><metric>500</metric></level></interface><interface><name>all</name><passive> - </passive></interface><interface><name>fxp0.0</name><disable/></interface></isis><igmp><interface><name>all</name><disable/></interface><interface><name>dsc.0</name><version>3</version><static><group><name>232.223.222.1</name><source><name>212.201.139.66</name></source><source><name>193.17.9.3</name></source></group></static></interface></igmp><mld><interface><name>ae10.1931</name><version>2</version></interface></mld><rsvp><interface><name>all</name></interface></rsvp><mpls><explicit-null/><ipv6-tunneling/><icmp-tunneling/><interface><name>all</name></interface></mpls><pim><rib-group><inet>multicast</inet><inet6>multicastv6</inet6></rib-group><rp><bootstrap-import>no-bsr</bootstrap-import><bootstrap><family><inet6><priority>1</priority><import>pim-import</import><export>pim-export</export></inet6></family></bootstrap><embedded-rp><group-ranges><name>ff7e::/16</name></group-ranges></embedded-rp><static><address><name>10.10.10.10</name></address><address><name>2001:660:3007:300:1::</name><group-ranges><name>ff0e::/16</name></group-ranges><group-ranges><name>ff1e::/16</name></group-ranges><group-ranges><name>ff3e::/16</name></group-ranges></address><address><name>2001:798:2016:10ff::3</name><group-ranges><name>ff08::1/128</name></group-ranges></address></static></rp><interface><name>all</name><mode>sparse</mode></interface><interface><name>fxp0.0</name><disable/></interface></pim><l2circuit><neighbor><name>62.40.97.11</name><interface><name>ae10.1944</name><virtual-circuit-id>4000010001</virtual-circuit-id><description>SRV_GCS CUSTOMER GEANT | FCCN_NoveSBE_ExpressRoute_Vlan1944 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED</description><no-control-word/><ignore-mtu-mismatch/></interface><interface><name>ae10.1946</name><virtual-circuit-id>4000010002</virtual-circuit-id><description>SRV_GCS CUSTOMER GEANT | FCCN_IPP_ExpressRoute_Vlan1946 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED</description><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.5</name></neighbor><neighbor><name>62.40.96.17</name></neighbor></l2circuit><lldp><port-id-subtype>interface-name</port-id-subtype><interface><name>all</name><disable/></interface><interface><name>fxp0</name></interface><interface><name>xe-0/0/1</name></interface><interface><name>xe-1/0/0</name></interface><interface><name>xe-2/0/0</name></interface><interface><name>xe-3/0/2</name></interface><interface><name>xe-0/1/0</name></interface><interface><name>xe-0/1/1</name></interface><interface><name>xe-1/1/1</name></interface><interface><name>xe-3/0/1</name></interface><interface><name>xe-0/0/0</name></interface><interface><name>xe-1/0/1</name></interface><interface><name>xe-1/1/0</name></interface><interface><name>xe-3/0/0</name></interface></lldp></protocols></configuration> \ No newline at end of file diff --git a/test/data/mx1.mar.fr.geant.net-netconf.xml b/test/data/mx1.mar.fr.geant.net-netconf.xml deleted file mode 100644 index 7d44600328d16f64ffaebad87849135f6e96a8e0..0000000000000000000000000000000000000000 --- a/test/data/mx1.mar.fr.geant.net-netconf.xml +++ /dev/null @@ -1,174 +0,0 @@ -<configuration changed-seconds="1617276182" changed-localtime="2021-04-01 11:23:02 UTC"><version>18.4R3-S4.2</version><groups><name>re0</name><system><host-name>mx1.mar.fr.re0</host-name></system><interfaces><interface><name>fxp0</name><description>PHY INFRASTRUCTURE MANAGEMENT | re0</description><speed>100m</speed><link-mode>full-duplex</link-mode><unit><name>0</name><family><inet><address><name>172.16.11.100/24</name></address></inet></family></unit></interface></interfaces></groups><groups><name>re1</name><system><host-name>mx1.mar.fr.re1</host-name></system><interfaces><interface><name>fxp0</name><description>PHY INFRASTRUCTURE MANAGEMENT | re1</description><speed>100m</speed><link-mode>full-duplex</link-mode><unit><name>0</name><family><inet><address><name>172.16.11.101/24</name></address></inet></family></unit></interface></interfaces></groups><groups><name>urpf-template</name><firewall><family><inet><filter><name><*></name><interface-specific/><term><name>permit-multicast</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>urpf-multicast</count><accept/></then></term><term><name>discard-bogons</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>urpf-fail-bogons</count><discard> - </discard></then></term><term><name>discard</name><then><count>urpf-fail</count><discard> - </discard></then></term></filter></inet><inet6><filter><name><*></name><interface-specific/><term><name>permit-multicast</name><from><destination-address><name>ff00::/8</name></destination-address></from><then><count>urpfv6-multicast</count><accept/></then></term><term><name>discard-bogons</name><from><source-prefix-list><name>bogons-list6</name></source-prefix-list></from><then><count>urpfv6-fail-bogons</count><discard/></then></term><term><name>discard</name><then><count>urpfv6-fail</count><discard/></then></term></filter></inet6></family></firewall></groups><groups><name>load-balance-adaptive</name><interfaces><interface><name><ae*></name><aggregated-ether-options><load-balance><adaptive> - </adaptive></load-balance></aggregated-ether-options></interface></interfaces></groups><system><apply-groups>re0</apply-groups><apply-groups>re1</apply-groups><commit><fast-synchronize/><synchronize/></commit><login><class><name>DANTE-Class</name><idle-timeout>15</idle-timeout><permissions>admin</permissions><permissions>firewall</permissions><permissions>firewall-control</permissions><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>trace-control</permissions><permissions>view</permissions></class><class><name>NOC-Class</name><idle-timeout>60</idle-timeout><permissions>all</permissions></class><class><name>dante</name><idle-timeout>20</idle-timeout><permissions>admin</permissions><permissions>firewall</permissions><permissions>firewall-control</permissions><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>trace-control</permissions><permissions>view</permissions></class><class><name>geantnms</name><idle-timeout>15</idle-timeout><permissions>all</permissions></class><class><name>isisView</name><idle-timeout>5</idle-timeout><permissions>routing</permissions><allow-commands>(exit|show isis)</allow-commands><deny-commands>show route.*</deny-commands></class><class><name>level1</name><idle-timeout>5</idle-timeout><permissions>admin</permissions><permissions>clear</permissions><permissions>firewall</permissions><permissions>firewall-control</permissions><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>trace-control</permissions><permissions>view</permissions></class><class><name>mdvpn-si</name><idle-timeout>5</idle-timeout><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>view</permissions><allow-commands>show .*</allow-commands><deny-commands>(ssh .*|telnet .*)</deny-commands></class><class><name>nessus</name><permissions>access</permissions><permissions>admin</permissions><permissions>firewall</permissions><permissions>interface</permissions><permissions>routing</permissions><permissions>security</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>view</permissions><permissions>view-configuration</permissions></class><class><name>nren</name><idle-timeout>5</idle-timeout><permissions>firewall</permissions><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>view</permissions><allow-commands>show .*</allow-commands><deny-commands>(file.*)|(load.*)|(op.*)|(request.*)|(save.*)|(start.*)|(test.*)|(set cli.*)|(set date.*)|(clear.*)|(help.*)|(telnet.*)|(ssh.*)|(mtrace.*)|(monitor.*)|(set.*)</deny-commands></class><class><name>nrn</name><idle-timeout>5</idle-timeout><permissions>interface</permissions><permissions>network</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>view</permissions><allow-commands>show .*</allow-commands><deny-commands>(ssh .*|telnet .*)</deny-commands></class><class><name>opennsa</name><idle-timeout>5</idle-timeout><permissions>configure</permissions><deny-commands>(file.*)|(request.*)|(save.*)|(start.*)|(test.*)|(set cli.*)|(set date.*)|(clear.*)|(help.*)|(telnet.*)|(ssh.*)|(traceroute.*)|(mtrace.*)|(monitor.*)|(ping.*)|(show.*)|(set.*)</deny-commands><allow-configuration-regexps>interfaces .*</allow-configuration-regexps><allow-configuration-regexps>protocols l2circuit.*</allow-configuration-regexps><allow-configuration-regexps>protocols connections .*</allow-configuration-regexps><allow-configuration-regexps>protocols connections interface-switch .*</allow-configuration-regexps><deny-configuration-regexps>vmhost .*</deny-configuration-regexps><deny-configuration-regexps>session-limit-group .*</deny-configuration-regexps><deny-configuration-regexps>multi-chassis .*</deny-configuration-regexps><deny-configuration-regexps>jsrc-partition .*</deny-configuration-regexps><deny-configuration-regexps>jsrc .*</deny-configuration-regexps><deny-configuration-regexps>groups .*</deny-configuration-regexps><deny-configuration-regexps>dynamic-profiles .*</deny-configuration-regexps><deny-configuration-regexps>diameter .*</deny-configuration-regexps><deny-configuration-regexps>apply-groups .*</deny-configuration-regexps><deny-configuration-regexps>access-profile .*</deny-configuration-regexps><deny-configuration-regexps>interfaces traceoptions .*</deny-configuration-regexps><deny-configuration-regexps>interfaces interface-set .*</deny-configuration-regexps><deny-configuration-regexps>interfaces interface-range .*</deny-configuration-regexps><deny-configuration-regexps>interfaces apply-groups .*</deny-configuration-regexps><deny-configuration-regexps>interfaces apply-groups-except .*</deny-configuration-regexps><deny-configuration-regexps>interfaces lt-.*</deny-configuration-regexps><deny-configuration-regexps>interfaces ms-.*</deny-configuration-regexps><deny-configuration-regexps>interfaces si-.*</deny-configuration-regexps><deny-configuration-regexps>interfaces gr-.*</deny-configuration-regexps><deny-configuration-regexps>interfaces lo.*</deny-configuration-regexps><deny-configuration-regexps>interfaces dsc.*</deny-configuration-regexps><deny-configuration-regexps>interfaces irb.*</deny-configuration-regexps></class><class><name>readonly-permissions</name><idle-timeout>15</idle-timeout><permissions>view</permissions><permissions>view-configuration</permissions><allow-commands>show .*|quit|ping .*|monitor .*|traceroute .*|file archive .*</allow-commands></class><class><name>restricted-mon</name><idle-timeout>5</idle-timeout><permissions>access</permissions><permissions>admin</permissions><permissions>firewall</permissions><permissions>interface</permissions><permissions>routing</permissions><permissions>snmp</permissions><permissions>system</permissions><permissions>trace</permissions><permissions>view</permissions></class><class><name>xantaro-yukon</name><idle-timeout>15</idle-timeout><permissions>view</permissions><permissions>view-configuration</permissions><allow-commands>show .*|quit|ping .*|monitor .*|traceroute .*|file archive .*|request support information</allow-commands></class><user><name>DANTE</name><uid>2051</uid><class>DANTE-Class</class></user><user><name>Imtech</name><uid>2053</uid><class>geantnms</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>Monit0r</name><full-name>Monitor</full-name><uid>2054</uid><class>dante</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>NOC</name><uid>2055</uid><class>NOC-Class</class></user><user><name>aconet</name><uid>2056</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>amres</name><uid>2057</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ansible</name><uid>2001</uid><class>NOC-Class</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>arnes</name><uid>2058</uid><class>nrn</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>basnet</name><uid>2060</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>belnet</name><uid>2061</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>bren</name><uid>2062</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>carnet</name><uid>2063</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ccssupport</name><uid>2008</uid><class>readonly-permissions</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>cnis</name><uid>2064</uid><class>isisView</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>cnis-dev</name><uid>2065</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>cnis-prod</name><uid>2066</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>dfn</name><uid>2067</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>garr</name><uid>2068</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-cesnet</name><uid>2069</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-cynet</name><uid>2070</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-eenet</name><uid>2071</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-fccn</name><uid>2072</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-garr</name><uid>2073</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-hungar</name><uid>2074</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-malta</name><uid>2075</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-ne-salt-robot</name><uid>2012</uid><class>super-user</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>geant-switch</name><uid>2076</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>grnet</name><uid>2077</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>heanet</name><uid>2078</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>hungarnet</name><uid>2079</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>iucc</name><uid>2080</uid><class>nrn</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>janet</name><uid>2081</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>junosrestore</name><full-name>Emergency Router Restore Login</full-name><uid>2015</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>lat</name><uid>2096</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>litnet</name><uid>2082</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>marnet</name><uid>2083</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>mdvpn-si</name><uid>2013</uid><class>mdvpn-si</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>mren</name><uid>2084</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ncc</name><full-name>NOC Team Backup Account</full-name><uid>2085</uid><class>super-user</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>nessus.geant</name><uid>3000</uid><class>nessus</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>nordunet</name><uid>2086</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>nren</name><uid>2009</uid><class>nren</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>opennsa</name><uid>2006</uid><class>opennsa</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>opnet</name><full-name>OPNET NEOP Planning system @ 62.40.105.114</full-name><uid>2087</uid><class>dante</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>opsdbv2</name><uid>2000</uid><class>readonly-permissions</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>pionier</name><uid>2088</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>python</name><uid>2052</uid><class>NOC-Class</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>rediris</name><uid>2089</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>renater</name><uid>2090</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>restena</name><full-name>NREN RESTENA</full-name><uid>2091</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>restricted-mon</name><uid>2092</uid><class>restricted-mon</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>roedunet</name><uid>2093</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ruby</name><full-name>NOC Ruby script account</full-name><uid>2094</uid><class>level1</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>sanet</name><uid>2095</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>space</name><full-name>NCC - Junos Space application login</full-name><uid>2097</uid><class>geantnms</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>space15.2R2.4-paris</name><uid>2004</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>space17.1R1.7-london</name><uid>2005</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>srv-space-ssh</name><uid>2002</uid><class>super-user</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>srv_ims</name><full-name>VC4 IMS Mediation servers</full-name><uid>2011</uid><class>restricted-mon</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>srv_opnet</name><full-name>Riverbed Opnet NetIM VM LON2 62.40.99.51</full-name><uid>2010</uid><class>restricted-mon</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>surfnet</name><uid>2099</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ulakbim</name><uid>2100</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>uran</name><uid>2101</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>xantaro</name><uid>2003</uid><class>xantaro-yukon</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><password><minimum-length>10</minimum-length><minimum-numerics>1</minimum-numerics><minimum-upper-cases>1</minimum-upper-cases><minimum-lower-cases>1</minimum-lower-cases><minimum-punctuations>1</minimum-punctuations></password><message>----------------------------------------------------------------\n\n This is mx1.mar.fr.geant.net, a GEANT Router in Marseille, France \n Warning: Unauthorized access to this equipment is strictly forbidden and will lead to prosecution \n\n-------------------------------------------------------------\n</message></login><root-authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></root-authentication><services><ssh><root-login>deny</root-login><no-tcp-forwarding/><protocol-version>v2</protocol-version><max-sessions-per-connection>32</max-sessions-per-connection><ciphers>chacha20-poly1305@openssh.com</ciphers><ciphers>aes256-ctr</ciphers><ciphers>aes192-ctr</ciphers><ciphers>aes128-ctr</ciphers><ciphers>aes128-gcm@openssh.com</ciphers><ciphers>aes256-gcm@openssh.com</ciphers><ciphers>3des-cbc</ciphers><ciphers>blowfish-cbc</ciphers><key-exchange>curve25519-sha256</key-exchange><key-exchange>dh-group1-sha1</key-exchange><key-exchange>dh-group14-sha1</key-exchange><key-exchange>ecdh-sha2-nistp256</key-exchange><key-exchange>ecdh-sha2-nistp384</key-exchange><key-exchange>ecdh-sha2-nistp521</key-exchange><key-exchange>group-exchange-sha2</key-exchange><connection-limit>125</connection-limit><rate-limit>150</rate-limit></ssh><netconf><ssh> - </ssh></netconf></services><domain-name>geant.net</domain-name><domain-search>geant2.net</domain-search><domain-search>geant.net</domain-search><backup-router><address>172.16.11.254</address><destination>172.16.5.252/30</destination></backup-router><time-zone>UTC</time-zone><authentication-order>radius</authentication-order><authentication-order>password</authentication-order><location><country-code>FR</country-code></location><name-server><name>62.40.104.250</name></name-server><name-server><name>62.40.116.122</name></name-server><name-server><name>62.40.116.114</name></name-server><radius-server><name>83.97.94.129</name><timeout>2</timeout><source-address>62.40.96.12</source-address></radius-server><radius-server><name>83.97.94.130</name><timeout>2</timeout><source-address>62.40.96.12</source-address></radius-server><static-host-mapping><name>ts1.MAR.FR</name><inet>172.16.11.254</inet></static-host-mapping><static-host-mapping><name>lo0</name><inet>62.40.96.12</inet></static-host-mapping><syslog><user><name>*</name><contents><name>any</name><emergency/></contents></user><host><name>83.97.94.11</name><contents><name>any</name><any/></contents><match>!(kernel:rts_commi.*|RPD_MSDP_SRC_ACTIVE.*|rtslib_dfwsm_get_async_cb:*|USF.*|.*ppe_img_ucode_redistribute.*|.*nd6-change.*)</match></host><host><name>62.40.99.47</name><contents><name>any</name><any/></contents></host><host><name>83.97.95.23</name><contents><name>any</name><any/></contents><match>!(kernel:rts_commi.*|RPD_MSDP_SRC_ACTIVE.*|rtslib_dfwsm_get_async_cb:*|USF.*|.*ppe_img_ucode_redistribute.*|.*nd6-change.*)</match><structured-data><brief/></structured-data></host><file><name>messages</name><contents><name>any</name><notice/></contents><contents><name>authorization</name><info/></contents><match>!(RPD_MSDP_SRC_ACTIVE.*|in6_services_jfm_rnhoutput_internal.*|.*ppe_img_ucode_redistribute.*)</match><archive><size>10m</size><files>10</files></archive></file><file><name>interactive-commands</name><contents><name>interactive-commands</name><any/></contents><archive><size>10m</size><files>10</files></archive></file><file><name>authorization</name><contents><name>authorization</name><any/></contents></file><file><name>firewall-log</name><contents><name>firewall</name><critical/></contents></file><file><name>daemon</name><contents><name>daemon</name><error/></contents></file><file><name>conf-history</name><contents><name>conflict-log</name><any/></contents><contents><name>change-log</name><any/></contents><archive><size>10m</size><files>10</files></archive></file><file><name>net-alarms</name><contents><name>daemon</name><warning/></contents></file><file><name>low-messages</name><contents><undocumented><name>cron</name></undocumented><notice/></contents><contents><name>kernel</name><notice/></contents><contents><name>user</name><notice/></contents><contents><name>pfe</name><notice/></contents><match>!(.*ppe_img_ucode_redistribute.*)</match></file><file><name>high-messages</name><contents><undocumented><name>cron</name></undocumented><error/></contents><contents><name>kernel</name><error/></contents><contents><name>user</name><error/></contents><contents><name>pfe</name><error/></contents><match>(!PCF8584) | (!CHASSISD_VOLTAGE_SENSOR_INIT)</match></file><file><name>commands-log</name><contents><name>interactive-commands</name><info/></contents></file><file><name>dnoc-events</name><contents><name>daemon</name><info/></contents><match>.*SNMP_TRAP_LINK_.*|.*RPD_BGP_NEIGHBOR_STATE_CHANGED.*|.*SNMPD_TRAP_COLD_START.*</match><archive><size>10m</size><files>10</files></archive></file><file><name>default-log-messages</name><contents><name>any</name><info/></contents><match>(requested 'commit' operation)|(requested 'commit synchronize' operation)|(copying configuration to juniper.save)|(commit complete)|ifAdminStatus|(FRU power)|(FRU removal)|(FRU insertion)|(link UP)|transitioned|Transferred|transfer-file|(license add)|(license delete)|(package -X update)|(package -X delete)|(FRU Online)|(FRU Offline)|(plugged in)|(unplugged)|CFMD_CCM_DEFECT| LFMD_3AH | RPD_MPLS_PATH_BFD|(Master Unchanged, Members Changed)|(Master Changed, Members Changed)|(Master Detected, Members Changed)|(vc add)|(vc delete)|(Master detected)|(Master changed)|(Backup detected)|(Backup changed)|(interface vcp-)|(AIS_DATA_AVAILABLE)</match><structured-data> - </structured-data></file><file><name>pfed</name><contents><name>pfe</name><any/></contents><match>!(.*ppe_img_ucode_redistribute.*)</match><archive><size>20m</size><files>10</files></archive></file><time-format><year/><millisecond/></time-format><source-address>62.40.96.12</source-address></syslog><ntp><boot-server>193.62.22.66</boot-server><authentication-key><name>1</name><type>md5</type><value>/* SECRET-DATA */</value></authentication-key><authentication-key><name>10</name><type>md5</type><value>/* SECRET-DATA */</value></authentication-key><server><name>62.40.97.11</name><key>/* SECRET-DATA */</key></server><server><name>62.40.97.12</name><key>/* SECRET-DATA */</key></server><server><name>62.40.97.14</name><key>/* SECRET-DATA */</key></server><server><name>62.40.123.21</name><key>/* SECRET-DATA */</key></server><server><name>62.40.123.23</name><key>/* SECRET-DATA */</key></server><server><name>62.40.123.103</name><key>/* SECRET-DATA */</key></server><trusted-key>1</trusted-key><trusted-key>10</trusted-key><source-address><name>62.40.96.12</name></source-address></ntp></system><logical-systems><name>VPN-PROXY</name><interfaces><interface><name>lt-1/0/0</name><unit><name>21</name><description>TUN INFRASTRUCTURE MDVPN SRF9927525 | VPN-Proxy to GEANT PE for BGP-LU peering</description><encapsulation>ethernet</encapsulation><mtu>9100</mtu><peer-unit>12</peer-unit><family><inet><policer inactive="inactive"><input>icmp-policer</input></policer><address><name>62.40.102.19/31</name></address></inet><mpls> - </mpls></family></unit><unit><name>31</name><description>TUN INFRASTRUCTURE MDVPN SRF??? | VPN-Proxy to GEANT PE for IBGP</description><encapsulation>ethernet</encapsulation><mtu>9100</mtu><peer-unit>13</peer-unit><family><inet><policer inactive="inactive"><input>icmp-policer</input></policer><address><name>62.40.98.11/31</name></address></inet></family></unit></interface><interface inactive="inactive"><name>xe-1/0/0</name><unit><name>21</name><description>SRV_MDVPN INFRASTRUCTURE MDVPN SRF9927525 | VPN-Proxy to GEANT PE for BGP-LU peering</description><vlan-id>21</vlan-id><family><inet><mtu>9000</mtu><policer inactive="inactive"><input>icmp-policer</input></policer><address><name>62.40.102.19/31</name></address></inet><mpls> - </mpls></family></unit><unit><name>31</name><description>SRV_MDVPN INFRASTRUCTURE MDVPN SRF??? | VPN-Proxy to GEANT PE for IBGP</description><vlan-id>31</vlan-id><family><inet><mtu>9000</mtu><policer inactive="inactive"><input>icmp-policer</input></policer><address><name>62.40.98.11/31</name></address></inet></family></unit></interface><interface><name>ae15</name><unit><name>198</name><description>SRV_MDVPN CUSTOMER REDIRIS #RedIRIS-GN-XiFi-VPN-Proxy-Marseille-L3VPN | VPN-Proxy to NREN CE</description><vlan-id>198</vlan-id><family><inet><policer inactive="inactive"><input>icmp-policer</input></policer><address><name>62.40.124.25/30</name></address></inet></family></unit><unit><name>946</name><description>SRV_MDVPN CUSTOMER REDIRIS #RedIRIS-GN-PRACE-VPN-Proxy-Marseille-L3VPN | VPN-Proxy to NREN CE</description><vlan-id>946</vlan-id><family><inet><filter><input><filter-name>check-packet-loss</filter-name></input><output><filter-name>check-packet-loss</filter-name></output></filter><address><name>62.40.124.125/30</name></address></inet></family></unit><unit><name>947</name><description>SRV_MDVPN CUSTOMER REDIRIS #RedIRIS-SUNET-SST-VPN-Proxy-Marseille-L2VPN | VPN-Proxy to NREN CE</description><encapsulation>vlan-ccc</encapsulation><vlan-id>947</vlan-id></unit></interface><interface><name>lo0</name><unit><name>1</name><family><inet><filter><input><filter-name>VPN-PROXY-RouterAccess</filter-name></input></filter><policer inactive="inactive"><input>icmp-policer</input></policer><address><name>62.40.96.18/32</name></address></inet><iso><address><name>49.51e5.0001.0620.4009.6018.00</name></address></iso></family></unit></interface></interfaces><protocols><ldp><interface><name>lo0.1</name></interface></ldp><bgp><group><name>BGPLU-GEANT</name><type>internal</type><local-address>62.40.102.19</local-address><advertise-inactive/><family><inet><labeled-unicast><rib-group><ribgroup-name>BGP-LU-to-inet0</ribgroup-name></rib-group><rib><inet.3/></rib></labeled-unicast></inet></family><export>nhs</export><export>advertise.lo0</export><peer-as>20965</peer-as><neighbor><name>62.40.102.18</name><description>Peering with GN PE</description></neighbor></group><group><name>internBGP</name><type>internal</type><local-address>62.40.98.11</local-address><advertise-inactive/><import>VR-only</import><family><inet><unicast> - </unicast></inet></family><export>advertise.lo0</export><peer-as>20965</peer-as><neighbor><name>62.40.98.10</name><description>Peering with Madrid Master for joining VPN-RR</description></neighbor></group><group inactive="inactive"><name>VPN-RR</name><type>external</type><local-address>62.40.96.18</local-address><advertise-inactive/><family inactive="inactive"><inet-vpn><unicast> - </unicast></inet-vpn><inet6-vpn inactive="inactive"><unicast> - </unicast></inet6-vpn><l2vpn inactive="inactive"><signaling> - </signaling></l2vpn><route-target> - </route-target></family><export>add-VPN-RR-comm</export><peer-as>65123</peer-as><neighbor><name>150.254.160.47</name><description>VPN-Proxy to VPN-RR</description><multihop><ttl>255</ttl></multihop><authentication-key>/* SECRET-DATA */</authentication-key></neighbor></group><group><name>INTERNAL-VRR</name><type>internal</type><local-address>62.40.96.18</local-address><advertise-inactive/><family><inet-vpn><unicast> - </unicast></inet-vpn><inet6-vpn><unicast> - </unicast></inet6-vpn><l2vpn><signaling> - </signaling></l2vpn><route-target> - </route-target></family><export>add-VPN-RR-comm</export><neighbor><name>62.40.96.23</name><description>MD-VPN VPN Reflector VPN-Proxy to GN VPN-RR in Ljubljana MX2</description></neighbor><neighbor><name>62.40.96.24</name><description>MD-VPN VPN Reflector VPN-Proxy to GN VPN-RR in Paris MX1</description></neighbor></group></bgp><mpls><icmp-tunneling/><interface><name>all</name></interface></mpls></protocols><policy-options><policy-statement><name>PRACE-client-export</name><term><name>1</name><from><protocol>bgp</protocol></from><then><community><add/><community-name>PRACE-client-comm</community-name></community><community><add/><community-name>VPN-RR-comm</community-name></community><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><policy-statement><name>PRACE-client-import</name><term><name>1</name><from><protocol>bgp</protocol><community>PRACE-client-comm</community></from><then><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><policy-statement><name>SST-client-export</name><term><name>1</name><then><community><add/><community-name>SST-client-comm</community-name></community><community><add/><community-name>VPN-RR-comm</community-name></community><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><policy-statement><name>SST-client-import</name><term><name>1</name><from><protocol>bgp</protocol><community>SST-client-comm</community></from><then><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><policy-statement><name>VR-only</name><term><name>1</name><from><route-filter><address>150.254.0.0/16</address><exact/></route-filter></from><then><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><policy-statement><name>add-VPN-RR-comm</name><term><name>1</name><from inactive="inactive"><protocol>bgp</protocol></from><then><community><add/><community-name>VPN-RR-comm</community-name></community><accept/></then></term></policy-statement><policy-statement><name>advertise.lo0</name><term><name>1</name><from><protocol>direct</protocol><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><accept/></then></term></policy-statement><policy-statement><name>nhs</name><term><name>1</name><then><next-hop><self/></next-hop></then></term></policy-statement><policy-statement><name>vpn1-client-export</name><term><name>1</name><from><protocol>bgp</protocol></from><then><community><add/><community-name>vpn1-client-comm</community-name></community><community><add/><community-name>VPN-RR-comm</community-name></community><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><policy-statement><name>vpn1-client-import</name><term><name>1</name><from><protocol>bgp</protocol><community>vpn1-client-comm</community></from><then><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><community><name>PRACE-client-comm</name><members>target:20965:360</members></community><community><name>SST-client-comm</name><members>target:1653:3003</members></community><community><name>VPN-RR-comm</name><members>20965:65200</members></community><community><name>vpn1-client-comm</name><members>target:2200:01</members></community></policy-options><routing-instances><instance><name>RedIRIS-PRACE</name><instance-type>vrf</instance-type><interface><name>ae15.946</name></interface><route-distinguisher><rd-type>62.40.96.18:360</rd-type></route-distinguisher><vrf-import>PRACE-client-import</vrf-import><vrf-export>PRACE-client-export</vrf-export><vrf-table-label> - </vrf-table-label><protocols><bgp><log-updown/><group><name>PRACE</name><type>external</type><out-delay>10</out-delay><family><inet><unicast><prefix-limit><maximum>1000</maximum><teardown><limit-threshold>50</limit-threshold></teardown></prefix-limit></unicast><any> - </any></inet></family><peer-as>766</peer-as><neighbor><name>62.40.124.126</name><description>RedIRIS L3VPN PRACE</description><as-override/></neighbor></group></bgp></protocols></instance><instance><name>RedIRIS-SUNET-SST</name><instance-type>l2vpn</instance-type><interface><name>ae15.947</name></interface><route-distinguisher><rd-type>62.40.96.18:3003</rd-type></route-distinguisher><vrf-import>SST-client-import</vrf-import><vrf-export>SST-client-export</vrf-export><protocols><l2vpn><encapsulation-type>ethernet-vlan</encapsulation-type><no-control-word/><site><name>mar.rediris.es</name><site-identifier>2</site-identifier><interface><name>ae15.947</name><remote-site-id>1</remote-site-id></interface></site></l2vpn></protocols></instance><instance><name>RedIRIS-XiFi</name><instance-type>vrf</instance-type><interface><name>ae15.198</name></interface><route-distinguisher><rd-type>62.40.96.18:1</rd-type></route-distinguisher><vrf-import>vpn1-client-import</vrf-import><vrf-export>vpn1-client-export</vrf-export><vrf-table-label> - </vrf-table-label><protocols><bgp><log-updown/><group><name>XiFi</name><type>external</type><out-delay>10</out-delay><family><inet><unicast><prefix-limit><maximum>1000</maximum><teardown><limit-threshold>50</limit-threshold></teardown></prefix-limit></unicast><any> - </any></inet></family><peer-as>766</peer-as><neighbor><name>62.40.124.26</name><description>peering with NREN for this particular L3VPN XiFi</description><as-override/></neighbor></group></bgp></protocols></instance></routing-instances><routing-options><interface-routes><rib-group><inet>BGP-LU-to-inet0</inet></rib-group></interface-routes><rib><name>inet.3</name><static><route><name>0.0.0.0/0</name><discard/></route></static></rib><static><route><name>62.40.96.23/32</name><next-hop>62.40.98.10</next-hop></route><route><name>62.40.96.24/32</name><next-hop>62.40.98.10</next-hop></route><route><name>150.254.0.0/16</name><next-hop>62.40.98.10</next-hop></route></static><rib-groups><name>BGP-LU-to-inet0</name><import-rib>inet.3</import-rib><import-rib>inet.0</import-rib></rib-groups><router-id>62.40.96.18</router-id><route-distinguisher-id>62.40.96.18</route-distinguisher-id><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options><firewall><family><inet><filter><name>protect-RE</name><term><name>icmp-term</name><from><protocol>icmp</protocol></from><then><policer>icmp-policer</policer><accept/></then></term></filter><filter><name>router-access</name><term><name>restrict-to-master</name><from><source-address><name>62.40.98.10/32</name></source-address><protocol>tcp</protocol><destination-port>ssh</destination-port><destination-port>ftp</destination-port><destination-port>ftp-data</destination-port><destination-port>telnet</destination-port></from><then><accept/></then></term><term><name>deny-other</name><from><protocol>tcp</protocol><destination-port>ssh</destination-port><destination-port>ftp</destination-port><destination-port>ftp-data</destination-port><destination-port>telnet</destination-port></from><then><discard> - </discard></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>VPN-PROXY-RouterAccess</name><term><name>SSHBlock</name><from><protocol>tcp</protocol><port>ssh</port><port>telnet</port></from><then><count>VPN-PROXY-SSH-BLOCK</count><log/><reject> - </reject></then></term><term><name>allow-all</name><then><accept/></then></term></filter><filter><name>check-packet-loss</name><interface-specific/><term><name>to-target</name><from><source-address><name>212.128.224.2/32</name></source-address><destination-address><name>130.186.26.9/32</name></destination-address><protocol>icmp</protocol><icmp-type>echo-request</icmp-type></from><then><count>to-target-echo-request</count><accept/></then></term><term><name>from-target</name><from><source-address><name>130.186.26.9/32</name></source-address><destination-address><name>212.128.224.2/32</name></destination-address><protocol>icmp</protocol><icmp-type>echo-reply</icmp-type></from><then><count>from-target-echo-reply</count><accept/></then></term><term><name>other</name><then><accept/></then></term></filter></inet></family><policer><name>icmp-policer</name><if-exceeding><bandwidth-limit>10m</bandwidth-limit><burst-size-limit>20k</burst-size-limit></if-exceeding><then><discard/></then></policer></firewall></logical-systems><chassis><undocumented><dump-on-panic/></undocumented><redundancy><routing-engine><name>0</name><master/></routing-engine><routing-engine><name>1</name><backup/></routing-engine><failover><on-loss-of-keepalives/><on-disk-failure/></failover><graceful-switchover> - </graceful-switchover></redundancy><aggregated-devices><ethernet><device-count>32</device-count></ethernet></aggregated-devices><fpc><name>0</name><pic><name>0</name><tunnel-services><bandwidth>10g</bandwidth></tunnel-services></pic><sampling-instance><name>ipfx</name></sampling-instance><inline-services><flow-table-size><ipv4-flow-table-size>5</ipv4-flow-table-size><ipv6-flow-table-size>5</ipv6-flow-table-size></flow-table-size></inline-services></fpc><fpc><name>1</name><pic><name>0</name><tunnel-services><bandwidth>10g</bandwidth></tunnel-services></pic><pic><name>2</name><adaptive-services><service-package><extension-provider><syslog><name>daemon</name><critical/></syslog></extension-provider></service-package></adaptive-services></pic><sampling-instance><name>ipfx</name></sampling-instance><inline-services><flow-table-size><ipv4-flow-table-size>5</ipv4-flow-table-size><ipv6-flow-table-size>5</ipv6-flow-table-size></flow-table-size></inline-services></fpc><fpc><name>2</name><pic><name>2</name><port><name>0</name><framing>sdh</framing><speed>oc48-stm16</speed></port></pic><sampling-instance><name>ipfx</name></sampling-instance><inline-services><flow-table-size><ipv4-flow-table-size>5</ipv4-flow-table-size><ipv6-flow-table-size>5</ipv6-flow-table-size></flow-table-size></inline-services></fpc><fpc><name>3</name><pic><name>0</name><tunnel-services><bandwidth>10g</bandwidth></tunnel-services></pic><sampling-instance><name>ipfx</name></sampling-instance><inline-services><flow-table-size><ipv4-flow-table-size>5</ipv4-flow-table-size><ipv6-flow-table-size>5</ipv6-flow-table-size></flow-table-size></inline-services></fpc><fpc><name>4</name><sampling-instance><name>ipfx</name></sampling-instance><inline-services><flow-table-size><ipv4-flow-table-size>5</ipv4-flow-table-size><ipv6-flow-table-size>5</ipv6-flow-table-size></flow-table-size></inline-services></fpc></chassis><services><flow-monitoring><version-ipfix><template><name>ipv4</name><flow-active-timeout>60</flow-active-timeout><flow-inactive-timeout>60</flow-inactive-timeout><nexthop-learning><enable/></nexthop-learning><template-refresh-rate><seconds>300</seconds></template-refresh-rate><option-refresh-rate><seconds>300</seconds></option-refresh-rate><ipv4-template> - </ipv4-template></template><template><name>ipv6</name><flow-active-timeout>60</flow-active-timeout><flow-inactive-timeout>60</flow-inactive-timeout><nexthop-learning><enable/></nexthop-learning><template-refresh-rate><seconds>300</seconds></template-refresh-rate><option-refresh-rate><seconds>300</seconds></option-refresh-rate><ipv6-template> - </ipv6-template></template></version-ipfix></flow-monitoring><rpm><probe><name>iGEANT_mx1.ams.nl_62.40.97.11</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.11</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.buc.ro_62.40.96.19</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.19</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.bud.hu_62.40.97.1</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.1</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.fra.de_62.40.97.12</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.12</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.gen.ch_62.40.97.14</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.14</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.ham.de_62.40.96.26</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.26</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.kau.lt_62.40.96.6</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.6</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.lis.pt_62.40.96.16</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.16</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.lon.uk_62.40.97.5</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.5</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.mad.es_62.40.97.16</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.16</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.mil2.it_62.40.97.15</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.15</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.par.fr_62.40.97.13</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.13</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.poz.pl_62.40.97.10</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.10</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.pra.cz_62.40.97.2</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.2</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.sof.bg_62.40.96.21</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.21</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.tal.ee_62.40.96.1</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.1</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.vie.at_62.40.97.7</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.7</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.ath.gr_62.40.96.11</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.11</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.bra.sk_62.40.97.4</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.97.4</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.bru.be_62.40.96.20</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.20</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.kau.lt_62.40.96.5</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.5</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.lis.pt_62.40.96.17</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.17</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.lju.si_62.40.96.10</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.10</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.rig.lv_62.40.96.4</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.4</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.tal.ee_62.40.96.2</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.2</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx2.zag.hr_62.40.96.8</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.8</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.lon2.uk_62.40.96.15</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.15</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.dub.ie_62.40.96.3</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.3</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.dub2.ie_62.40.96.25</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.25</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_mx1.ath2.gr_62.40.96.39</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.39</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt1.tal.ee_62.40.96.51</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.51</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt2.tal.ee_62.40.96.60</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.60</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt1.kau.lt_62.40.96.52</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.52</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt2.kau.lt_62.40.96.53</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.53</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt1.rig.lv_62.40.96.58</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.58</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt2.rig.lv_62.40.96.59</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.59</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>iGEANT_rt2.ams.nl_62.40.96.62</name><test><name>icmp-test</name><probe-type>icmp-ping-timestamp</probe-type><target><address>62.40.96.62</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>300</test-interval><history-size>512</history-size><hardware-timestamp/></test></probe><probe><name>eGEANT_AS766_62.40.124.193</name><test><name>icmp-test</name><probe-type>icmp-ping</probe-type><target><address>62.40.124.193</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>3600</test-interval><history-size>512</history-size></test></probe><probe><name>GEANT-RE_AS3208_62.40.125.42</name><test><name>icmp-test</name><probe-type>icmp-ping</probe-type><target><address>62.40.125.42</address></target><probe-count>10</probe-count><probe-interval>6</probe-interval><test-interval>3600</test-interval><history-size>512</history-size></test></probe><twamp><server><authentication-mode><none/></authentication-mode><max-connection-duration>1</max-connection-duration><maximum-sessions>100</maximum-sessions><maximum-sessions-per-connection>50</maximum-sessions-per-connection><maximum-connections>50</maximum-connections><maximum-connections-per-client>10</maximum-connections-per-client><port>862</port><client-list><name>WP6_LOLA</name><address><name>194.81.18.224/27</name></address></client-list><client-list><name>GEANT_PERFSONAR</name><address><name>62.40.106.157/32</name></address><address><name>62.40.104.197/32</name></address><address><name>62.40.106.129/32</name></address><address><name>62.40.106.137/32</name></address><address><name>62.40.106.145/32</name></address><address><name>62.40.106.149/32</name></address><address><name>62.40.106.153/32</name></address><address><name>62.40.106.165/32</name></address><address><name>62.40.106.169/32</name></address><address><name>62.40.106.193/32</name></address><address><name>62.40.106.197/32</name></address><address><name>62.40.106.255/32</name></address><address><name>62.40.106.81/32</name></address><address><name>62.40.114.45/32</name></address><address><name>62.40.114.51/32</name></address><address><name>62.40.114.57/32</name></address><address><name>62.40.114.63/32</name></address><address><name>62.40.114.69/32</name></address><address><name>62.40.114.75/32</name></address><address><name>62.40.114.81/32</name></address><address><name>62.40.114.85/32</name></address><address><name>62.40.114.99/32</name></address><address><name>62.40.126.155/32</name></address><address><name>62.40.126.179/32</name></address><address><name>62.40.126.187/32</name></address><address><name>62.40.126.191/32</name></address><address><name>62.40.126.27/32</name></address><address><name>62.40.123.61/32</name></address><address><name>62.40.123.62/32</name></address><address><name>62.40.107.221/32</name></address></client-list></server></twamp></rpm></services><interfaces><apply-groups>re0</apply-groups><apply-groups>re1</apply-groups><apply-groups>load-balance-adaptive</apply-groups><interface><name>xe-0/0/0</name><description>PHY CUSTOMER MICROSOFT SRF19105 EXPRESSROUTE #1 | GEANT-MRS20-06GMR-CIS-1-PRI-11142019</description><gigether-options><ieee-802.3ad><bundle>ae16</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-0/0/1</name><description>PHY PUBLIC DE-CIX P_AE13 SRF9950963 | DE-CIX ID: : DXDB:PNI:10052 / edge01.mrs1, Port Te5/1/10</description><gigether-options><ieee-802.3ad><bundle>ae13</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-0/1/0</name><description>PHY RE_INTERCONNECT ARN SRF20032</description><gigether-options><ieee-802.3ad><bundle>ae18</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-0/1/1</name><description>PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | mx1-sw1 (ex3400)</description><gigether-options><ieee-802.3ad><bundle>ae2</bundle></ieee-802.3ad></gigether-options></interface><interface><name>ge-0/2/0</name><description>PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | SW1.MAR.FR G0/5</description><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation><unit><name>15</name><disable/><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #exfo-tester-mar-fr | EXFO tester</description><vlan-id>15</vlan-id><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>VL015_MIDDLE_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>VL015_MIDDLE_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.115.245/30</name></address></inet></family></unit><unit><name>23</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-mar-fr-idrac |perfSONAR iDRAC</description><vlan-id>23</vlan-id><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>VL023_MIDDLE_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>VL023_MIDDLE_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.117.184/31</name></address></inet><iso> - </iso><inet6><filter><input-list>INTERNAL_V6_HEAD_IN</input-list><input-list>VL023_V6_MIDDLE_IN</input-list><input-list>INTERNAL_V6_TAIL_IN</input-list><output-list>INTERNAL_V6_HEAD_OUT</output-list><output-list>VL023_V6_MIDDLE_OUT</output-list><output-list>INTERNAL_V6_TAIL_OUT</output-list></filter><address><name>2001:798:ee:b::3d/126</name></address></inet6></family></unit><unit><name>24</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-mar-fr-management |perfSONAR MGMT</description><vlan-id>24</vlan-id><family><inet><filter><input-list>PROTECTED_EXTERNAL_HEAD_IN</input-list><input-list>PSMGMT_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_HEAD_OUT</output-list><output-list>PSMGMT_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.114.78/31</name></address></inet><iso> - </iso><inet6><filter><input-list>PROTECTED_EXTERNAL_V6_HEAD_IN</input-list><input-list>PSMGMT_V6_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_V6_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_V6_HEAD_OUT</output-list><output-list>PSMGMT_V6_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_V6_TAIL_OUT</output-list></filter><address><name>2001:798:bb:2::91/126</name></address></inet6></family></unit><unit><name>25</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #BACKUP_NODE_IDRAC_MAR_FR | SuperPOP Backup Node iDRAC</description><vlan-id>25</vlan-id><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>VL025_MIDDLE_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>VL025_MIDDLE_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.117.38/31</name></address></inet><iso> - </iso><inet6><filter><input-list>INTERNAL_V6_HEAD_IN</input-list><input-list>VL025_V6_MIDDLE_IN</input-list><input-list>INTERNAL_V6_TAIL_IN</input-list><output-list>INTERNAL_V6_HEAD_OUT</output-list><output-list>VL025_V6_MIDDLE_OUT</output-list><output-list>INTERNAL_V6_TAIL_OUT</output-list></filter><address><name>2001:798:ee:b::35/126</name></address></inet6></family></unit></interface><interface><name>ge-0/2/1</name><description>PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP</description><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-mar-fr-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160810</description><family><inet><filter><input-list>PROTECTED_EXTERNAL_HEAD_IN</input-list><input-list>OWAMP_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_HEAD_OUT</output-list><output-list>OWAMP_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.114.80/31</name></address></inet><iso> - </iso><inet6><filter><input-list>PROTECTED_EXTERNAL_V6_HEAD_IN</input-list><input-list>OWAMP_V6_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_V6_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_V6_HEAD_OUT</output-list><output-list>OWAMP_V6_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_V6_TAIL_OUT</output-list></filter><address><name>2001:798:bb:2::95/126</name></address></inet6></family></unit></interface><interface><name>ge-0/2/2</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/2/3</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/2/4</name><description>PHY SPARE | reserved for Tunisian NREN</description><disable/></interface><interface><name>ge-0/2/5</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/2/6</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/2/7</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/2/8</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/2/9</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/3/0</name><description>PHY INFRASTRUCTURE ACCESS AWTRIAL SRF0000001 | AWTRIAL CORSA MGMT ACCESS</description><unit><name>0</name><family><inet><filter><input-list>PROTECTED_EXTERNAL_HEAD_IN</input-list><input-list>AWTEST_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_HEAD_OUT</output-list><output-list>AWTEST_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.100.162/31</name></address></inet></family></unit></interface><interface><name>ge-0/3/1</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/3/2</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/3/3</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/3/4</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/3/5</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/3/6</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/3/7</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/3/8</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/3/9</name><description>PHY SPARE</description><disable/></interface><interface><name>lt-1/0/0</name><description>TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 |</description><unit><name>12</name><description>SRV_TUN INFRASTRUCTURE ACCESS MDVPN #BGP_LU_Peering-marseille| GN PE to VPN-Proxy for BGP-LU </description><encapsulation>ethernet</encapsulation><mtu>9100</mtu><peer-unit>21</peer-unit><family><inet><address><name>62.40.102.18/31</name></address></inet><mpls> - </mpls></family></unit><unit><name>13</name><description>SRV_TUN INFRASTRUCTURE ACCESS MDVPN #GEANT_IBGP_Peering-marseille| GN PE to VPN-Proxy for IBGP </description><encapsulation>ethernet</encapsulation><mtu>9100</mtu><peer-unit>31</peer-unit><family><inet><address><name>62.40.98.10/31</name></address></inet><iso> - </iso></family></unit></interface><interface><name>xe-1/0/0</name><description>PHY SPARE | connected to xe-1/0/1</description></interface><interface><name>xe-1/0/1</name><description>PHY SPARE | connected to xe-1/0/0</description></interface><interface><name>xe-1/1/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | mx1-sw1 (ex3400)</description><gigether-options><ieee-802.3ad><bundle>ae2</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/1/1</name><description>PHY CUSTOMER MICROSOFT SRF19105 EXPRESSROUTE #2 | GEANT-MRS20-06GMR-CIS-2-SEC-11142019</description><gigether-options><ieee-802.3ad><bundle>ae17</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/2/0</name><description>PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL</description><undocumented><enable/></undocumented><mtu>9192</mtu><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-mar-fr-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160810</description><family><inet><mtu>9000</mtu><filter><input-list>PROTECTED_EXTERNAL_HEAD_IN</input-list><input-list>BWCTL_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_HEAD_OUT</output-list><output-list>BWCTL_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.114.82/31</name></address></inet><iso> - </iso><inet6><filter><input-list>PROTECTED_EXTERNAL_V6_HEAD_IN</input-list><input-list>BWCTL_V6_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_V6_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_V6_HEAD_OUT</output-list><output-list>BWCTL_V6_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_V6_TAIL_OUT</output-list></filter><address><name>2001:798:bb:2::99/126</name></address></inet6></family></unit></interface><interface><name>xe-1/2/1</name><description>PHY INFRASTRUCTURE ACCESS VEEAM SRF0000001 | R730xd port1</description><framing><lan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae10</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/3/0</name><description>PHY INFRASTRUCTURE ACCESS VEEAM SRF0000001 | R730xd port2</description><framing><lan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae10</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/3/1</name><description>PHY PUBLIC DE-CIX P_AE13 SRF9938865 | DE-CIX ID: : MRS01B005 / edge01.mrs1, Port Gi2/1/15</description><gigether-options><ieee-802.3ad><bundle>ae13</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-2/0/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 |</description><gigether-options><ieee-802.3ad><bundle>ae1</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-3/0/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |</description><gigether-options><ieee-802.3ad><bundle>ae0</bundle></ieee-802.3ad></gigether-options></interface><interface><name>lt-3/0/0</name><description>TUN INFRASTRUCTURE ACCESS SRF0000001 </description><unit><name>16</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-mar-fr-RE_IAS| BGP Peering - RE Side</description><encapsulation>ethernet</encapsulation><peer-unit>61</peer-unit><family><inet><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>83.97.89.40/31</name></address></inet><inet6><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:1::151/126</name></address></inet6></family></unit><unit><name>61</name><description>SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #MAR-IAS-RE-Peering | BGP Peering - IAS Side</description><encapsulation>ethernet</encapsulation><peer-unit>16</peer-unit><family><inet><address><name>83.97.89.41/31</name></address></inet><inet6><address><name>2001:798:1::152/126</name></address></inet6></family></unit></interface><interface><name>ms-3/2/0</name><unit><name>0</name><family><inet> - </inet></family></unit><unit><name>1</name><family><inet6> - </inet6></family></unit><unit><name>2</name><family><mpls> - </mpls></family></unit></interface><interface><name>et-4/0/0</name><description>PHY CUSTOMER REDIRIS P_ae15 SRF15020 |</description><gigether-options><ieee-802.3ad><bundle>ae15</bundle></ieee-802.3ad></gigether-options></interface><interface><name>ae0</name><description>LAG INFRASTRUCTURE BACKBONE SRF0000001 | mar-mil2</description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.97.15</neighbor><local-address>62.40.96.12</local-address></bfd-liveness-detection><minimum-links>1</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAR_MIL2_IPTRUNK | MAR-MIL2 | </description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9000</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.70/31</name></address></inet><iso> - </iso><inet6><mtu>9000</mtu><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:cc:1::29/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae1</name><description>LAG INFRASTRUCTURE BACKBONE SRF0000001 | gen-mar</description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.97.14</neighbor><local-address>62.40.96.12</local-address></bfd-liveness-detection><minimum-links>1</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN_MAR_IPTRUNK | GEN-MAR | </description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9000</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.72/31</name></address></inet><iso> - </iso><inet6><mtu>9000</mtu><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:cc:1::2d/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae2</name><description>LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx1-sw1 (ex3400)</description><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><aggregated-ether-options><minimum-links>1</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>103</name><description>SRV_GLOBAL INFRASTRUCTURE Access #DCN_MANAGEMENT_MAR_FR | DCN MANAGEMENT </description><vlan-id>103</vlan-id><family><inet><address><name>172.18.19.1/24</name></address></inet></family></unit><unit><name>998</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-mar-fr| SW1-EX3400 MANAGEMENT</description><vlan-id>998</vlan-id><family><inet><address><name>62.40.117.84/31</name></address></inet></family></unit></interface><interface><name>ae10</name><description>LAG INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | VEEAM backup-2.mar.fr.geant.net</description><mtu>9192</mtu><aggregated-ether-options><minimum-links>1</minimum-links><link-speed>10g</link-speed><lacp><active/></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #VEEAM_BACKUP_2_MAR_FR | VEEAM backup-2.mar.fr.geant.net</description><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>AE10_MIDDLE_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>AE10_MIDDLE_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.108.101/30</name></address></inet><inet6><filter><input-list>INTERNAL_V6_HEAD_IN</input-list><input-list>AE10_V6_MIDDLE_IN</input-list><input-list>INTERNAL_V6_TAIL_IN</input-list><output-list>INTERNAL_V6_HEAD_OUT</output-list><output-list>AE10_V6_MIDDLE_OUT</output-list><output-list>INTERNAL_V6_TAIL_OUT</output-list></filter><address><name>2001:798:ee:b::45/126</name></address></inet6></family></unit></interface><interface><name>ae13</name><description>LAG PUBLIC DE-CIX SRF9938247</description><vlan-tagging/><mtu>1518</mtu><mac>ac:4b:c8:42:e7:c5</mac><no-gratuitous-arp-reply/><no-gratuitous-arp-request/><aggregated-ether-options><minimum-links>2</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>100</name><description>SRV_IAS PUBLIC GEANT #IX_Peerings_in_DE-CIX_mar | </description><vlan-id>100</vlan-id><family><inet><mtu>1500</mtu><filter><input><filter-name>DE-CIX-MRS-in</filter-name></input><output><filter-name>DE-CIX-MRS-out</filter-name></output></filter><policer><arp>IX-ARP</arp></policer><address><name>185.1.47.34/24</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>DE-CIX-MRS-v6-in</filter-name></input><output><filter-name>DE-CIX-MRS-v6-out</filter-name></output></filter><address><name>2001:7f8:36::51e5:0:1/64</name></address></inet6></family></unit></interface><interface><name>ae15</name><description>LAG CUSTOMER REDIRIS SRF9930051 |</description><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><aggregated-ether-options><minimum-links>1</minimum-links><lacp><active/></lacp></aggregated-ether-options><unit><name>60</name><description>SRV_GLOBAL CUSTOMER EUMETSAT #EUMETSAT_BUCC_MonitoringVLAN60 | VLAN 60 MONITORING 53</description><vlan-id>60</vlan-id><family><inet><mtu>9000</mtu><address><name>62.40.99.14/30</name></address></inet></family></unit><unit><name>75</name><description>SRV_GLOBAL CUSTOMER EUMETSAT #EUMETSAT_BUCC_MonitoringVLAN75 | VLAN 75 MONITORING 68</description><vlan-id>75</vlan-id><family><inet><mtu>9000</mtu><address><name>62.40.99.2/30</name></address></inet></family></unit><unit><name>186</name><description>SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_Fed4FIRE_BELNET-RedIRIS_14010 |</description><encapsulation>vlan-ccc</encapsulation><vlan-tags><outer>186</outer></vlan-tags><input-vlan-map><swap/><vlan-id>1001</vlan-id></input-vlan-map></unit><unit><name>187</name><description>SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_Fed4FIRE_BELNET-RedIRIS_14011 |</description><encapsulation>vlan-ccc</encapsulation><vlan-tags><outer>187</outer></vlan-tags><input-vlan-map><swap/><vlan-id>1002</vlan-id></input-vlan-map></unit><unit><name>188</name><description>SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_Fed4FIRE_BELNET-RedIRIS_14012 |</description><encapsulation>vlan-ccc</encapsulation><vlan-tags><outer>188</outer></vlan-tags><input-vlan-map><swap/><vlan-id>1003</vlan-id></input-vlan-map></unit><unit><name>189</name><description>SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_Fed4FIRE_BELNET-RedIRIS_14013 |</description><encapsulation>vlan-ccc</encapsulation><vlan-tags><outer>189</outer></vlan-tags><input-vlan-map><swap/><vlan-id>1004</vlan-id></input-vlan-map></unit><unit><name>190</name><description>SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_Fed4FIRE_BELNET-RedIRIS_14014 |</description><encapsulation>vlan-ccc</encapsulation><vlan-tags><outer>190</outer></vlan-tags><input-vlan-map><swap/><vlan-id>1005</vlan-id></input-vlan-map></unit><unit><name>196</name><description>SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #lon-mar_OFELIA_Janet-RedIRIS_13013 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>196</vlan-id></unit><unit><name>197</name><description>SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mar_OFELIA_BELnet-RedIRIS_14001 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>197</vlan-id></unit><unit><name>281</name><description>SRV_GLOBAL CUSTOMER REDIRIS #REDIRIS_AP1 | ASN766 | </description><vlan-id>281</vlan-id><family><inet><accounting><source-class-usage><output/></source-class-usage><destination-class-usage/></accounting><filter><input><filter-name>REDIR-in</filter-name></input><output><filter-name>REDIR-out</filter-name></output></filter><address><name>62.40.124.192/31</name></address></inet><iso> - </iso><inet6><mtu>9000</mtu><filter><input><filter-name>REDIR6-in</filter-name></input><output><filter-name>REDIR6-out</filter-name></output></filter><address><name>2001:798:99:1::45/126</name></address></inet6><mpls> - </mpls></family></unit><unit><name>333</name><description>SRV_IAS CUSTOMER REDIRIS #REDIRIS_AP1_IAS IASPS | ASN766 </description><vlan-id>333</vlan-id><family><inet><accounting><source-class-usage><output/></source-class-usage><destination-class-usage/></accounting><mtu>1500</mtu><filter><input><filter-name>nren_IAS_REDIRIS_IN</filter-name></input><output><filter-name>nren_IAS_REDIRIS_OUT</filter-name></output></filter><address><name>83.97.88.129/30</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>nren_IAS_REDIRIS_V6_IN</filter-name></input><output><filter-name>nren_IAS_REDIRIS_V6_OUT</filter-name></output></filter><address><name>2001:798:1::9d/126</name></address></inet6></family></unit><unit><name>409</name><description>SRV_GCS CUSTOMER REDIRIS #RedIRIS_USC_ExpressRoute_Vlan409 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED</description><encapsulation>vlan-ccc</encapsulation><vlan-id>409</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>412</name><description>SRV_L2CIRCUIT CUSTOMER REDIRIS #RedIRIS_UCLM_ExpressRoute_Vlan412</description><encapsulation>vlan-ccc</encapsulation><vlan-id>412</vlan-id><input-vlan-map><swap/><vlan-id>3</vlan-id></input-vlan-map></unit><unit><name>667</name><description>SRV_CLS CUSTOMER REDIRIS #REDIRIS_AP1_CLS|ASN766 | </description><vlan-id>667</vlan-id><family><inet><filter><input><filter-name>nren_CLS_REDIRIS_IN</filter-name></input><output><filter-name>nren_CLS_REDIRIS_OUT</filter-name></output></filter><address><name>62.40.100.18/31</name></address></inet><inet6><filter><input><filter-name>nren_CLS_REDIRIS_V6_IN</filter-name></input><output><filter-name>nren_CLS_REDIRIS_V6_OUT</filter-name></output></filter><address><name>2001:798::21/126</name></address></inet6></family></unit><unit><name>766</name><description>SRV_L2CIRCUIT CUSTOMER REDIRIS GEANT #fra_mar-REDIRIS-RARE_20092 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>766</vlan-id></unit><unit><name>930</name><description>SRV_L2CIRCUIT CUSTOMER REDIRIS JISC #mar-lon_GOTO_REDIRIS-JANET_16018 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>930</vlan-id></unit><unit><name>932</name><description>SRV_L3VPN CUSTOMER REDIRIS #REDIRIS_AP1_Confine | ASN766 | REDIRIS CONFINE IP VPN</description><vlan-id>932</vlan-id><family><inet><address><name>10.0.0.4/31</name></address></inet></family></unit><unit><name>2000</name><description>SRV_MDVPN CUSTOMER REDIRIS #RedIRIS_AP1_BGP_LU_CoC_1 | MD VPN CoC-REDIRIS - </description><vlan-id>2000</vlan-id><family><inet><address><name>62.40.102.42/31</name></address></inet><mpls> - </mpls></family></unit></interface><interface><name>ae16</name><description>LAG CUSTOMER MICROSOFT SRF19105 EXPRESSROUTE #1 | GEANT-MRS20-06GMR-CIS-1-PRI-11142019</description><vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><aggregated-ether-options><minimum-links>1</minimum-links><link-speed>10g</link-speed></aggregated-ether-options></interface><interface><name>ae17</name><description>LAG CUSTOMER MICROSOFT SRF19105 EXPRESSROUTE #2 | GEANT-MRS20-06GMR-CIS-2-SEC-11142019</description><vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><aggregated-ether-options><minimum-links>1</minimum-links><link-speed>10g</link-speed></aggregated-ether-options></interface><interface><name>ae18</name><description>LAG RE_INTERCONNECT ARN SRF20032</description><flexible-vlan-tagging/><mtu>9192</mtu><aggregated-ether-options><minimum-links>1</minimum-links><link-speed>10g</link-speed></aggregated-ether-options><unit><name>100</name><description>SRV_GLOBAL RE_INTERCONNECT ARN #FR_ARN_AP1 | ASN3208 |</description><vlan-id>100</vlan-id><family><inet><mtu>9000</mtu><filter><input><filter-name>ARN-in</filter-name></input><output><filter-name>ARN-out</filter-name></output></filter><address><name>62.40.125.41/30</name></address></inet><inet6><mtu>9000</mtu><filter><input><filter-name>ARN6-in</filter-name></input><output><filter-name>ARN6-out</filter-name></output></filter><address><name>2001:798:99:1::6d/126</name></address></inet6></family></unit><unit><name>333</name><description>SRV_IAS Customer ARN #FR_ARN_IAS IASGWS | ASN3208 |</description><vlan-id>333</vlan-id><family><inet><mtu>1500</mtu><filter><input><filter-name>nren_IAS_ARN_IN</filter-name></input><output><filter-name>nren_IAS_ARN_OUT</filter-name></output></filter><address><name>83.97.88.193/30</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>nren_IAS_ARN_V6_IN</filter-name></input><output><filter-name>nren_IAS_ARN_V6_OUT</filter-name></output></filter><address><name>2001:798:1::e5/126</name></address></inet6></family></unit></interface><interface><name>dsc</name><unit><name>0</name><description>PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring</description><family><inet><address><name>192.0.2.110/32</name></address></inet></family></unit></interface><interface><name>lo0</name><unit><name>0</name><family><inet><filter><input><filter-name>ROUTER_access</filter-name></input><output><filter-name>router-access-out</filter-name></output></filter><address><name>62.40.96.12/32</name></address></inet><iso><address><name>49.51e5.0001.0620.4009.6012.00</name></address></iso><inet6><filter><input><filter-name>ROUTER_access_V6</filter-name></input></filter><address><name>2001:798:aa:1::4/128</name></address></inet6></family></unit></interface></interfaces><snmp><location>MAR, FR##LOC 43 18 39.7 N 5 22 26 E ##</location><contact>GEANT OC, support@oc.geant.net, +44 (0) 1223 733033</contact><community><name>As4n0gN!</name><authorization>read-only</authorization><clients><name>212.51.192.2/32</name></clients><clients><name>212.51.192.18/32</name></clients><clients><name>212.51.192.185/32</name></clients></community><community><name>0pBiFbDmdvpn</name><authorization>read-only</authorization><logical-system><name>VPN-PROXY</name><routing-instance><name>RedIRIS-XiFi</name></routing-instance></logical-system></community><community><name>G4@NTWP6T7</name><authorization>read-only</authorization><clients><name>194.81.18.224/27</name></clients><clients><name>83.97.94.160/32</name></clients><clients><name>83.97.94.180/32</name></clients></community><community><name>0pBiFbD</name><authorization>read-only</authorization><clients><name>62.40.100.194/32</name></clients><clients><name>62.40.100.202/32</name></clients><clients><name>62.40.106.182/32</name></clients><clients><name>62.40.106.200/29</name></clients><clients><name>62.40.111.254/32</name></clients><clients><name>62.40.113.88/29</name></clients><clients><name>62.40.114.0/28</name></clients><clients><name>62.40.114.114/32</name></clients><clients><name>62.40.114.16/28</name></clients><clients><name>62.40.100.190/32</name></clients><clients><name>62.40.100.166/32</name></clients><clients><name>62.40.100.198/32</name></clients><clients><name>62.40.118.224/28</name></clients><clients><name>62.40.118.50/32</name></clients><clients><name>62.40.120.18/32</name></clients><clients><name>62.40.120.90/32</name></clients><clients><name>62.40.122.138/32</name></clients><clients><name>62.40.99.32/29</name></clients><clients><name>62.40.99.40/30</name></clients><clients><name>62.40.99.44/31</name></clients><clients><name>62.40.99.51/32</name></clients><clients><name>62.40.99.52/32</name></clients><clients><name>62.40.99.53/32</name></clients><clients><name>83.97.91.0/24</name></clients><clients><name>83.97.92.0/24</name></clients><clients><name>83.97.92.114/32</name></clients><clients><name>83.97.92.159/32</name></clients><clients><name>83.97.92.183/32</name></clients><clients><name>83.97.92.94/32</name></clients><clients><name>83.97.93.122/32</name></clients><clients><name>83.97.93.137/32</name></clients><clients><name>83.97.93.152/32</name></clients><clients><name>83.97.93.153/32</name></clients><clients><name>83.97.93.154/32</name></clients><clients><name>83.97.93.195/32</name></clients><clients><name>83.97.93.196/32</name></clients><clients><name>83.97.93.22/32</name></clients><clients><name>83.97.93.23/32</name></clients><clients><name>83.97.93.238/32</name></clients><clients><name>83.97.93.239/32</name></clients><clients><name>83.97.93.37/32</name></clients><clients><name>83.97.93.39/32</name></clients><clients><name>83.97.93.45/32</name></clients><clients><name>83.97.93.59/32</name></clients><clients><name>83.97.94.12/32</name></clients><clients><name>83.97.94.13/32</name></clients><clients><name>83.97.94.14/32</name></clients><clients><name>83.97.94.151/32</name></clients><clients><name>83.97.94.52/32</name></clients><clients><name>83.97.94.97/32</name></clients><clients><name>83.97.94.98/32</name></clients><clients><name>193.177.128.0/22</name></clients><clients><name>83.97.94.245/32</name></clients><clients><name>83.97.94.246/32</name></clients><clients><name>83.97.95.9/32</name></clients><clients><name>83.97.95.10/32</name></clients><clients><name>83.97.95.11/32</name></clients><clients><name>83.97.95.12/32</name></clients><clients><name>83.97.95.84/32</name></clients><clients><name>83.97.92.228/32</name></clients><clients><name>83.97.93.53/32</name></clients><clients><name>83.97.94.185/32</name></clients><clients><name>83.97.93.151/32</name></clients><clients><name>83.97.94.51/32</name></clients><clients><name>83.97.94.188/32</name></clients><clients><name>62.40.114.3/32</name></clients><clients><name>62.40.114.19/32</name></clients><clients><name>62.40.114.18/32</name></clients><clients><name>83.97.93.52/32</name></clients><clients><name>83.97.93.155/32</name></clients><clients><name>83.97.93.84/32</name></clients></community><community><name>MdM53r6Sk</name><authorization>read-only</authorization><clients><name>62.40.123.162/32</name></clients></community><community><name>S3cur1tyS3rv1cE</name><authorization>read-only</authorization><clients><name>62.40.106.106/32</name></clients></community><community><name>XantaroXSE</name><authorization>read-only</authorization><clients><name>62.40.99.47/32</name></clients></community><community><name>c6N2rt5s</name><authorization>read-only</authorization><clients><name>62.40.122.226/32</name></clients></community><trap-options><source-address><address>62.40.96.12</address></source-address></trap-options><trap-group><name>space</name><version>v2</version><targets><name>62.40.120.19</name></targets><targets><name>62.40.99.3</name></targets></trap-group><trap-group><name>geantnms</name><version>v2</version><categories><chassis/><link/><routing/></categories><targets><name>62.40.114.18</name></targets><targets><name>62.40.114.19</name></targets><targets><name>62.40.114.2</name></targets><targets><name>62.40.114.3</name></targets><targets><name>83.97.92.228</name></targets><targets><name>83.97.93.151</name></targets><targets><name>83.97.93.53</name></targets><targets><name>83.97.94.51</name></targets><targets><name>83.97.94.185</name></targets><targets><name>83.97.94.188</name></targets></trap-group><routing-instance-access> - </routing-instance-access></snmp><forwarding-options><sampling><instance><name>ipfx</name><input><rate>300</rate></input><family><inet><output><flow-server><name>62.40.100.166</name><port>7711</port><version-ipfix><template><template-name>ipv4</template-name></template></version-ipfix></flow-server><flow-server><name>62.40.106.182</name><port>7712</port><version-ipfix><template><template-name>ipv4</template-name></template></version-ipfix></flow-server><flow-server><name>83.97.94.190</name><port>9995</port><version-ipfix><template><template-name>ipv4</template-name></template></version-ipfix></flow-server><inline-jflow><source-address>62.40.96.12</source-address><flow-export-rate>30</flow-export-rate></inline-jflow></output></inet><inet6><output><flow-server><name>62.40.100.166</name><port>7711</port><version-ipfix><template><template-name>ipv6</template-name></template></version-ipfix></flow-server><flow-server><name>62.40.106.182</name><port>7712</port><version-ipfix><template><template-name>ipv6</template-name></template></version-ipfix></flow-server><flow-server><name>83.97.94.190</name><port>9995</port><version-ipfix><template><template-name>ipv6</template-name></template></version-ipfix></flow-server><inline-jflow><source-address>62.40.96.12</source-address><flow-export-rate>30</flow-export-rate></inline-jflow></output></inet6></family></instance></sampling></forwarding-options><policy-options><prefix-list><name>EXTERNAL-address-space</name><prefix-list-item><name>62.40.110.0/24</name></prefix-list-item><prefix-list-item><name>62.40.126.0/24</name></prefix-list-item></prefix-list><prefix-list><name>EXTERNAL-address-spaceV6</name><prefix-list-item><name>2001:798:dd::/48</name></prefix-list-item><prefix-list-item><name>2001:798:f200::/39</name></prefix-list-item><prefix-list-item><name>2001:798:f400::/38</name></prefix-list-item><prefix-list-item><name>2001:798:f800::/40</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DC</name><prefix-list-item><name>62.40.120.134/32</name></prefix-list-item><prefix-list-item><name>62.40.120.136/32</name></prefix-list-item><prefix-list-item><name>62.40.121.121/32</name></prefix-list-item><prefix-list-item><name>83.97.93.15/32</name></prefix-list-item><prefix-list-item><name>83.97.94.116/32</name></prefix-list-item><prefix-list-item><name>83.97.94.129/32</name></prefix-list-item><prefix-list-item><name>83.97.94.130/32</name></prefix-list-item><prefix-list-item><name>195.169.24.66/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DC-v6</name><prefix-list-item><name>2001:610:9d8:5::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::123/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::24a/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::257/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::258/128</name></prefix-list-item><prefix-list-item><name>2001:798:3:0:9dde:e417:7eb0:c47a/128</name></prefix-list-item><prefix-list-item><name>2001:798:3:0:ac78:a1b4:c117:cade/128</name></prefix-list-item><prefix-list-item><name>2001:798:10:99::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:52::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:52::8/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DNS</name><prefix-list-item><name>62.40.104.250/32</name></prefix-list-item><prefix-list-item><name>62.40.106.9/32</name></prefix-list-item><prefix-list-item><name>62.40.113.29/32</name></prefix-list-item><prefix-list-item><name>62.40.116.114/32</name></prefix-list-item><prefix-list-item><name>62.40.116.122/32</name></prefix-list-item><prefix-list-item><name>62.40.122.146/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-Infrastructure</name><prefix-list-item><name>62.40.97.11/32</name></prefix-list-item><prefix-list-item><name>62.40.97.12/32</name></prefix-list-item><prefix-list-item><name>62.40.97.14/32</name></prefix-list-item><prefix-list-item><name>62.40.97.15/32</name></prefix-list-item><prefix-list-item><name>62.40.99.13/32</name></prefix-list-item><prefix-list-item><name>62.40.99.14/32</name></prefix-list-item><prefix-list-item><name>62.40.99.218/32</name></prefix-list-item><prefix-list-item><name>62.40.100.178/32</name></prefix-list-item><prefix-list-item><name>62.40.104.48/29</name></prefix-list-item><prefix-list-item><name>62.40.104.134/31</name></prefix-list-item><prefix-list-item><name>62.40.104.152/29</name></prefix-list-item><prefix-list-item><name>62.40.104.250/32</name></prefix-list-item><prefix-list-item><name>62.40.106.9/32</name></prefix-list-item><prefix-list-item><name>62.40.106.16/28</name></prefix-list-item><prefix-list-item><name>62.40.106.48/29</name></prefix-list-item><prefix-list-item><name>62.40.106.210/32</name></prefix-list-item><prefix-list-item><name>62.40.106.211/32</name></prefix-list-item><prefix-list-item><name>62.40.106.212/32</name></prefix-list-item><prefix-list-item><name>62.40.106.228/32</name></prefix-list-item><prefix-list-item><name>62.40.106.253/32</name></prefix-list-item><prefix-list-item><name>62.40.107.35/32</name></prefix-list-item><prefix-list-item><name>62.40.107.166/32</name></prefix-list-item><prefix-list-item><name>62.40.107.182/32</name></prefix-list-item><prefix-list-item><name>62.40.107.186/32</name></prefix-list-item><prefix-list-item><name>62.40.107.198/32</name></prefix-list-item><prefix-list-item><name>62.40.107.202/32</name></prefix-list-item><prefix-list-item><name>62.40.107.210/32</name></prefix-list-item><prefix-list-item><name>62.40.107.218/32</name></prefix-list-item><prefix-list-item><name>62.40.107.226/32</name></prefix-list-item><prefix-list-item><name>62.40.107.238/32</name></prefix-list-item><prefix-list-item><name>62.40.107.242/32</name></prefix-list-item><prefix-list-item><name>62.40.108.10/32</name></prefix-list-item><prefix-list-item><name>62.40.108.14/32</name></prefix-list-item><prefix-list-item><name>62.40.108.22/32</name></prefix-list-item><prefix-list-item><name>62.40.108.34/32</name></prefix-list-item><prefix-list-item><name>62.40.108.38/32</name></prefix-list-item><prefix-list-item><name>62.40.108.46/32</name></prefix-list-item><prefix-list-item><name>62.40.108.58/32</name></prefix-list-item><prefix-list-item><name>62.40.108.77/32</name></prefix-list-item><prefix-list-item><name>62.40.108.128/27</name></prefix-list-item><prefix-list-item><name>62.40.108.129/32</name></prefix-list-item><prefix-list-item><name>62.40.108.130/32</name></prefix-list-item><prefix-list-item><name>62.40.108.131/32</name></prefix-list-item><prefix-list-item><name>62.40.108.132/32</name></prefix-list-item><prefix-list-item><name>62.40.108.133/32</name></prefix-list-item><prefix-list-item><name>62.40.108.134/32</name></prefix-list-item><prefix-list-item><name>62.40.108.135/32</name></prefix-list-item><prefix-list-item><name>62.40.108.136/32</name></prefix-list-item><prefix-list-item><name>62.40.108.137/32</name></prefix-list-item><prefix-list-item><name>62.40.108.138/32</name></prefix-list-item><prefix-list-item><name>62.40.108.139/32</name></prefix-list-item><prefix-list-item><name>62.40.108.140/32</name></prefix-list-item><prefix-list-item><name>62.40.108.141/32</name></prefix-list-item><prefix-list-item><name>62.40.108.142/32</name></prefix-list-item><prefix-list-item><name>62.40.108.143/32</name></prefix-list-item><prefix-list-item><name>62.40.108.144/32</name></prefix-list-item><prefix-list-item><name>62.40.108.145/32</name></prefix-list-item><prefix-list-item><name>62.40.108.146/32</name></prefix-list-item><prefix-list-item><name>62.40.108.147/32</name></prefix-list-item><prefix-list-item><name>62.40.113.29/32</name></prefix-list-item><prefix-list-item><name>62.40.114.53/32</name></prefix-list-item><prefix-list-item><name>62.40.114.130/32</name></prefix-list-item><prefix-list-item><name>62.40.114.138/32</name></prefix-list-item><prefix-list-item><name>62.40.114.146/32</name></prefix-list-item><prefix-list-item><name>62.40.115.50/32</name></prefix-list-item><prefix-list-item><name>62.40.116.76/32</name></prefix-list-item><prefix-list-item><name>62.40.116.114/32</name></prefix-list-item><prefix-list-item><name>62.40.116.122/32</name></prefix-list-item><prefix-list-item><name>62.40.116.202/32</name></prefix-list-item><prefix-list-item><name>62.40.118.214/32</name></prefix-list-item><prefix-list-item><name>62.40.118.218/32</name></prefix-list-item><prefix-list-item><name>62.40.118.222/32</name></prefix-list-item><prefix-list-item><name>62.40.120.32/29</name></prefix-list-item><prefix-list-item><name>62.40.120.40/29</name></prefix-list-item><prefix-list-item><name>62.40.121.150/32</name></prefix-list-item><prefix-list-item><name>62.40.121.154/32</name></prefix-list-item><prefix-list-item><name>62.40.121.155/32</name></prefix-list-item><prefix-list-item><name>62.40.121.156/32</name></prefix-list-item><prefix-list-item><name>62.40.121.157/32</name></prefix-list-item><prefix-list-item><name>62.40.121.158/32</name></prefix-list-item><prefix-list-item><name>62.40.121.163/32</name></prefix-list-item><prefix-list-item><name>62.40.121.165/32</name></prefix-list-item><prefix-list-item><name>62.40.121.179/32</name></prefix-list-item><prefix-list-item><name>62.40.121.181/32</name></prefix-list-item><prefix-list-item><name>62.40.121.184/32</name></prefix-list-item><prefix-list-item><name>62.40.121.195/32</name></prefix-list-item><prefix-list-item><name>62.40.121.211/32</name></prefix-list-item><prefix-list-item><name>62.40.121.227/32</name></prefix-list-item><prefix-list-item><name>62.40.122.146/32</name></prefix-list-item><prefix-list-item><name>62.40.122.147/32</name></prefix-list-item><prefix-list-item><name>62.40.122.186/32</name></prefix-list-item><prefix-list-item><name>62.40.123.21/32</name></prefix-list-item><prefix-list-item><name>62.40.123.23/32</name></prefix-list-item><prefix-list-item><name>62.40.123.103/32</name></prefix-list-item><prefix-list-item><name>62.40.123.146/32</name></prefix-list-item><prefix-list-item><name>62.40.123.150/32</name></prefix-list-item><prefix-list-item><name>62.40.123.180/32</name></prefix-list-item><prefix-list-item><name>83.97.92.41/32</name></prefix-list-item><prefix-list-item><name>83.97.92.63/32</name></prefix-list-item><prefix-list-item><name>83.97.92.87/32</name></prefix-list-item><prefix-list-item><name>83.97.93.49/32</name></prefix-list-item><prefix-list-item><name>83.97.93.85/32</name></prefix-list-item><prefix-list-item><name>83.97.93.138/32</name></prefix-list-item><prefix-list-item><name>193.63.90.187/32</name></prefix-list-item><prefix-list-item><name>193.63.211.5/32</name></prefix-list-item><prefix-list-item><name>193.63.211.16/32</name></prefix-list-item><prefix-list-item><name>193.63.211.25/32</name></prefix-list-item><prefix-list-item><name>193.63.211.68/32</name></prefix-list-item><prefix-list-item><name>193.63.211.80/32</name></prefix-list-item><prefix-list-item><name>193.63.211.101/32</name></prefix-list-item><prefix-list-item><name>193.63.211.104/32</name></prefix-list-item><prefix-list-item><name>193.63.211.107/32</name></prefix-list-item><prefix-list-item><name>193.63.211.119/32</name></prefix-list-item><prefix-list-item><name>195.169.24.0/28</name></prefix-list-item><prefix-list-item><name>195.169.24.16/30</name></prefix-list-item><prefix-list-item><name>195.169.24.20/31</name></prefix-list-item><prefix-list-item><name>195.169.24.56/29</name></prefix-list-item><prefix-list-item><name>195.169.24.66/32</name></prefix-list-item><prefix-list-item><name>195.169.24.81/32</name></prefix-list-item><prefix-list-item><name>2001:798:3::145/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-Infrastructure-v6</name><prefix-list-item><name>2001:630:280::1005/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::11f/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::182/128</name></prefix-list-item><prefix-list-item><name>2001:798:10:97::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:12:20ff::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:14:a0::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:14:a0::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:14:20ff::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:15:a0::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:22:20ff::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:58::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:59::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:59::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:59::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:59::5/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:59::7/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:33::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:4d::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:10::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff17:50::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff17:50::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff17:50::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff17:b4::e/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff9e:10::2/128</name></prefix-list-item><prefix-list-item><name>2001:799:1::3/128</name></prefix-list-item><prefix-list-item><name>2002:3e28:69d2::3e28:69d2/128</name></prefix-list-item></prefix-list><prefix-list><name>INTERNAL-address-space</name><prefix-list-item><name>62.40.108.0/24</name></prefix-list-item><prefix-list-item><name>62.40.115.0/24</name></prefix-list-item><prefix-list-item><name>62.40.116.0/24</name></prefix-list-item><prefix-list-item><name>62.40.117.0/24</name></prefix-list-item><prefix-list-item><name>62.40.118.0/24</name></prefix-list-item></prefix-list><prefix-list><name>INTERNAL-address-spaceV6</name><prefix-list-item><name>2001:798:ee::/48</name></prefix-list-item><prefix-list-item><name>2001:798:f000::/39</name></prefix-list-item></prefix-list><prefix-list><name>Infinera-address-space</name><prefix-list-item><name>5.80.46.101/32</name></prefix-list-item><prefix-list-item><name>61.12.38.243/32</name></prefix-list-item><prefix-list-item><name>62.40.123.2/32</name></prefix-list-item><prefix-list-item><name>68.232.131.211/32</name></prefix-list-item><prefix-list-item><name>68.232.137.62/32</name></prefix-list-item><prefix-list-item><name>79.36.208.252/32</name></prefix-list-item><prefix-list-item><name>79.43.236.65/32</name></prefix-list-item><prefix-list-item><name>80.181.224.138/32</name></prefix-list-item><prefix-list-item><name>82.30.3.171/32</name></prefix-list-item><prefix-list-item><name>82.53.162.144/32</name></prefix-list-item><prefix-list-item><name>82.57.172.98/32</name></prefix-list-item><prefix-list-item><name>86.5.158.53/32</name></prefix-list-item><prefix-list-item><name>86.26.204.159/32</name></prefix-list-item><prefix-list-item><name>86.28.111.233/32</name></prefix-list-item><prefix-list-item><name>86.142.182.121/32</name></prefix-list-item><prefix-list-item><name>87.6.225.113/32</name></prefix-list-item><prefix-list-item><name>90.152.38.170/32</name></prefix-list-item><prefix-list-item><name>95.144.147.56/32</name></prefix-list-item><prefix-list-item><name>193.178.153.169/32</name></prefix-list-item><comment>/* Infinera's London Office */</comment><prefix-list-item><name>195.110.76.131/32</name></prefix-list-item><prefix-list-item><name>206.205.90.140/32</name></prefix-list-item><prefix-list-item><name>217.33.229.50/32</name></prefix-list-item></prefix-list><prefix-list><name>bogons-list</name><prefix-list-item><name>0.0.0.0/8</name></prefix-list-item><prefix-list-item><name>10.0.0.0/8</name></prefix-list-item><prefix-list-item><name>100.64.0.0/10</name></prefix-list-item><prefix-list-item><name>127.0.0.0/8</name></prefix-list-item><prefix-list-item><name>169.254.0.0/16</name></prefix-list-item><prefix-list-item><name>172.16.0.0/12</name></prefix-list-item><prefix-list-item><name>192.0.0.0/24</name></prefix-list-item><prefix-list-item><name>192.0.2.0/24</name></prefix-list-item><prefix-list-item><name>192.168.0.0/16</name></prefix-list-item><prefix-list-item><name>198.18.0.0/15</name></prefix-list-item><prefix-list-item><name>198.51.100.0/24</name></prefix-list-item><prefix-list-item><name>203.0.113.0/24</name></prefix-list-item><prefix-list-item><name>224.0.0.0/3</name></prefix-list-item></prefix-list><prefix-list><name>bogons-list6</name><prefix-list-item><name>::/8</name></prefix-list-item><prefix-list-item><name>100::/8</name></prefix-list-item><prefix-list-item><name>200::/7</name></prefix-list-item><prefix-list-item><name>400::/7</name></prefix-list-item><prefix-list-item><name>600::/7</name></prefix-list-item><prefix-list-item><name>800::/5</name></prefix-list-item><prefix-list-item><name>1000::/4</name></prefix-list-item><prefix-list-item><name>2000::/16</name></prefix-list-item><prefix-list-item><name>3fff::/16</name></prefix-list-item><prefix-list-item><name>4000::/3</name></prefix-list-item><prefix-list-item><name>6000::/3</name></prefix-list-item><prefix-list-item><name>8000::/3</name></prefix-list-item><prefix-list-item><name>a000::/3</name></prefix-list-item><prefix-list-item><name>c000::/3</name></prefix-list-item><prefix-list-item><name>e000::/4</name></prefix-list-item><prefix-list-item><name>f000::/5</name></prefix-list-item><prefix-list-item><name>f800::/6</name></prefix-list-item><prefix-list-item><name>fc00::/7</name></prefix-list-item><prefix-list-item><name>fe00::/9</name></prefix-list-item><prefix-list-item><name>fec0::/10</name></prefix-list-item></prefix-list><prefix-list><name>cnis-server</name><prefix-list-item><name>62.40.122.226/32</name></prefix-list-item><prefix-list-item><name>62.40.123.130/32</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-destination</name><prefix-list-item><name>0.0.0.0/32</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-destination-count</name><prefix-list-item><name>0.0.0.0/32</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-destination-count6</name><prefix-list-item><name>::/128</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-destination6</name><prefix-list-item><name>::/128</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-source</name><prefix-list-item><name>0.0.0.0/32</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-source-count</name><prefix-list-item><name>0.0.0.0/32</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-source-count6</name><prefix-list-item><name>::/128</name></prefix-list-item></prefix-list><prefix-list><name>dos-attack-source6</name><prefix-list-item><name>::/128</name></prefix-list-item></prefix-list><prefix-list><name>external-project</name><prefix-list-item><name>62.40.99.0/29</name></prefix-list-item><prefix-list-item><name>62.40.99.8/31</name></prefix-list-item><prefix-list-item><name>62.40.99.42/32</name></prefix-list-item><prefix-list-item><name>62.40.99.45/32</name></prefix-list-item><prefix-list-item><name>62.40.99.50/32</name></prefix-list-item><prefix-list-item><name>62.40.99.51/32</name></prefix-list-item><prefix-list-item><name>62.40.99.106/32</name></prefix-list-item><prefix-list-item><name>62.40.99.114/32</name></prefix-list-item><prefix-list-item><name>62.40.99.129/32</name></prefix-list-item><prefix-list-item><name>62.40.99.136/29</name></prefix-list-item><prefix-list-item><name>62.40.99.138/32</name></prefix-list-item><prefix-list-item><name>62.40.99.139/32</name></prefix-list-item><prefix-list-item><name>62.40.99.144/29</name></prefix-list-item><prefix-list-item><name>62.40.99.160/27</name></prefix-list-item><prefix-list-item><name>62.40.99.192/26</name></prefix-list-item><prefix-list-item><name>62.40.99.215/32</name></prefix-list-item><prefix-list-item><name>62.40.100.128/25</name></prefix-list-item><prefix-list-item><name>62.40.100.161/32</name></prefix-list-item><prefix-list-item><name>62.40.100.163/32</name></prefix-list-item><prefix-list-item><name>62.40.100.168/29</name></prefix-list-item><prefix-list-item><name>62.40.100.208/29</name></prefix-list-item><prefix-list-item><name>62.40.101.0/24</name></prefix-list-item><prefix-list-item><name>62.40.104.0/29</name></prefix-list-item><prefix-list-item><name>62.40.104.8/29</name></prefix-list-item><prefix-list-item><name>62.40.104.21/32</name></prefix-list-item><prefix-list-item><name>62.40.104.32/29</name></prefix-list-item><prefix-list-item><name>62.40.104.56/29</name></prefix-list-item><prefix-list-item><name>62.40.104.72/29</name></prefix-list-item><prefix-list-item><name>62.40.104.76/30</name></prefix-list-item><prefix-list-item><name>62.40.104.80/29</name></prefix-list-item><prefix-list-item><name>62.40.104.88/29</name></prefix-list-item><prefix-list-item><name>62.40.104.98/32</name></prefix-list-item><prefix-list-item><name>62.40.104.104/29</name></prefix-list-item><prefix-list-item><name>62.40.104.112/29</name></prefix-list-item><prefix-list-item><name>62.40.104.132/31</name></prefix-list-item><prefix-list-item><name>62.40.104.134/31</name></prefix-list-item><prefix-list-item><name>62.40.104.136/29</name></prefix-list-item><prefix-list-item><name>62.40.104.168/29</name></prefix-list-item><prefix-list-item><name>62.40.104.176/30</name></prefix-list-item><prefix-list-item><name>62.40.104.180/30</name></prefix-list-item><prefix-list-item><name>62.40.104.184/29</name></prefix-list-item><prefix-list-item><name>62.40.104.192/29</name></prefix-list-item><prefix-list-item><name>62.40.104.197/32</name></prefix-list-item><prefix-list-item><name>62.40.104.199/32</name></prefix-list-item><prefix-list-item><name>62.40.104.202/31</name></prefix-list-item><prefix-list-item><name>62.40.104.205/32</name></prefix-list-item><prefix-list-item><name>62.40.104.207/32</name></prefix-list-item><prefix-list-item><name>62.40.104.210/32</name></prefix-list-item><prefix-list-item><name>62.40.104.211/32</name></prefix-list-item><prefix-list-item><name>62.40.104.212/32</name></prefix-list-item><prefix-list-item><name>62.40.104.224/27</name></prefix-list-item><prefix-list-item><name>62.40.104.225/32</name></prefix-list-item><prefix-list-item><name>62.40.104.227/32</name></prefix-list-item><prefix-list-item><name>62.40.104.250/32</name></prefix-list-item><prefix-list-item><name>62.40.105.0/24</name></prefix-list-item><prefix-list-item><name>62.40.106.0/24</name></prefix-list-item><prefix-list-item><name>62.40.106.3/32</name></prefix-list-item><prefix-list-item><name>62.40.106.9/32</name></prefix-list-item><prefix-list-item><name>62.40.106.16/29</name></prefix-list-item><prefix-list-item><name>62.40.106.18/32</name></prefix-list-item><prefix-list-item><name>62.40.106.24/29</name></prefix-list-item><prefix-list-item><name>62.40.106.32/29</name></prefix-list-item><prefix-list-item><name>62.40.106.34/32</name></prefix-list-item><prefix-list-item><name>62.40.106.35/32</name></prefix-list-item><prefix-list-item><name>62.40.106.42/32</name></prefix-list-item><prefix-list-item><name>62.40.106.48/29</name></prefix-list-item><prefix-list-item><name>62.40.106.56/29</name></prefix-list-item><prefix-list-item><name>62.40.106.61/32</name></prefix-list-item><prefix-list-item><name>62.40.106.63/32</name></prefix-list-item><prefix-list-item><name>62.40.106.67/32</name></prefix-list-item><prefix-list-item><name>62.40.106.68/32</name></prefix-list-item><prefix-list-item><name>62.40.106.80/29</name></prefix-list-item><prefix-list-item><name>62.40.106.81/32</name></prefix-list-item><prefix-list-item><name>62.40.106.83/32</name></prefix-list-item><prefix-list-item><name>62.40.106.90/32</name></prefix-list-item><prefix-list-item><name>62.40.106.104/29</name></prefix-list-item><prefix-list-item><name>62.40.106.112/29</name></prefix-list-item><prefix-list-item><name>62.40.106.120/29</name></prefix-list-item><prefix-list-item><name>62.40.106.129/32</name></prefix-list-item><prefix-list-item><name>62.40.106.131/32</name></prefix-list-item><prefix-list-item><name>62.40.106.133/32</name></prefix-list-item><prefix-list-item><name>62.40.106.135/32</name></prefix-list-item><prefix-list-item><name>62.40.106.137/32</name></prefix-list-item><prefix-list-item><name>62.40.106.139/32</name></prefix-list-item><prefix-list-item><name>62.40.106.141/32</name></prefix-list-item><prefix-list-item><name>62.40.106.145/32</name></prefix-list-item><prefix-list-item><name>62.40.106.147/32</name></prefix-list-item><prefix-list-item><name>62.40.106.149/32</name></prefix-list-item><prefix-list-item><name>62.40.106.151/32</name></prefix-list-item><prefix-list-item><name>62.40.106.153/32</name></prefix-list-item><prefix-list-item><name>62.40.106.155/32</name></prefix-list-item><prefix-list-item><name>62.40.106.157/32</name></prefix-list-item><prefix-list-item><name>62.40.106.159/32</name></prefix-list-item><prefix-list-item><name>62.40.106.161/32</name></prefix-list-item><prefix-list-item><name>62.40.106.163/32</name></prefix-list-item><prefix-list-item><name>62.40.106.165/32</name></prefix-list-item><prefix-list-item><name>62.40.106.167/32</name></prefix-list-item><prefix-list-item><name>62.40.106.169/32</name></prefix-list-item><prefix-list-item><name>62.40.106.171/32</name></prefix-list-item><prefix-list-item><name>62.40.106.173/32</name></prefix-list-item><prefix-list-item><name>62.40.106.175/32</name></prefix-list-item><prefix-list-item><name>62.40.106.177/32</name></prefix-list-item><prefix-list-item><name>62.40.106.179/32</name></prefix-list-item><prefix-list-item><name>62.40.106.181/32</name></prefix-list-item><prefix-list-item><name>62.40.106.183/32</name></prefix-list-item><prefix-list-item><name>62.40.106.185/32</name></prefix-list-item><prefix-list-item><name>62.40.106.189/32</name></prefix-list-item><prefix-list-item><name>62.40.106.191/32</name></prefix-list-item><prefix-list-item><name>62.40.106.193/32</name></prefix-list-item><prefix-list-item><name>62.40.106.195/32</name></prefix-list-item><prefix-list-item><name>62.40.106.197/32</name></prefix-list-item><prefix-list-item><name>62.40.106.199/32</name></prefix-list-item><prefix-list-item><name>62.40.106.201/32</name></prefix-list-item><prefix-list-item><name>62.40.106.202/32</name></prefix-list-item><prefix-list-item><name>62.40.106.240/29</name></prefix-list-item><prefix-list-item><name>62.40.106.249/32</name></prefix-list-item><prefix-list-item><name>62.40.106.251/32</name></prefix-list-item><prefix-list-item><name>62.40.106.253/32</name></prefix-list-item><prefix-list-item><name>62.40.106.255/32</name></prefix-list-item><prefix-list-item><name>62.40.107.182/32</name></prefix-list-item><prefix-list-item><name>62.40.107.194/32</name></prefix-list-item><prefix-list-item><name>62.40.107.198/32</name></prefix-list-item><prefix-list-item><name>62.40.107.206/32</name></prefix-list-item><prefix-list-item><name>62.40.107.214/32</name></prefix-list-item><prefix-list-item><name>62.40.107.221/32</name></prefix-list-item><prefix-list-item><name>62.40.107.222/32</name></prefix-list-item><prefix-list-item><name>62.40.107.223/32</name></prefix-list-item><prefix-list-item><name>62.40.107.230/32</name></prefix-list-item><prefix-list-item><name>62.40.107.238/32</name></prefix-list-item><prefix-list-item><name>62.40.107.246/32</name></prefix-list-item><prefix-list-item><name>62.40.107.248/29</name></prefix-list-item><prefix-list-item><name>62.40.108.50/32</name></prefix-list-item><prefix-list-item><name>62.40.108.58/32</name></prefix-list-item><prefix-list-item><name>62.40.108.98/32</name></prefix-list-item><prefix-list-item><name>62.40.108.102/32</name></prefix-list-item><prefix-list-item><name>62.40.108.140/32</name></prefix-list-item><prefix-list-item><name>62.40.108.192/26</name></prefix-list-item><prefix-list-item><name>62.40.109.0/24</name></prefix-list-item><prefix-list-item><name>62.40.109.0/28</name></prefix-list-item><prefix-list-item><name>62.40.109.25/32</name></prefix-list-item><prefix-list-item><name>62.40.109.26/32</name></prefix-list-item><prefix-list-item><name>62.40.110.0/27</name></prefix-list-item><prefix-list-item><name>62.40.110.32/27</name></prefix-list-item><prefix-list-item><name>62.40.110.64/27</name></prefix-list-item><prefix-list-item><name>62.40.110.96/27</name></prefix-list-item><prefix-list-item><name>62.40.110.128/27</name></prefix-list-item><prefix-list-item><name>62.40.111.0/24</name></prefix-list-item><prefix-list-item><name>62.40.111.253/32</name></prefix-list-item><prefix-list-item><name>62.40.112.0/24</name></prefix-list-item><prefix-list-item><name>62.40.113.29/32</name></prefix-list-item><prefix-list-item><name>62.40.113.56/29</name></prefix-list-item><prefix-list-item><name>62.40.113.58/32</name></prefix-list-item><prefix-list-item><name>62.40.113.59/32</name></prefix-list-item><prefix-list-item><name>62.40.113.60/32</name></prefix-list-item><prefix-list-item><name>62.40.113.88/29</name></prefix-list-item><prefix-list-item><name>62.40.113.104/29</name></prefix-list-item><prefix-list-item><name>62.40.113.115/32</name></prefix-list-item><prefix-list-item><name>62.40.113.128/25</name></prefix-list-item><prefix-list-item><name>62.40.113.157/32</name></prefix-list-item><prefix-list-item><name>62.40.113.166/32</name></prefix-list-item><prefix-list-item><name>62.40.113.167/32</name></prefix-list-item><prefix-list-item><name>62.40.113.168/32</name></prefix-list-item><prefix-list-item><name>62.40.113.182/32</name></prefix-list-item><prefix-list-item><name>62.40.114.0/28</name></prefix-list-item><prefix-list-item><name>62.40.114.2/32</name></prefix-list-item><prefix-list-item><name>62.40.114.3/32</name></prefix-list-item><prefix-list-item><name>62.40.114.16/28</name></prefix-list-item><prefix-list-item><name>62.40.114.18/32</name></prefix-list-item><prefix-list-item><name>62.40.114.19/32</name></prefix-list-item><prefix-list-item><name>62.40.114.33/32</name></prefix-list-item><prefix-list-item><name>62.40.114.35/32</name></prefix-list-item><prefix-list-item><name>62.40.114.37/32</name></prefix-list-item><prefix-list-item><name>62.40.114.39/32</name></prefix-list-item><prefix-list-item><name>62.40.114.41/32</name></prefix-list-item><prefix-list-item><name>62.40.114.43/32</name></prefix-list-item><prefix-list-item><name>62.40.114.45/32</name></prefix-list-item><prefix-list-item><name>62.40.114.47/32</name></prefix-list-item><prefix-list-item><name>62.40.114.49/32</name></prefix-list-item><prefix-list-item><name>62.40.114.51/32</name></prefix-list-item><prefix-list-item><name>62.40.114.53/32</name></prefix-list-item><prefix-list-item><name>62.40.114.55/32</name></prefix-list-item><prefix-list-item><name>62.40.114.57/32</name></prefix-list-item><prefix-list-item><name>62.40.114.59/32</name></prefix-list-item><prefix-list-item><name>62.40.114.61/32</name></prefix-list-item><prefix-list-item><name>62.40.114.63/32</name></prefix-list-item><prefix-list-item><name>62.40.114.65/32</name></prefix-list-item><prefix-list-item><name>62.40.114.67/32</name></prefix-list-item><prefix-list-item><name>62.40.114.69/32</name></prefix-list-item><prefix-list-item><name>62.40.114.71/32</name></prefix-list-item><prefix-list-item><name>62.40.114.73/32</name></prefix-list-item><prefix-list-item><name>62.40.114.75/32</name></prefix-list-item><prefix-list-item><name>62.40.114.77/32</name></prefix-list-item><prefix-list-item><name>62.40.114.79/32</name></prefix-list-item><prefix-list-item><name>62.40.114.81/32</name></prefix-list-item><prefix-list-item><name>62.40.114.83/32</name></prefix-list-item><prefix-list-item><name>62.40.114.85/32</name></prefix-list-item><prefix-list-item><name>62.40.114.87/32</name></prefix-list-item><prefix-list-item><name>62.40.114.97/32</name></prefix-list-item><prefix-list-item><name>62.40.114.99/32</name></prefix-list-item><prefix-list-item><name>62.40.114.101/32</name></prefix-list-item><prefix-list-item><name>62.40.114.103/32</name></prefix-list-item><prefix-list-item><name>62.40.114.107/32</name></prefix-list-item><prefix-list-item><name>62.40.114.108/32</name></prefix-list-item><prefix-list-item><name>62.40.114.114/32</name></prefix-list-item><prefix-list-item><name>62.40.114.130/32</name></prefix-list-item><prefix-list-item><name>62.40.114.138/32</name></prefix-list-item><comment>/* requested Massimiliano Adamo */</comment><prefix-list-item><name>62.40.114.146/32</name></prefix-list-item><prefix-list-item><name>62.40.114.162/32</name></prefix-list-item><prefix-list-item><name>62.40.114.163/32</name></prefix-list-item><prefix-list-item><name>62.40.114.164/32</name></prefix-list-item><prefix-list-item><name>62.40.114.170/32</name></prefix-list-item><prefix-list-item><name>62.40.114.176/29</name></prefix-list-item><prefix-list-item><name>62.40.114.184/29</name></prefix-list-item><prefix-list-item><name>62.40.114.192/28</name></prefix-list-item><prefix-list-item><name>62.40.114.208/28</name></prefix-list-item><prefix-list-item><name>62.40.114.224/29</name></prefix-list-item><prefix-list-item><name>62.40.114.232/29</name></prefix-list-item><prefix-list-item><name>62.40.114.240/29</name></prefix-list-item><prefix-list-item><name>62.40.114.250/32</name></prefix-list-item><prefix-list-item><name>62.40.115.46/32</name></prefix-list-item><prefix-list-item><name>62.40.115.107/32</name></prefix-list-item><prefix-list-item><name>62.40.115.111/32</name></prefix-list-item><prefix-list-item><name>62.40.115.156/32</name></prefix-list-item><prefix-list-item><name>62.40.116.2/32</name></prefix-list-item><prefix-list-item><name>62.40.116.18/32</name></prefix-list-item><prefix-list-item><name>62.40.116.73/32</name></prefix-list-item><prefix-list-item><name>62.40.116.74/32</name></prefix-list-item><prefix-list-item><name>62.40.116.114/32</name></prefix-list-item><prefix-list-item><name>62.40.116.122/32</name></prefix-list-item><prefix-list-item><name>62.40.116.202/32</name></prefix-list-item><prefix-list-item><name>62.40.117.2/32</name></prefix-list-item><prefix-list-item><name>62.40.117.82/32</name></prefix-list-item><prefix-list-item><name>62.40.117.126/32</name></prefix-list-item><prefix-list-item><name>62.40.117.153/32</name></prefix-list-item><prefix-list-item><name>62.40.120.0/22</name></prefix-list-item><prefix-list-item><name>62.40.120.26/32</name></prefix-list-item><prefix-list-item><name>62.40.120.48/29</name></prefix-list-item><comment>/* TT#2016083134000549 pS LS testing instance access on port 8090 */</comment><prefix-list-item><name>62.40.120.50/32</name></prefix-list-item><prefix-list-item><name>62.40.120.66/32</name></prefix-list-item><prefix-list-item><name>62.40.120.67/32</name></prefix-list-item><prefix-list-item><name>62.40.121.240/29</name></prefix-list-item><prefix-list-item><name>62.40.122.92/32</name></prefix-list-item><prefix-list-item><name>62.40.122.110/32</name></prefix-list-item><prefix-list-item><name>62.40.122.201/32</name></prefix-list-item><prefix-list-item><name>62.40.123.26/32</name></prefix-list-item><prefix-list-item><name>62.40.123.92/32</name></prefix-list-item><prefix-list-item><name>62.40.123.97/32</name></prefix-list-item><prefix-list-item><name>62.40.123.101/32</name></prefix-list-item><prefix-list-item><name>62.40.123.114/32</name></prefix-list-item><prefix-list-item><name>62.40.123.139/32</name></prefix-list-item><prefix-list-item><name>62.40.123.142/32</name></prefix-list-item><prefix-list-item><name>62.40.123.149/32</name></prefix-list-item><prefix-list-item><name>62.40.123.151/32</name></prefix-list-item><prefix-list-item><name>62.40.123.210/32</name></prefix-list-item><prefix-list-item><name>62.40.123.218/32</name></prefix-list-item><prefix-list-item><name>62.40.123.226/32</name></prefix-list-item><prefix-list-item><name>62.40.123.234/32</name></prefix-list-item><prefix-list-item><name>62.40.123.235/32</name></prefix-list-item><prefix-list-item><name>62.40.123.242/32</name></prefix-list-item><prefix-list-item><name>62.40.123.250/32</name></prefix-list-item><prefix-list-item><name>62.40.125.254/32</name></prefix-list-item><prefix-list-item><name>62.40.126.0/24</name></prefix-list-item><prefix-list-item><name>62.40.126.155/32</name></prefix-list-item><prefix-list-item><name>62.40.126.163/32</name></prefix-list-item><prefix-list-item><name>62.40.126.171/32</name></prefix-list-item><prefix-list-item><name>62.40.126.179/32</name></prefix-list-item><prefix-list-item><name>62.40.126.187/32</name></prefix-list-item><prefix-list-item><name>62.40.126.189/32</name></prefix-list-item><prefix-list-item><name>62.40.126.191/32</name></prefix-list-item><prefix-list-item><name>62.40.126.193/32</name></prefix-list-item><prefix-list-item><name>62.40.126.195/32</name></prefix-list-item><prefix-list-item><name>62.40.126.197/32</name></prefix-list-item><prefix-list-item><name>62.40.127.0/24</name></prefix-list-item><prefix-list-item><name>62.40.127.32/31</name></prefix-list-item><prefix-list-item><name>83.97.88.190/32</name></prefix-list-item><prefix-list-item><name>83.97.89.64/26</name></prefix-list-item><prefix-list-item><name>83.97.89.128/26</name></prefix-list-item><prefix-list-item><name>83.97.92.0/22</name></prefix-list-item><prefix-list-item><name>83.97.92.245/32</name></prefix-list-item><prefix-list-item><name>83.97.92.246/32</name></prefix-list-item><prefix-list-item><name>83.97.93.51/32</name></prefix-list-item><prefix-list-item><name>83.97.93.61/32</name></prefix-list-item></prefix-list><prefix-list><name>external-project-interfaces</name><prefix-list-item><name>62.40.100.160/32</name></prefix-list-item><prefix-list-item><name>62.40.100.162/32</name></prefix-list-item><prefix-list-item><name>62.40.100.169/32</name></prefix-list-item><prefix-list-item><name>62.40.100.209/32</name></prefix-list-item><prefix-list-item><name>62.40.104.20/32</name></prefix-list-item><prefix-list-item><name>62.40.104.224/32</name></prefix-list-item><prefix-list-item><name>62.40.104.226/32</name></prefix-list-item><prefix-list-item><name>62.40.106.17/32</name></prefix-list-item><prefix-list-item><name>62.40.106.25/32</name></prefix-list-item><prefix-list-item><name>62.40.106.33/32</name></prefix-list-item><prefix-list-item><name>62.40.106.41/32</name></prefix-list-item><prefix-list-item><name>62.40.106.57/32</name></prefix-list-item><prefix-list-item><name>62.40.106.60/32</name></prefix-list-item><prefix-list-item><name>62.40.106.62/32</name></prefix-list-item><prefix-list-item><name>62.40.106.65/32</name></prefix-list-item><prefix-list-item><name>62.40.106.113/32</name></prefix-list-item><prefix-list-item><name>62.40.106.121/32</name></prefix-list-item><prefix-list-item><name>62.40.106.174/32</name></prefix-list-item><prefix-list-item><name>62.40.106.178/32</name></prefix-list-item><prefix-list-item><name>62.40.107.213/32</name></prefix-list-item><prefix-list-item><name>62.40.108.1/32</name></prefix-list-item><prefix-list-item><name>62.40.108.5/32</name></prefix-list-item><prefix-list-item><name>62.40.108.9/32</name></prefix-list-item><prefix-list-item><name>62.40.108.33/32</name></prefix-list-item><prefix-list-item><name>62.40.108.57/32</name></prefix-list-item><prefix-list-item><name>62.40.108.65/32</name></prefix-list-item><prefix-list-item><name>62.40.108.73/32</name></prefix-list-item><prefix-list-item><name>62.40.108.81/32</name></prefix-list-item><prefix-list-item><name>62.40.108.89/32</name></prefix-list-item><prefix-list-item><name>62.40.108.97/32</name></prefix-list-item><prefix-list-item><name>62.40.109.65/32</name></prefix-list-item><prefix-list-item><name>62.40.110.1/32</name></prefix-list-item><prefix-list-item><name>62.40.113.56/32</name></prefix-list-item><prefix-list-item><name>62.40.114.1/32</name></prefix-list-item><prefix-list-item><name>62.40.114.102/32</name></prefix-list-item><prefix-list-item><name>62.40.114.177/32</name></prefix-list-item><prefix-list-item><name>62.40.114.185/32</name></prefix-list-item><prefix-list-item><name>62.40.114.193/32</name></prefix-list-item><prefix-list-item><name>62.40.114.209/32</name></prefix-list-item><prefix-list-item><name>62.40.114.225/32</name></prefix-list-item><prefix-list-item><name>62.40.114.233/32</name></prefix-list-item><prefix-list-item><name>62.40.114.241/32</name></prefix-list-item><prefix-list-item><name>62.40.120.25/32</name></prefix-list-item><prefix-list-item><name>62.40.120.33/32</name></prefix-list-item><prefix-list-item><name>62.40.120.41/32</name></prefix-list-item><prefix-list-item><name>62.40.120.65/32</name></prefix-list-item><prefix-list-item><name>62.40.120.97/32</name></prefix-list-item><prefix-list-item><name>62.40.121.1/32</name></prefix-list-item><prefix-list-item><name>62.40.121.5/32</name></prefix-list-item><prefix-list-item><name>62.40.121.9/32</name></prefix-list-item><prefix-list-item><name>62.40.121.13/32</name></prefix-list-item><prefix-list-item><name>62.40.121.17/32</name></prefix-list-item><prefix-list-item><name>62.40.121.21/32</name></prefix-list-item><prefix-list-item><name>62.40.121.25/32</name></prefix-list-item><prefix-list-item><name>62.40.121.29/32</name></prefix-list-item><prefix-list-item><name>62.40.121.33/32</name></prefix-list-item><prefix-list-item><name>62.40.121.37/32</name></prefix-list-item><prefix-list-item><name>62.40.121.41/32</name></prefix-list-item><prefix-list-item><name>62.40.121.45/32</name></prefix-list-item><prefix-list-item><name>62.40.121.49/32</name></prefix-list-item><prefix-list-item><name>62.40.121.53/32</name></prefix-list-item><prefix-list-item><name>62.40.121.57/32</name></prefix-list-item><prefix-list-item><name>62.40.121.61/32</name></prefix-list-item><prefix-list-item><name>62.40.121.65/32</name></prefix-list-item><prefix-list-item><name>62.40.121.69/32</name></prefix-list-item><prefix-list-item><name>62.40.121.73/32</name></prefix-list-item><prefix-list-item><name>62.40.121.77/32</name></prefix-list-item><prefix-list-item><name>62.40.121.81/32</name></prefix-list-item><prefix-list-item><name>62.40.121.101/32</name></prefix-list-item><prefix-list-item><name>62.40.121.105/32</name></prefix-list-item><prefix-list-item><name>62.40.121.241/32</name></prefix-list-item><prefix-list-item><name>62.40.122.1/32</name></prefix-list-item><prefix-list-item><name>62.40.122.9/32</name></prefix-list-item><prefix-list-item><name>62.40.122.17/32</name></prefix-list-item><prefix-list-item><name>62.40.122.25/32</name></prefix-list-item><prefix-list-item><name>62.40.122.33/32</name></prefix-list-item><prefix-list-item><name>62.40.122.49/32</name></prefix-list-item><prefix-list-item><name>62.40.122.57/32</name></prefix-list-item><prefix-list-item><name>62.40.122.65/32</name></prefix-list-item><prefix-list-item><name>62.40.122.73/32</name></prefix-list-item><prefix-list-item><name>62.40.122.81/32</name></prefix-list-item><prefix-list-item><name>62.40.122.89/32</name></prefix-list-item><prefix-list-item><name>62.40.122.97/32</name></prefix-list-item><prefix-list-item><name>62.40.122.105/32</name></prefix-list-item><prefix-list-item><name>62.40.122.113/32</name></prefix-list-item><prefix-list-item><name>62.40.122.121/32</name></prefix-list-item><prefix-list-item><name>62.40.122.129/32</name></prefix-list-item><prefix-list-item><name>62.40.122.145/32</name></prefix-list-item><prefix-list-item><name>62.40.122.153/32</name></prefix-list-item><prefix-list-item><name>62.40.122.169/32</name></prefix-list-item><prefix-list-item><name>62.40.122.185/32</name></prefix-list-item><prefix-list-item><name>62.40.122.193/32</name></prefix-list-item><prefix-list-item><name>62.40.123.1/32</name></prefix-list-item><prefix-list-item><name>62.40.123.9/32</name></prefix-list-item><prefix-list-item><name>62.40.123.18/32</name></prefix-list-item><prefix-list-item><name>62.40.123.141/32</name></prefix-list-item><prefix-list-item><name>62.40.123.148/32</name></prefix-list-item><prefix-list-item><name>62.40.123.150/32</name></prefix-list-item><prefix-list-item><name>62.40.123.209/32</name></prefix-list-item><prefix-list-item><name>62.40.123.217/32</name></prefix-list-item><prefix-list-item><name>62.40.123.225/32</name></prefix-list-item><prefix-list-item><name>62.40.123.233/32</name></prefix-list-item><prefix-list-item><name>62.40.123.241/32</name></prefix-list-item><prefix-list-item><name>62.40.123.249/32</name></prefix-list-item><prefix-list-item><name>62.40.126.9/32</name></prefix-list-item></prefix-list><prefix-list><name>external-project-interfaces6</name><prefix-list-item><name>::/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::b9/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::bd/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::c1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::cd/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:5::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:d::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:33::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:35::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:36::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:37::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:38::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:39::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:3a::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:41::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:42::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:49::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:dd:3::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:dd:7::1/128</name></prefix-list-item></prefix-list><prefix-list><name>external-project6</name><prefix-list-item><name>2001:798:1:1::/64</name></prefix-list-item><prefix-list-item><name>2001:798:1:2::/64</name></prefix-list-item><prefix-list-item><name>2001:798:2::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:2:1::2/128</name></prefix-list-item><prefix-list-item><name>2001:0798:0002:284d::/64</name></prefix-list-item><prefix-list-item><name>2001:798:2:284d::/128</name></prefix-list-item><prefix-list-item><name>2001:798:2:284d::60/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::/64</name></prefix-list-item><prefix-list-item><name>2001:798:3::103/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::104/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::10a/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::10b/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::147/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::151/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:1::/64</name></prefix-list-item><prefix-list-item><name>2001:798:4:2::/64</name></prefix-list-item><prefix-list-item><name>2001:798:4:3::/64</name></prefix-list-item><prefix-list-item><name>2001:798:4:3::d/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:5::/64</name></prefix-list-item><prefix-list-item><name>2001:798:4:6::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:6::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:6::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:6::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:8::/64</name></prefix-list-item><prefix-list-item><name>2001:798:11::/64</name></prefix-list-item><prefix-list-item><name>2001:798:14:96::/64</name></prefix-list-item><prefix-list-item><name>2001:798:14:aa::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:14:aa::3/128</name></prefix-list-item><prefix-list-item><name>2001:0798:14:c8::/64</name></prefix-list-item><prefix-list-item><name>2001:0798:18:96::/64</name></prefix-list-item><prefix-list-item><name>2001:0798:18:99::/64</name></prefix-list-item><prefix-list-item><name>2001:798:22:16::0/64</name></prefix-list-item><prefix-list-item><name>2001:798:28:50::11/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:59::7/128</name></prefix-list-item><prefix-list-item><name>2001:798:28:99::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::16/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::1a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::1b/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::1c/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::22/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::26/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::2a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::2e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::32/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::33/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::36/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::38/126</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::3a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::3e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::42/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::46/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::4a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::4e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::52/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::56/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::5a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::5e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::62/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::66/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::6a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::6e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::72/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::76/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::7a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::7e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::82/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::86/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::8a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::8e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::92/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::96/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::9a/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::9e/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::a2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::a6/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::aa/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::ae/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::b2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::ba/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::be/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::c2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::ce/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::d2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::d6/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2::da/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:5::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:c::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:c::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:d::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:1a::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:1b::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:1e::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:1e::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:1e::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:23::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:25::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:25::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2a::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2a::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2b::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2b::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2e::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2e::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:2f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:33::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:34::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:34::3/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:34::4/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:35::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:36::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:37::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:38::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:39::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:3a::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:41::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:42::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:43::/64</name></prefix-list-item><prefix-list-item><name>2001:798:bb:49::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:4d::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:dd:3::0/64</name></prefix-list-item><prefix-list-item><name>2001:798:dd:7::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ee:b::42/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:b::46/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:10::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:21::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ee:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::52/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::56/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::5a/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::5e/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::62/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::66/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::6a/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::6e/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::72/128</name></prefix-list-item><prefix-list-item><name>2001:798:111:1::76/128</name></prefix-list-item><prefix-list-item><name>2001:798:2001::/48</name></prefix-list-item><prefix-list-item><name>2001:798:2002::/48</name></prefix-list-item><prefix-list-item><name>2001:798:2012:47::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:f27a:10::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f27a:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f27a:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f27a:28::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f27a:2d::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f99a:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f9a1:10::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f9a2:10::/64</name></prefix-list-item><prefix-list-item><name>2001:798:f9a3:28::0/125</name></prefix-list-item><prefix-list-item><name>2001:798:fa78:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa78:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa78:28::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa78:2d01::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa78:2d02::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:10::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:28::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:2d01::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fa79:2d02::/64</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:10::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:10::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:12::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:12::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:13::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:13::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:14::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:14::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:14::a/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:16::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:16::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:17::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:17::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:18::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:18::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:19::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:19::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1b::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1b::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1e::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1e::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:1f::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:21::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:21::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:22::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:22::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:23::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:23::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:28::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:28::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:2b::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:2b::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:2c::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:fc00:2c::6/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff10:a5::/64</name></prefix-list-item><prefix-list-item><name>2001:0798:ff10:00a5::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff17:11::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff23:28::2/128</name></prefix-list-item><comment>/* TT#2016083134000549 pS LS testing instance access on port 8090 */</comment><prefix-list-item><name>2001:798:ff32:2e::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff98:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ff9b:18::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ff9b:22::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ff9d:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ff9e:10::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ff9e:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ff9e:28::/64</name></prefix-list-item><prefix-list-item><name>2001:798:ffa4:14::0/64</name></prefix-list-item><prefix-list-item><name>2001:799:1::3/128</name></prefix-list-item><prefix-list-item><name>2001:799:cb2::/48</name></prefix-list-item></prefix-list><prefix-list><name>geant-address-space</name><prefix-list-item><name>62.40.96.0/19</name></prefix-list-item></prefix-list><prefix-list><name>geant-address-space-V6</name><prefix-list-item><name>2001:798::/32</name></prefix-list-item></prefix-list><prefix-list><name>geant-address-space-short</name><prefix-list-item><name>62.40.96.0/24</name></prefix-list-item><prefix-list-item><name>62.40.98.0/23</name></prefix-list-item><prefix-list-item><name>62.40.99.0/29</name></prefix-list-item><prefix-list-item><name>62.40.100.0/24</name></prefix-list-item><prefix-list-item><name>62.40.102.0/24</name></prefix-list-item><prefix-list-item><name>62.40.104.40/29</name></prefix-list-item><prefix-list-item><name>62.40.104.120/29</name></prefix-list-item><prefix-list-item><name>62.40.106.202/32</name></prefix-list-item><prefix-list-item><name>62.40.109.16/29</name></prefix-list-item><prefix-list-item><name>62.40.111.27/32</name></prefix-list-item><prefix-list-item><name>62.40.114.0/23</name></prefix-list-item><prefix-list-item><name>62.40.116.0/23</name></prefix-list-item><prefix-list-item><name>62.40.118.0/24</name></prefix-list-item><prefix-list-item><name>64.40.109.16/29</name></prefix-list-item><prefix-list-item><name>64.40.112.0/22</name></prefix-list-item><prefix-list-item><name>64.40.116.0/23</name></prefix-list-item></prefix-list><prefix-list><name>geant-anycast</name><prefix-list-item><name>192.33.14.0/24</name></prefix-list-item><prefix-list-item><name>192.58.128.0/24</name></prefix-list-item><prefix-list-item><name>194.0.1.0/24</name></prefix-list-item><prefix-list-item><name>194.0.2.0/24</name></prefix-list-item></prefix-list><prefix-list><name>geant-anycast-v6</name><prefix-list-item><name>2001:678:4::/48</name></prefix-list-item><prefix-list-item><name>2001:678:5::/48</name></prefix-list-item></prefix-list><prefix-list><name>geant-routers</name><prefix-list-item><name>62.40.96.0/23</name></prefix-list-item></prefix-list><prefix-list><name>geantncc-address-space</name><comment>/* NCC DR VPN */</comment><prefix-list-item><name>62.40.108.192/27</name></prefix-list-item><prefix-list-item><name>62.40.125.250/32</name></prefix-list-item></prefix-list><prefix-list><name>geantnoc-address-space-v6</name></prefix-list><prefix-list><name>geantnoc-address-space6</name></prefix-list><prefix-list><name>ncc-oob-address-space</name><prefix-list-item><name>172.16.5.252/30</name></prefix-list-item><prefix-list-item><name>172.16.14.0/24</name></prefix-list-item></prefix-list><prefix-list><name>nmteam-dev-servers</name><prefix-list-item><name>62.40.106.202/32</name></prefix-list-item><prefix-list-item><name>62.40.111.253/32</name></prefix-list-item><prefix-list-item><name>62.40.111.254/32</name></prefix-list-item><prefix-list-item><name>62.40.120.12/32</name></prefix-list-item><prefix-list-item><name>83.97.94.182/32</name></prefix-list-item></prefix-list><prefix-list><name>nren-access</name><prefix-list-item><name>62.40.96.11/32</name></prefix-list-item><prefix-list-item><name>62.40.110.2/32</name></prefix-list-item><prefix-list-item><name>62.40.124.22/32</name></prefix-list-item><prefix-list-item><name>62.40.124.89/32</name></prefix-list-item><prefix-list-item><name>62.40.124.141/32</name></prefix-list-item><prefix-list-item><name>80.94.160.0/26</name></prefix-list-item><prefix-list-item><name>81.180.250.128/26</name></prefix-list-item><prefix-list-item><name>82.116.200.194/32</name></prefix-list-item><prefix-list-item><name>83.212.9.70/32</name></prefix-list-item><prefix-list-item><name>85.254.248.15/32</name></prefix-list-item><prefix-list-item><name>85.254.248.34/32</name></prefix-list-item><prefix-list-item><name>109.105.113.42/32</name></prefix-list-item><prefix-list-item><name>109.105.113.85/32</name></prefix-list-item><prefix-list-item><name>128.139.197.70/32</name></prefix-list-item><prefix-list-item><name>128.139.202.17/32</name></prefix-list-item><prefix-list-item><name>128.139.229.249/32</name></prefix-list-item><prefix-list-item><name>130.59.0.0/16</name></prefix-list-item><prefix-list-item><name>130.59.211.0/24</name></prefix-list-item><prefix-list-item><name>130.206.6.0/27</name></prefix-list-item><prefix-list-item><name>141.85.128.0/26</name></prefix-list-item><prefix-list-item><name>150.254.160.38/32</name></prefix-list-item><prefix-list-item><name>158.64.1.128/25</name></prefix-list-item><prefix-list-item><name>158.64.15.0/24</name></prefix-list-item><prefix-list-item><name>192.65.185.0/24</name></prefix-list-item><prefix-list-item><name>193.1.192.160/27</name></prefix-list-item><prefix-list-item><name>193.1.219.0/24</name></prefix-list-item><prefix-list-item><name>193.1.228.0/24</name></prefix-list-item><prefix-list-item><name>193.1.231.128/25</name></prefix-list-item><prefix-list-item><name>193.1.247.0/25</name></prefix-list-item><prefix-list-item><name>193.1.248.0/25</name></prefix-list-item><prefix-list-item><name>193.1.249.0/25</name></prefix-list-item><prefix-list-item><name>193.1.250.0/25</name></prefix-list-item><prefix-list-item><name>193.2.18.160/27</name></prefix-list-item><prefix-list-item><name>193.136.7.96/27</name></prefix-list-item><prefix-list-item><name>193.136.44.0/24</name></prefix-list-item><prefix-list-item><name>193.136.46.0/24</name></prefix-list-item><prefix-list-item><name>193.174.247.0/24</name></prefix-list-item><prefix-list-item><name>193.188.32.211/32</name></prefix-list-item><prefix-list-item><name>193.206.158.0/24</name></prefix-list-item><prefix-list-item><name>193.231.140.0/29</name></prefix-list-item><prefix-list-item><name>194.42.9.200/32</name></prefix-list-item><prefix-list-item><name>194.42.9.252/32</name></prefix-list-item><prefix-list-item><name>194.141.0.0/24</name></prefix-list-item><prefix-list-item><name>194.141.251.0/24</name></prefix-list-item><prefix-list-item><name>194.160.23.0/27</name></prefix-list-item><prefix-list-item><name>194.177.210.213/32</name></prefix-list-item><prefix-list-item><name>194.177.211.163/32</name></prefix-list-item><prefix-list-item><name>194.177.211.179/32</name></prefix-list-item><prefix-list-item><name>195.98.238.194/32</name></prefix-list-item><prefix-list-item><name>195.113.228.0/24</name></prefix-list-item><prefix-list-item><name>195.178.64.0/28</name></prefix-list-item><prefix-list-item><name>195.251.27.7/32</name></prefix-list-item><prefix-list-item><name>2001:660:3001:4019::194/128</name></prefix-list-item><prefix-list-item><name>2001:770:18::/48</name></prefix-list-item><prefix-list-item><name>2001:770:1c::/48</name></prefix-list-item><prefix-list-item><name>2001:770:f0:10::/64</name></prefix-list-item><prefix-list-item><name>2001:770:400::/48</name></prefix-list-item><prefix-list-item><name>2001:798:19:10aa::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:19:20ff::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:1e:10aa::5/128</name></prefix-list-item><prefix-list-item><name>2001:948:4:2::42/128</name></prefix-list-item><prefix-list-item><name>2001:948:4:3::85/128</name></prefix-list-item><prefix-list-item><name>2001:b30:1::/64</name></prefix-list-item><prefix-list-item><name>2001:b30:1:140::/64</name></prefix-list-item><prefix-list-item><name>fe80::21d:b500:64d6:127a/128</name></prefix-list-item><prefix-list-item><name>fe80::21d:b5ff:fe69:893d/128</name></prefix-list-item></prefix-list><prefix-list><name>pref-list-router-access</name><prefix-list-item><name>62.40.106.232/29</name></prefix-list-item><prefix-list-item><name>62.40.120.72/29</name></prefix-list-item><prefix-list-item><name>62.40.121.102/32</name></prefix-list-item><prefix-list-item><name>128.139.197.70/32</name></prefix-list-item><prefix-list-item><name>128.139.227.249/32</name></prefix-list-item><prefix-list-item><name>130.104.230.45/32</name></prefix-list-item><prefix-list-item><name>139.165.223.48/32</name></prefix-list-item><prefix-list-item><name>193.136.7.100/32</name></prefix-list-item></prefix-list><prefix-list><name>renater-access</name><prefix-list-item><name>195.98.238.194/32</name></prefix-list-item><prefix-list-item><name>2001:660:3001:4019::194/128</name></prefix-list-item></prefix-list><prefix-list><name>restena-access</name><prefix-list-item><name>158.64.1.128/25</name></prefix-list-item><prefix-list-item><name>158.64.15.0/24</name></prefix-list-item></prefix-list><prefix-list><name>restena-access-v6</name><prefix-list-item><name>2001:a18:1:4::/64</name></prefix-list-item><prefix-list-item><name>2001:a18:1:8::/64</name></prefix-list-item><prefix-list-item><name>2001:a18:1:40::/60</name></prefix-list-item><prefix-list-item><name>2001:a18:1:1000::/52</name></prefix-list-item><prefix-list-item><name>2004:a18:1:4::/64</name></prefix-list-item><prefix-list-item><name>2004:a18:1:8::/64</name></prefix-list-item><prefix-list-item><name>2004:a18:1:40::/60</name></prefix-list-item><prefix-list-item><name>2004:a18:1:1000::/52</name></prefix-list-item></prefix-list><prefix-list><name>space-local</name><prefix-list-item><name>127.0.0.1/32</name></prefix-list-item></prefix-list><prefix-list><name>vuln-scanner</name><prefix-list-item><name>83.97.93.49/32</name></prefix-list-item><prefix-list-item><name>2001:798:3::145/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-JUNOSSPACE</name><prefix-list-item><name>62.40.113.90/32</name></prefix-list-item><prefix-list-item><name>62.40.120.18/32</name></prefix-list-item></prefix-list><prefix-list><name>geant-ias-address-space</name><prefix-list-item><name>83.97.88.0/21</name></prefix-list-item></prefix-list><prefix-list><name>geant-ias-address-space-V6</name><prefix-list-item><name>2001:798:1::/48</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DNS-V6</name><prefix-list-item><name>2001:798:2:284d::30/128</name></prefix-list-item><prefix-list-item><name>2001:798:bb:4d::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:10::2/128</name></prefix-list-item></prefix-list><prefix-list><name>route-from-ARN</name><prefix-list-item><name>192.52.232.0/24</name></prefix-list-item><prefix-list-item><name>192.245.148.0/24</name></prefix-list-item><prefix-list-item><name>193.194.64.0/19</name></prefix-list-item><prefix-list-item><name>193.194.64.0/24</name></prefix-list-item><prefix-list-item><name>193.194.65.0/24</name></prefix-list-item><prefix-list-item><name>193.194.66.0/24</name></prefix-list-item><prefix-list-item><name>193.194.67.0/24</name></prefix-list-item><prefix-list-item><name>193.194.68.0/24</name></prefix-list-item><prefix-list-item><name>193.194.69.0/24</name></prefix-list-item><prefix-list-item><name>193.194.70.0/24</name></prefix-list-item><prefix-list-item><name>193.194.71.0/24</name></prefix-list-item><prefix-list-item><name>193.194.72.0/24</name></prefix-list-item><prefix-list-item><name>193.194.73.0/24</name></prefix-list-item><prefix-list-item><name>193.194.74.0/24</name></prefix-list-item><prefix-list-item><name>193.194.75.0/24</name></prefix-list-item><prefix-list-item><name>193.194.76.0/24</name></prefix-list-item><prefix-list-item><name>193.194.77.0/24</name></prefix-list-item><prefix-list-item><name>193.194.78.0/24</name></prefix-list-item><prefix-list-item><name>193.194.79.0/24</name></prefix-list-item><prefix-list-item><name>193.194.80.0/24</name></prefix-list-item><prefix-list-item><name>193.194.81.0/24</name></prefix-list-item><prefix-list-item><name>193.194.82.0/24</name></prefix-list-item><prefix-list-item><name>193.194.84.0/24</name></prefix-list-item><prefix-list-item><name>193.194.85.0/24</name></prefix-list-item><prefix-list-item><name>193.194.86.0/24</name></prefix-list-item><prefix-list-item><name>193.194.87.0/24</name></prefix-list-item><prefix-list-item><name>193.194.88.0/24</name></prefix-list-item><prefix-list-item><name>193.194.89.0/24</name></prefix-list-item><prefix-list-item><name>193.194.90.0/24</name></prefix-list-item><prefix-list-item><name>193.194.91.0/24</name></prefix-list-item><prefix-list-item><name>193.194.92.0/24</name></prefix-list-item><prefix-list-item><name>193.194.93.0/24</name></prefix-list-item><prefix-list-item><name>193.194.94.0/24</name></prefix-list-item><prefix-list-item><name>193.194.95.0/24</name></prefix-list-item></prefix-list><prefix-list><name>route-from-ARN-v6</name><prefix-list-item><name>2001:4340::/32</name></prefix-list-item></prefix-list><prefix-list><name>RE_BGP_inet</name><apply-path>protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>RE_BGP_inet6</name><apply-path>protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>IAS_BGP_inet</name><apply-path>routing-instances IAS protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>IAS_BGP_inet6</name><apply-path>routing-instances IAS protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>CLS_BGP_inet</name><apply-path>routing-instances CLS protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>CLS_BGP_inet6</name><apply-path>routing-instances CLS protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>IAS_DUMMY_BGP_inet</name><apply-path>routing-instances IAS_DUMMY protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>IAS_DUMMY_BGP_inet6</name><apply-path>routing-instances IAS_DUMMY protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>lhcone-l3vpn_BGP_inet</name><apply-path>routing-instances lhcone-l3vpn protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>lhcone-l3vpn_BGP_inet6</name><apply-path>routing-instances lhcone-l3vpn protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>taas-control_BGP_inet</name><apply-path>routing-instances taas-control protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>taas-control_BGP_inet6</name><apply-path>routing-instances taas-control protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>mgmt-l3vpn_BGP_inet</name><apply-path>routing-instances mgmt-l3vpn protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>mgmt-l3vpn_BGP_inet6</name><apply-path>routing-instances mgmt-l3vpn protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>mdvpn_BGP_inet</name><apply-path>routing-instances mdvpn protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>mdvpn_BGP_inet6</name><apply-path>routing-instances mdvpn protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>mdvpn-nren-gn_BGP_inet</name><apply-path>routing-instances mdvpn-nren-gn protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>mdvpn-nren-gn_BGP_inet6</name><apply-path>routing-instances mdvpn-nren-gn protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>confine-l3vpn_BGP_inet</name><apply-path>routing-instances confine-l3vpn protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>confine-l3vpn_BGP_inet6</name><apply-path>routing-instances confine-l3vpn protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>VPN-PROXY_BGP_inet</name><apply-path>logical-systems VPN-PROXY protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>VPN-PROXY_BGP_inet6</name><apply-path>logical-systems VPN-PROXY protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>VRR_BGP_inet</name><apply-path>logical-systems VRR protocols bgp group <*> neighbor <*.*></apply-path></prefix-list><prefix-list><name>VRR_BGP_inet6</name><apply-path>logical-systems VRR protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>geant-cameras</name><prefix-list-item><name>62.40.115.250/32</name></prefix-list-item><prefix-list-item><name>62.40.116.64/29</name></prefix-list-item><prefix-list-item><name>62.40.116.128/28</name></prefix-list-item><prefix-list-item><name>62.40.116.144/29</name></prefix-list-item><prefix-list-item><name>62.40.116.152/29</name></prefix-list-item><prefix-list-item><name>62.40.116.160/29</name></prefix-list-item><prefix-list-item><name>62.40.116.168/29</name></prefix-list-item><prefix-list-item><name>62.40.117.32/29</name></prefix-list-item><prefix-list-item><name>62.40.118.16/28</name></prefix-list-item></prefix-list><prefix-list><name>xantaro-address-space</name><prefix-list-item><name>213.86.104.34/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT_NTP</name><prefix-list-item><name>62.40.97.11/32</name></prefix-list-item><prefix-list-item><name>62.40.97.12/32</name></prefix-list-item><prefix-list-item><name>62.40.97.14/32</name></prefix-list-item><prefix-list-item><name>62.40.123.21/32</name></prefix-list-item><prefix-list-item><name>62.40.123.23/32</name></prefix-list-item><prefix-list-item><name>62.40.123.103/32</name></prefix-list-item></prefix-list><prefix-list><name>route-from-REDIRIS-v6</name><prefix-list-item><name>2001:500:62::/48</name></prefix-list-item><prefix-list-item><name>2001:678:4::/47</name></prefix-list-item><prefix-list-item><name>2001:678:4::/48</name></prefix-list-item><prefix-list-item><name>2001:678:5::/48</name></prefix-list-item><prefix-list-item><name>2001:678:40::/48</name></prefix-list-item><prefix-list-item><name>2001:678:44::/48</name></prefix-list-item><prefix-list-item><name>2001:678:508::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1148::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:137c::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:21cc::/48</name></prefix-list-item><prefix-list-item><name>2001:720::/32</name></prefix-list-item><prefix-list-item><name>2001:7f8:2a::/48</name></prefix-list-item><prefix-list-item><name>2001:40b0::/32</name></prefix-list-item><prefix-list-item><name>2620:7d:e000::/48</name></prefix-list-item><prefix-list-item><name>2a00:93c0::/32</name></prefix-list-item><prefix-list-item><name>2a00:9ac0::/32</name></prefix-list-item><prefix-list-item><name>2a01:250::/32</name></prefix-list-item><prefix-list-item><name>2a01:250:f000::/36</name></prefix-list-item><prefix-list-item><name>2a01:250:f000::/40</name></prefix-list-item><prefix-list-item><name>2a01:250:f800::/40</name></prefix-list-item><prefix-list-item><name>2a01:250:ff00::/40</name></prefix-list-item><prefix-list-item><name>2a01:4a80::/32</name></prefix-list-item><prefix-list-item><name>2a02:2cc0::/32</name></prefix-list-item><prefix-list-item><name>2a02:ad80::/29</name></prefix-list-item><prefix-list-item><name>2a03:44a0:100::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:300::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:400::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:401::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:410::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:411::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:412::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:420::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:421::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:422::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:423::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:424::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:430::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:440::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:441::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:450::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:451::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:452::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:453::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:454::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:455::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:460::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:461::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:462::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:463::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:464::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:470::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:471::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:472::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:473::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:474::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:475::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:480::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:481::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:482::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:483::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:490::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:491::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:492::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:4a0::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:4a1::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:4a2::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:4a3::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:4b1::/48</name></prefix-list-item><prefix-list-item><name>2a03:44a0:4b2::/48</name></prefix-list-item><prefix-list-item><name>2a03:a320::/32</name></prefix-list-item><prefix-list-item><name>2a0a:8480::/32</name></prefix-list-item></prefix-list><prefix-list><name>route-from-RedIRIS</name><prefix-list-item><name>31.3.112.0/21</name></prefix-list-item><prefix-list-item><name>62.204.192.0/19</name></prefix-list-item><prefix-list-item><name>74.116.176.0/22</name></prefix-list-item><prefix-list-item><name>80.73.144.0/20</name></prefix-list-item><prefix-list-item><name>80.73.144.0/21</name></prefix-list-item><prefix-list-item><name>80.73.152.0/23</name></prefix-list-item><prefix-list-item><name>80.73.154.0/23</name></prefix-list-item><prefix-list-item><name>80.73.156.0/22</name></prefix-list-item><prefix-list-item><name>80.73.159.0/24</name></prefix-list-item><prefix-list-item><name>81.89.32.0/20</name></prefix-list-item><prefix-list-item><name>81.89.32.0/24</name></prefix-list-item><prefix-list-item><name>84.88.0.0/16</name></prefix-list-item><prefix-list-item><name>84.89.0.0/18</name></prefix-list-item><prefix-list-item><name>84.89.0.0/19</name></prefix-list-item><prefix-list-item><name>84.89.128.0/17</name></prefix-list-item><prefix-list-item><name>85.119.192.0/21</name></prefix-list-item><prefix-list-item><name>85.119.192.0/22</name></prefix-list-item><prefix-list-item><name>85.119.196.0/24</name></prefix-list-item><prefix-list-item><name>91.208.95.0/24</name></prefix-list-item><prefix-list-item><name>91.213.30.0/24</name></prefix-list-item><prefix-list-item><name>91.216.12.0/24</name></prefix-list-item><prefix-list-item><name>93.188.48.0/22</name></prefix-list-item><prefix-list-item><name>93.188.52.0/22</name></prefix-list-item><prefix-list-item><name>130.206.0.0/16</name></prefix-list-item><prefix-list-item><name>131.176.0.0/16</name></prefix-list-item><prefix-list-item><name>131.176.0.0/24</name></prefix-list-item><prefix-list-item><name>131.176.1.0/24</name></prefix-list-item><prefix-list-item><name>131.176.2.0/23</name></prefix-list-item><prefix-list-item><name>131.176.4.0/22</name></prefix-list-item><prefix-list-item><name>131.176.8.0/21</name></prefix-list-item><prefix-list-item><name>131.176.16.0/20</name></prefix-list-item><prefix-list-item><name>131.176.32.0/20</name></prefix-list-item><prefix-list-item><name>131.176.43.0/24</name></prefix-list-item><prefix-list-item><name>131.176.48.0/23</name></prefix-list-item><prefix-list-item><name>131.176.50.0/24</name></prefix-list-item><prefix-list-item><name>131.176.53.0/24</name></prefix-list-item><prefix-list-item><name>131.176.54.0/24</name></prefix-list-item><prefix-list-item><name>131.176.56.0/24</name></prefix-list-item><prefix-list-item><name>131.176.60.0/24</name></prefix-list-item><prefix-list-item><name>131.176.61.0/24</name></prefix-list-item><prefix-list-item><name>131.176.63.0/24</name></prefix-list-item><prefix-list-item><name>131.176.67.0/24</name></prefix-list-item><prefix-list-item><name>131.176.72.0/24</name></prefix-list-item><prefix-list-item><name>131.176.75.0/24</name></prefix-list-item><prefix-list-item><name>131.176.79.0/24</name></prefix-list-item><prefix-list-item><name>131.176.80.0/24</name></prefix-list-item><prefix-list-item><name>131.176.81.0/24</name></prefix-list-item><prefix-list-item><name>131.176.86.0/24</name></prefix-list-item><prefix-list-item><name>131.176.92.0/24</name></prefix-list-item><prefix-list-item><name>131.176.95.0/24</name></prefix-list-item><prefix-list-item><name>131.176.96.0/24</name></prefix-list-item><prefix-list-item><name>131.176.102.0/24</name></prefix-list-item><prefix-list-item><name>131.176.103.0/24</name></prefix-list-item><prefix-list-item><name>131.176.105.0/24</name></prefix-list-item><prefix-list-item><name>131.176.106.0/23</name></prefix-list-item><prefix-list-item><name>131.176.108.0/24</name></prefix-list-item><prefix-list-item><name>131.176.118.0/24</name></prefix-list-item><prefix-list-item><name>131.176.123.0/24</name></prefix-list-item><prefix-list-item><name>131.176.126.0/24</name></prefix-list-item><prefix-list-item><name>131.176.128.0/24</name></prefix-list-item><prefix-list-item><name>131.176.136.0/24</name></prefix-list-item><prefix-list-item><name>131.176.137.0/24</name></prefix-list-item><prefix-list-item><name>131.176.138.0/24</name></prefix-list-item><prefix-list-item><name>131.176.139.0/24</name></prefix-list-item><prefix-list-item><name>131.176.141.0/24</name></prefix-list-item><prefix-list-item><name>131.176.143.0/24</name></prefix-list-item><prefix-list-item><name>131.176.144.0/24</name></prefix-list-item><prefix-list-item><name>131.176.145.0/24</name></prefix-list-item><prefix-list-item><name>131.176.146.0/24</name></prefix-list-item><prefix-list-item><name>131.176.147.0/24</name></prefix-list-item><prefix-list-item><name>131.176.148.0/24</name></prefix-list-item><prefix-list-item><name>131.176.149.0/24</name></prefix-list-item><prefix-list-item><name>131.176.151.0/24</name></prefix-list-item><prefix-list-item><name>131.176.152.0/24</name></prefix-list-item><prefix-list-item><name>131.176.154.0/24</name></prefix-list-item><prefix-list-item><name>131.176.160.0/24</name></prefix-list-item><prefix-list-item><name>131.176.161.0/24</name></prefix-list-item><prefix-list-item><name>131.176.162.0/24</name></prefix-list-item><prefix-list-item><name>131.176.163.0/24</name></prefix-list-item><prefix-list-item><name>131.176.164.0/23</name></prefix-list-item><prefix-list-item><name>131.176.166.0/24</name></prefix-list-item><prefix-list-item><name>131.176.167.0/24</name></prefix-list-item><prefix-list-item><name>131.176.168.0/23</name></prefix-list-item><prefix-list-item><name>131.176.168.0/24</name></prefix-list-item><prefix-list-item><name>131.176.169.0/24</name></prefix-list-item><prefix-list-item><name>131.176.170.0/24</name></prefix-list-item><prefix-list-item><name>131.176.171.0/24</name></prefix-list-item><prefix-list-item><name>131.176.173.0/24</name></prefix-list-item><prefix-list-item><name>131.176.174.0/23</name></prefix-list-item><prefix-list-item><name>131.176.176.0/21</name></prefix-list-item><prefix-list-item><name>131.176.184.0/23</name></prefix-list-item><prefix-list-item><name>131.176.186.0/24</name></prefix-list-item><prefix-list-item><name>131.176.188.0/24</name></prefix-list-item><prefix-list-item><name>131.176.190.0/24</name></prefix-list-item><prefix-list-item><name>131.176.192.0/24</name></prefix-list-item><prefix-list-item><name>131.176.194.0/24</name></prefix-list-item><prefix-list-item><name>131.176.195.0/24</name></prefix-list-item><prefix-list-item><name>131.176.196.0/23</name></prefix-list-item><prefix-list-item><name>131.176.198.0/24</name></prefix-list-item><prefix-list-item><name>131.176.199.0/24</name></prefix-list-item><prefix-list-item><name>131.176.201.0/24</name></prefix-list-item><prefix-list-item><name>131.176.202.0/24</name></prefix-list-item><prefix-list-item><name>131.176.203.0/24</name></prefix-list-item><prefix-list-item><name>131.176.204.0/24</name></prefix-list-item><prefix-list-item><name>131.176.205.0/24</name></prefix-list-item><prefix-list-item><name>131.176.206.0/24</name></prefix-list-item><prefix-list-item><name>131.176.207.0/24</name></prefix-list-item><prefix-list-item><name>131.176.208.0/24</name></prefix-list-item><prefix-list-item><name>131.176.209.0/24</name></prefix-list-item><prefix-list-item><name>131.176.210.0/24</name></prefix-list-item><prefix-list-item><name>131.176.213.0/24</name></prefix-list-item><prefix-list-item><name>131.176.214.0/24</name></prefix-list-item><prefix-list-item><name>131.176.215.0/24</name></prefix-list-item><prefix-list-item><name>131.176.216.0/24</name></prefix-list-item><prefix-list-item><name>131.176.217.0/24</name></prefix-list-item><prefix-list-item><name>131.176.218.0/23</name></prefix-list-item><prefix-list-item><name>131.176.220.0/22</name></prefix-list-item><prefix-list-item><name>131.176.224.0/24</name></prefix-list-item><prefix-list-item><name>131.176.226.0/23</name></prefix-list-item><prefix-list-item><name>131.176.228.0/23</name></prefix-list-item><prefix-list-item><name>131.176.230.0/24</name></prefix-list-item><prefix-list-item><name>131.176.232.0/24</name></prefix-list-item><prefix-list-item><name>131.176.233.0/24</name></prefix-list-item><prefix-list-item><name>131.176.234.0/24</name></prefix-list-item><prefix-list-item><name>131.176.235.0/24</name></prefix-list-item><prefix-list-item><name>131.176.237.0/24</name></prefix-list-item><prefix-list-item><name>131.176.239.0/24</name></prefix-list-item><prefix-list-item><name>131.176.243.0/24</name></prefix-list-item><prefix-list-item><name>131.176.252.0/24</name></prefix-list-item><prefix-list-item><name>131.176.253.0/24</name></prefix-list-item><prefix-list-item><name>131.176.254.0/24</name></prefix-list-item><prefix-list-item><name>131.176.255.0/24</name></prefix-list-item><prefix-list-item><name>138.4.0.0/16</name></prefix-list-item><prefix-list-item><name>138.100.0.0/16</name></prefix-list-item><prefix-list-item><name>139.191.152.0/21</name></prefix-list-item><prefix-list-item><name>147.83.0.0/16</name></prefix-list-item><prefix-list-item><name>147.96.0.0/16</name></prefix-list-item><prefix-list-item><name>147.156.0.0/16</name></prefix-list-item><prefix-list-item><name>150.128.0.0/16</name></prefix-list-item><prefix-list-item><name>150.214.0.0/16</name></prefix-list-item><prefix-list-item><name>150.241.0.0/16</name></prefix-list-item><prefix-list-item><name>150.241.128.0/17</name></prefix-list-item><prefix-list-item><name>150.244.0.0/16</name></prefix-list-item><prefix-list-item><name>155.54.0.0/16</name></prefix-list-item><prefix-list-item><name>155.210.0.0/16</name></prefix-list-item><prefix-list-item><name>156.35.0.0/16</name></prefix-list-item><prefix-list-item><name>157.88.0.0/16</name></prefix-list-item><prefix-list-item><name>158.42.0.0/16</name></prefix-list-item><prefix-list-item><name>158.49.0.0/16</name></prefix-list-item><prefix-list-item><name>158.99.0.0/16</name></prefix-list-item><prefix-list-item><name>158.109.0.0/16</name></prefix-list-item><prefix-list-item><name>158.227.0.0/16</name></prefix-list-item><prefix-list-item><name>159.237.0.0/16</name></prefix-list-item><prefix-list-item><name>161.67.0.0/16</name></prefix-list-item><prefix-list-item><name>161.72.0.0/16</name></prefix-list-item><prefix-list-item><name>161.111.0.0/16</name></prefix-list-item><prefix-list-item><name>161.116.0.0/16</name></prefix-list-item><prefix-list-item><name>163.117.0.0/16</name></prefix-list-item><prefix-list-item><name>176.12.80.0/21</name></prefix-list-item><prefix-list-item><name>176.12.80.0/22</name></prefix-list-item><prefix-list-item><name>176.12.80.0/23</name></prefix-list-item><prefix-list-item><name>176.12.82.0/23</name></prefix-list-item><prefix-list-item><name>176.12.84.0/23</name></prefix-list-item><prefix-list-item><name>176.12.86.0/23</name></prefix-list-item><prefix-list-item><name>178.255.104.0/23</name></prefix-list-item><prefix-list-item><name>185.12.104.0/22</name></prefix-list-item><prefix-list-item><name>185.73.172.0/24</name></prefix-list-item><prefix-list-item><name>185.73.173.0/24</name></prefix-list-item><prefix-list-item><name>185.73.174.0/24</name></prefix-list-item><prefix-list-item><name>185.73.175.0/24</name></prefix-list-item><prefix-list-item><name>185.132.136.0/22</name></prefix-list-item><prefix-list-item><name>185.132.136.0/23</name></prefix-list-item><prefix-list-item><name>185.132.138.0/23</name></prefix-list-item><prefix-list-item><name>185.179.104.0/22</name></prefix-list-item><prefix-list-item><name>185.190.240.0/22</name></prefix-list-item><prefix-list-item><name>185.197.88.0/22</name></prefix-list-item><prefix-list-item><name>185.197.244.0/22</name></prefix-list-item><prefix-list-item><name>185.197.244.0/23</name></prefix-list-item><prefix-list-item><name>185.197.246.0/23</name></prefix-list-item><prefix-list-item><name>185.205.148.0/22</name></prefix-list-item><prefix-list-item><name>185.209.100.0/24</name></prefix-list-item><prefix-list-item><name>192.94.163.0/24</name></prefix-list-item><prefix-list-item><name>192.101.161.0/24</name></prefix-list-item><prefix-list-item><name>192.101.162.0/24</name></prefix-list-item><prefix-list-item><name>192.101.163.0/24</name></prefix-list-item><prefix-list-item><name>192.101.164.0/22</name></prefix-list-item><prefix-list-item><name>192.101.168.0/24</name></prefix-list-item><prefix-list-item><name>192.106.252.0/24</name></prefix-list-item><prefix-list-item><name>192.112.247.0/24</name></prefix-list-item><prefix-list-item><name>192.146.124.0/23</name></prefix-list-item><prefix-list-item><name>192.146.126.0/24</name></prefix-list-item><prefix-list-item><name>192.147.251.0/24</name></prefix-list-item><prefix-list-item><name>192.148.201.0/24</name></prefix-list-item><prefix-list-item><name>192.148.202.0/23</name></prefix-list-item><prefix-list-item><name>192.148.204.0/22</name></prefix-list-item><prefix-list-item><name>192.148.208.0/24</name></prefix-list-item><prefix-list-item><name>192.148.209.0/24</name></prefix-list-item><prefix-list-item><name>192.148.210.0/24</name></prefix-list-item><prefix-list-item><name>192.148.211.0/24</name></prefix-list-item><prefix-list-item><name>192.148.212.0/24</name></prefix-list-item><prefix-list-item><name>192.148.213.0/24</name></prefix-list-item><prefix-list-item><name>192.148.214.0/24</name></prefix-list-item><prefix-list-item><name>192.148.215.0/24</name></prefix-list-item><prefix-list-item><name>192.171.1.0/24</name></prefix-list-item><prefix-list-item><name>192.171.2.0/24</name></prefix-list-item><prefix-list-item><name>192.171.3.0/24</name></prefix-list-item><prefix-list-item><name>192.171.4.0/24</name></prefix-list-item><prefix-list-item><name>192.171.5.0/24</name></prefix-list-item><prefix-list-item><name>192.187.16.0/24</name></prefix-list-item><prefix-list-item><name>192.187.17.0/24</name></prefix-list-item><prefix-list-item><name>192.187.18.0/24</name></prefix-list-item><prefix-list-item><name>192.187.19.0/24</name></prefix-list-item><prefix-list-item><name>192.187.20.0/24</name></prefix-list-item><prefix-list-item><name>192.187.21.0/24</name></prefix-list-item><prefix-list-item><name>192.187.22.0/24</name></prefix-list-item><prefix-list-item><name>192.187.23.0/24</name></prefix-list-item><prefix-list-item><name>192.187.24.0/23</name></prefix-list-item><prefix-list-item><name>192.243.16.0/22</name></prefix-list-item><prefix-list-item><name>193.109.172.0/22</name></prefix-list-item><prefix-list-item><name>193.144.0.0/14</name></prefix-list-item><prefix-list-item><name>193.203.200.0/23</name></prefix-list-item><prefix-list-item><name>193.223.78.0/24</name></prefix-list-item><prefix-list-item><name>193.242.98.0/24</name></prefix-list-item><prefix-list-item><name>194.0.1.0/24</name></prefix-list-item><prefix-list-item><name>194.0.2.0/24</name></prefix-list-item><prefix-list-item><name>194.0.33.0/24</name></prefix-list-item><prefix-list-item><name>194.0.34.0/24</name></prefix-list-item><prefix-list-item><name>194.69.254.0/24</name></prefix-list-item><prefix-list-item><name>194.180.184.0/22</name></prefix-list-item><prefix-list-item><name>195.10.201.0/24</name></prefix-list-item><prefix-list-item><name>195.57.163.0/24</name></prefix-list-item><prefix-list-item><name>195.66.150.0/24</name></prefix-list-item><prefix-list-item><name>195.66.151.0/24</name></prefix-list-item><prefix-list-item><name>195.234.59.0/24</name></prefix-list-item><prefix-list-item><name>195.254.148.0/24</name></prefix-list-item><prefix-list-item><name>195.254.149.0/24</name></prefix-list-item><prefix-list-item><name>198.32.64.0/24</name></prefix-list-item><prefix-list-item><name>199.6.5.0/24</name></prefix-list-item><prefix-list-item><name>212.128.0.0/18</name></prefix-list-item><prefix-list-item><name>212.128.64.0/19</name></prefix-list-item><prefix-list-item><name>212.128.96.0/22</name></prefix-list-item><prefix-list-item><name>212.128.100.0/24</name></prefix-list-item><prefix-list-item><name>212.128.101.0/24</name></prefix-list-item><prefix-list-item><name>212.128.102.0/24</name></prefix-list-item><prefix-list-item><name>212.128.103.0/24</name></prefix-list-item><prefix-list-item><name>212.128.104.0/24</name></prefix-list-item><prefix-list-item><name>212.128.105.0/24</name></prefix-list-item><prefix-list-item><name>212.128.106.0/24</name></prefix-list-item><prefix-list-item><name>212.128.107.0/24</name></prefix-list-item><prefix-list-item><name>212.128.108.0/24</name></prefix-list-item><prefix-list-item><name>212.128.109.0/24</name></prefix-list-item><prefix-list-item><name>212.128.110.0/24</name></prefix-list-item><prefix-list-item><name>212.128.111.0/24</name></prefix-list-item><prefix-list-item><name>212.128.112.0/22</name></prefix-list-item><prefix-list-item><name>212.128.116.0/23</name></prefix-list-item><prefix-list-item><name>212.128.118.0/24</name></prefix-list-item><prefix-list-item><name>212.128.119.0/24</name></prefix-list-item><prefix-list-item><name>212.128.120.0/24</name></prefix-list-item><prefix-list-item><name>212.128.121.0/24</name></prefix-list-item><prefix-list-item><name>212.128.122.0/24</name></prefix-list-item><prefix-list-item><name>212.128.123.0/24</name></prefix-list-item><prefix-list-item><name>212.128.124.0/24</name></prefix-list-item><prefix-list-item><name>212.128.125.0/24</name></prefix-list-item><prefix-list-item><name>212.128.126.0/24</name></prefix-list-item><prefix-list-item><name>212.128.127.0/24</name></prefix-list-item><prefix-list-item><name>212.128.128.0/17</name></prefix-list-item><prefix-list-item><name>213.73.32.0/19</name></prefix-list-item><prefix-list-item><name>217.9.24.0/22</name></prefix-list-item><prefix-list-item><name>217.9.24.0/23</name></prefix-list-item><prefix-list-item><name>217.9.24.0/24</name></prefix-list-item><prefix-list-item><name>217.9.25.0/24</name></prefix-list-item><prefix-list-item><name>217.9.26.0/23</name></prefix-list-item><prefix-list-item><name>217.9.26.0/24</name></prefix-list-item><prefix-list-item><name>217.9.26.0/26</name></prefix-list-item><prefix-list-item><name>217.9.26.128/26</name></prefix-list-item><prefix-list-item><name>217.9.27.0/24</name></prefix-list-item><prefix-list-item><name>217.12.16.0/20</name></prefix-list-item><prefix-list-item><name>217.12.16.0/24</name></prefix-list-item><prefix-list-item><name>217.12.17.0/24</name></prefix-list-item><prefix-list-item><name>217.12.18.0/24</name></prefix-list-item><prefix-list-item><name>217.12.19.0/24</name></prefix-list-item><prefix-list-item><name>217.12.20.0/22</name></prefix-list-item><prefix-list-item><name>217.12.24.0/21</name></prefix-list-item><prefix-list-item><name>217.12.24.0/22</name></prefix-list-item><prefix-list-item><name>217.12.24.0/24</name></prefix-list-item><prefix-list-item><name>217.12.25.0/24</name></prefix-list-item><prefix-list-item><name>217.12.26.0/24</name></prefix-list-item><prefix-list-item><name>217.12.27.0/24</name></prefix-list-item><prefix-list-item><name>217.12.28.0/22</name></prefix-list-item><prefix-list-item><name>217.12.28.0/24</name></prefix-list-item><prefix-list-item><name>217.12.29.0/24</name></prefix-list-item><prefix-list-item><name>217.12.30.0/24</name></prefix-list-item><prefix-list-item><name>217.12.31.0/24</name></prefix-list-item><prefix-list-item><name>217.71.16.0/21</name></prefix-list-item><prefix-list-item><name>217.71.24.0/23</name></prefix-list-item><prefix-list-item><name>217.75.241.0/24</name></prefix-list-item></prefix-list><prefix-list><name>route-from-RedIRIS-special</name><prefix-list-item><name>80.73.144.0/21</name></prefix-list-item><prefix-list-item><name>80.73.152.0/23</name></prefix-list-item><prefix-list-item><name>80.73.156.0/22</name></prefix-list-item></prefix-list><prefix-list><name>route-from-RedIRIS-V6-special</name><prefix-list-item><name>2a01:250:f000::/36</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DNS-EXT</name><prefix-list-item><name>62.40.104.250/32</name></prefix-list-item><prefix-list-item><name>62.40.116.114/32</name></prefix-list-item><prefix-list-item><name>62.40.116.122/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT_RADIUS</name><prefix-list-item><name>62.40.120.136/32</name></prefix-list-item><prefix-list-item><name>62.40.121.121/32</name></prefix-list-item><prefix-list-item><name>83.97.94.129/32</name></prefix-list-item><prefix-list-item><name>83.97.94.130/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT_TS</name><prefix-list-item><name>37.60.197.172/32</name></prefix-list-item><prefix-list-item><name>37.99.193.133/32</name></prefix-list-item><prefix-list-item><name>37.110.198.18/32</name></prefix-list-item><prefix-list-item><name>37.128.230.54/32</name></prefix-list-item><prefix-list-item><name>77.67.62.162/32</name></prefix-list-item><prefix-list-item><name>80.53.141.6/32</name></prefix-list-item><prefix-list-item><name>80.66.38.102/32</name></prefix-list-item><prefix-list-item><name>80.94.48.178/32</name></prefix-list-item><prefix-list-item><name>80.233.128.123/32</name></prefix-list-item><prefix-list-item><name>81.90.60.129/32</name></prefix-list-item><prefix-list-item><name>81.92.227.208/32</name></prefix-list-item><prefix-list-item><name>83.212.7.45/32</name></prefix-list-item><prefix-list-item><name>84.207.244.154/32</name></prefix-list-item><prefix-list-item><name>88.205.100.10/32</name></prefix-list-item><prefix-list-item><name>93.117.248.110/32</name></prefix-list-item><prefix-list-item><name>148.6.201.1/32</name></prefix-list-item><prefix-list-item><name>178.250.208.26/32</name></prefix-list-item><prefix-list-item><name>185.19.234.122/32</name></prefix-list-item><prefix-list-item><name>188.129.6.114/32</name></prefix-list-item><prefix-list-item><name>193.1.200.34/32</name></prefix-list-item><prefix-list-item><name>193.1.200.38/32</name></prefix-list-item><prefix-list-item><name>193.2.41.166/32</name></prefix-list-item><prefix-list-item><name>193.40.132.26/32</name></prefix-list-item><prefix-list-item><name>193.219.152.6/32</name></prefix-list-item><prefix-list-item><name>195.111.111.46/32</name></prefix-list-item><prefix-list-item><name>195.178.64.230/32</name></prefix-list-item><prefix-list-item><name>212.3.238.70/32</name></prefix-list-item><prefix-list-item><name>213.191.204.166/32</name></prefix-list-item><prefix-list-item><name>217.15.33.76/32</name></prefix-list-item><prefix-list-item><name>217.20.33.202/32</name></prefix-list-item><prefix-list-item><name>217.20.45.74/32</name></prefix-list-item><prefix-list-item><name>217.29.76.21/32</name></prefix-list-item></prefix-list><prefix-list><name>Infinera-DNA-servers</name><prefix-list-item><name>62.40.99.106/32</name></prefix-list-item><prefix-list-item><name>62.40.99.110/32</name></prefix-list-item><prefix-list-item><name>62.40.99.114/32</name></prefix-list-item><prefix-list-item><name>62.40.113.182/32</name></prefix-list-item><prefix-list-item><name>62.40.123.2/32</name></prefix-list-item></prefix-list><prefix-list><name>infinera-atc</name><prefix-list-item><name>62.40.106.86/32</name></prefix-list-item><prefix-list-item><name>62.40.113.75/32</name></prefix-list-item></prefix-list><prefix-list><name>deepfield-support</name><prefix-list-item><name>107.21.96.169/32</name></prefix-list-item></prefix-list><prefix-list><name>deepfield-servers</name></prefix-list><prefix-list><name>imerja-external</name><prefix-list-item><name>94.199.232.57/32</name></prefix-list-item><prefix-list-item><name>94.199.234.36/32</name></prefix-list-item><prefix-list-item><name>94.199.236.1/32</name></prefix-list-item><prefix-list-item><name>94.199.239.1/32</name></prefix-list-item><prefix-list-item><name>94.199.239.66/32</name></prefix-list-item></prefix-list><prefix-list><name>dashboard-vm</name><prefix-list-item><name>62.40.104.48/29</name></prefix-list-item><prefix-list-item><name>62.40.104.152/29</name></prefix-list-item><prefix-list-item><name>62.40.113.96/29</name></prefix-list-item><prefix-list-item><name>62.40.114.0/28</name></prefix-list-item><prefix-list-item><name>62.40.114.16/28</name></prefix-list-item><prefix-list-item><name>62.40.123.80/29</name></prefix-list-item></prefix-list><prefix-list><name>router-loopbacks</name><prefix-list-item><name>62.40.96.0/24</name></prefix-list-item><prefix-list-item><name>62.40.97.0/24</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-MSDP</name><apply-path>protocols msdp group <*> peer <*></apply-path></prefix-list><prefix-list><name>GEANT-SNMP</name><apply-path>snmp community <*> clients <*></apply-path></prefix-list><prefix-list><name>GEANT-LDP</name><apply-path>protocols l2circuit neighbor <*></apply-path></prefix-list><prefix-list><name>ddos-scrubbing</name><prefix-list-item><name>62.40.100.178/32</name></prefix-list-item><prefix-list-item><name>83.97.92.41/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-lg</name><prefix-list-item><name>83.97.92.82/32</name></prefix-list-item><prefix-list-item><name>83.97.92.141/32</name></prefix-list-item><prefix-list-item><name>83.97.93.39/32</name></prefix-list-item><prefix-list-item><name>83.97.93.62/32</name></prefix-list-item><prefix-list-item><name>83.97.93.63/32</name></prefix-list-item><prefix-list-item><name>83.97.94.134/32</name></prefix-list-item><prefix-list-item><name>83.97.94.135/32</name></prefix-list-item><prefix-list-item><name>83.97.94.136/32</name></prefix-list-item><prefix-list-item><name>83.97.94.137/32</name></prefix-list-item><prefix-list-item><name>83.97.94.138/32</name></prefix-list-item><prefix-list-item><name>83.97.94.139/32</name></prefix-list-item><prefix-list-item><name>2001:798:3::25c/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::25d/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::25e/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::25f/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::260/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::261/128</name></prefix-list-item></prefix-list><prefix-list><name>dashboard-servers</name><prefix-list-item><name>62.40.104.48/29</name></prefix-list-item><prefix-list-item><name>62.40.104.152/29</name></prefix-list-item><prefix-list-item><name>62.40.114.0/28</name></prefix-list-item><prefix-list-item><name>62.40.114.16/28</name></prefix-list-item></prefix-list><prefix-list><name>geantncc-address-space-v6</name><prefix-list-item><name>2001:798:28:10aa::22/128</name></prefix-list-item><prefix-list-item><name>2001:798:dd:1::/64</name></prefix-list-item><prefix-list-item><name>2001:799::/32</name></prefix-list-item></prefix-list><prefix-list><name>nmteam-dev-servers-v6</name><prefix-list-item><name>2001:799:7::fe/128</name></prefix-list-item></prefix-list><prefix-list><name>nren-access-v6</name><prefix-list-item><name>2001:660:3001:4019::194/128</name></prefix-list-item><prefix-list-item><name>2001:770:18::/48</name></prefix-list-item><prefix-list-item><name>2001:770:1c::/48</name></prefix-list-item><prefix-list-item><name>2001:770:f0:10::/64</name></prefix-list-item><prefix-list-item><name>2001:770:400::/48</name></prefix-list-item><prefix-list-item><name>2001:798:19:10aa::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:19:20ff::1/128</name></prefix-list-item><prefix-list-item><name>2001:798:1e:10aa::5/128</name></prefix-list-item><prefix-list-item><name>2001:948:4:2::42/128</name></prefix-list-item><prefix-list-item><name>2001:948:4:3::85/128</name></prefix-list-item><prefix-list-item><name>2001:b30:1::/64</name></prefix-list-item><prefix-list-item><name>2001:b30:1:140::/64</name></prefix-list-item><prefix-list-item><name>fe80::21d:b500:64d6:127a/128</name></prefix-list-item><prefix-list-item><name>fe80::21d:b5ff:fe69:893d/128</name></prefix-list-item></prefix-list><prefix-list><name>vuln-scanner-v6</name><prefix-list-item><name>2001:798:bb:5::2/128</name></prefix-list-item></prefix-list><prefix-list><name>renater-access-v6</name><prefix-list-item><name>2001:660:3001:4019::194/128</name></prefix-list-item></prefix-list><prefix-list><name>pref-list-router-access-v6</name><prefix-list-item><name>2001:690:a00:2136:907::100/128</name></prefix-list-item><prefix-list-item><name>2001:798:15:a2::4/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-lg-v6</name><prefix-list-item><name>2001:798:3::6a/128</name></prefix-list-item></prefix-list><prefix-list><name>VPN-PROXY_RI_BGP_inet6</name><apply-path>logical-systems VPN-PROXY routing-instances <*> protocols bgp group <*> neighbor <*:*></apply-path></prefix-list><prefix-list><name>geant-routers-v6</name><prefix-list-item><name>2001:798:aa:1::/64</name></prefix-list-item></prefix-list><prefix-list><name>geant-address-space-v6</name><prefix-list-item><name>2001:798::/32</name></prefix-list-item></prefix-list><prefix-list><name>DANTE-CH-servers-v6</name><prefix-list-item><name>2001:630:280:60::/64</name></prefix-list-item><prefix-list-item><name>2001:630:280:61::/64</name></prefix-list-item><prefix-list-item><name>2001:630:280:104::/64</name></prefix-list-item></prefix-list><prefix-list><name>ddos-scrubbing-v6</name><prefix-list-item><name>2001:798:3::29/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-DNS-EXT-v6</name><prefix-list-item><name>2001:798:ee:f::2/128</name></prefix-list-item><prefix-list-item><name>2001:798:ee:10::2/128</name></prefix-list-item><prefix-list-item><name>2001:799:1::3/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-Superpop-v4</name><prefix-list-item><name>83.97.92.0/22</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-Superpop-v6</name><prefix-list-item><name>2001:798:3::/64</name></prefix-list-item></prefix-list><prefix-list><name>opennsa-servers</name><prefix-list-item><name>83.97.93.92/32</name></prefix-list-item></prefix-list><prefix-list><name>opennsa-servers-v6</name><prefix-list-item><name>2001:798:3::15f/128</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-rancid</name><comment>/* TEST */</comment><prefix-list-item><name>83.97.92.115/32</name></prefix-list-item><comment>/* UAT */</comment><prefix-list-item><name>83.97.92.142/32</name></prefix-list-item><comment>/* PROD */</comment><prefix-list-item><name>83.97.92.246/32</name></prefix-list-item></prefix-list><prefix-list><name>corporate-address-space6</name><prefix-list-item><name>2001:610:9d8::/62</name></prefix-list-item><prefix-list-item><name>2001:610:9d8:4::/62</name></prefix-list-item><prefix-list-item><name>2001:610:9d8:14::/64</name></prefix-list-item><prefix-list-item><name>2001:798:4::/48</name></prefix-list-item><prefix-list-item><name>2001:799:1::/64</name></prefix-list-item><prefix-list-item><name>2001:799:2::/64</name></prefix-list-item><prefix-list-item><name>2001:799:3::/64</name></prefix-list-item><prefix-list-item><name>2001:799:64::/56</name></prefix-list-item><prefix-list-item><name>2001:799:cb2::/56</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:100::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:101::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:102::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:103::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:104::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:108::/64</name></prefix-list-item><prefix-list-item><name>2001:799:cb2:110::/64</name></prefix-list-item></prefix-list><prefix-list><name>corporate-address-space</name><prefix-list-item><name>62.40.99.129/32</name></prefix-list-item><prefix-list-item><name>62.40.99.148/32</name></prefix-list-item><prefix-list-item><name>62.40.99.160/27</name></prefix-list-item><prefix-list-item><name>62.40.99.194/32</name></prefix-list-item><prefix-list-item><name>62.40.99.201/32</name></prefix-list-item><prefix-list-item><name>62.40.101.0/24</name></prefix-list-item><prefix-list-item><name>62.40.111.0/24</name></prefix-list-item><prefix-list-item><name>62.40.112.0/24</name></prefix-list-item><prefix-list-item><name>62.40.122.248/29</name></prefix-list-item><prefix-list-item><name>195.169.24.0/24</name></prefix-list-item></prefix-list><prefix-list><name>geant-ims</name><prefix-list-item><name>83.97.94.123/32</name></prefix-list-item><prefix-list-item><name>83.97.94.124/32</name></prefix-list-item><prefix-list-item><name>83.97.94.125/32</name></prefix-list-item><prefix-list-item><name>83.97.95.109/32</name></prefix-list-item></prefix-list><prefix-list><name>NE-Saltmaster-v4</name><prefix-list-item><name>83.97.93.58/32</name></prefix-list-item><prefix-list-item><name>83.97.94.150/32</name></prefix-list-item><prefix-list-item><name>83.97.94.151/32</name></prefix-list-item></prefix-list><prefix-list><name>NE-Saltmaster-v6</name><prefix-list-item><name>2001:798:3::14e/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::26b/128</name></prefix-list-item><prefix-list-item><name>2001:798:3::26c/128</name></prefix-list-item></prefix-list><prefix-list><name>VEEAM_PROXY</name><prefix-list-item><name>62.40.99.22/32</name></prefix-list-item><prefix-list-item><name>62.40.99.23/32</name></prefix-list-item><prefix-list-item><name>62.40.108.79/32</name></prefix-list-item><prefix-list-item><name>62.40.108.80/32</name></prefix-list-item><prefix-list-item><name>62.40.108.145/32</name></prefix-list-item><prefix-list-item><name>62.40.108.146/32</name></prefix-list-item></prefix-list><prefix-list><name>TWAMP_CLIENTS</name><apply-path>services rpm twamp server client-list <*> address <*.*></apply-path></prefix-list><prefix-list><name>MDVPN-SI-TOOLS-V4</name><prefix-list-item><name>83.97.93.234/32</name></prefix-list-item><prefix-list-item><name>83.97.95.48/32</name></prefix-list-item></prefix-list><prefix-list><name>MDVPN-SI-TOOLS-V6</name><prefix-list-item><name>2001:798:3::1cb/128</name></prefix-list-item><prefix-list-item><name>2001:798:4:3::2cb/128</name></prefix-list-item></prefix-list><prefix-list><name>FXP_SUBNET</name><apply-path>interfaces fxp0 unit 0 family inet address <*.*></apply-path></prefix-list><policy-statement><name>ASM-Allow</name><term><name>Bogon-Groups</name><from><route-filter><address>224.0.1.2/32</address><exact/></route-filter><route-filter><address>224.0.1.1/32</address><exact/></route-filter><route-filter><address>224.0.1.3/32</address><exact/></route-filter><route-filter><address>224.0.1.8/32</address><exact/></route-filter><route-filter><address>224.0.1.22/32</address><exact/></route-filter><route-filter><address>224.0.1.24/32</address><exact/></route-filter><route-filter><address>224.0.1.25/32</address><exact/></route-filter><route-filter><address>224.0.1.35/32</address><exact/></route-filter><route-filter><address>224.0.1.39/32</address><exact/></route-filter><route-filter><address>224.0.1.40/32</address><exact/></route-filter><route-filter><address>224.0.1.60/32</address><exact/></route-filter><route-filter><address>224.0.1.76/32</address><exact/></route-filter><route-filter><address>224.0.2.1/32</address><exact/></route-filter><route-filter><address>224.0.2.2/32</address><exact/></route-filter><route-filter><address>224.1.0.1/32</address><exact/></route-filter><route-filter><address>224.1.0.38/32</address><exact/></route-filter><route-filter><address>224.77.0.0/16</address><orlonger/></route-filter><route-filter><address>224.128.0.0/24</address><orlonger/></route-filter><route-filter><address>232.0.0.0/8</address><orlonger/></route-filter><route-filter><address>233.0.0.0/24</address><orlonger/></route-filter><route-filter><address>233.128.0.0/24</address><orlonger/></route-filter><route-filter><address>239.0.0.0/8</address><orlonger/></route-filter><route-filter><address>224.0.0.0/24</address><orlonger/></route-filter></from><then><trace/><reject/></then></term><term><name>ASM-Whitelist</name><from><route-filter><address>224.0.0.0/4</address><orlonger/></route-filter></from><then><accept/></then></term><term><name>Deny-Everything-Else</name><then><reject/></then></term></policy-statement><policy-statement><name>Bogon-Sources</name><term><name>RFC-1918-Addresses</name><from><source-address-filter><address>10.0.0.0/8</address><orlonger/></source-address-filter><source-address-filter><address>127.0.0.0/8</address><orlonger/></source-address-filter><source-address-filter><address>172.16.0.0/12</address><orlonger/></source-address-filter><source-address-filter><address>192.168.0.0/16</address><orlonger/></source-address-filter></from><then><reject/></then></term><term><name>accept-everything-else</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</name><term><name>BLEACH_PRIVATE_COMMUNITIES</name><then><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</name><term><name>GENERAL_ACCEPT</name><then><local-preference><local-preference>90</local-preference></local-preference><community><add/><community-name>INFO_PUBLIC_PEER_DE-CIX_MAR</community-name></community><community><add/><community-name>INFO_PUBLIC_PEER_MAR</community-name></community><community><add/><community-name>geant-peers</community-name></community><community><add/><community-name>geant-ixpeers</community-name></community><accept/></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS13030_Init7_Switzerland_Ltd</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS13335_Cloudflare</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS15133_VERIZON_DIGITAL_MEDIA_SERVICES,_Inc.</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS16509_Amazon.com</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS22822_Limelight_Networks</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS30844_Liquid_Telecommunications</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS31133_MegaFon</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS32934_Facebook</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS3303_Swisscom_Switzerland_Ltd</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS3856_Packet_Clearing_House</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS42_Packet_Clearing_House</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS46489_Twitch</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS6939_Hurricane_Electric</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS8075_Microsoft_Corporation</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</name><term><name>BLOCK_ALL_PUBLIC_PEERS</name><from><community>TE_BLOCK_ALL_PUBLIC_PEERS</community><community>TE_BLOCK_ALL_PUBLIC_PEERS_2</community><community>TE_BLOCK_ALL_PUBLIC_PEERS_3</community></from><then><reject/></then></term><term><name>BLOCK_THIS_IX</name><from><community>TE_BLOCK_DE-CIX_MAR</community><community>TE_BLOCK_LOCAL_IXES</community></from><then><reject/></then></term><term><name>PREPEND_ALL_PUBLIC_PEERSx1</name><from><community>TE_PREPEND_ALL_PUBLIC_PEERS_x1_PREPEND</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_ALL_PUBLIC_PEERSx2</name><from><community>TE_PREPEND_ALL_PUBLIC_PEERS_x2_PREPEND</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_ALL_PUBLIC_PEERSx3</name><from><community>TE_PREPEND_ALL_PUBLIC_PEERS_x3_PREPEND</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_ALL_PUBLIC_PEERSx6</name><from><community>TE_PREPEND_ALL_PUBLIC_PEERS_x6_PREPEND</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>AS20965_ROUTES</name><from><community>AS20965_ROUTES</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><as-path-expand><aspath>20965</aspath></as-path-expand><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</name><term><name>DEFAULT_REJECT</name><then><reject/></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS10310</community><community>TE_BLOCK_AS10310_2</community><community>TE_BLOCK_AS10310_DE-CIX-MRS</community><community>TE_BLOCK_AS10310_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS10310_x1_4byte</community><community>TE_PREPEND_AS10310_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS10310_x2_4byte</community><community>TE_PREPEND_AS10310_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS10310_x3_4byte</community><community>TE_PREPEND_AS10310_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS10310_x6_4byte</community><community>TE_PREPEND_AS10310_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS10310</community><community>TE_ANNOUNCE_AS10310_2</community><community>TE_ANNOUNCE_AS10310_3</community><community>TE_ANNOUNCE_AS10310_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS10310_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS10310_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS13030_Init7_Switzerland_Ltd</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS13030</community><community>TE_BLOCK_AS13030_2</community><community>TE_BLOCK_AS13030_DE-CIX-MRS</community><community>TE_BLOCK_AS13030_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS13030_x1_4byte</community><community>TE_PREPEND_AS13030_x1_2byte</community><community>TE_PREPEND_AS13030_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS13030_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS13030_x2_4byte</community><community>TE_PREPEND_AS13030_x2_2byte</community><community>TE_PREPEND_AS13030_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS13030_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS13030_x3_4byte</community><community>TE_PREPEND_AS13030_x3_2byte</community><community>TE_PREPEND_AS13030_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS13030_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS13030_x6_4byte</community><community>TE_PREPEND_AS13030_x6_2byte</community><community>TE_PREPEND_AS13030_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS13030_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS13030</community><community>TE_ANNOUNCE_AS13030_2</community><community>TE_ANNOUNCE_AS13030_3</community><community>TE_ANNOUNCE_AS13030_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS13030_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS13030_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS13335_Cloudflare</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS13335</community><community>TE_BLOCK_AS13335_2</community><community>TE_BLOCK_AS13335_DE-CIX-MRS</community><community>TE_BLOCK_AS13335_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS13335_x1_4byte</community><community>TE_PREPEND_AS13335_x1_2byte</community><community>TE_PREPEND_AS13335_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS13335_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS13335_x2_4byte</community><community>TE_PREPEND_AS13335_x2_2byte</community><community>TE_PREPEND_AS13335_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS13335_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS13335_x3_4byte</community><community>TE_PREPEND_AS13335_x3_2byte</community><community>TE_PREPEND_AS13335_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS13335_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS13335_x6_4byte</community><community>TE_PREPEND_AS13335_x6_2byte</community><community>TE_PREPEND_AS13335_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS13335_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS13335</community><community>TE_ANNOUNCE_AS13335_2</community><community>TE_ANNOUNCE_AS13335_3</community><community>TE_ANNOUNCE_AS13335_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS13335_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS13335_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS15133_VERIZON_DIGITAL_MEDIA_SERVICES,_Inc.</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS15133</community><community>TE_BLOCK_AS15133_2</community><community>TE_BLOCK_AS15133_DE-CIX-MRS</community><community>TE_BLOCK_AS15133_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS15133_x1_4byte</community><community>TE_PREPEND_AS15133_x1_2byte</community><community>TE_PREPEND_AS15133_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS15133_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS15133_x2_4byte</community><community>TE_PREPEND_AS15133_x2_2byte</community><community>TE_PREPEND_AS15133_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS15133_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS15133_x3_4byte</community><community>TE_PREPEND_AS15133_x3_2byte</community><community>TE_PREPEND_AS15133_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS15133_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS15133_x6_4byte</community><community>TE_PREPEND_AS15133_x6_2byte</community><community>TE_PREPEND_AS15133_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS15133_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS15133</community><community>TE_ANNOUNCE_AS15133_2</community><community>TE_ANNOUNCE_AS15133_3</community><community>TE_ANNOUNCE_AS15133_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS15133_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS15133_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS16509_Amazon.com</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS16509</community><community>TE_BLOCK_AS16509_2</community><community>TE_BLOCK_AS16509_DE-CIX-MRS</community><community>TE_BLOCK_AS16509_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS16509_x1_4byte</community><community>TE_PREPEND_AS16509_x1_2byte</community><community>TE_PREPEND_AS16509_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS16509_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS16509_x2_4byte</community><community>TE_PREPEND_AS16509_x2_2byte</community><community>TE_PREPEND_AS16509_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS16509_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS16509_x3_4byte</community><community>TE_PREPEND_AS16509_x3_2byte</community><community>TE_PREPEND_AS16509_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS16509_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS16509_x6_4byte</community><community>TE_PREPEND_AS16509_x6_2byte</community><community>TE_PREPEND_AS16509_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS16509_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS16509</community><community>TE_ANNOUNCE_AS16509_2</community><community>TE_ANNOUNCE_AS16509_3</community><community>TE_ANNOUNCE_AS16509_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS16509_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS16509_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS199524_2</community><community>TE_BLOCK_AS199524_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS199524_x1_4byte</community><community>TE_PREPEND_AS199524_DE-CIX-MRS_x1_4byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS199524_x2_4byte</community><community>TE_PREPEND_AS199524_DE-CIX-MRS_x2_4byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS199524_x3_4byte</community><community>TE_PREPEND_AS199524_DE-CIX-MRS_x3_4byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS199524_x6_4byte</community><community>TE_PREPEND_AS199524_DE-CIX-MRS_x6_4byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS199524_3</community><community>TE_ANNOUNCE_AS199524_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS199524_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS22822_Limelight_Networks</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS22822</community><community>TE_BLOCK_AS22822_2</community><community>TE_BLOCK_AS22822_DE-CIX-MRS</community><community>TE_BLOCK_AS22822_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS22822_x1_4byte</community><community>TE_PREPEND_AS22822_x1_2byte</community><community>TE_PREPEND_AS22822_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS22822_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS22822_x2_4byte</community><community>TE_PREPEND_AS22822_x2_2byte</community><community>TE_PREPEND_AS22822_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS22822_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS22822_x3_4byte</community><community>TE_PREPEND_AS22822_x3_2byte</community><community>TE_PREPEND_AS22822_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS22822_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS22822_x6_4byte</community><community>TE_PREPEND_AS22822_x6_2byte</community><community>TE_PREPEND_AS22822_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS22822_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS22822</community><community>TE_ANNOUNCE_AS22822_2</community><community>TE_ANNOUNCE_AS22822_3</community><community>TE_ANNOUNCE_AS22822_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS22822_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS22822_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS30844_Liquid_Telecommunications</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS30844</community><community>TE_BLOCK_AS30844_2</community><community>TE_BLOCK_AS30844_DE-CIX-MRS</community><community>TE_BLOCK_AS30844_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS30844_x1_4byte</community><community>TE_PREPEND_AS30844_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS30844_x2_4byte</community><community>TE_PREPEND_AS30844_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS30844_x3_4byte</community><community>TE_PREPEND_AS30844_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS30844_x6_4byte</community><community>TE_PREPEND_AS30844_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS30844</community><community>TE_ANNOUNCE_AS30844_2</community><community>TE_ANNOUNCE_AS30844_3</community><community>TE_ANNOUNCE_AS30844_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS30844_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS30844_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS31133_MegaFon</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS31133</community><community>TE_BLOCK_AS31133_2</community><community>TE_BLOCK_AS31133_DE-CIX-MRS</community><community>TE_BLOCK_AS31133_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS31133_x1_4byte</community><community>TE_PREPEND_AS31133_x1_2byte</community><community>TE_PREPEND_AS31133_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS31133_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS31133_x2_4byte</community><community>TE_PREPEND_AS31133_x2_2byte</community><community>TE_PREPEND_AS31133_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS31133_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS31133_x3_4byte</community><community>TE_PREPEND_AS31133_x3_2byte</community><community>TE_PREPEND_AS31133_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS31133_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS31133_x6_4byte</community><community>TE_PREPEND_AS31133_x6_2byte</community><community>TE_PREPEND_AS31133_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS31133_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS31133</community><community>TE_ANNOUNCE_AS31133_2</community><community>TE_ANNOUNCE_AS31133_3</community><community>TE_ANNOUNCE_AS31133_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS31133_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS31133_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS32934_Facebook</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS32934</community><community>TE_BLOCK_AS32934_2</community><community>TE_BLOCK_AS32934_DE-CIX-MRS</community><community>TE_BLOCK_AS32934_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS32934_x1_4byte</community><community>TE_PREPEND_AS32934_x1_2byte</community><community>TE_PREPEND_AS32934_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS32934_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS32934_x2_4byte</community><community>TE_PREPEND_AS32934_x2_2byte</community><community>TE_PREPEND_AS32934_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS32934_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS32934_x3_4byte</community><community>TE_PREPEND_AS32934_x3_2byte</community><community>TE_PREPEND_AS32934_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS32934_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS32934_x6_4byte</community><community>TE_PREPEND_AS32934_x6_2byte</community><community>TE_PREPEND_AS32934_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS32934_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS32934</community><community>TE_ANNOUNCE_AS32934_2</community><community>TE_ANNOUNCE_AS32934_3</community><community>TE_ANNOUNCE_AS32934_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS32934_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS32934_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS3303_Swisscom_Switzerland_Ltd</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS3303</community><community>TE_BLOCK_AS3303_2</community><community>TE_BLOCK_AS3303_DE-CIX-MRS</community><community>TE_BLOCK_AS3303_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS3303_x1_4byte</community><community>TE_PREPEND_AS3303_x1_2byte</community><community>TE_PREPEND_AS3303_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS3303_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS3303_x2_4byte</community><community>TE_PREPEND_AS3303_x2_2byte</community><community>TE_PREPEND_AS3303_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS3303_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS3303_x3_4byte</community><community>TE_PREPEND_AS3303_x3_2byte</community><community>TE_PREPEND_AS3303_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS3303_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS3303_x6_4byte</community><community>TE_PREPEND_AS3303_x6_2byte</community><community>TE_PREPEND_AS3303_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS3303_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS3303</community><community>TE_ANNOUNCE_AS3303_2</community><community>TE_ANNOUNCE_AS3303_3</community><community>TE_ANNOUNCE_AS3303_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS3303_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS3303_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS3856_Packet_Clearing_House</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS3856</community><community>TE_BLOCK_AS3856_2</community><community>TE_BLOCK_AS3856_DE-CIX-MRS</community><community>TE_BLOCK_AS3856_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS3856_x1_4byte</community><community>TE_PREPEND_AS3856_x1_2byte</community><community>TE_PREPEND_AS3856_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS3856_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS3856_x2_4byte</community><community>TE_PREPEND_AS3856_x2_2byte</community><community>TE_PREPEND_AS3856_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS3856_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS3856_x3_4byte</community><community>TE_PREPEND_AS3856_x3_2byte</community><community>TE_PREPEND_AS3856_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS3856_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS3856_x6_4byte</community><community>TE_PREPEND_AS3856_x6_2byte</community><community>TE_PREPEND_AS3856_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS3856_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS3856</community><community>TE_ANNOUNCE_AS3856_2</community><community>TE_ANNOUNCE_AS3856_3</community><community>TE_ANNOUNCE_AS3856_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS3856_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS3856_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS42_Packet_Clearing_House</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS42</community><community>TE_BLOCK_AS42_2</community><community>TE_BLOCK_AS42_DE-CIX-MRS</community><community>TE_BLOCK_AS42_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS42_x1_4byte</community><community>TE_PREPEND_AS42_x1_2byte</community><community>TE_PREPEND_AS42_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS42_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS42_x2_4byte</community><community>TE_PREPEND_AS42_x2_2byte</community><community>TE_PREPEND_AS42_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS42_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS42_x3_4byte</community><community>TE_PREPEND_AS42_x3_2byte</community><community>TE_PREPEND_AS42_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS42_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS42_x6_4byte</community><community>TE_PREPEND_AS42_x6_2byte</community><community>TE_PREPEND_AS42_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS42_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS42</community><community>TE_ANNOUNCE_AS42_2</community><community>TE_ANNOUNCE_AS42_3</community><community>TE_ANNOUNCE_AS42_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS42_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS42_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS46489_Twitch</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS46489</community><community>TE_BLOCK_AS46489_2</community><community>TE_BLOCK_AS46489_DE-CIX-MRS</community><community>TE_BLOCK_AS46489_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS46489_x1_4byte</community><community>TE_PREPEND_AS46489_x1_2byte</community><community>TE_PREPEND_AS46489_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS46489_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS46489_x2_4byte</community><community>TE_PREPEND_AS46489_x2_2byte</community><community>TE_PREPEND_AS46489_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS46489_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS46489_x3_4byte</community><community>TE_PREPEND_AS46489_x3_2byte</community><community>TE_PREPEND_AS46489_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS46489_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS46489_x6_4byte</community><community>TE_PREPEND_AS46489_x6_2byte</community><community>TE_PREPEND_AS46489_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS46489_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS46489</community><community>TE_ANNOUNCE_AS46489_2</community><community>TE_ANNOUNCE_AS46489_3</community><community>TE_ANNOUNCE_AS46489_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS46489_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS46489_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS6939_Hurricane_Electric</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS6939</community><community>TE_BLOCK_AS6939_2</community><community>TE_BLOCK_AS6939_DE-CIX-MRS</community><community>TE_BLOCK_AS6939_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS6939_x1_4byte</community><community>TE_PREPEND_AS6939_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS6939_x2_4byte</community><community>TE_PREPEND_AS6939_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS6939_x3_4byte</community><community>TE_PREPEND_AS6939_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS6939_x6_4byte</community><community>TE_PREPEND_AS6939_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS6939</community><community>TE_ANNOUNCE_AS6939_2</community><community>TE_ANNOUNCE_AS6939_3</community><community>TE_ANNOUNCE_AS6939_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS6939_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS6939_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS8075_Microsoft_Corporation</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS8075</community><community>TE_BLOCK_AS8075_2</community><community>TE_BLOCK_AS8075_DE-CIX-MRS</community><community>TE_BLOCK_AS8075_DE-CIX-MRS_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS8075_x1_4byte</community><community>TE_PREPEND_AS8075_x1_2byte</community><community>TE_PREPEND_AS8075_DE-CIX-MRS_x1_4byte</community><community>TE_PREPEND_AS8075_DE-CIX-MRS_x1_2byte</community></from><then><as-path-expand><aspath>21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS8075_x2_4byte</community><community>TE_PREPEND_AS8075_x2_2byte</community><community>TE_PREPEND_AS8075_DE-CIX-MRS_x2_4byte</community><community>TE_PREPEND_AS8075_DE-CIX-MRS_x2_2byte</community></from><then><as-path-expand><aspath>21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS8075_x3_4byte</community><community>TE_PREPEND_AS8075_x3_2byte</community><community>TE_PREPEND_AS8075_DE-CIX-MRS_x3_4byte</community><community>TE_PREPEND_AS8075_DE-CIX-MRS_x3_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320</aspath></as-path-expand></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS8075_x6_4byte</community><community>TE_PREPEND_AS8075_x6_2byte</community><community>TE_PREPEND_AS8075_DE-CIX-MRS_x6_4byte</community><community>TE_PREPEND_AS8075_DE-CIX-MRS_x6_2byte</community></from><then><as-path-expand><aspath>21320 21320 21320 21320 21320 21320</aspath></as-path-expand></then></term><term><name>ANNOUNCE</name><from><community>TE_ANNOUNCE_AS8075</community><community>TE_ANNOUNCE_AS8075_2</community><community>TE_ANNOUNCE_AS8075_3</community><community>TE_ANNOUNCE_AS8075_4</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS8075_DE-CIX-MRS</community><community>TE_ANNOUNCE_AS8075_DE-CIX-MRS_2</community></from><then><metric><igp> - </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>PS_TO_DEEPFIELD</name><term><name>BOGONS_REJECT</name><from><prefix-list><name>bogons-list</name></prefix-list></from><then><reject/></then></term><term><name>REDISTRIBUTE_CONNECTED</name><from><protocol>direct</protocol></from><then><community><add/><community-name>IGP_ROUTES_DEEPFIELD</community-name></community><accept/></then></term><term><name>BGP_ACCEPT</name><from><protocol>bgp</protocol></from><then><accept/></then></term><term><name>DEFAULT</name><then><reject/></then></term></policy-statement><policy-statement><name>accept-all-flowspec</name><then><accept/></then></policy-statement><policy-statement><name>dest-class-usage</name><term><name>DWS</name><from><community>geant-dws</community></from><then><destination-class>dws-in</destination-class></then></term><term><name>google-in</name><from><community>geant-google</community></from><then><destination-class>google-in</destination-class></then></term><term><name>ixpeers-in</name><from><community>geant-ixpeers</community></from><then><destination-class>ixpeers-in</destination-class></then></term></policy-statement><policy-statement><name>mdvpn-export</name><term><name>1</name><from><protocol>bgp</protocol><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><community><add/><community-name>mdvpn-comm</community-name></community><accept/></then></term><term><name>2</name><from><route-filter><address>10.0.176.0/20</address><exact/></route-filter></from><then><community><add/><community-name>mdvpn-comm</community-name></community><accept/></then></term><term><name>3</name><then><reject/></then></term></policy-statement><policy-statement><name>mdvpn-import</name><term><name>1</name><from><protocol>bgp</protocol><community>mdvpn-comm</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><accept/></then></term><term><name>2</name><from><community>mdvpn-comm</community><route-filter><address>10.0.176.0/20</address><exact/></route-filter></from><then><accept/></then></term><term><name>3</name><then><reject/></then></term></policy-statement><policy-statement><name>nhs</name><term><name>1</name><then><next-hop><self/></next-hop></then></term></policy-statement><policy-statement><name>nhs-ibgp</name><term><name>next-hop-self</name><then><next-hop><self/></next-hop></then></term></policy-statement><policy-statement><name>no-bsr</name><then><reject/></then></policy-statement><policy-statement><name>pim-export</name><from><interface>ae31.0</interface><interface>ae0.0</interface><interface>ae1.0</interface><interface>ae15.281</interface><interface>ae18.100</interface></from><then><reject/></then></policy-statement><policy-statement><name>pim-import</name><from><interface>ae31.0</interface><interface>ae0.0</interface><interface>ae1.0</interface><interface>ae15.281</interface><interface>ae18.100</interface></from><then><reject/></then></policy-statement><policy-statement><name>ps-AS-SELF-REJECT</name><term><name>1</name><from><as-path>AS-SELF</as-path></from><then><reject/></then></term></policy-statement><policy-statement><name>ps-BOGONS</name><term><name>bogons</name><from><route-filter><address>0.0.0.0/0</address><exact/></route-filter><route-filter><address>0.0.0.0/8</address><orlonger/></route-filter><route-filter><address>10.0.0.0/8</address><orlonger/></route-filter><route-filter><address>127.0.0.0/8</address><orlonger/></route-filter><route-filter><address>169.254.0.0/16</address><orlonger/></route-filter><route-filter><address>172.16.0.0/12</address><orlonger/></route-filter><route-filter><address>192.0.0.0/24</address><orlonger/></route-filter><route-filter><address>192.0.2.0/24</address><orlonger/></route-filter><route-filter><address>192.168.0.0/16</address><orlonger/></route-filter><route-filter><address>198.18.0.0/15</address><orlonger/></route-filter><route-filter><address>198.51.100.0/24</address><orlonger/></route-filter><route-filter><address>203.0.113.0/24</address><orlonger/></route-filter><route-filter><address>224.0.0.0/3</address><orlonger/></route-filter><route-filter><address>100.64.0.0/10</address><orlonger/></route-filter></from><then><reject/></then></term><term><name>as-path-length-limit</name><from><protocol>bgp</protocol><as-path>MAX-AS_PATH</as-path></from><then><reject/></then></term><term><name>community-limit</name><from><protocol>bgp</protocol><community-count><name>50</name><orhigher/></community-count><community-count><name>100</name><orhigher/></community-count></from><then><reject/></then></term><term><name>REJECT_IX_PREFIXES</name><from><route-filter><address>80.249.208.0/21</address><orlonger/></route-filter><route-filter><address>192.65.185.0/24</address><orlonger/></route-filter><route-filter><address>193.203.0.0/24</address><orlonger/></route-filter><route-filter><address>195.66.224.0/22</address><orlonger/></route-filter><route-filter><address>217.29.66.0/23</address><orlonger/></route-filter><route-filter><address>91.210.16.0/24</address><orlonger/></route-filter><route-filter><address>185.1.47.0/24</address><orlonger/></route-filter><route-filter><address>80.81.192.0/21</address><orlonger/></route-filter><route-filter><address>185.1.68.0/24</address><orlonger/></route-filter><route-filter><address>193.188.137.0/24</address><orlonger/></route-filter></from><then><reject/></then></term></policy-statement><policy-statement><name>ps-BOGONS-V6</name><term><name>martians</name><from><family>inet6</family><route-filter><address>::/0</address><exact/></route-filter><route-filter><address>::/96</address><exact/></route-filter><route-filter><address>::1/128</address><exact/></route-filter><route-filter><address>fec0::/10</address><orlonger/></route-filter><route-filter><address>fe80::/10</address><orlonger/></route-filter><route-filter><address>ff00::/8</address><orlonger/></route-filter><route-filter><address>3ffe::/16</address><orlonger/></route-filter><route-filter><address>2001:0db8::/32</address><orlonger/></route-filter><route-filter><address>fc00::/7</address><orlonger/></route-filter></from><then><reject/></then></term><term><name>as-path-length-limit</name><from><family>inet6</family><protocol>bgp</protocol><as-path>MAX-AS_PATH</as-path></from><then><reject/></then></term><term><name>community-limit</name><from><family>inet6</family><protocol>bgp</protocol><community-count><name>50</name><orhigher/></community-count><community-count><name>100</name><orhigher/></community-count></from><then><reject/></then></term><term><name>REJECT_IX_PREFIXES</name><from><route-filter><address>2001:7f8:30::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:1::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:1c:24a::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:4::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:b:100::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:14::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:36::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:a0::/64</address><orlonger/></route-filter><route-filter><address>2001:7f8:35::/64</address><orlonger/></route-filter></from><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-from-REDIRIS-V6-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-REDIRIS-v6</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>100::</address></next-hop><accept/></then></term><term><name>from-REDIRIS-V6-nren</name><from><prefix-list><name>route-from-REDIRIS-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>TE_ANNOUNCE_ALL_CLS_PROVIDERS</community-name></community><community><add/><community-name>CLS_NREN_ROUTES</community-name></community><accept/></then></term><term><name>from-REDIRIS-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-from-REDIRIS-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-RedIRIS</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>192.0.2.101</address></next-hop><accept/></then></term><term><name>from-REDIRIS-nren</name><from><prefix-list><name>route-from-RedIRIS</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>TE_ANNOUNCE_ALL_CLS_PROVIDERS</community-name></community><community><add/><community-name>CLS_NREN_ROUTES</community-name></community><accept/></then></term><term><name>from-REDIRIS-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-to-REDIRIS-V6-nren</name><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-nren-block</name><from><community>geant-rediris-block</community></from><then><reject/></then></term><term><name>to-REDIRIS-V6-nren-general</name><from><family>inet6</family><community>CLS_PROVIDER_ROUTES</community><community>CLS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>to-REDIRIS-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-to-REDIRIS-nren</name><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-nren-block</name><from><community>geant-rediris-block</community></from><then><reject/></then></term><term><name>to-REDIRIS-nren-general</name><from><community>CLS_PROVIDER_ROUTES</community><community>CLS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>to-REDIRIS-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-ARN-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-ARN</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>192.0.2.101</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-arn</community-name></community><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-nren-mar</community-name></community><accept/></then></term><term><name>from-ARN-nren</name><from><prefix-list><name>route-from-ARN</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-arn</community-name></community><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-nren-mar</community-name></community><accept/></then></term><term><name>from-ARN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-ARN-nren-v6</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-ARN-v6</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>100::</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-arn</community-name></community><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-nren-mar</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-ARN-nren</name><from><prefix-list><name>route-from-ARN-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-arn</community-name></community><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-nren-mar</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-ARN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-REDIRIS-V6-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-REDIRIS-v6</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>100::</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community><prefix-list><name>geant-anycast-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-nren-gen</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-REDIRIS1-V6-nren</name><from><prefix-list><name>route-from-REDIRIS-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-nren-gen</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-REDIRIS-nren-special</name><from><prefix-list><name>route-from-RedIRIS-V6-special</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-nren-gen</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-REDIRIS1-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-REDIRIS-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-RedIRIS</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>192.0.2.101</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community><prefix-list><name>geant-anycast</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-nren-gen</community-name></community><accept/></then></term><term><name>from-REDIRIS-nren</name><from><prefix-list><name>route-from-RedIRIS</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-nren-gen</community-name></community><accept/></then></term><term><name>from-REDIRIS-nren-special</name><from><prefix-list><name>route-from-RedIRIS-special</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-nren-gen</community-name></community><accept/></then></term><term><name>from-REDIRIS-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-ARN-Default</name><term><name>0</name><from><community>IAS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>1</name><from><route-filter><address>0.0.0.0/0</address><exact/></route-filter></from><then><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-ARN-Default-V6</name><term><name>0</name><from><community>IAS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>1</name><from><route-filter><address>0::/0</address><exact/></route-filter></from><then><accept/></then></term><term><name>2</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-REDIRIS-V6-nren</name><term><name>PRIVATE_AS</name><from><as-path>remove-private-as</as-path></from><then><reject/></then></term><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-nren-block</name><from><community>geant-rediris-block</community></from><then><reject/></then></term><term><name>to-REDIRIS-V6-nren-general</name><from><family>inet6</family><community>geant-dws</community><community>geant-peers</community><community>IAS_AGGREGATE_ROUTES</community></from><then><metric><igp> - </igp></metric><accept/></then></term><term><name>to-REDIRIS-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-REDIRIS-nren</name><term><name>PRIVATE_AS</name><from><as-path>remove-private-as</as-path></from><then><reject/></then></term><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-nren-block</name><from><community>geant-rediris-block</community></from><then><reject/></then></term><term><name>to-REDIRIS-nren-general</name><from><community>geant-peers</community><community>geant-helix</community><community>IAS_AGGREGATE_ROUTES</community></from><then><metric><igp> - </igp></metric><accept/></then></term><term><name>to-REDIRIS-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-PRIVATE-AS-BLOCK</name><from><as-path>AS-PRIVATE</as-path></from><then><reject/></then></policy-statement><policy-statement><name>ps-RPKI-CLS-NREN</name><term><name>RTBH-bypass</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>RTBH-bypass-V6</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-CLS-PEER</name><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-IAS-NREN</name><term><name>RTBH-bypass</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>RTBH-bypass-V6</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-IAS-PEER</name><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-RE-NREN</name><term><name>RTBH-bypass</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>RTBH-bypass-V6</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-RE-PEER</name><term><name>unknown</name><from><protocol>bgp</protocol><validation-database>unknown</validation-database></from><then><validation-state>unknown</validation-state><community><add/><community-name>origin-validation-state-unknown</community-name></community><next>policy</next></then></term><term><name>valid</name><from><protocol>bgp</protocol><validation-database>valid</validation-database></from><then><validation-state>valid</validation-state><community><add/><community-name>origin-validation-state-valid</community-name></community><next>policy</next></then></term><term><name>invalid</name><from><protocol>bgp</protocol><validation-database>invalid</validation-database></from><then><validation-state>invalid</validation-state><community><add/><community-name>origin-validation-state-invalid</community-name></community><reject/></then></term></policy-statement><policy-statement><name>ps-RPKI-iBGP</name><term><name>unknown</name><from><community>origin-validation-state-unknown</community></from><then><validation-state>unknown</validation-state></then></term><term><name>valid</name><from><community>origin-validation-state-valid</community></from><then><validation-state>valid</validation-state></then></term><term><name>invalid</name><from><community>origin-validation-state-invalid</community></from><then><validation-state>invalid</validation-state></then></term></policy-statement><policy-statement><name>ps-deny-all</name><term><name>deny-all</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-direct-route-label</name><term><name>1</name><from><protocol>direct</protocol></from><then><label-allocation>per-table</label-allocation><accept/></then></term><term><name>2</name><then><label-allocation>per-nexthop</label-allocation><accept/></then></term></policy-statement><policy-statement><name>ps-from-ARN-V6-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-ARN-v6</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>100::</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community><prefix-list><name>geant-anycast-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-arn</community-name></community><community><add/><community-name>geant-nrn</community-name></community><accept/></then></term><term><name>from-ARN-nren</name><from><prefix-list><name>route-from-ARN-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-eumed</community-name></community><community><add/><community-name>geant-arn</community-name></community><accept/></then></term><term><name>from-ARN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-ARN-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-ARN</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>192.0.2.101</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community><prefix-list><name>geant-anycast</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-arn</community-name></community><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><accept/></then></term><term><name>from-ARN-nren</name><from><prefix-list><name>route-from-ARN</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-arn</community-name></community><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-eumed</community-name></community><community><add/><community-name>geant-peer-RE</community-name></community><accept/></then></term><term><name>from-ARN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-ARN-nren-v6</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-ARN-v6</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>100::</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-arn</community-name></community><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><accept/></then></term><term><name>from-ARN-nren</name><from><prefix-list><name>route-from-ARN-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-arn</community-name></community><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-eumed</community-name></community><accept/></then></term><term><name>from-ARN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-CLS-vrf</name><term><name>CLS-routes</name><from><protocol>bgp</protocol></from><then><community><add/><community-name>CLS-vpn</community-name></community><accept/></then></term><term><name>CLS-interface-routes</name><from><protocol>direct</protocol></from><then><community><add/><community-name>CLS-vpn</community-name></community><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-REDIRIS-V6-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-REDIRIS-v6</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>100::</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community><prefix-list><name>geant-anycast-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><accept/></then></term><term><name>from-REDIRIS1-V6-nren</name><from><prefix-list><name>route-from-REDIRIS-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><accept/></then></term><term><name>from-REDIRIS1-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-REDIRIS-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter><prefix-list-filter><list_name>route-from-RedIRIS</list_name><orlonger/></prefix-list-filter></from><then><local-preference><local-preference>200</local-preference></local-preference><community><add/><community-name>TE_BLOCK_ALL_PUBLIC_PEERS</community-name></community><community><add/><community-name>TE_BLOCK_PEERS_2</community-name></community><community><add/><community-name>geant-IAS-dws-block</community-name></community><community><add/><community-name>geant-dummy</community-name></community><next-hop><address>192.0.2.101</address></next-hop><accept/></then></term><term><name>anycast-prefixes</name><from><community>geant-anycast</community><prefix-list><name>geant-anycast</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><accept/></then></term><term><name>from-REDIRIS-nren</name><from><prefix-list><name>route-from-RedIRIS</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><accept/></then></term><term><name>from-REDIRIS-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-coriant-vrf</name><term><name>mgmt-routes</name><from><protocol>direct</protocol><protocol>static</protocol></from><then><community><add/><community-name>coriant-mgmt</community-name></community><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-ias-vrf</name><term><name>ias-routes</name><from><protocol>bgp</protocol></from><then><community><add/><community-name>ias-routes</community-name></community><accept/></then></term><term><name>ias-interface-routes</name><from><protocol>direct</protocol></from><then><community><add/><community-name>ias-routes</community-name></community><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-into-CLS-vrf</name><term><name>CLS-routes</name><from><protocol>bgp</protocol><community>CLS-vpn</community></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-into-ias-vrf</name><term><name>ias-routes</name><from><protocol>bgp</protocol><community>ias-routes</community></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ARN-Default</name><term><name>1</name><from><community>geant-nrn</community></from><then><accept/></then></term><term><name>2</name><from><route-filter><address>0.0.0.0/0</address><exact/></route-filter></from><then><accept/></then></term><term><name>3</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ARN-Default-V6</name><term><name>1</name><from><community>geant-nrn</community></from><then><accept/></then></term><term><name>2</name><from><route-filter><address>0::/0</address><exact/></route-filter></from><then><accept/></then></term><term><name>3</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ARN-V6-nren</name><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-ARN-nrenv6-general</name><from><community>geant-nrn</community><community>geant-peer-RE</community><community>geant-aarnet</community><community>geant-nkn</community><community>geant-sinet</community><community>geant-singaren</community><community>geant-tein2</community><community>geant-caren</community><community>geant-ubuntunet</community><community>geant-clara</community><community>geant-iranet</community><community>geant-canarie</community><community>geant-esnet</community><community>geant-internet2</community><community>geant-nisn</community><community>geant-wacren</community></from><then><accept/></then></term><term><name>to-ARN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ARN-nren</name><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-ARN-nren-general</name><from><community>geant-nrn</community><community>geant-peers</community><community>geant-ixpeers</community><community>geant-dws</community><community>geant-peer-RE</community><community>geant-aarnet</community><community>geant-nkn</community><community>geant-sinet</community><community>geant-singaren</community><community>geant-tein2</community><community>geant-caren</community><community>geant-ubuntunet</community><community>geant-clara</community><community>geant-iranet</community><community>geant-canarie</community><community>geant-esnet</community><community>geant-internet2</community><community>geant-nisn</community><community>geant-wacren</community><community>geant-CSTNET</community></from><then><accept/></then></term><term><name>adv-default</name><from><route-filter><address>0.0.0.0/0</address><exact/></route-filter></from><then><accept/></then></term><term><name>to-ARN-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-REDIRIS-V6-nren</name><term><name>PRIVATE_AS</name><from><as-path>remove-private-as</as-path></from><then><reject/></then></term><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-nren-block</name><from><community>geant-rediris-block</community></from><then><reject/></then></term><term><name>to-REDIRIS-V6-nren-general</name><from><family>inet6</family><community>geant-nrn</community><community>geant-m6bone</community><community>geant-dws</community><community>geant-peer-RE</community><community>geant-peers</community></from><then><metric><igp> - </igp></metric><accept/></then></term><term><name>to-REDIRIS-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-REDIRIS-nren</name><term><name>PRIVATE_AS</name><from><as-path>remove-private-as</as-path></from><then><reject/></then></term><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-nren-block</name><from><community>geant-rediris-block</community></from><then><reject/></then></term><term><name>to-REDIRIS-nren-general</name><from><community>geant-nrn</community><community>geant-peer-RE</community><community>geant-peers</community><community>geant-helix</community></from><then><metric><igp> - </igp></metric><accept/></then></term><term><name>to-REDIRIS-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-coriant-vrf</name><term><name>mgmt-routes</name><from><protocol>bgp</protocol><community>coriant-mgmt</community></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-lhcone-nren-v6</name><term><name>ptp-routes</name><from><route-filter><address>2001:798:111:1::/64</address><exact/></route-filter></from><then><accept/></then></term><term><name>ptp-routes-specific-deny</name><from><route-filter><address>2001:798:111:1::/64</address><orlonger/></route-filter></from><then><reject/></then></term><then><accept/></then></policy-statement><policy-statement><name>ps-to-lhcone-peer-v6</name><term><name>ptp-routes</name><from><route-filter><address>2001:798:111:1::/64</address><exact/></route-filter></from><then><metric><igp> - </igp></metric><accept/></then></term><term><name>ptp-routes-specific-deny</name><from><route-filter><address>2001:798:111:1::/64</address><orlonger/></route-filter></from><then><reject/></then></term><term><name>allow-nren-routes</name><from><community>geant-nrn</community></from><then><metric><igp> - </igp></metric><accept/></then></term><then><default-action>reject</default-action></then></policy-statement><policy-statement><name>rtbh-ibgp</name><term><name>1</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>0.0.0.0/0</address><prefix-length-range>/32-/32</prefix-length-range></route-filter></from><then><next-hop><address>192.0.2.101</address></next-hop><accept/></then></term><term><name>2</name><from><protocol>bgp</protocol><community>geant-RTBH</community><route-filter><address>::/0</address><prefix-length-range>/128-/128</prefix-length-range></route-filter></from><then><next-hop><address>0100::</address></next-hop><accept/></then></term></policy-statement><policy-statement><name>rtbh-policy</name><term><name>11</name><from><community>geant-RTBH</community></from><then><accept/></then></term><term><name>22</name><then><reject/></then></term></policy-statement><policy-statement><name>source-class-usage</name><term><name>DWS</name><from><community>geant-dws</community></from><then><source-class>dws-out</source-class><next>term</next></then></term><term><name>google-out</name><from><community>geant-google</community></from><then><source-class>google-out</source-class></then></term><term><name>ixpeers-out</name><from><community>geant-ixpeers</community></from><then><source-class>ixpeers-out</source-class></then></term></policy-statement><community><name>AS20965_ROUTES</name><members>21320:20965</members></community><community><name>CLS-vpn</name><members>target:20965:667</members></community><community><name>CLS_AGGREGATE_ROUTES</name><members>20965:64912</members></community><community><name>CLS_NREN_ROUTES</name><members>20965:65101</members></community><community><name>CLS_PROVIDER_ROUTES</name><members>20965:65102</members></community><community><name>IAS_AGGREGATE_ROUTES</name><members>21320:64912</members></community><community><name>IGP_ROUTES_DEEPFIELD</name><members>20965:65002</members></community><community><name>INFO_PUBLIC_PEER</name><members>21320:646..</members></community><community><name>INFO_PUBLIC_PEER_DE-CIX_MAR</name><members>21320:64690</members></community><community><name>INFO_PUBLIC_PEER_MAR</name><members>21320:64631</members></community><community><name>TE_ANNOUNCE_ALL_CLS_PROVIDERS</name><members>64700:65531</members></community><community><name>TE_ANNOUNCE_ALL_PUBLIC_PEERS</name><members>64700:65532</members></community><community><name>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</name><members>64712:65532</members></community><community><name>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</name><members>20965:65532</members></community><community><name>TE_ANNOUNCE_AS10310</name><members>64700:10310</members></community><community><name>TE_ANNOUNCE_AS10310_2</name><members>64712:10310</members></community><community><name>TE_ANNOUNCE_AS10310_3</name><members>origin:10310L:64700</members></community><community><name>TE_ANNOUNCE_AS10310_4</name><members>origin:10310L:64712</members></community><community><name>TE_ANNOUNCE_AS10310_DE-CIX-MRS</name><members>64790:10310</members></community><community><name>TE_ANNOUNCE_AS10310_DE-CIX-MRS_2</name><members>origin:10310L:64790</members></community><community><name>TE_ANNOUNCE_AS13030</name><members>64700:13030</members></community><community><name>TE_ANNOUNCE_AS13030_2</name><members>64712:13030</members></community><community><name>TE_ANNOUNCE_AS13030_3</name><members>origin:13030L:64700</members></community><community><name>TE_ANNOUNCE_AS13030_4</name><members>origin:13030L:64712</members></community><community><name>TE_ANNOUNCE_AS13030_DE-CIX-MRS</name><members>64790:13030</members></community><community><name>TE_ANNOUNCE_AS13030_DE-CIX-MRS_2</name><members>origin:13030L:64790</members></community><community><name>TE_ANNOUNCE_AS13335</name><members>64700:13335</members></community><community><name>TE_ANNOUNCE_AS13335_2</name><members>64712:13335</members></community><community><name>TE_ANNOUNCE_AS13335_3</name><members>origin:13335L:64700</members></community><community><name>TE_ANNOUNCE_AS13335_4</name><members>origin:13335L:64712</members></community><community><name>TE_ANNOUNCE_AS13335_DE-CIX-MRS</name><members>64790:13335</members></community><community><name>TE_ANNOUNCE_AS13335_DE-CIX-MRS_2</name><members>origin:13335L:64790</members></community><community><name>TE_ANNOUNCE_AS15133</name><members>64700:15133</members></community><community><name>TE_ANNOUNCE_AS15133_2</name><members>64712:15133</members></community><community><name>TE_ANNOUNCE_AS15133_3</name><members>origin:15133L:64700</members></community><community><name>TE_ANNOUNCE_AS15133_4</name><members>origin:15133L:64712</members></community><community><name>TE_ANNOUNCE_AS15133_DE-CIX-MRS</name><members>64790:15133</members></community><community><name>TE_ANNOUNCE_AS15133_DE-CIX-MRS_2</name><members>origin:15133L:64790</members></community><community><name>TE_ANNOUNCE_AS16509</name><members>64700:16509</members></community><community><name>TE_ANNOUNCE_AS16509_2</name><members>64712:16509</members></community><community><name>TE_ANNOUNCE_AS16509_3</name><members>origin:16509L:64700</members></community><community><name>TE_ANNOUNCE_AS16509_4</name><members>origin:16509L:64712</members></community><community><name>TE_ANNOUNCE_AS16509_DE-CIX-MRS</name><members>64790:16509</members></community><community><name>TE_ANNOUNCE_AS16509_DE-CIX-MRS_2</name><members>origin:16509L:64790</members></community><community><name>TE_ANNOUNCE_AS199524_3</name><members>origin:199524L:64700</members></community><community><name>TE_ANNOUNCE_AS199524_4</name><members>origin:199524L:64712</members></community><community><name>TE_ANNOUNCE_AS199524_DE-CIX-MRS_2</name><members>origin:199524L:64790</members></community><community><name>TE_ANNOUNCE_AS22822</name><members>64700:22822</members></community><community><name>TE_ANNOUNCE_AS22822_2</name><members>64712:22822</members></community><community><name>TE_ANNOUNCE_AS22822_3</name><members>origin:22822L:64700</members></community><community><name>TE_ANNOUNCE_AS22822_4</name><members>origin:22822L:64712</members></community><community><name>TE_ANNOUNCE_AS22822_DE-CIX-MRS</name><members>64790:22822</members></community><community><name>TE_ANNOUNCE_AS22822_DE-CIX-MRS_2</name><members>origin:22822L:64790</members></community><community><name>TE_ANNOUNCE_AS30844</name><members>64700:30844</members></community><community><name>TE_ANNOUNCE_AS30844_2</name><members>64712:30844</members></community><community><name>TE_ANNOUNCE_AS30844_3</name><members>origin:30844L:64700</members></community><community><name>TE_ANNOUNCE_AS30844_4</name><members>origin:30844L:64712</members></community><community><name>TE_ANNOUNCE_AS30844_DE-CIX-MRS</name><members>64790:30844</members></community><community><name>TE_ANNOUNCE_AS30844_DE-CIX-MRS_2</name><members>origin:30844L:64790</members></community><community><name>TE_ANNOUNCE_AS31133</name><members>64700:31133</members></community><community><name>TE_ANNOUNCE_AS31133_2</name><members>64712:31133</members></community><community><name>TE_ANNOUNCE_AS31133_3</name><members>origin:31133L:64700</members></community><community><name>TE_ANNOUNCE_AS31133_4</name><members>origin:31133L:64712</members></community><community><name>TE_ANNOUNCE_AS31133_DE-CIX-MRS</name><members>64790:31133</members></community><community><name>TE_ANNOUNCE_AS31133_DE-CIX-MRS_2</name><members>origin:31133L:64790</members></community><community><name>TE_ANNOUNCE_AS32934</name><members>64700:32934</members></community><community><name>TE_ANNOUNCE_AS32934_2</name><members>64712:32934</members></community><community><name>TE_ANNOUNCE_AS32934_3</name><members>origin:32934L:64700</members></community><community><name>TE_ANNOUNCE_AS32934_4</name><members>origin:32934L:64712</members></community><community><name>TE_ANNOUNCE_AS32934_DE-CIX-MRS</name><members>64790:32934</members></community><community><name>TE_ANNOUNCE_AS32934_DE-CIX-MRS_2</name><members>origin:32934L:64790</members></community><community><name>TE_ANNOUNCE_AS3303</name><members>64700:3303</members></community><community><name>TE_ANNOUNCE_AS3303_2</name><members>64712:3303</members></community><community><name>TE_ANNOUNCE_AS3303_3</name><members>origin:3303L:64700</members></community><community><name>TE_ANNOUNCE_AS3303_4</name><members>origin:3303L:64712</members></community><community><name>TE_ANNOUNCE_AS3303_DE-CIX-MRS</name><members>64790:3303</members></community><community><name>TE_ANNOUNCE_AS3303_DE-CIX-MRS_2</name><members>origin:3303L:64790</members></community><community><name>TE_ANNOUNCE_AS3856</name><members>64700:3856</members></community><community><name>TE_ANNOUNCE_AS3856_2</name><members>64712:3856</members></community><community><name>TE_ANNOUNCE_AS3856_3</name><members>origin:3856L:64700</members></community><community><name>TE_ANNOUNCE_AS3856_4</name><members>origin:3856L:64712</members></community><community><name>TE_ANNOUNCE_AS3856_DE-CIX-MRS</name><members>64790:3856</members></community><community><name>TE_ANNOUNCE_AS3856_DE-CIX-MRS_2</name><members>origin:3856L:64790</members></community><community><name>TE_ANNOUNCE_AS42</name><members>64700:42</members></community><community><name>TE_ANNOUNCE_AS42_2</name><members>64712:42</members></community><community><name>TE_ANNOUNCE_AS42_3</name><members>origin:42L:64700</members></community><community><name>TE_ANNOUNCE_AS42_4</name><members>origin:42L:64712</members></community><community><name>TE_ANNOUNCE_AS42_DE-CIX-MRS</name><members>64790:42</members></community><community><name>TE_ANNOUNCE_AS42_DE-CIX-MRS_2</name><members>origin:42L:64790</members></community><community><name>TE_ANNOUNCE_AS46489</name><members>64700:46489</members></community><community><name>TE_ANNOUNCE_AS46489_2</name><members>64712:46489</members></community><community><name>TE_ANNOUNCE_AS46489_3</name><members>origin:46489L:64700</members></community><community><name>TE_ANNOUNCE_AS46489_4</name><members>origin:46489L:64712</members></community><community><name>TE_ANNOUNCE_AS46489_DE-CIX-MRS</name><members>64790:46489</members></community><community><name>TE_ANNOUNCE_AS46489_DE-CIX-MRS_2</name><members>origin:46489L:64790</members></community><community><name>TE_ANNOUNCE_AS6939</name><members>64700:6939</members></community><community><name>TE_ANNOUNCE_AS6939_2</name><members>64712:6939</members></community><community><name>TE_ANNOUNCE_AS6939_3</name><members>origin:6939L:64700</members></community><community><name>TE_ANNOUNCE_AS6939_4</name><members>origin:6939L:64712</members></community><community><name>TE_ANNOUNCE_AS6939_DE-CIX-MRS</name><members>64790:6939</members></community><community><name>TE_ANNOUNCE_AS6939_DE-CIX-MRS_2</name><members>origin:6939L:64790</members></community><community><name>TE_ANNOUNCE_AS8075</name><members>64700:8075</members></community><community><name>TE_ANNOUNCE_AS8075_2</name><members>64712:8075</members></community><community><name>TE_ANNOUNCE_AS8075_3</name><members>origin:8075L:64700</members></community><community><name>TE_ANNOUNCE_AS8075_4</name><members>origin:8075L:64712</members></community><community><name>TE_ANNOUNCE_AS8075_DE-CIX-MRS</name><members>64790:8075</members></community><community><name>TE_ANNOUNCE_AS8075_DE-CIX-MRS_2</name><members>origin:8075L:64790</members></community><community><name>TE_BLOCK_ALL_PUBLIC_PEERS</name><members>64512:65532</members></community><community><name>TE_BLOCK_ALL_PUBLIC_PEERS_2</name><members>20965:0012</members></community><community><name>TE_BLOCK_ALL_PUBLIC_PEERS_3</name><members>20965:0006</members></community><community><name>TE_BLOCK_AS10310</name><members>64512:10310</members></community><community><name>TE_BLOCK_AS10310_2</name><members>origin:10310L:64512</members></community><community><name>TE_BLOCK_AS10310_DE-CIX-MRS</name><members>64590:10310</members></community><community><name>TE_BLOCK_AS10310_DE-CIX-MRS_2</name><members>origin:10310L:64590</members></community><community><name>TE_BLOCK_AS13030</name><members>64512:13030</members></community><community><name>TE_BLOCK_AS13030_2</name><members>origin:13030L:64512</members></community><community><name>TE_BLOCK_AS13030_DE-CIX-MRS</name><members>64590:13030</members></community><community><name>TE_BLOCK_AS13030_DE-CIX-MRS_2</name><members>origin:13030L:64590</members></community><community><name>TE_BLOCK_AS13335</name><members>64512:13335</members></community><community><name>TE_BLOCK_AS13335_2</name><members>origin:13335L:64512</members></community><community><name>TE_BLOCK_AS13335_DE-CIX-MRS</name><members>64590:13335</members></community><community><name>TE_BLOCK_AS13335_DE-CIX-MRS_2</name><members>origin:13335L:64590</members></community><community><name>TE_BLOCK_AS15133</name><members>64512:15133</members></community><community><name>TE_BLOCK_AS15133_2</name><members>origin:15133L:64512</members></community><community><name>TE_BLOCK_AS15133_DE-CIX-MRS</name><members>64590:15133</members></community><community><name>TE_BLOCK_AS15133_DE-CIX-MRS_2</name><members>origin:15133L:64590</members></community><community><name>TE_BLOCK_AS16509</name><members>64512:16509</members></community><community><name>TE_BLOCK_AS16509_2</name><members>origin:16509L:64512</members></community><community><name>TE_BLOCK_AS16509_DE-CIX-MRS</name><members>64590:16509</members></community><community><name>TE_BLOCK_AS16509_DE-CIX-MRS_2</name><members>origin:16509L:64590</members></community><community><name>TE_BLOCK_AS199524_2</name><members>origin:199524L:64512</members></community><community><name>TE_BLOCK_AS199524_DE-CIX-MRS_2</name><members>origin:199524L:64590</members></community><community><name>TE_BLOCK_AS22822</name><members>64512:22822</members></community><community><name>TE_BLOCK_AS22822_2</name><members>origin:22822L:64512</members></community><community><name>TE_BLOCK_AS22822_DE-CIX-MRS</name><members>64590:22822</members></community><community><name>TE_BLOCK_AS22822_DE-CIX-MRS_2</name><members>origin:22822L:64590</members></community><community><name>TE_BLOCK_AS30844</name><members>64512:30844</members></community><community><name>TE_BLOCK_AS30844_2</name><members>origin:30844L:64512</members></community><community><name>TE_BLOCK_AS30844_DE-CIX-MRS</name><members>64590:30844</members></community><community><name>TE_BLOCK_AS30844_DE-CIX-MRS_2</name><members>origin:30844L:64590</members></community><community><name>TE_BLOCK_AS31133</name><members>64512:31133</members></community><community><name>TE_BLOCK_AS31133_2</name><members>origin:31133L:64512</members></community><community><name>TE_BLOCK_AS31133_DE-CIX-MRS</name><members>64590:31133</members></community><community><name>TE_BLOCK_AS31133_DE-CIX-MRS_2</name><members>origin:31133L:64590</members></community><community><name>TE_BLOCK_AS32934</name><members>64512:32934</members></community><community><name>TE_BLOCK_AS32934_2</name><members>origin:32934L:64512</members></community><community><name>TE_BLOCK_AS32934_DE-CIX-MRS</name><members>64590:32934</members></community><community><name>TE_BLOCK_AS32934_DE-CIX-MRS_2</name><members>origin:32934L:64590</members></community><community><name>TE_BLOCK_AS3303</name><members>64512:3303</members></community><community><name>TE_BLOCK_AS3303_2</name><members>origin:3303L:64512</members></community><community><name>TE_BLOCK_AS3303_DE-CIX-MRS</name><members>64590:3303</members></community><community><name>TE_BLOCK_AS3303_DE-CIX-MRS_2</name><members>origin:3303L:64590</members></community><community><name>TE_BLOCK_AS3856</name><members>64512:3856</members></community><community><name>TE_BLOCK_AS3856_2</name><members>origin:3856L:64512</members></community><community><name>TE_BLOCK_AS3856_DE-CIX-MRS</name><members>64590:3856</members></community><community><name>TE_BLOCK_AS3856_DE-CIX-MRS_2</name><members>origin:3856L:64590</members></community><community><name>TE_BLOCK_AS42</name><members>64512:42</members></community><community><name>TE_BLOCK_AS42_2</name><members>origin:42L:64512</members></community><community><name>TE_BLOCK_AS42_DE-CIX-MRS</name><members>64590:42</members></community><community><name>TE_BLOCK_AS42_DE-CIX-MRS_2</name><members>origin:42L:64590</members></community><community><name>TE_BLOCK_AS46489</name><members>64512:46489</members></community><community><name>TE_BLOCK_AS46489_2</name><members>origin:46489L:64512</members></community><community><name>TE_BLOCK_AS46489_DE-CIX-MRS</name><members>64590:46489</members></community><community><name>TE_BLOCK_AS46489_DE-CIX-MRS_2</name><members>origin:46489L:64590</members></community><community><name>TE_BLOCK_AS6939</name><members>64512:6939</members></community><community><name>TE_BLOCK_AS6939_2</name><members>origin:6939L:64512</members></community><community><name>TE_BLOCK_AS6939_DE-CIX-MRS</name><members>64590:6939</members></community><community><name>TE_BLOCK_AS6939_DE-CIX-MRS_2</name><members>origin:6939L:64590</members></community><community><name>TE_BLOCK_AS8075</name><members>64512:8075</members></community><community><name>TE_BLOCK_AS8075_2</name><members>origin:8075L:64512</members></community><community><name>TE_BLOCK_AS8075_DE-CIX-MRS</name><members>64590:8075</members></community><community><name>TE_BLOCK_AS8075_DE-CIX-MRS_2</name><members>origin:8075L:64590</members></community><community><name>TE_BLOCK_DE-CIX_MAR</name><members>64590:65532</members></community><community><name>TE_BLOCK_LOCAL_IXES</name><members>64531:65532</members></community><community><name>TE_BLOCK_PEERS_2</name><members>64512:65533</members></community><community><name>TE_PREPEND_ALL_PUBLIC_PEERS_x1_PREPEND</name><members>64801:65532</members></community><community><name>TE_PREPEND_ALL_PUBLIC_PEERS_x2_PREPEND</name><members>64802:65532</members></community><community><name>TE_PREPEND_ALL_PUBLIC_PEERS_x3_PREPEND</name><members>64803:65532</members></community><community><name>TE_PREPEND_ALL_PUBLIC_PEERS_x6_PREPEND</name><members>64806:65532</members></community><community><name>TE_PREPEND_AS10310_x1_2byte</name><members>64801:10310</members><members>64812:10310</members></community><community><name>TE_PREPEND_AS10310_x1_4byte</name><members>origin:10310L:64801</members><members>origin:10310L:64812</members></community><community><name>TE_PREPEND_AS10310_x2_2byte</name><members>64802:10310</members><members>64812:10310</members></community><community><name>TE_PREPEND_AS10310_x2_4byte</name><members>origin:10310L:64802</members><members>origin:10310L:64812</members></community><community><name>TE_PREPEND_AS10310_x3_2byte</name><members>64803:10310</members><members>64812:10310</members></community><community><name>TE_PREPEND_AS10310_x3_4byte</name><members>origin:10310L:64803</members><members>origin:10310L:64812</members></community><community><name>TE_PREPEND_AS10310_x6_2byte</name><members>64806:10310</members><members>64812:10310</members></community><community><name>TE_PREPEND_AS10310_x6_4byte</name><members>origin:10310L:64806</members><members>origin:10310L:64812</members></community><community><name>TE_PREPEND_AS13030_DE-CIX-MRS_x1_2byte</name><members>64801:13030</members><members>64890:13030</members></community><community><name>TE_PREPEND_AS13030_DE-CIX-MRS_x1_4byte</name><members>origin:13030L:64801</members><members>origin:13030L:64890</members></community><community><name>TE_PREPEND_AS13030_DE-CIX-MRS_x2_2byte</name><members>64802:13030</members><members>64890:13030</members></community><community><name>TE_PREPEND_AS13030_DE-CIX-MRS_x2_4byte</name><members>origin:13030L:64802</members><members>origin:13030L:64890</members></community><community><name>TE_PREPEND_AS13030_DE-CIX-MRS_x3_2byte</name><members>64803:13030</members><members>64890:13030</members></community><community><name>TE_PREPEND_AS13030_DE-CIX-MRS_x3_4byte</name><members>origin:13030L:64803</members><members>origin:13030L:64890</members></community><community><name>TE_PREPEND_AS13030_DE-CIX-MRS_x6_2byte</name><members>64806:13030</members><members>64890:13030</members></community><community><name>TE_PREPEND_AS13030_DE-CIX-MRS_x6_4byte</name><members>origin:13030L:64806</members><members>origin:13030L:64890</members></community><community><name>TE_PREPEND_AS13030_x1_2byte</name><members>64801:13030</members><members>64812:13030</members></community><community><name>TE_PREPEND_AS13030_x1_4byte</name><members>origin:13030L:64801</members><members>origin:13030L:64812</members></community><community><name>TE_PREPEND_AS13030_x2_2byte</name><members>64802:13030</members><members>64812:13030</members></community><community><name>TE_PREPEND_AS13030_x2_4byte</name><members>origin:13030L:64802</members><members>origin:13030L:64812</members></community><community><name>TE_PREPEND_AS13030_x3_2byte</name><members>64803:13030</members><members>64812:13030</members></community><community><name>TE_PREPEND_AS13030_x3_4byte</name><members>origin:13030L:64803</members><members>origin:13030L:64812</members></community><community><name>TE_PREPEND_AS13030_x6_2byte</name><members>64806:13030</members><members>64812:13030</members></community><community><name>TE_PREPEND_AS13030_x6_4byte</name><members>origin:13030L:64806</members><members>origin:13030L:64812</members></community><community><name>TE_PREPEND_AS13335_DE-CIX-MRS_x1_2byte</name><members>64801:13335</members><members>64890:13335</members></community><community><name>TE_PREPEND_AS13335_DE-CIX-MRS_x1_4byte</name><members>origin:13335L:64801</members><members>origin:13335L:64890</members></community><community><name>TE_PREPEND_AS13335_DE-CIX-MRS_x2_2byte</name><members>64802:13335</members><members>64890:13335</members></community><community><name>TE_PREPEND_AS13335_DE-CIX-MRS_x2_4byte</name><members>origin:13335L:64802</members><members>origin:13335L:64890</members></community><community><name>TE_PREPEND_AS13335_DE-CIX-MRS_x3_2byte</name><members>64803:13335</members><members>64890:13335</members></community><community><name>TE_PREPEND_AS13335_DE-CIX-MRS_x3_4byte</name><members>origin:13335L:64803</members><members>origin:13335L:64890</members></community><community><name>TE_PREPEND_AS13335_DE-CIX-MRS_x6_2byte</name><members>64806:13335</members><members>64890:13335</members></community><community><name>TE_PREPEND_AS13335_DE-CIX-MRS_x6_4byte</name><members>origin:13335L:64806</members><members>origin:13335L:64890</members></community><community><name>TE_PREPEND_AS13335_x1_2byte</name><members>64801:13335</members><members>64812:13335</members></community><community><name>TE_PREPEND_AS13335_x1_4byte</name><members>origin:13335L:64801</members><members>origin:13335L:64812</members></community><community><name>TE_PREPEND_AS13335_x2_2byte</name><members>64802:13335</members><members>64812:13335</members></community><community><name>TE_PREPEND_AS13335_x2_4byte</name><members>origin:13335L:64802</members><members>origin:13335L:64812</members></community><community><name>TE_PREPEND_AS13335_x3_2byte</name><members>64803:13335</members><members>64812:13335</members></community><community><name>TE_PREPEND_AS13335_x3_4byte</name><members>origin:13335L:64803</members><members>origin:13335L:64812</members></community><community><name>TE_PREPEND_AS13335_x6_2byte</name><members>64806:13335</members><members>64812:13335</members></community><community><name>TE_PREPEND_AS13335_x6_4byte</name><members>origin:13335L:64806</members><members>origin:13335L:64812</members></community><community><name>TE_PREPEND_AS15133_DE-CIX-MRS_x1_2byte</name><members>64801:15133</members><members>64890:15133</members></community><community><name>TE_PREPEND_AS15133_DE-CIX-MRS_x1_4byte</name><members>origin:15133L:64801</members><members>origin:15133L:64890</members></community><community><name>TE_PREPEND_AS15133_DE-CIX-MRS_x2_2byte</name><members>64802:15133</members><members>64890:15133</members></community><community><name>TE_PREPEND_AS15133_DE-CIX-MRS_x2_4byte</name><members>origin:15133L:64802</members><members>origin:15133L:64890</members></community><community><name>TE_PREPEND_AS15133_DE-CIX-MRS_x3_2byte</name><members>64803:15133</members><members>64890:15133</members></community><community><name>TE_PREPEND_AS15133_DE-CIX-MRS_x3_4byte</name><members>origin:15133L:64803</members><members>origin:15133L:64890</members></community><community><name>TE_PREPEND_AS15133_DE-CIX-MRS_x6_2byte</name><members>64806:15133</members><members>64890:15133</members></community><community><name>TE_PREPEND_AS15133_DE-CIX-MRS_x6_4byte</name><members>origin:15133L:64806</members><members>origin:15133L:64890</members></community><community><name>TE_PREPEND_AS15133_x1_2byte</name><members>64801:15133</members><members>64812:15133</members></community><community><name>TE_PREPEND_AS15133_x1_4byte</name><members>origin:15133L:64801</members><members>origin:15133L:64812</members></community><community><name>TE_PREPEND_AS15133_x2_2byte</name><members>64802:15133</members><members>64812:15133</members></community><community><name>TE_PREPEND_AS15133_x2_4byte</name><members>origin:15133L:64802</members><members>origin:15133L:64812</members></community><community><name>TE_PREPEND_AS15133_x3_2byte</name><members>64803:15133</members><members>64812:15133</members></community><community><name>TE_PREPEND_AS15133_x3_4byte</name><members>origin:15133L:64803</members><members>origin:15133L:64812</members></community><community><name>TE_PREPEND_AS15133_x6_2byte</name><members>64806:15133</members><members>64812:15133</members></community><community><name>TE_PREPEND_AS15133_x6_4byte</name><members>origin:15133L:64806</members><members>origin:15133L:64812</members></community><community><name>TE_PREPEND_AS16509_DE-CIX-MRS_x1_2byte</name><members>64801:16509</members><members>64890:16509</members></community><community><name>TE_PREPEND_AS16509_DE-CIX-MRS_x1_4byte</name><members>origin:16509L:64801</members><members>origin:16509L:64890</members></community><community><name>TE_PREPEND_AS16509_DE-CIX-MRS_x2_2byte</name><members>64802:16509</members><members>64890:16509</members></community><community><name>TE_PREPEND_AS16509_DE-CIX-MRS_x2_4byte</name><members>origin:16509L:64802</members><members>origin:16509L:64890</members></community><community><name>TE_PREPEND_AS16509_DE-CIX-MRS_x3_2byte</name><members>64803:16509</members><members>64890:16509</members></community><community><name>TE_PREPEND_AS16509_DE-CIX-MRS_x3_4byte</name><members>origin:16509L:64803</members><members>origin:16509L:64890</members></community><community><name>TE_PREPEND_AS16509_DE-CIX-MRS_x6_2byte</name><members>64806:16509</members><members>64890:16509</members></community><community><name>TE_PREPEND_AS16509_DE-CIX-MRS_x6_4byte</name><members>origin:16509L:64806</members><members>origin:16509L:64890</members></community><community><name>TE_PREPEND_AS16509_x1_2byte</name><members>64801:16509</members><members>64812:16509</members></community><community><name>TE_PREPEND_AS16509_x1_4byte</name><members>origin:16509L:64801</members><members>origin:16509L:64812</members></community><community><name>TE_PREPEND_AS16509_x2_2byte</name><members>64802:16509</members><members>64812:16509</members></community><community><name>TE_PREPEND_AS16509_x2_4byte</name><members>origin:16509L:64802</members><members>origin:16509L:64812</members></community><community><name>TE_PREPEND_AS16509_x3_2byte</name><members>64803:16509</members><members>64812:16509</members></community><community><name>TE_PREPEND_AS16509_x3_4byte</name><members>origin:16509L:64803</members><members>origin:16509L:64812</members></community><community><name>TE_PREPEND_AS16509_x6_2byte</name><members>64806:16509</members><members>64812:16509</members></community><community><name>TE_PREPEND_AS16509_x6_4byte</name><members>origin:16509L:64806</members><members>origin:16509L:64812</members></community><community><name>TE_PREPEND_AS199524_DE-CIX-MRS_x1_4byte</name><members>origin:199524L:64801</members><members>origin:199524L:64890</members></community><community><name>TE_PREPEND_AS199524_DE-CIX-MRS_x2_4byte</name><members>origin:199524L:64802</members><members>origin:199524L:64890</members></community><community><name>TE_PREPEND_AS199524_DE-CIX-MRS_x3_4byte</name><members>origin:199524L:64803</members><members>origin:199524L:64890</members></community><community><name>TE_PREPEND_AS199524_DE-CIX-MRS_x6_4byte</name><members>origin:199524L:64806</members><members>origin:199524L:64890</members></community><community><name>TE_PREPEND_AS199524_x1_4byte</name><members>origin:199524L:64801</members><members>origin:199524L:64812</members></community><community><name>TE_PREPEND_AS199524_x2_4byte</name><members>origin:199524L:64802</members><members>origin:199524L:64812</members></community><community><name>TE_PREPEND_AS199524_x3_4byte</name><members>origin:199524L:64803</members><members>origin:199524L:64812</members></community><community><name>TE_PREPEND_AS199524_x6_4byte</name><members>origin:199524L:64806</members><members>origin:199524L:64812</members></community><community><name>TE_PREPEND_AS22822_DE-CIX-MRS_x1_2byte</name><members>64801:22822</members><members>64890:22822</members></community><community><name>TE_PREPEND_AS22822_DE-CIX-MRS_x1_4byte</name><members>origin:22822L:64801</members><members>origin:22822L:64890</members></community><community><name>TE_PREPEND_AS22822_DE-CIX-MRS_x2_2byte</name><members>64802:22822</members><members>64890:22822</members></community><community><name>TE_PREPEND_AS22822_DE-CIX-MRS_x2_4byte</name><members>origin:22822L:64802</members><members>origin:22822L:64890</members></community><community><name>TE_PREPEND_AS22822_DE-CIX-MRS_x3_2byte</name><members>64803:22822</members><members>64890:22822</members></community><community><name>TE_PREPEND_AS22822_DE-CIX-MRS_x3_4byte</name><members>origin:22822L:64803</members><members>origin:22822L:64890</members></community><community><name>TE_PREPEND_AS22822_DE-CIX-MRS_x6_2byte</name><members>64806:22822</members><members>64890:22822</members></community><community><name>TE_PREPEND_AS22822_DE-CIX-MRS_x6_4byte</name><members>origin:22822L:64806</members><members>origin:22822L:64890</members></community><community><name>TE_PREPEND_AS22822_x1_2byte</name><members>64801:22822</members><members>64812:22822</members></community><community><name>TE_PREPEND_AS22822_x1_4byte</name><members>origin:22822L:64801</members><members>origin:22822L:64812</members></community><community><name>TE_PREPEND_AS22822_x2_2byte</name><members>64802:22822</members><members>64812:22822</members></community><community><name>TE_PREPEND_AS22822_x2_4byte</name><members>origin:22822L:64802</members><members>origin:22822L:64812</members></community><community><name>TE_PREPEND_AS22822_x3_2byte</name><members>64803:22822</members><members>64812:22822</members></community><community><name>TE_PREPEND_AS22822_x3_4byte</name><members>origin:22822L:64803</members><members>origin:22822L:64812</members></community><community><name>TE_PREPEND_AS22822_x6_2byte</name><members>64806:22822</members><members>64812:22822</members></community><community><name>TE_PREPEND_AS22822_x6_4byte</name><members>origin:22822L:64806</members><members>origin:22822L:64812</members></community><community><name>TE_PREPEND_AS30844_x1_2byte</name><members>64801:30844</members><members>64812:30844</members></community><community><name>TE_PREPEND_AS30844_x1_4byte</name><members>origin:30844L:64801</members><members>origin:30844L:64812</members></community><community><name>TE_PREPEND_AS30844_x2_2byte</name><members>64802:30844</members><members>64812:30844</members></community><community><name>TE_PREPEND_AS30844_x2_4byte</name><members>origin:30844L:64802</members><members>origin:30844L:64812</members></community><community><name>TE_PREPEND_AS30844_x3_2byte</name><members>64803:30844</members><members>64812:30844</members></community><community><name>TE_PREPEND_AS30844_x3_4byte</name><members>origin:30844L:64803</members><members>origin:30844L:64812</members></community><community><name>TE_PREPEND_AS30844_x6_2byte</name><members>64806:30844</members><members>64812:30844</members></community><community><name>TE_PREPEND_AS30844_x6_4byte</name><members>origin:30844L:64806</members><members>origin:30844L:64812</members></community><community><name>TE_PREPEND_AS31133_DE-CIX-MRS_x1_2byte</name><members>64801:31133</members><members>64890:31133</members></community><community><name>TE_PREPEND_AS31133_DE-CIX-MRS_x1_4byte</name><members>origin:31133L:64801</members><members>origin:31133L:64890</members></community><community><name>TE_PREPEND_AS31133_DE-CIX-MRS_x2_2byte</name><members>64802:31133</members><members>64890:31133</members></community><community><name>TE_PREPEND_AS31133_DE-CIX-MRS_x2_4byte</name><members>origin:31133L:64802</members><members>origin:31133L:64890</members></community><community><name>TE_PREPEND_AS31133_DE-CIX-MRS_x3_2byte</name><members>64803:31133</members><members>64890:31133</members></community><community><name>TE_PREPEND_AS31133_DE-CIX-MRS_x3_4byte</name><members>origin:31133L:64803</members><members>origin:31133L:64890</members></community><community><name>TE_PREPEND_AS31133_DE-CIX-MRS_x6_2byte</name><members>64806:31133</members><members>64890:31133</members></community><community><name>TE_PREPEND_AS31133_DE-CIX-MRS_x6_4byte</name><members>origin:31133L:64806</members><members>origin:31133L:64890</members></community><community><name>TE_PREPEND_AS31133_x1_2byte</name><members>64801:31133</members><members>64812:31133</members></community><community><name>TE_PREPEND_AS31133_x1_4byte</name><members>origin:31133L:64801</members><members>origin:31133L:64812</members></community><community><name>TE_PREPEND_AS31133_x2_2byte</name><members>64802:31133</members><members>64812:31133</members></community><community><name>TE_PREPEND_AS31133_x2_4byte</name><members>origin:31133L:64802</members><members>origin:31133L:64812</members></community><community><name>TE_PREPEND_AS31133_x3_2byte</name><members>64803:31133</members><members>64812:31133</members></community><community><name>TE_PREPEND_AS31133_x3_4byte</name><members>origin:31133L:64803</members><members>origin:31133L:64812</members></community><community><name>TE_PREPEND_AS31133_x6_2byte</name><members>64806:31133</members><members>64812:31133</members></community><community><name>TE_PREPEND_AS31133_x6_4byte</name><members>origin:31133L:64806</members><members>origin:31133L:64812</members></community><community><name>TE_PREPEND_AS32934_DE-CIX-MRS_x1_2byte</name><members>64801:32934</members><members>64890:32934</members></community><community><name>TE_PREPEND_AS32934_DE-CIX-MRS_x1_4byte</name><members>origin:32934L:64801</members><members>origin:32934L:64890</members></community><community><name>TE_PREPEND_AS32934_DE-CIX-MRS_x2_2byte</name><members>64802:32934</members><members>64890:32934</members></community><community><name>TE_PREPEND_AS32934_DE-CIX-MRS_x2_4byte</name><members>origin:32934L:64802</members><members>origin:32934L:64890</members></community><community><name>TE_PREPEND_AS32934_DE-CIX-MRS_x3_2byte</name><members>64803:32934</members><members>64890:32934</members></community><community><name>TE_PREPEND_AS32934_DE-CIX-MRS_x3_4byte</name><members>origin:32934L:64803</members><members>origin:32934L:64890</members></community><community><name>TE_PREPEND_AS32934_DE-CIX-MRS_x6_2byte</name><members>64806:32934</members><members>64890:32934</members></community><community><name>TE_PREPEND_AS32934_DE-CIX-MRS_x6_4byte</name><members>origin:32934L:64806</members><members>origin:32934L:64890</members></community><community><name>TE_PREPEND_AS32934_x1_2byte</name><members>64801:32934</members><members>64812:32934</members></community><community><name>TE_PREPEND_AS32934_x1_4byte</name><members>origin:32934L:64801</members><members>origin:32934L:64812</members></community><community><name>TE_PREPEND_AS32934_x2_2byte</name><members>64802:32934</members><members>64812:32934</members></community><community><name>TE_PREPEND_AS32934_x2_4byte</name><members>origin:32934L:64802</members><members>origin:32934L:64812</members></community><community><name>TE_PREPEND_AS32934_x3_2byte</name><members>64803:32934</members><members>64812:32934</members></community><community><name>TE_PREPEND_AS32934_x3_4byte</name><members>origin:32934L:64803</members><members>origin:32934L:64812</members></community><community><name>TE_PREPEND_AS32934_x6_2byte</name><members>64806:32934</members><members>64812:32934</members></community><community><name>TE_PREPEND_AS32934_x6_4byte</name><members>origin:32934L:64806</members><members>origin:32934L:64812</members></community><community><name>TE_PREPEND_AS3303_DE-CIX-MRS_x1_2byte</name><members>64801:3303</members><members>64890:3303</members></community><community><name>TE_PREPEND_AS3303_DE-CIX-MRS_x1_4byte</name><members>origin:3303L:64801</members><members>origin:3303L:64890</members></community><community><name>TE_PREPEND_AS3303_DE-CIX-MRS_x2_2byte</name><members>64802:3303</members><members>64890:3303</members></community><community><name>TE_PREPEND_AS3303_DE-CIX-MRS_x2_4byte</name><members>origin:3303L:64802</members><members>origin:3303L:64890</members></community><community><name>TE_PREPEND_AS3303_DE-CIX-MRS_x3_2byte</name><members>64803:3303</members><members>64890:3303</members></community><community><name>TE_PREPEND_AS3303_DE-CIX-MRS_x3_4byte</name><members>origin:3303L:64803</members><members>origin:3303L:64890</members></community><community><name>TE_PREPEND_AS3303_DE-CIX-MRS_x6_2byte</name><members>64806:3303</members><members>64890:3303</members></community><community><name>TE_PREPEND_AS3303_DE-CIX-MRS_x6_4byte</name><members>origin:3303L:64806</members><members>origin:3303L:64890</members></community><community><name>TE_PREPEND_AS3303_x1_2byte</name><members>64801:3303</members><members>64812:3303</members></community><community><name>TE_PREPEND_AS3303_x1_4byte</name><members>origin:3303L:64801</members><members>origin:3303L:64812</members></community><community><name>TE_PREPEND_AS3303_x2_2byte</name><members>64802:3303</members><members>64812:3303</members></community><community><name>TE_PREPEND_AS3303_x2_4byte</name><members>origin:3303L:64802</members><members>origin:3303L:64812</members></community><community><name>TE_PREPEND_AS3303_x3_2byte</name><members>64803:3303</members><members>64812:3303</members></community><community><name>TE_PREPEND_AS3303_x3_4byte</name><members>origin:3303L:64803</members><members>origin:3303L:64812</members></community><community><name>TE_PREPEND_AS3303_x6_2byte</name><members>64806:3303</members><members>64812:3303</members></community><community><name>TE_PREPEND_AS3303_x6_4byte</name><members>origin:3303L:64806</members><members>origin:3303L:64812</members></community><community><name>TE_PREPEND_AS3856_DE-CIX-MRS_x1_2byte</name><members>64801:3856</members><members>64890:3856</members></community><community><name>TE_PREPEND_AS3856_DE-CIX-MRS_x1_4byte</name><members>origin:3856L:64801</members><members>origin:3856L:64890</members></community><community><name>TE_PREPEND_AS3856_DE-CIX-MRS_x2_2byte</name><members>64802:3856</members><members>64890:3856</members></community><community><name>TE_PREPEND_AS3856_DE-CIX-MRS_x2_4byte</name><members>origin:3856L:64802</members><members>origin:3856L:64890</members></community><community><name>TE_PREPEND_AS3856_DE-CIX-MRS_x3_2byte</name><members>64803:3856</members><members>64890:3856</members></community><community><name>TE_PREPEND_AS3856_DE-CIX-MRS_x3_4byte</name><members>origin:3856L:64803</members><members>origin:3856L:64890</members></community><community><name>TE_PREPEND_AS3856_DE-CIX-MRS_x6_2byte</name><members>64806:3856</members><members>64890:3856</members></community><community><name>TE_PREPEND_AS3856_DE-CIX-MRS_x6_4byte</name><members>origin:3856L:64806</members><members>origin:3856L:64890</members></community><community><name>TE_PREPEND_AS3856_x1_2byte</name><members>64801:3856</members><members>64812:3856</members></community><community><name>TE_PREPEND_AS3856_x1_4byte</name><members>origin:3856L:64801</members><members>origin:3856L:64812</members></community><community><name>TE_PREPEND_AS3856_x2_2byte</name><members>64802:3856</members><members>64812:3856</members></community><community><name>TE_PREPEND_AS3856_x2_4byte</name><members>origin:3856L:64802</members><members>origin:3856L:64812</members></community><community><name>TE_PREPEND_AS3856_x3_2byte</name><members>64803:3856</members><members>64812:3856</members></community><community><name>TE_PREPEND_AS3856_x3_4byte</name><members>origin:3856L:64803</members><members>origin:3856L:64812</members></community><community><name>TE_PREPEND_AS3856_x6_2byte</name><members>64806:3856</members><members>64812:3856</members></community><community><name>TE_PREPEND_AS3856_x6_4byte</name><members>origin:3856L:64806</members><members>origin:3856L:64812</members></community><community><name>TE_PREPEND_AS42_DE-CIX-MRS_x1_2byte</name><members>64801:42</members><members>64890:42</members></community><community><name>TE_PREPEND_AS42_DE-CIX-MRS_x1_4byte</name><members>origin:42L:64801</members><members>origin:42L:64890</members></community><community><name>TE_PREPEND_AS42_DE-CIX-MRS_x2_2byte</name><members>64802:42</members><members>64890:42</members></community><community><name>TE_PREPEND_AS42_DE-CIX-MRS_x2_4byte</name><members>origin:42L:64802</members><members>origin:42L:64890</members></community><community><name>TE_PREPEND_AS42_DE-CIX-MRS_x3_2byte</name><members>64803:42</members><members>64890:42</members></community><community><name>TE_PREPEND_AS42_DE-CIX-MRS_x3_4byte</name><members>origin:42L:64803</members><members>origin:42L:64890</members></community><community><name>TE_PREPEND_AS42_DE-CIX-MRS_x6_2byte</name><members>64806:42</members><members>64890:42</members></community><community><name>TE_PREPEND_AS42_DE-CIX-MRS_x6_4byte</name><members>origin:42L:64806</members><members>origin:42L:64890</members></community><community><name>TE_PREPEND_AS42_x1_2byte</name><members>64801:42</members><members>64812:42</members></community><community><name>TE_PREPEND_AS42_x1_4byte</name><members>origin:42L:64801</members><members>origin:42L:64812</members></community><community><name>TE_PREPEND_AS42_x2_2byte</name><members>64802:42</members><members>64812:42</members></community><community><name>TE_PREPEND_AS42_x2_4byte</name><members>origin:42L:64802</members><members>origin:42L:64812</members></community><community><name>TE_PREPEND_AS42_x3_2byte</name><members>64803:42</members><members>64812:42</members></community><community><name>TE_PREPEND_AS42_x3_4byte</name><members>origin:42L:64803</members><members>origin:42L:64812</members></community><community><name>TE_PREPEND_AS42_x6_2byte</name><members>64806:42</members><members>64812:42</members></community><community><name>TE_PREPEND_AS42_x6_4byte</name><members>origin:42L:64806</members><members>origin:42L:64812</members></community><community><name>TE_PREPEND_AS46489_DE-CIX-MRS_x1_2byte</name><members>64801:46489</members><members>64890:46489</members></community><community><name>TE_PREPEND_AS46489_DE-CIX-MRS_x1_4byte</name><members>origin:46489L:64801</members><members>origin:46489L:64890</members></community><community><name>TE_PREPEND_AS46489_DE-CIX-MRS_x2_2byte</name><members>64802:46489</members><members>64890:46489</members></community><community><name>TE_PREPEND_AS46489_DE-CIX-MRS_x2_4byte</name><members>origin:46489L:64802</members><members>origin:46489L:64890</members></community><community><name>TE_PREPEND_AS46489_DE-CIX-MRS_x3_2byte</name><members>64803:46489</members><members>64890:46489</members></community><community><name>TE_PREPEND_AS46489_DE-CIX-MRS_x3_4byte</name><members>origin:46489L:64803</members><members>origin:46489L:64890</members></community><community><name>TE_PREPEND_AS46489_DE-CIX-MRS_x6_2byte</name><members>64806:46489</members><members>64890:46489</members></community><community><name>TE_PREPEND_AS46489_DE-CIX-MRS_x6_4byte</name><members>origin:46489L:64806</members><members>origin:46489L:64890</members></community><community><name>TE_PREPEND_AS46489_x1_2byte</name><members>64801:46489</members><members>64812:46489</members></community><community><name>TE_PREPEND_AS46489_x1_4byte</name><members>origin:46489L:64801</members><members>origin:46489L:64812</members></community><community><name>TE_PREPEND_AS46489_x2_2byte</name><members>64802:46489</members><members>64812:46489</members></community><community><name>TE_PREPEND_AS46489_x2_4byte</name><members>origin:46489L:64802</members><members>origin:46489L:64812</members></community><community><name>TE_PREPEND_AS46489_x3_2byte</name><members>64803:46489</members><members>64812:46489</members></community><community><name>TE_PREPEND_AS46489_x3_4byte</name><members>origin:46489L:64803</members><members>origin:46489L:64812</members></community><community><name>TE_PREPEND_AS46489_x6_2byte</name><members>64806:46489</members><members>64812:46489</members></community><community><name>TE_PREPEND_AS46489_x6_4byte</name><members>origin:46489L:64806</members><members>origin:46489L:64812</members></community><community><name>TE_PREPEND_AS6939_x1_2byte</name><members>64801:6939</members><members>64812:6939</members></community><community><name>TE_PREPEND_AS6939_x1_4byte</name><members>origin:6939L:64801</members><members>origin:6939L:64812</members></community><community><name>TE_PREPEND_AS6939_x2_2byte</name><members>64802:6939</members><members>64812:6939</members></community><community><name>TE_PREPEND_AS6939_x2_4byte</name><members>origin:6939L:64802</members><members>origin:6939L:64812</members></community><community><name>TE_PREPEND_AS6939_x3_2byte</name><members>64803:6939</members><members>64812:6939</members></community><community><name>TE_PREPEND_AS6939_x3_4byte</name><members>origin:6939L:64803</members><members>origin:6939L:64812</members></community><community><name>TE_PREPEND_AS6939_x6_2byte</name><members>64806:6939</members><members>64812:6939</members></community><community><name>TE_PREPEND_AS6939_x6_4byte</name><members>origin:6939L:64806</members><members>origin:6939L:64812</members></community><community><name>TE_PREPEND_AS8075_DE-CIX-MRS_x1_2byte</name><members>64801:8075</members><members>64890:8075</members></community><community><name>TE_PREPEND_AS8075_DE-CIX-MRS_x1_4byte</name><members>origin:8075L:64801</members><members>origin:8075L:64890</members></community><community><name>TE_PREPEND_AS8075_DE-CIX-MRS_x2_2byte</name><members>64802:8075</members><members>64890:8075</members></community><community><name>TE_PREPEND_AS8075_DE-CIX-MRS_x2_4byte</name><members>origin:8075L:64802</members><members>origin:8075L:64890</members></community><community><name>TE_PREPEND_AS8075_DE-CIX-MRS_x3_2byte</name><members>64803:8075</members><members>64890:8075</members></community><community><name>TE_PREPEND_AS8075_DE-CIX-MRS_x3_4byte</name><members>origin:8075L:64803</members><members>origin:8075L:64890</members></community><community><name>TE_PREPEND_AS8075_DE-CIX-MRS_x6_2byte</name><members>64806:8075</members><members>64890:8075</members></community><community><name>TE_PREPEND_AS8075_DE-CIX-MRS_x6_4byte</name><members>origin:8075L:64806</members><members>origin:8075L:64890</members></community><community><name>TE_PREPEND_AS8075_x1_2byte</name><members>64801:8075</members><members>64812:8075</members></community><community><name>TE_PREPEND_AS8075_x1_4byte</name><members>origin:8075L:64801</members><members>origin:8075L:64812</members></community><community><name>TE_PREPEND_AS8075_x2_2byte</name><members>64802:8075</members><members>64812:8075</members></community><community><name>TE_PREPEND_AS8075_x2_4byte</name><members>origin:8075L:64802</members><members>origin:8075L:64812</members></community><community><name>TE_PREPEND_AS8075_x3_2byte</name><members>64803:8075</members><members>64812:8075</members></community><community><name>TE_PREPEND_AS8075_x3_4byte</name><members>origin:8075L:64803</members><members>origin:8075L:64812</members></community><community><name>TE_PREPEND_AS8075_x6_2byte</name><members>64806:8075</members><members>64812:8075</members></community><community><name>TE_PREPEND_AS8075_x6_4byte</name><members>origin:8075L:64806</members><members>origin:8075L:64812</members></community><community><name>TE_PRIVATE_COMMUNITIES</name><members>^(6451[2-9]|645[2-9][0-9]|64[6-9][0-9][0-9]|65[0-4][0-9][0-9]|655[0-2][0-9]|6553[0-5]).*$</members></community><community><name>coriant-mgmt</name><members>target:20965:991</members></community><community><name>geant-CSTNET</name><members>20965:7497</members></community><community><name>geant-IAS-dws-block</name><members>64512:65534</members></community><community><name>geant-IAS-dws-nren</name><members>64700:65534</members></community><community><name>geant-IAS-dws-prepend1</name><members>64801:65534</members></community><community><name>geant-IAS-dws-prepend2</name><members>64802:65534</members></community><community><name>geant-IAS-dws-prepend3</name><members>64803:65534</members></community><community><name>geant-IAS-dws-prepend6</name><members>64806:65534</members></community><community><name>geant-RTBH</name><members>20965:0008</members></community><community><name>geant-aarnet</name><members>20965:7575</members></community><community><name>geant-adv2-private-peer</name><members>20965:65533</members></community><community><name>geant-adv2-public-peer</name><members>20965:65532</members></community><community><name>geant-anycast</name><members>20965:0002</members></community><community><name>geant-arn</name><members>20965:3208</members></community><community><name>geant-canarie</name><members>20965:6509</members></community><community><name>geant-caren</name><members>20965:64513</members></community><community><name>geant-clara</name><members>20965:27750</members></community><community><name>geant-dummy</name><members>20965:65000</members></community><community><name>geant-dws</name><members>20965:7777</members></community><community><name>geant-dws-block</name><members>20965:7000</members></community><community><name>geant-dws-marseille</name><members>21320:64531</members></community><community><name>geant-dws-nren</name><members>20965:65534</members></community><community><name>geant-dws-prepend1</name><members>20965:7010</members></community><community><name>geant-dws-prepend2</name><members>20965:7020</members></community><community><name>geant-dws-prepend3</name><members>20965:7030</members></community><community><name>geant-dws-prepend6</name><members>20965:7060</members></community><community><name>geant-esnet</name><members>20965:293</members></community><community><name>geant-eumed</name><members>20965:21320</members></community><community><name>geant-google</name><members>20965:15169</members></community><community><name>geant-helix</name><members>20965:65293</members></community><community><name>geant-internet2</name><members>20965:11537</members></community><community><name>geant-iranet</name><members>20965:18001</members></community><community><name>geant-ixpeers</name><members>20965:0003</members></community><community><name>geant-m6bone</name><members>20965:1717</members></community><community><name>geant-nisn</name><members>20965:297</members></community><community><name>geant-nkn</name><members>20965:9885</members></community><community><name>geant-nren-gen</name><members>21320:64923</members></community><community><name>geant-nren-mar</name><members>21320:64931</members></community><community><name>geant-nrn</name><members>20965:0155</members></community><community><name>geant-peer-RE</name><members>20965:65530</members></community><community><name>geant-peers</name><members>20965:0004</members></community><community><name>geant-peers-block</name><members>20965:0013</members></community><community><name>geant-rediris-block</name><members>64512:766</members></community><community><name>geant-sinet</name><members>20965:6683</members></community><community><name>geant-singaren</name><members>20965:64551</members></community><community><name>geant-tein2</name><members>20965:24490</members></community><community><name>geant-ubuntunet</name><members>20965:36944</members></community><community><name>geant-wacren</name><members>20965:37288</members></community><community><name>ias-routes</name><members>target:20965:333</members></community><community><name>mdvpn-comm</name><members>target:20965:65100</members></community><community><name>no-export</name><members>no-export</members></community><community><name>origin-validation-state-invalid</name><members>0x4300:0.0.0.0:2</members></community><community><name>origin-validation-state-unknown</name><members>0x4300:0.0.0.0:1</members></community><community><name>origin-validation-state-valid</name><members>0x4300:0.0.0.0:0</members></community><as-path><name>AS-PRIVATE</name><path>.* (0|64512-65535|4200000000-4294967295) .*</path></as-path><as-path><name>MAX-AS_PATH</name><path>.{41,}</path></as-path><as-path><name>AS-SELF</name><path>.*(20965|21320).*</path></as-path><as-path><name>remove-private-as</name><path>.* 64512-65534 .*</path></as-path><as-path><name>RENATER</name><path>2200.*</path></as-path></policy-options><class-of-service><classifiers><dscp><name>GEANT-BASIC</name><import>default</import><forwarding-class><name>best-effort</name><loss-priority><name>low</name><code-points>af11</code-points><code-points>af12</code-points><code-points>af13</code-points></loss-priority></forwarding-class></dscp><dscp-ipv6><name>GEANT-BASIC</name><import>default</import><forwarding-class><name>best-effort</name><loss-priority><name>low</name><code-points>af11</code-points><code-points>af12</code-points><code-points>af13</code-points></loss-priority></forwarding-class></dscp-ipv6><exp><name>GEANT-BASIC</name><import>default</import><forwarding-class><name>best-effort</name><loss-priority><name>low</name><code-points>100</code-points><code-points>101</code-points></loss-priority></forwarding-class><forwarding-class><name>gold</name><loss-priority><name>high</name><code-points>011</code-points></loss-priority></forwarding-class></exp></classifiers><drop-profiles><name>BEST-EFFORT</name><interpolate><fill-level>75</fill-level><fill-level>80</fill-level><fill-level>85</fill-level><fill-level>90</fill-level><fill-level>95</fill-level><fill-level>100</fill-level><drop-probability>0</drop-probability><drop-probability>25</drop-probability><drop-probability>75</drop-probability><drop-probability>90</drop-probability><drop-probability>95</drop-probability><drop-probability>100</drop-probability></interpolate></drop-profiles><forwarding-classes><class><name>gold</name><queue-num>4</queue-num><priority>high</priority></class></forwarding-classes><interfaces><interface><name>et-*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>ge-*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>gr-*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>lt-*</name><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6></classifiers></unit></interface><interface><name>so-*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>xe-*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>ae*</name><scheduler-map>GEANT-BASIC</scheduler-map><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface><interface><name>irb</name><unit><name>*</name><classifiers><dscp><name>GEANT-BASIC</name></dscp><dscp-ipv6><name>GEANT-BASIC</name></dscp-ipv6><exp><classifier-name>GEANT-BASIC</classifier-name></exp></classifiers><rewrite-rules><exp><name>GEANT-BASIC</name><protocol>mpls-any</protocol></exp></rewrite-rules></unit></interface></interfaces><rewrite-rules><exp><name>GEANT-BASIC</name><import>default</import><forwarding-class><name>expedited-forwarding</name><loss-priority><name>low</name><code-point>010</code-point></loss-priority><loss-priority><name>high</name><code-point>010</code-point></loss-priority></forwarding-class></exp></rewrite-rules><scheduler-maps><name>GEANT-BASIC</name><forwarding-class><name>expedited-forwarding</name><scheduler>EXPEDITED-FORWARDING</scheduler></forwarding-class><forwarding-class><name>network-control</name><scheduler>NETWORK-CONTROL</scheduler></forwarding-class><forwarding-class><name>best-effort</name><scheduler>BEST-EFFORT</scheduler></forwarding-class><forwarding-class><name>assured-forwarding</name><scheduler>BEST-EFFORT</scheduler></forwarding-class><forwarding-class><name>gold</name><scheduler>GOLD</scheduler></forwarding-class></scheduler-maps><schedulers><name>EXPEDITED-FORWARDING</name><transmit-rate><percent>15</percent></transmit-rate><buffer-size><temporal>15k</temporal></buffer-size><priority>high</priority></schedulers><schedulers><name>BEST-EFFORT</name><transmit-rate><remainder> - </remainder></transmit-rate><buffer-size><remainder> - </remainder></buffer-size><priority>low</priority><drop-profile-map><loss-priority>any</loss-priority><protocol>any</protocol><drop-profile>BEST-EFFORT</drop-profile></drop-profile-map></schedulers><schedulers><name>NETWORK-CONTROL</name><transmit-rate><percent>5</percent></transmit-rate><buffer-size><percent>5</percent></buffer-size><priority>high</priority></schedulers><schedulers><name>GOLD</name><transmit-rate><percent>40</percent></transmit-rate><buffer-size><temporal>5k</temporal></buffer-size><priority>strict-high</priority></schedulers></class-of-service><firewall><family><inet><filter><name>RTBH-count</name><term><name>count</name><then><count>RTBH-count</count></then></term></filter><filter><name>router-access-out</name><term><name>geant-network-control-traffic</name><from><dscp>48</dscp><dscp>56</dscp></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><accept/></then></term><term><name>accept</name><then><accept/></then></term></filter><filter><name>nren_IAS_ARN_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>ARN_blocking_service</name><from><destination-prefix-list><name>ARN-blocking-list</name></destination-prefix-list></from><then><count>ARN-blocking-service</count><discard> - </discard></then></term><term><name>BOGON_filter</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>bogons-source</count><discard> - </discard></then></term><term><name>DOS_source_filtering</name><from><source-prefix-list><name>dos-attack-source</name></source-prefix-list></from><then><count>dos-attack-traffic-src</count><discard> - </discard></then></term><term><name>DOS_destination_filtering</name><from><destination-prefix-list><name>dos-attack-destination</name></destination-prefix-list></from><then><count>dos-attack-traffic-dst</count><discard> - </discard></then></term><term><name>Transit_network_control_traffic</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><dscp>48</dscp><dscp>56</dscp></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><next>term</next></then></term><term><name>BGP_protect</name><from><source-address><name>83.97.88.194/32</name></source-address><destination-address><name>83.97.88.193/32</name></destination-address><protocol>tcp</protocol><port>bgp</port></from><then><accept/></then></term><term><name>BGP_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>bgp</port></from><then><syslog/><discard> - </discard></then></term><term><name>MSDP_protect</name><from><source-address><name>83.97.88.194/32</name></source-address><destination-address><name>83.97.88.193/32</name></destination-address><protocol>tcp</protocol><port>msdp</port></from><then><accept/></then></term><term><name>MSDP_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>msdp</port></from><then><syslog/><discard> - </discard></then></term><term><name>PIM_protect</name><from><source-address><name>83.97.88.194/32</name></source-address><destination-address><name>83.97.88.193/32</name></destination-address><protocol>pim</protocol><protocol>igmp</protocol></from><then><accept/></then></term><term><name>PIM_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>pim</protocol><protocol>igmp</protocol></from><then><syslog/><discard> - </discard></then></term><term><name>SPOOF_filter</name><from><source-address><name>83.97.88.194/32</name><except/></source-address><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>geant-address-space</name></source-prefix-list></from><then><count>spoofed-attack-traffic</count><discard> - </discard></then></term><term><name>DNS_server_accept</name><from><destination-prefix-list><name>GEANT-DNS</name></destination-prefix-list><protocol>udp</protocol><protocol>tcp</protocol><port>domain</port></from><then><accept/></then></term><term><name>NREN_router_accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>External_project_interfaces</name><from><destination-prefix-list><name>external-project-interfaces</name></destination-prefix-list></from><then><discard> - </discard></then></term><term><name>External_Projects</name><from><destination-prefix-list><name>external-project</name></destination-prefix-list></from><then><accept/></then></term><term><name>RSVP_allow</name><from><protocol>rsvp</protocol></from><then><accept/></then></term><term><name>ICMP_accept</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>UDP_traceroute</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>udp</protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>CORE_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list></from><then><count>core-attack</count><discard> - </discard></then></term><term><name>MCAST_in</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-in</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_IAS_ARN_OUT</name><interface-specific/><term><name>DDOS-Block-LDAP</name><from><destination-address><name>193.194.83.0/25</name></destination-address><protocol>udp</protocol><port>389</port></from><then><count>LDAP-DDOS</count><discard> - </discard></then></term><term><name>DDOS-Block-LDAP-Fragments</name><from><destination-address><name>193.194.83.0/25</name></destination-address><is-fragment/><protocol>udp</protocol><port>0</port><port>389</port></from><then><count>LDAP-DDOS</count><discard> - </discard></then></term><term><name>DWS_out</name><from><dscp>32</dscp></from><then><count>DWS-out</count><accept/></then></term><term><name>DWS_same_out</name><from><interface-group>1</interface-group></from><then><count>DWS-out</count><accept/></then></term><term><name>MCAST_out</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-out</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>ARN-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>BOGON-filter</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>bogons-source</count><discard> - </discard></then></term><term><name>dos-source-counting</name><from><source-prefix-list><name>dos-attack-source-count</name></source-prefix-list></from><then><count>dos-attack-traffic-count</count><next>term</next></then></term><term><name>dos-destination-counting</name><from><destination-prefix-list><name>dos-attack-destination-count</name></destination-prefix-list></from><then><count>dos-attack-traffic-count</count><next>term</next></then></term><term><name>dos-source-filtering</name><from><source-prefix-list><name>dos-attack-source</name></source-prefix-list></from><then><count>dos-attack-traffic</count><log/><discard> - </discard></then></term><term><name>dos-destination-filtering</name><from><destination-prefix-list><name>dos-attack-destination</name></destination-prefix-list></from><then><count>dos-attack-traffic</count><log/><discard> - </discard></then></term><term><name>transit-network-control-traffic</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><dscp>48</dscp><dscp>56</dscp></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><next>term</next></then></term><term><name>BGP-protect</name><from><source-address><name>62.40.125.42/32</name></source-address><destination-address><name>62.40.125.41/32</name></destination-address><protocol>tcp</protocol><port>bgp</port></from><then><count>bgp-accept</count><accept/></then></term><term><name>BGP-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>bgp</port></from><then><count>bgp-attack</count><syslog/><discard> - </discard></then></term><term><name>SPOOF-filter</name><from><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>geantncc-address-space</name></source-prefix-list></from><then><count>spoofed-attack-traffic</count><syslog/><discard> - </discard></then></term><term><name>WEB-server-accept</name><from><destination-address><name>62.40.122.147/32</name></destination-address><protocol>tcp</protocol><port>http</port></from><then><accept/></then></term><term><name>SNMP-allow</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>udp</protocol><port>161</port></from><then><accept/></then></term><term><name>NOC-accept</name><from><destination-prefix-list><name>geantncc-address-space</name></destination-prefix-list></from><then><accept/></then></term><term><name>DNS-server-accept</name><from><destination-address><name>62.40.122.146/32</name></destination-address><protocol>udp</protocol><protocol>tcp</protocol><port>domain</port></from><then><accept/></then></term><term><name>NREN-router-accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>ICMP-accept</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>External-project-interfaces</name><from><destination-prefix-list><name>external-project-interfaces</name></destination-prefix-list></from><then><discard> - </discard></then></term><term><name>External-Projects</name><from><destination-prefix-list><name>external-project</name></destination-prefix-list></from><then><accept/></then></term><term><name>External-Equipment</name><from><destination-address><name>62.40.126.0/24</name></destination-address></from><then><accept/></then></term><term><name>UDP-traceroute</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>udp</protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>CORE-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list></from><then><count>core-attack</count><discard> - </discard></then></term><term><name>DWS-in</name><from><dscp>32</dscp></from><then><count>dws-in</count><accept/></then></term><term><name>LBE-in</name><from><dscp>8</dscp></from><then><count>lbe-in</count><accept/></then></term><term><name>mcast-in</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-in</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>ARN-out</name><interface-specific/><term><name>DWS-out</name><from><dscp>32</dscp></from><then><policer>pol-ARN-DWS-out</policer><count>DWS-out</count><next>term</next></then></term><term><name>LBE-out</name><from><dscp>8</dscp></from><then><count>LBE-out</count><accept/></then></term><term><name>mcast-out</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-out</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>urpf-filter-arn</name><apply-groups>urpf-template</apply-groups></filter><filter><name>INTERNAL_HEAD_IN</name><term><name>EXTERNAL_filter</name><from><destination-prefix-list><name>EXTERNAL-address-space</name></destination-prefix-list></from><then><discard> - </discard></then></term><term><name>Allow_Established</name><from><protocol>tcp</protocol><tcp-established/></from><then><accept/></then></term><term><name>GEANT_DC_INFRASTRUCTURE_Access</name><from><destination-prefix-list><name>GEANT-DC</name></destination-prefix-list><destination-prefix-list><name>GEANT-Infrastructure</name></destination-prefix-list></from><then><accept/></then></term></filter><filter><name>INTERNAL_HEAD_OUT</name><term><name>EXTERNAL_filter</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><discard> - </discard></then></term><term><name>Allow_Established</name><from><protocol>tcp</protocol><tcp-established/></from><then><accept/></then></term><term><name>GEANT_CORP_access</name><from><source-prefix-list><name>geantncc-address-space</name></source-prefix-list><source-prefix-list><name>corporate-address-space</name></source-prefix-list></from><then><accept/></then></term><term><name>GEANT_DC_INFRASTRUCTURE_Access</name><from><source-prefix-list><name>GEANT-DC</name></source-prefix-list><source-prefix-list><name>GEANT-Infrastructure</name></source-prefix-list></from><then><accept/></then></term><term><name>SuperPoP_DC_accept</name><from><source-address><name>83.97.92.0/22</name></source-address><destination-prefix-list><name>GEANT-DC</name></destination-prefix-list><protocol>tcp</protocol><port>88</port><port>389</port><port>445</port><port>464</port><port>3268</port></from><then><accept/></then></term></filter><filter><name>INTERNAL_TAIL_IN</name><term><name>GEANT_SRV_SSH_Access</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>default</name><then><discard> - </discard></then></term></filter><filter><name>INTERNAL_TAIL_OUT</name><term><name>GEANT_SRV_SSH_Access-out</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>default</name><then><discard> - </discard></then></term></filter><filter><name>VL023_MIDDLE_IN</name><term inactive="inactive"><name>VLAN_Access_Allow</name><then><accept/></then></term><term><name>idrac</name><from><address><name>192.87.30.0/24</name></address><port>5900-5901</port></from></term></filter><filter><name>VL023_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><port>443</port><port>5900-5901</port></from><then><accept/></then></term></filter><filter><name>PSMGMT_MIDDLE_IN</name><term><name>VLAN-Access_Allow_TCP</name><from><protocol>tcp</protocol><destination-port>22</destination-port><destination-port>53</destination-port><destination-port>80</destination-port><destination-port>443</destination-port><destination-port>8090</destination-port><destination-port>8096</destination-port><destination-port>4505-4506</destination-port><destination-port>8140</destination-port><destination-port>5222</destination-port><destination-port>5269</destination-port><destination-port>5693</destination-port><destination-port>69</destination-port><destination-port>161</destination-port><destination-port>8081</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><protocol>udp</protocol><port>53</port><port>33434-33634</port><port>69</port><port>161</port><port>10050</port></from><then><accept/></then></term><term><name>NTP_ALLOW</name><from><prefix-list><name>GEANT_NTP</name></prefix-list><protocol>udp</protocol><port>123</port></from><then><accept/></then></term></filter><filter><name>PSMGMT_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_TCP</name><from><protocol>tcp</protocol><destination-port>22</destination-port><destination-port>80</destination-port><destination-port>443</destination-port><destination-port>8090</destination-port><destination-port>5222</destination-port><destination-port>5347</destination-port><destination-port>5693</destination-port><destination-port>5666</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><protocol>udp</protocol><port>53</port><port>33434-33634</port><port>161</port><port>162</port><port>10051</port></from><then><accept/></then></term><term><name>NTP_ALLOW</name><from><source-prefix-list><name>GEANT_NTP</name></source-prefix-list><protocol>udp</protocol><port>123</port></from><then><accept/></then></term></filter><filter><name>OWAMP_MIDDLE_IN</name><term><name>VLAN-Access_Allow_UDP</name><from><protocol>udp</protocol><destination-port>3000-65535</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_TCP</name><from><protocol>tcp</protocol><destination-port>861</destination-port><destination-port>3000-65535</destination-port><destination-port>443</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_TWAMP</name><from><destination-address><name>62.40.96.0/23</name></destination-address><port>862</port><port>64600-64700</port></from><then><accept/></then></term></filter><filter><name>OWAMP_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_TCP</name><from><protocol>tcp</protocol><destination-port>861</destination-port><destination-port>8090</destination-port><destination-port>443</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><protocol>udp</protocol><destination-port>8760-9960</destination-port><destination-port>33434-33634</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_TWAMP</name><from><source-address><name>62.40.96.0/23</name></source-address><port>862</port><port>64600-64700</port></from><then><accept/></then></term></filter><filter><name>BWCTL_MIDDLE_IN</name><term><name>VLAN-Access_Allow_TCP</name><from><protocol>tcp</protocol><destination-port>22</destination-port><destination-port>25</destination-port><destination-port>53</destination-port><destination-port>80</destination-port><destination-port>88</destination-port><destination-port>139</destination-port><destination-port>389</destination-port><destination-port>443</destination-port><destination-port>445</destination-port><destination-port>464</destination-port><destination-port>3000-65535</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><protocol>udp</protocol><destination-port>53</destination-port><destination-port>88</destination-port><destination-port>123</destination-port><destination-port>139</destination-port><destination-port>137</destination-port><destination-port>389</destination-port><destination-port>464</destination-port><destination-port>3000-65535</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow</name><from><destination-port>3000-65535</destination-port></from><then><accept/></then></term></filter><filter><name>VL025_MIDDLE_IN</name><term inactive="inactive"><name>VLAN_Access_Allow</name><then><accept/></then></term></filter><filter><name>VL025_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><port>443</port></from><then><accept/></then></term></filter><filter><name>REDIR-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>DEISA-from-BSC</name><from><source-address><name>212.128.224.0/20</name></source-address></from><then><count>DEISA-from-BSC</count><accept/></then></term><term><name>LDP-i2CAT-L2-VPNs</name><from><source-address><name>130.206.202.254/32</name></source-address><source-address><name>130.206.206.250/32</name></source-address><destination-address><name>62.40.114.43/32</name></destination-address><destination-address><name>62.40.114.21/32</name></destination-address><destination-address><name>62.40.97.3/32</name></destination-address><destination-address><name>62.40.97.10/32</name></destination-address><destination-address><name>62.40.97.14/32</name></destination-address><destination-address><name>62.40.96.12/32</name></destination-address><port>ldp</port></from><then><accept/></then></term><term><name>BOGON-filter</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>bogons-source</count><discard> - </discard></then></term><term><name>dos-source-counting</name><from><source-prefix-list><name>dos-attack-source-count</name></source-prefix-list></from><then><count>dos-attack-traffic-count</count><next>term</next></then></term><term><name>dos-destination-counting</name><from><destination-prefix-list><name>dos-attack-destination-count</name></destination-prefix-list></from><then><count>dos-attack-traffic-count</count><next>term</next></then></term><term><name>dos-source-filtering</name><from><source-prefix-list><name>dos-attack-source</name></source-prefix-list></from><then><count>dos-attack-traffic</count><discard> - </discard></then></term><term><name>dos-destination-filtering</name><from><destination-prefix-list><name>dos-attack-destination</name></destination-prefix-list></from><then><count>dos-attack-traffic</count><discard> - </discard></then></term><term><name>transit-network-control-traffic</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><dscp>48</dscp><dscp>56</dscp></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><next>term</next></then></term><term><name>BGP-protect</name><from><source-address><name>62.40.124.193/32</name></source-address><source-address><name>62.40.102.43/32</name></source-address><source-address><name>130.206.206.2/32</name></source-address><destination-address><name>62.40.124.192/32</name></destination-address><destination-address><name>62.40.96.23/32</name></destination-address><destination-address><name>62.40.96.24/32</name></destination-address><protocol>tcp</protocol><port>bgp</port></from><then><count>bgp-accept</count><accept/></then></term><term><name>BGP-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>bgp</port></from><then><count>bgp-attack</count><syslog/><discard> - </discard></then></term><term><name>MSDP-protect</name><from><source-address><name>62.40.124.193/32</name></source-address><destination-address><name>62.40.124.192/32</name></destination-address><protocol>tcp</protocol><port>msdp</port></from><then><count>msdp-accept</count><accept/></then></term><term><name>MSDP-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>msdp</port></from><then><count>msdp-attack</count><syslog/><discard> - </discard></then></term><term><name>PIM-protect</name><from><source-address><name>130.206.206.250/32</name></source-address><source-address><name>62.40.124.74/32</name></source-address><source-address><name>62.40.124.193/32</name></source-address><destination-address><name>62.40.124.73/32</name></destination-address><destination-address><name>62.40.97.14/32</name></destination-address><destination-address><name>62.40.124.192/32</name></destination-address><destination-address><name>62.40.96.12/32</name></destination-address><protocol>pim</protocol><protocol>igmp</protocol></from><then><accept/></then></term><term><name>PIM-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>pim</protocol><protocol>igmp</protocol></from><then><count>pim-attack</count><syslog/><discard> - </discard></then></term><term><name>SPOOF-filter</name><from><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>geantncc-address-space</name></source-prefix-list></from><then><count>spoofed-attack-traffic</count><discard> - </discard></then></term><term><name>WEB-server-accept</name><from><destination-address><name>62.40.122.147/32</name></destination-address><protocol>tcp</protocol><port>http</port></from><then><accept/></then></term><term><name>NTP-server-accept</name><from><source-address><name>130.206.0.194/32</name></source-address><source-address><name>130.206.3.166/32</name></source-address><source-address><name>217.127.2.161/32</name></source-address><protocol>udp</protocol><port>123</port></from><then><accept/></then></term><term><name>SNMP-allow</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>route-from-RedIRIS</name></destination-prefix-list><protocol>udp</protocol><port>161</port></from><then><accept/></then></term><term><name>NOC-accept</name><from><destination-prefix-list><name>geantncc-address-space</name></destination-prefix-list></from><then><accept/></then></term><term><name>DNS-server-accept</name><from><destination-prefix-list><name>GEANT-DNS</name></destination-prefix-list><protocol>udp</protocol><protocol>tcp</protocol><port>domain</port></from><then><accept/></then></term><term><name>NREN-router-accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>ICMP-accept</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>External-project-interfaces</name><from><destination-prefix-list><name>external-project-interfaces</name></destination-prefix-list></from><then><discard> - </discard></then></term><term><name>External-Projects</name><from><destination-prefix-list><name>external-project</name></destination-prefix-list></from><then><accept/></then></term><term><name>External-Equipment</name><from><destination-address><name>62.40.126.0/24</name></destination-address></from><then><accept/></then></term><term><name>UDP-traceroute</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>udp</protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>RSVP-allow</name><from><protocol>rsvp</protocol></from><then><accept/></then></term><term><name>LDP-MUPBED</name><from><source-address><name>130.206.206.246/32</name></source-address><destination-address><name>193.206.132.188/32</name></destination-address><destination-address><name>188.1.201.6/32</name></destination-address><destination-address><name>62.40.97.10/32</name></destination-address><port>ldp</port></from><then><accept/></then></term><term><name>CORE-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list></from><then><count>core-attack</count><discard> - </discard></then></term><term><name>DWS-in</name><from><dscp>32</dscp></from><then><count>dws-in</count><accept/></then></term><term><name>LBE-in</name><from><dscp>8</dscp></from><then><count>lbe-in</count><accept/></then></term><term><name>mcast-in</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-in</count><accept/></then></term><term><name>default</name><then><accept/></then></term><term><name>iperf_temp</name><from><source-address><name>158.227.41.135/32</name></source-address></from><then><accept/></then></term></filter><filter><name>REDIR-out</name><interface-specific/><term><name>DEISA-to-BSC</name><from><destination-address><name>212.128.224.0/20</name></destination-address></from><then><count>DEISA-to-BSC</count><accept/></then></term><term><name>mcast-out</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-out</count><accept/></then></term><term><name>default</name><then><accept/></then></term><term><name>iperf_temp</name><from><destination-address><name>158.227.41.135/32</name></destination-address></from><then><accept/></then></term><term><name>rl-DWS-out</name><from><dscp>32</dscp></from><then><count>DWS-out</count><next>term</next></then></term><term><name>LBE-out</name><from><dscp>8</dscp></from><then><count>LBE-out</count><accept/></then></term></filter><filter><name>nren_IAS_REDIRIS_OUT</name><interface-specific/><term><name>DWS_out</name><from><dscp>32</dscp></from><then><count>DWS-out</count><accept/></then></term><term><name>DWS_same_out</name><from><interface-group>1</interface-group></from><then><count>DWS-out</count><accept/></then></term><term><name>MCAST_out</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-out</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_IAS_REDIRIS_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>REDIRIS_blocking_service</name><from><destination-prefix-list><name>REDIRIS-blocking-list</name></destination-prefix-list></from><then><count>REDIRIS-blocking-service</count><discard> - </discard></then></term><term><name>BOGON_filter</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>bogons-source</count><discard> - </discard></then></term><term><name>DOS_source_filtering</name><from><source-prefix-list><name>dos-attack-source</name></source-prefix-list></from><then><count>dos-attack-traffic-src</count><discard> - </discard></then></term><term><name>DOS_destination_filtering</name><from><destination-prefix-list><name>dos-attack-destination</name></destination-prefix-list></from><then><count>dos-attack-traffic-dst</count><discard> - </discard></then></term><term><name>Transit_network_control_traffic</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><dscp>48</dscp><dscp>56</dscp></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><next>term</next></then></term><term><name>BGP_protect</name><from><source-address><name>83.97.88.130/32</name></source-address><destination-address><name>83.97.88.129/32</name></destination-address><protocol>tcp</protocol><port>bgp</port></from><then><accept/></then></term><term><name>BGP_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>bgp</port></from><then><syslog/><discard> - </discard></then></term><term><name>MSDP_protect</name><from><source-address><name>83.97.88.130/32</name></source-address><destination-address><name>83.97.88.129/32</name></destination-address><protocol>tcp</protocol><port>msdp</port></from><then><accept/></then></term><term><name>MSDP_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>msdp</port></from><then><syslog/><discard> - </discard></then></term><term><name>PIM_protect</name><from><source-address><name>83.97.88.130/32</name></source-address><destination-address><name>83.97.88.129/32</name></destination-address><protocol>pim</protocol><protocol>igmp</protocol></from><then><accept/></then></term><term><name>PIM_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>pim</protocol><protocol>igmp</protocol></from><then><syslog/><discard> - </discard></then></term><term><name>SPOOF_filter</name><from><source-address><name>83.97.88.130/32</name><except/></source-address><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>geant-address-space</name></source-prefix-list><source-prefix-list><name>geant-ias-address-space</name></source-prefix-list></from><then><count>spoofed-attack-traffic</count><discard> - </discard></then></term><term><name>DNS_server_accept</name><from><destination-prefix-list><name>GEANT-DNS</name></destination-prefix-list><protocol>udp</protocol><protocol>tcp</protocol><port>domain</port></from><then><accept/></then></term><term><name>NREN_router_accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>External_project_interfaces</name><from><destination-prefix-list><name>external-project-interfaces</name></destination-prefix-list></from><then><discard> - </discard></then></term><term><name>External_Projects</name><from><destination-prefix-list><name>external-project</name></destination-prefix-list></from><then><accept/></then></term><term><name>RSVP_allow</name><from><protocol>rsvp</protocol></from><then><accept/></then></term><term><name>ICMP_accept</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>UDP_traceroute</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>udp</protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>CORE_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list></from><then><count>core-attack</count><discard> - </discard></then></term><term><name>MCAST_in</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-in</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>AE10_MIDDLE_OUT</name><term><name>LAB_PROXY</name><from><source-address><name>62.40.111.248/32</name></source-address></from><then><accept/></then></term><term><name>NETEAM_SRV</name><from><source-address><name>62.40.111.254/32</name></source-address></from><then><accept/></then></term><term><name>IT_RDP_Access</name><from><source-address><name>62.40.99.194/32</name></source-address><source-address><name>62.40.99.201/32</name></source-address><source-address><name>62.40.101.0/24</name></source-address><destination-address><name>62.40.108.102/32</name></destination-address><port>3389</port></from><then><accept/></then></term><term><name>VCENTER</name><from><source-address><name>62.40.108.64/27</name></source-address><source-address><name>62.40.108.128/27</name></source-address><source-address><name>62.40.99.16/28</name></source-address></from><then><accept/></then></term><term><name>VEEAM_PEER_SERVER</name><from><source-address><name>62.40.108.98/32</name></source-address></from><then><accept/></then></term><term><name>MAIL-Accept</name><from><address><name>83.97.93.85/32</name></address><port>25</port></from><then><accept/></then></term><term><name>veeam_proxy</name><from><source-prefix-list><name>VEEAM_PROXY</name></source-prefix-list></from><then><accept/></then></term></filter><filter><name>AE10_MIDDLE_IN</name><term inactive="inactive"><name>Aceess_Allow</name><then><accept/></then></term><term><name>LAB_PROXY</name><from><destination-address><name>62.40.111.248/32</name></destination-address></from><then><accept/></then></term><term><name>VCENTER</name><from><destination-address><name>62.40.108.64/27</name></destination-address><destination-address><name>62.40.108.128/27</name></destination-address><destination-address><name>62.40.99.16/28</name></destination-address><destination-port>443</destination-port><destination-port>9443</destination-port><destination-port>902</destination-port><destination-port>5480</destination-port><destination-port>3389</destination-port></from><then><accept/></then></term><term><name>VEEAM_PEER_SERVER</name><from><destination-address><name>62.40.108.98/32</name></destination-address></from><then><accept/></then></term><term><name>SECURE_SMTP_ALLOW</name><from><port>587</port></from><then><accept/></then></term><term><name>MAIL-Accept</name><from><address><name>83.97.93.85/32</name></address><port>25</port></from><then><accept/></then></term><term><name>veeam_proxy</name><from><destination-prefix-list><name>VEEAM_PROXY</name></destination-prefix-list></from><then><accept/></then></term></filter><filter><name>VL015_MIDDLE_IN</name><term inactive="inactive"><name>VLAN-Access_Allow</name><then><accept/></then></term></filter><filter><name>VL015_MIDDLE_OUT</name><term><name>VLAN-Access_Allow</name><then><accept inactive="inactive"/></then></term></filter><filter><name>MARSEILLE_PS_COUNT</name><term><name>count</name><from><destination-address><name>62.40.106.167/32</name></destination-address><source-port>5063</source-port><tcp-flags>ack</tcp-flags></from><then><count>ACK_FROM_MAR</count><accept/></then></term><term><name>accept</name><then><accept/></then></term></filter><filter><name>ROUTER_access</name><term><name>TCP_established_accept</name><from><protocol>tcp</protocol><tcp-established/></from><then><accept/></then></term><term><name>SSH_accept</name><from><source-prefix-list><name>geant-address-space-short</name></source-prefix-list><source-prefix-list><name>geantncc-address-space</name></source-prefix-list><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>pref-list-router-access</name></source-prefix-list><source-prefix-list><name>cnis-server</name></source-prefix-list><source-prefix-list><name>ncc-oob-address-space</name></source-prefix-list><source-prefix-list><name>space-local</name></source-prefix-list><source-prefix-list><name>nren-access</name></source-prefix-list><source-prefix-list><name>restena-access</name></source-prefix-list><source-prefix-list><name>nmteam-dev-servers</name></source-prefix-list><source-prefix-list><name>vuln-scanner</name></source-prefix-list><source-prefix-list><name>renater-access</name></source-prefix-list><source-prefix-list><name>GEANT-JUNOSSPACE</name></source-prefix-list><source-prefix-list><name>xantaro-address-space</name></source-prefix-list><source-prefix-list><name>GEANT-lg</name></source-prefix-list><source-prefix-list><name>dashboard-servers</name></source-prefix-list><source-prefix-list><name>opennsa-servers</name></source-prefix-list><source-prefix-list><name>GEANT-rancid</name></source-prefix-list><source-prefix-list><name>geant-ims</name></source-prefix-list><source-prefix-list><name>MDVPN-SI-TOOLS-V4</name></source-prefix-list><source-prefix-list><name>FXP_SUBNET</name></source-prefix-list><protocol>tcp</protocol><destination-port>ssh</destination-port></from><then><accept/></then></term><term><name>NE-Saltmaster</name><from><source-prefix-list><name>NE-Saltmaster-v4</name></source-prefix-list><protocol>tcp</protocol><destination-port>ssh</destination-port><destination-port>830</destination-port></from><then><accept/></then></term><term><name>BGP_accept</name><from><source-prefix-list><name>RE_BGP_inet</name></source-prefix-list><source-prefix-list><name>IAS_DUMMY_BGP_inet</name></source-prefix-list><source-prefix-list><name>IAS_BGP_inet</name></source-prefix-list><source-prefix-list><name>CLS_BGP_inet</name></source-prefix-list><source-prefix-list><name>lhcone-l3vpn_BGP_inet</name></source-prefix-list><source-prefix-list><name>taas-control_BGP_inet</name></source-prefix-list><source-prefix-list><name>mgmt-l3vpn_BGP_inet</name></source-prefix-list><source-prefix-list><name>mdvpn_BGP_inet</name></source-prefix-list><source-prefix-list><name>mdvpn-nren-gn_BGP_inet</name></source-prefix-list><source-prefix-list><name>confine-l3vpn_BGP_inet</name></source-prefix-list><source-prefix-list><name>VPN-PROXY_BGP_inet</name></source-prefix-list><source-prefix-list><name>VRR_BGP_inet</name></source-prefix-list><protocol>tcp</protocol><port>bgp</port></from><then><accept/></then></term><term><name>FTP_accept</name><from><source-prefix-list><name>geant-address-space-short</name></source-prefix-list><source-prefix-list><name>geantncc-address-space</name></source-prefix-list><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>ncc-oob-address-space</name></source-prefix-list><source-prefix-list><name>xantaro-address-space</name></source-prefix-list><protocol>tcp</protocol><destination-port>ftp</destination-port><destination-port>ftp-data</destination-port></from><then><accept/></then></term><term><name>RADIUS_accept</name><from><source-prefix-list><name>GEANT-DC</name></source-prefix-list><source-prefix-list><name>GEANT-Infrastructure</name></source-prefix-list><protocol>udp</protocol><port>1812</port><port>1813</port></from><then><accept/></then></term><term><name>NTP_accept</name><from><source-prefix-list><name>geant-routers</name></source-prefix-list><source-prefix-list><name>GEANT-DC</name></source-prefix-list><source-prefix-list><name>GEANT-Infrastructure</name></source-prefix-list><source-prefix-list><name>geant-cameras</name></source-prefix-list><source-prefix-list><name>ddos-scrubbing</name></source-prefix-list><protocol>udp</protocol><port>ntp</port></from><then><accept/></then></term><term><name>Netconf_accept</name><from><source-prefix-list><name>GEANT-JUNOSSPACE</name></source-prefix-list><source-prefix-list><name>GEANT-Superpop-v4</name></source-prefix-list><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>geant-address-space</name></source-prefix-list><protocol>tcp</protocol><port>830</port></from><then><accept/></then></term><term><name>SNMP_accept</name><from><source-prefix-list><name>GEANT-SNMP</name></source-prefix-list><destination-port>161</destination-port></from><then><policer>lo0-flood</policer><accept/></then></term><term><name>DNS_accept</name><from><source-prefix-list><name>GEANT-DNS</name></source-prefix-list><source-prefix-list><name>GEANT-DNS-EXT</name></source-prefix-list><port>domain</port></from><then><accept/></then></term><term><name>LDP_accept</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><source-prefix-list><name>GEANT-LDP</name></source-prefix-list><destination-port>646</destination-port></from><then><accept/></then></term><term><name>MPLS_LSP_echo_accept</name><from><source-prefix-list><name>geant-routers</name></source-prefix-list><protocol>udp</protocol><port>3503</port></from><then><accept/></then></term><term><name>RSVP_accept</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><protocol>rsvp</protocol></from><then><accept/></then></term><term><name>PIM_access</name><from><protocol>pim</protocol></from><then><accept/></then></term><term><name>BFD_accept</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><port>3784</port><port>3785</port><port>4784</port></from><then><accept/></then></term><term><name>uBFD_accept</name><from><source-prefix-list><name>geant-routers</name></source-prefix-list><protocol>udp</protocol><port>6784</port></from><then><accept/></then></term><term><name>IGMP_accept</name><from><protocol>igmp</protocol></from><then><accept/></then></term><term><name>MSDP_accept</name><from><source-prefix-list><name>GEANT-MSDP</name></source-prefix-list><port>msdp</port></from><then><accept/></then></term><term><name>TRACEROUTE_accept</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><protocol>udp</protocol><destination-port>33434-33534</destination-port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><protocol>icmp</protocol><icmp-type>echo-reply</icmp-type><icmp-type>echo-request</icmp-type><icmp-type>unreachable</icmp-type><icmp-type>time-exceeded</icmp-type><icmp-type>timestamp</icmp-type><icmp-type>timestamp-reply</icmp-type></from><then><policer>lo0-flood</policer><accept/></then></term><term><name>TWAMP</name><from><prefix-list><name>TWAMP_CLIENTS</name></prefix-list><port>862</port><port>64600-64700</port></from><then><accept/></then></term><term><name>default</name><then><discard> - </discard></then></term></filter><filter><name>DE-CIX-MRS-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>MARK_DSCP_41</name><then><next>term</next><dscp>41</dscp></then></term><term><name>Hurricane-Electric-IP-block</name><from><source-address><name>74.82.59.81/32</name></source-address></from><then><count>Hurricane-Electric-IP-block</count><discard> - </discard></then></term><term><name>tmp-ddos-block</name><from><destination-address><name>83.171.0.144/32</name></destination-address><protocol>udp</protocol><port>123</port></from><then><count>LITnet-DDOS-ATTACK</count><discard> - </discard></then></term><term><name>bogon-test</name><from><source-address><name>10.28.225.0/24</name></source-address></from><then><count>bogon-1028</count><discard> - </discard></then></term><term><name>BOGON-filter</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>bogons-source</count><discard> - </discard></then></term><term><name>dos-source-counting</name><from><source-prefix-list><name>dos-attack-source-count</name></source-prefix-list></from><then><count>dos-attack-traffic-count</count><next>term</next></then></term><term><name>dos-destination-counting</name><from><destination-prefix-list><name>dos-attack-destination-count</name></destination-prefix-list></from><then><count>dos-attack-traffic-count</count><next>term</next></then></term><term><name>dos-source-filtering</name><from><source-prefix-list><name>dos-attack-source</name></source-prefix-list></from><then><count>dos-attack-traffic</count><discard> - </discard></then></term><term><name>dos-destination-filtering</name><from><destination-prefix-list><name>dos-attack-destination</name></destination-prefix-list></from><then><count>dos-attack-traffic</count><discard> - </discard></then></term><term><name>External-Projects</name><from><destination-prefix-list><name>external-project</name></destination-prefix-list></from><then><accept/></then></term><term><name>External-project-interfaces</name><from><destination-prefix-list><name>external-project-interfaces</name></destination-prefix-list></from><then><discard> - </discard></then></term><term><name>transit-network-control-traffic</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><dscp>48</dscp><dscp>56</dscp></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><next>term</next></then></term><term><name>BGP-protect</name><from><source-address><name>185.1.47.2/32</name></source-address><source-address><name>185.1.47.252/32</name></source-address><source-address><name>185.1.47.253/32</name></source-address><source-address><name>185.1.47.38/32</name></source-address><source-address><name>185.1.47.55/32</name></source-address><source-address><name>185.1.47.54/32</name></source-address><source-address><name>185.1.47.45/32</name></source-address><source-address><name>185.1.47.46/32</name></source-address><source-address><name>185.1.47.42/32</name></source-address><source-address><name>185.1.47.21/32</name></source-address><source-address><name>185.1.47.85/32</name></source-address><source-address><name>185.1.47.9/32</name></source-address><source-address><name>185.1.47.26/32</name></source-address><source-address><name>185.1.47.48/32</name></source-address><source-address><name>185.1.47.13/32</name></source-address><source-address><name>185.1.47.28/32</name></source-address><source-address><name>185.1.47.56/32</name></source-address><source-address><name>185.1.47.79/32</name></source-address><source-address><name>185.1.47.36/32</name></source-address><source-address><name>185.1.47.4/32</name></source-address><source-address><name>185.1.47.113/32</name></source-address><destination-address><name>185.1.47.34/32</name></destination-address><destination-address><name>62.40.97.11/32</name></destination-address><destination-address><name>62.40.97.12/32</name></destination-address><protocol>tcp</protocol><port>bgp</port></from><then><count>bgp-accept</count><accept/></then></term><term><name>BGP-filter</name><from><destination-address><name>185.1.47.34/32</name></destination-address><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>bgp</port></from><then><count>bgp-attack</count><discard> - </discard></then></term><term><name>TUNNEL-accept</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>gre</protocol><protocol>ipip</protocol><protocol>ipv6</protocol></from><then><accept/></then></term><term><name>SPOOF-filter</name><from><source-prefix-list><name>corporate-address-space</name></source-prefix-list></from><then><count>spoofed-attack-traffic</count><discard> - </discard></then></term><term><name>GEANT_RADIUS_Accept</name><from><source-prefix-list><name>GEANT_TS</name></source-prefix-list><destination-prefix-list><name>GEANT_RADIUS</name></destination-prefix-list><destination-port>1645</destination-port><destination-port>1646</destination-port><destination-port>1812</destination-port><destination-port>1813</destination-port></from><then><accept/></then></term><term><name>WEB-server-accept</name><from><destination-address><name>62.40.122.147/32</name></destination-address><protocol>tcp</protocol><port>http</port></from><then><accept/></then></term><term><name>NTP-server-accept</name><from><source-address><name>138.96.64.10/32</name></source-address><protocol>udp</protocol><port>123</port></from><then><accept/></then></term><term><name>NOC-accept</name><from><destination-prefix-list><name>geantncc-address-space</name></destination-prefix-list></from><then><accept/></then></term><term><name>DNS-server-accept</name><from><destination-prefix-list><name>GEANT-DNS</name></destination-prefix-list><protocol>udp</protocol><protocol>tcp</protocol><port>domain</port></from><then><accept/></then></term><term inactive="inactive"><name>NREN-router-accept</name><from><address><name>62.40.96.12/32</name></address><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>ICMP-accept</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>UDP-traceroute</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>udp</protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>MS-MAIL-LOG</name><from><destination-address><name>62.40.123.146/32</name></destination-address><destination-address><name>62.40.104.134/31</name></destination-address><protocol>tcp</protocol><port>smtp</port></from><then><accept/></then></term><term><name>Deepfield-access</name><from><source-prefix-list><name>deepfield-support</name></source-prefix-list><destination-prefix-list><name>deepfield-servers</name></destination-prefix-list></from></term><term><name>Imerja-access</name><from><source-prefix-list><name>imerja-external</name></source-prefix-list><destination-prefix-list><name>dashboard-vm</name></destination-prefix-list><destination-prefix-list><name>Infinera-DNA-servers</name></destination-prefix-list></from><then><accept/></then></term><term><name>Infinera-access-to-DNA</name><from><source-prefix-list><name>Infinera-address-space</name></source-prefix-list><destination-prefix-list><name>Infinera-DNA-servers</name></destination-prefix-list></from><then><accept/></then></term><term><name>Infinera-access-to-ATC</name><from><source-prefix-list><name>Infinera-address-space</name></source-prefix-list><destination-prefix-list><name>infinera-atc</name></destination-prefix-list></from><then><accept/></then></term><term><name>xantaro-support-ssh</name><from><source-prefix-list><name>xantaro-address-space</name></source-prefix-list><destination-prefix-list><name>router-loopbacks</name></destination-prefix-list><port>ssh</port></from><then><accept/></then></term><term><name>xantaro-space-proxy</name><from><source-address><name>81.209.178.241/32</name></source-address><source-address><name>81.89.231.9/32</name></source-address><destination-address><name>62.40.120.18/32</name></destination-address><port>443</port></from><then><accept/></then></term><term><name>CORE-filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list></from><then><count>core-attack</count><discard> - </discard></then></term><term><name>DWS-in</name><from><dscp>32</dscp></from><then><count>dws-in</count><accept/></then></term><term><name>LBE-in</name><from><dscp>8</dscp></from><then><count>lbe-in</count><accept/></then></term><term><name>mcast-in</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-in</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>DE-CIX-MRS-out</name><term><name>DWS-out</name><from><dscp>32</dscp></from><then><count>DWS-out</count><accept/></then></term><term><name>DWS-same-out</name><from><interface-group>1</interface-group></from><then><count>DWS-out</count><accept/></then></term><term><name>LBE-out</name><from><dscp>8</dscp></from><then><count>LBE-out</count><accept/></then></term><term><name>mcast-out</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-out</count><accept/></then></term><term><name>MS-MAIL-LOG</name><from><source-address><name>62.40.123.146/32</name></source-address><source-address><name>62.40.104.134/31</name></source-address><protocol>tcp</protocol><port>smtp</port></from><then><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>PROTECTED_EXTERNAL_HEAD_IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><next>term</next></then></term><term><name>Established_accept</name><from><protocol>tcp</protocol><tcp-established/></from><then><accept/></then></term><term><name>GOC_accept</name><from><destination-prefix-list><name>geantncc-address-space</name></destination-prefix-list></from><then><accept/></then></term><term><name>GEANT_DC_INFRASTRUCTURE_accept</name><from><destination-prefix-list><name>GEANT-DC</name></destination-prefix-list><destination-prefix-list><name>GEANT-Infrastructure</name></destination-prefix-list></from><then><accept/></then></term></filter><filter><name>PROTECTED_EXTERNAL_HEAD_OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><next>term</next></then></term><term><name>Established_accept</name><from><protocol>tcp</protocol><tcp-established/></from><then><accept/></then></term><term><name>GOC_GEANT_accept</name><from><source-prefix-list><name>geantncc-address-space</name></source-prefix-list><source-prefix-list><name>corporate-address-space</name></source-prefix-list></from><then><accept/></then></term><term><name>GEANT_DC_INFRASTRUCTURE_accept</name><from><source-prefix-list><name>GEANT-DC</name></source-prefix-list><source-prefix-list><name>GEANT-Infrastructure</name></source-prefix-list></from><then><accept/></then></term><term><name>SuperPoP_DC_accept</name><from><source-address><name>83.97.92.0/22</name></source-address><destination-prefix-list><name>GEANT-DC</name></destination-prefix-list><protocol>tcp</protocol><port>88</port><port>389</port><port>445</port><port>464</port><port>3268</port></from><then><accept/></then></term></filter><filter><name>PROTECTED_EXTERNAL_TAIL_OUT</name><term><name>GEANT_SSH_accept</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>default</name><then><discard> - </discard></then></term></filter><filter><name>PROTECTED_EXTERNAL_TAIL_IN</name><term><name>GEANT_SSH_accept</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>default</name><then><discard> - </discard></then></term></filter><filter><name>BWCTL_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_TCP</name><from><protocol>tcp</protocol><destination-port>22</destination-port><destination-port>80</destination-port><destination-port>443</destination-port><destination-port>4823</destination-port><destination-port>5000-5900</destination-port><destination-port>6001-6200</destination-port><destination-port>8090</destination-port><destination-port>5001-5900</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><protocol>udp</protocol><destination-port>5000-5900</destination-port><destination-port>6001-6200</destination-port><destination-port>33434-33634</destination-port></from><then><accept/></then></term><term><name>NTP_ALLOW</name><from><source-prefix-list><name>GEANT_NTP</name></source-prefix-list><protocol>udp</protocol><port>123</port></from><then><accept/></then></term></filter><filter><name>nren_CLS_REDIRIS_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>BOGON_filter</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>bogons-source</count><discard> - </discard></then></term><term><name>DOS_source_filtering</name><from><source-prefix-list><name>dos-attack-source</name></source-prefix-list></from><then><count>dos-attack-traffic-src</count><discard> - </discard></then></term><term><name>DOS_destination_filtering</name><from><destination-prefix-list><name>dos-attack-destination</name></destination-prefix-list></from><then><count>dos-attack-traffic-dst</count><discard> - </discard></then></term><term><name>Transit_network_control_traffic</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><dscp>48</dscp><dscp>56</dscp></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><next>term</next></then></term><term><name>BGP_protect</name><from><source-address><name>62.40.100.19/32</name></source-address><destination-address><name>62.40.100.18/32</name></destination-address><protocol>tcp</protocol><port>bgp</port></from><then><accept/></then></term><term><name>BGP_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>bgp</port></from><then><syslog/><discard> - </discard></then></term><term><name>MSDP_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>tcp</protocol><port>msdp</port></from><then><syslog/><discard> - </discard></then></term><term><name>PIM_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>pim</protocol><protocol>igmp</protocol></from><then><syslog/><discard> - </discard></then></term><term><name>SPOOF_filter</name><from><source-address><name>62.40.100.19/32</name><except/></source-address><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>geant-address-space</name></source-prefix-list><source-prefix-list><name>geant-ias-address-space</name></source-prefix-list></from><then><count>spoofed-attack-traffic</count><discard> - </discard></then></term><term><name>DNS_server_accept</name><from><destination-prefix-list><name>GEANT-DNS</name></destination-prefix-list><protocol>udp</protocol><protocol>tcp</protocol><port>domain</port></from><then><accept/></then></term><term><name>NREN_router_accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><protocol>tcp</protocol><port>ssh</port></from><then><accept/></then></term><term><name>External_project_interfaces</name><from><destination-prefix-list><name>external-project-interfaces</name></destination-prefix-list></from><then><discard> - </discard></then></term><term><name>External_Projects</name><from><destination-prefix-list><name>external-project</name></destination-prefix-list></from><then><accept/></then></term><term><name>RSVP_allow</name><from><protocol>rsvp</protocol></from><then><accept/></then></term><term><name>ICMP_accept</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>UDP_traceroute</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list><protocol>udp</protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>CORE_filter</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space</name></destination-prefix-list></from><then><count>core-attack</count><discard> - </discard></then></term><term><name>MCAST_in</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-in</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_CLS_REDIRIS_OUT</name><interface-specific/><term><name>DWS_out</name><from><dscp>32</dscp></from><then><count>DWS-out</count><accept/></then></term><term><name>DWS_same_out</name><from><interface-group>1</interface-group></from><then><count>DWS-out</count><accept/></then></term><term><name>MCAST_out</name><from><destination-address><name>224.0.0.0/4</name></destination-address></from><then><count>mcast-out</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>AWTEST_MIDDLE_IN</name><term><name>TCP_Accept</name><from><protocol>tcp</protocol><port>22</port></from><then><accept/></then></term></filter><filter><name>AWTEST_MIDDLE_OUT</name><term><name>TCP_Accept</name><from><protocol>tcp</protocol><port>22</port></from><then><accept/></then></term></filter><filter><name>bone-out</name><term><name>default</name><then><accept/></then></term></filter><filter><name>bone-in</name><term><name>default</name><then><accept/></then></term></filter><filter><name>LAN-in</name><term><name>LAN-DWS-in</name><then><forwarding-class>best-effort</forwarding-class></then></term></filter></inet><inet6><filter><name>router-access-ipv6</name><term><name>nren-access-ssh</name><from><source-prefix-list><name>restena-access-v6</name></source-prefix-list><port>ssh</port></from><then><accept/></then></term><term><name>allow-ssh-ftp</name><from><source-address><name>2001:798:f99b:14::/64</name></source-address><source-address><name>2001:798:ff9a:28::/64</name></source-address><source-address><name>2001:798:22:96::/64</name></source-address><source-address><name>2001:798:5e00::/48</name></source-address><source-address><name>2001:798:2::/35</name></source-address><source-address><name>2001:630:280::/48</name></source-address><source-address><name>2001:799:3::/64</name></source-address><destination-port>ftp</destination-port><destination-port>ftp-data</destination-port><destination-port>ssh</destination-port></from><then><accept/></then></term><term><name>discard</name><from><destination-port>ftp</destination-port><destination-port>ftp-data</destination-port><destination-port>ssh</destination-port><destination-port>telnet</destination-port></from><then><discard/></then></term><term><name>ubfd-block</name><from><payload-protocol>udp</payload-protocol><destination-port>6784</destination-port></from><then><discard/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>bone6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>bone6-in</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_IAS_ARN_V6_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>ARN_blocking_service</name><from><destination-prefix-list><name>ARN6-blocking-list</name></destination-prefix-list></from><then><count>ARN-blocking-service6</count><discard/></then></term><term><name>BOGON_filter</name><from><source-prefix-list><name>bogons-list6</name></source-prefix-list></from><then><count>bogons-source6</count><discard/></then></term><term><name>DOS_source_filtering</name><from><source-prefix-list><name>dos-attack-source6</name></source-prefix-list></from><then><count>dos-attack-traffic6-src</count><discard/></then></term><term><name>DOS_destination_filtering</name><from><destination-prefix-list><name>dos-attack-destination6</name></destination-prefix-list></from><then><count>dos-attack-traffic6-dst</count><discard/></then></term><term><name>BGP_protect</name><from><source-address><name>2001:798:1::e6/128</name></source-address><destination-address><name>2001:798:1::e5/128</name></destination-address><port>bgp</port></from><then><accept/></then></term><term><name>BGP_filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><port>bgp</port></from><then><syslog/><discard/></then></term><term><name>SPOOF_filter</name><from><source-address><name>2001:798:1::e6/128</name><except/></source-address><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>geant-address-space-V6</name></source-prefix-list></from><then><count>spoofed-attack-traffic6</count><discard/></then></term><term><name>NREN_router_accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><port>ssh</port></from><then><accept/></then></term><term><name>DNS_server_accept</name><from><destination-prefix-list><name>GEANT-DNS-V6</name></destination-prefix-list><next-header>udp</next-header><next-header>tcp</next-header><port>domain</port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><next-header>icmpv6</next-header></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>UDP_traceroute</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><next-header>udp</next-header><destination-port>33434-33690</destination-port></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>External_Projects_interfaces</name><from><destination-prefix-list><name>external-project-interfaces6</name></destination-prefix-list></from><then><discard/></then></term><term><name>External_Projects</name><from><destination-prefix-list><name>external-project6</name></destination-prefix-list></from><then><accept/></then></term><term><name>CORE_filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list></from><then><count>corev6-attack</count><discard/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_IAS_ARN_V6_OUT</name><term><name>default</name><then><accept/></then></term></filter><filter><name>ARN6-in</name><interface-specific/><term><name>BOGON-filter6</name><from><source-prefix-list><name>bogons-list6</name></source-prefix-list></from><then><count>bogons-source6</count><log/><discard/></then></term><term><name>dos-source-counting6</name><from><source-prefix-list><name>dos-attack-source-count6</name></source-prefix-list></from><then><count>dos-attack-traffic-count6</count><next>term</next></then></term><term><name>dos-destination-counting6</name><from><destination-prefix-list><name>dos-attack-destination-count6</name></destination-prefix-list></from><then><count>dos-attack-traffic-count6</count><next>term</next></then></term><term><name>dos-source-filtering6</name><from><source-prefix-list><name>dos-attack-source6</name></source-prefix-list></from><then><count>dos-attack-traffic6</count><log/><discard/></then></term><term><name>dos-destination-filtering6</name><from><destination-prefix-list><name>dos-attack-destination6</name></destination-prefix-list></from><then><count>dos-attack-traffic6</count><log/><discard/></then></term><term><name>SPOOF-filter6</name><from><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>geantnoc-address-space6</name></source-prefix-list></from><then><count>spoofed-attack-traffic6</count><log/><discard/></then></term><term><name>NOC6-accept</name><from><destination-prefix-list><name>geantnoc-address-space6</name></destination-prefix-list></from><then><accept/></then></term><term><name>BGP6-protect</name><from><source-address><name>2001:798:2a:10aa::2/128</name></source-address><source-address><name>2001:798:99:1::6e/128</name></source-address><destination-address><name>2001:798:2a:10aa::1/128</name></destination-address><destination-address><name>2001:798:99:1::6d/128</name></destination-address><port>bgp</port></from><then><count>bgpv6-accept</count><accept/></then></term><term><name>BGP6-filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><port>bgp</port></from><then><count>bgpv6-attack</count><log/><syslog/><discard/></then></term><term><name>WEB6-accept</name><from><destination-address><name>2001:798:2:284d::60/128</name></destination-address><next-header>tcp</next-header><port>http</port></from><then><accept/></then></term><term><name>DNSv6-server-accept</name><from><destination-address><name>2001:798:2:284d::30/128</name></destination-address><next-header>udp</next-header><next-header>tcp</next-header><port>domain</port></from><then><accept/></then></term><term><name>ICMP-accept</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><next-header>icmpv6</next-header></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>UDP-traceroute6</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><next-header>udp</next-header><destination-port>33434-33690</destination-port></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>External-Projects-interfaces6</name><from><destination-prefix-list><name>external-project-interfaces6</name></destination-prefix-list></from><then><count>extv6-attack</count><discard/></then></term><term><name>External-Projects6</name><from><destination-prefix-list><name>external-project6</name></destination-prefix-list></from><then><accept/></then></term><term><name>CORE-filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list></from><then><count>corev6-attack</count><log/><discard/></then></term><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>ARN6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>urpfv6-filter-ARN</name><apply-groups>urpf-template</apply-groups></filter><filter><name>INTERNAL_V6_HEAD_IN</name><term><name>EXTERNAL_filter</name><from><destination-prefix-list><name>EXTERNAL-address-spaceV6</name></destination-prefix-list></from><then><discard/></then></term><term><name>Allow_Established</name><from><next-header>tcp</next-header><tcp-established/></from><then><accept/></then></term><term><name>GEANT_DC_INFRASTRUCTURE_Access</name><from><destination-prefix-list><name>GEANT-DC-v6</name></destination-prefix-list><destination-prefix-list><name>GEANT-Infrastructure-v6</name></destination-prefix-list></from><then><accept/></then></term></filter><filter><name>INTERNAL_V6_HEAD_OUT</name><term><name>EXTERNAL_filter</name><from><source-prefix-list><name>EXTERNAL-address-spaceV6</name></source-prefix-list></from><then><discard/></then></term><term><name>Allow_Established</name><from><next-header>tcp</next-header><tcp-established/></from><then><accept/></then></term><term><name>GEANT_CORP_access</name><from><source-prefix-list><name>geantnoc-address-space6</name></source-prefix-list><source-prefix-list><name>corporate-address-space6</name></source-prefix-list></from><then><accept/></then></term><term><name>GEANT_DC_INFRASTRUCTURE_Access</name><from><source-prefix-list><name>GEANT-DC-v6</name></source-prefix-list><source-prefix-list><name>GEANT-Infrastructure-v6</name></source-prefix-list></from><then><accept/></then></term><term><name>SuperPoP_DC_accept</name><from><source-address><name>2001:798:3::0/64</name></source-address><destination-prefix-list><name>GEANT-DC-v6</name></destination-prefix-list><payload-protocol>tcp</payload-protocol><port>88</port><port>389</port><port>445</port><port>464</port><port>3268</port></from><then><accept/></then></term></filter><filter><name>INTERNAL_V6_TAIL_IN</name><term><name>GEANT_SRV_SSH_Access</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><next-header>tcp</next-header><port>ssh</port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><next-header>icmpv6</next-header></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>default</name><then><discard/></then></term></filter><filter><name>INTERNAL_V6_TAIL_OUT</name><term><name>GEANT_SRV_SSH_Access</name><from><source-prefix-list><name>geant-address-space-V6</name></source-prefix-list><next-header>tcp</next-header><port>ssh</port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><next-header>icmpv6</next-header></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>default</name><then><discard/></then></term></filter><filter><name>VL023_V6_MIDDLE_IN</name><term inactive="inactive"><name>VLAN_Access_Allow</name><then><accept/></then></term><term><name>idrac</name><from><address><name>2001:610:148:dead::/64</name></address><address><name>2001:610:148:beef::/64</name></address><port>5900-5901</port></from></term></filter><filter><name>VL023_V6_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><port>443</port><port>5900-5901</port></from><then><accept/></then></term></filter><filter><name>PROTECTED_EXTERNAL_V6_HEAD_IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-spaceV6</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><payload-protocol>tcp</payload-protocol><tcp-established/></from><then><accept/></then></term><term><name>GEANT-DC-INFRASTRUCTURE-Access</name><from><destination-prefix-list><name>GEANT-DC-v6</name></destination-prefix-list><destination-prefix-list><name>GEANT-Infrastructure-v6</name></destination-prefix-list></from><then><accept/></then></term></filter><filter><name>PROTECTED_EXTERNAL_V6_HEAD_OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-spaceV6</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><payload-protocol>tcp</payload-protocol><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-access</name><from><source-prefix-list><name>geantnoc-address-space-v6</name></source-prefix-list><source-prefix-list><name>corporate-address-space6</name></source-prefix-list></from><then><accept/></then></term><term><name>GEANT-DC-INFRASTRUCTURE-Access</name><from><source-prefix-list><name>GEANT-DC-v6</name></source-prefix-list><source-prefix-list><name>GEANT-Infrastructure-v6</name></source-prefix-list></from><then><accept/></then></term><term><name>SuperPoP_DC_accept</name><from><source-address><name>2001:798:3::0/64</name></source-address><destination-prefix-list><name>GEANT-DC-v6</name></destination-prefix-list><payload-protocol>tcp</payload-protocol><port>88</port><port>389</port><port>445</port><port>464</port><port>3268</port></from><then><accept/></then></term></filter><filter><name>PROTECTED_EXTERNAL_V6_TAIL_IN</name><term><name>GEANT-SRV-SSH_Access</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><payload-protocol>tcp</payload-protocol><port>ssh</port></from><then><accept/></then></term><term><name>ICMP-accept</name><from><payload-protocol>icmp6</payload-protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>default</name><then><discard/></then></term></filter><filter><name>PROTECTED_EXTERNAL_V6_TAIL_OUT</name><term><name>GEANT-SRV-SSH_Access</name><from><source-prefix-list><name>geant-address-space-V6</name></source-prefix-list><payload-protocol>tcp</payload-protocol><port>ssh</port></from><then><accept/></then></term><term><name>ICMP-accept</name><from><payload-protocol>icmp6</payload-protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>default</name><then><discard/></then></term></filter><filter><name>PSMGMT_V6_MIDDLE_IN</name><term><name>VLAN-Access_Allow_TCP</name><from><payload-protocol>tcp</payload-protocol><destination-port>22</destination-port><destination-port>53</destination-port><destination-port>80</destination-port><destination-port>443</destination-port><destination-port>8090</destination-port><destination-port>8096</destination-port><destination-port>4505-4506</destination-port><destination-port>8140</destination-port><destination-port>5222</destination-port><destination-port>5269</destination-port><destination-port>5693</destination-port><destination-port>69</destination-port><destination-port>161</destination-port><destination-port>8081</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><payload-protocol>udp</payload-protocol><port>53</port><port>33434-33634</port><port>69</port><port>161</port><port>10050</port></from><then><accept/></then></term></filter><filter><name>PSMGMT_V6_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_TCP</name><from><payload-protocol>tcp</payload-protocol><destination-port>22</destination-port><destination-port>80</destination-port><destination-port>443</destination-port><destination-port>8090</destination-port><destination-port>10050</destination-port><destination-port>5222</destination-port><destination-port>5347</destination-port><destination-port>5693</destination-port><destination-port>5666</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><payload-protocol>udp</payload-protocol><port>53</port><port>33434-33634</port><port>10050-10051</port><port>161</port><port>162</port></from><then><accept/></then></term></filter><filter><name>OWAMP_V6_MIDDLE_IN</name><term><name>VLAN-Access_Allow_UDP</name><from><payload-protocol>udp</payload-protocol><destination-port>3000-65535</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_TCP</name><from><payload-protocol>tcp</payload-protocol><destination-port>861</destination-port><destination-port>3000-65535</destination-port><destination-port>443</destination-port></from><then><accept/></then></term></filter><filter><name>OWAMP_V6_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_TCP</name><from><payload-protocol>tcp</payload-protocol><destination-port>861</destination-port><destination-port>8090</destination-port><destination-port>443</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><payload-protocol>udp</payload-protocol><destination-port>8760-9960</destination-port><destination-port>33434-33634</destination-port></from><then><accept/></then></term></filter><filter><name>BWCTL_V6_MIDDLE_IN</name><term><name>VLAN-Access_Allow_TCP</name><from><payload-protocol>tcp</payload-protocol><destination-port>22</destination-port><destination-port>25</destination-port><destination-port>53</destination-port><destination-port>80</destination-port><destination-port>88</destination-port><destination-port>139</destination-port><destination-port>389</destination-port><destination-port>443</destination-port><destination-port>445</destination-port><destination-port>464</destination-port><destination-port>3000-65535</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><payload-protocol>udp</payload-protocol><destination-port>53</destination-port><destination-port>88</destination-port><destination-port>123</destination-port><destination-port>139</destination-port><destination-port>137</destination-port><destination-port>389</destination-port><destination-port>464</destination-port><destination-port>3000-65535</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow</name><from><destination-port>3000-65535</destination-port></from><then><accept/></then></term></filter><filter><name>BWCTL_V6_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_TCP</name><from><payload-protocol>tcp</payload-protocol><destination-port>22</destination-port><destination-port>80</destination-port><destination-port>443</destination-port><destination-port>4823</destination-port><destination-port>5000-5900</destination-port><destination-port>6001-6200</destination-port><destination-port>8090</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><payload-protocol>udp</payload-protocol><destination-port>5000-5900</destination-port><destination-port>6001-6200</destination-port><destination-port>33434-33634</destination-port></from><then><accept/></then></term><term><name>NTP_ALLOW</name><from><source-prefix-list><name>GEANT_NTP</name></source-prefix-list><payload-protocol>udp</payload-protocol><port>123</port></from><then><accept/></then></term></filter><filter><name>VL025_V6_MIDDLE_IN</name><term inactive="inactive"><name>VLAN_Access_Allow</name><then><accept/></then></term></filter><filter><name>VL025_V6_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><port>443</port></from><then><accept/></then></term></filter><filter><name>REDIR6-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>BOGON-filter6</name><from><source-prefix-list><name>bogons-list6</name></source-prefix-list></from><then><count>bogons-source6</count><discard/></then></term><term><name>dos-source-counting6</name><from><source-prefix-list><name>dos-attack-source-count6</name></source-prefix-list></from><then><count>dos-attack-traffic-count6</count><next>term</next></then></term><term><name>dos-destination-counting6</name><from><destination-prefix-list><name>dos-attack-destination-count6</name></destination-prefix-list></from><then><count>dos-attack-traffic-count6</count><next>term</next></then></term><term><name>dos-source-filtering6</name><from><source-prefix-list><name>dos-attack-source6</name></source-prefix-list></from><then><count>dos-attack-traffic6</count><discard/></then></term><term><name>dos-destination-filtering6</name><from><destination-prefix-list><name>dos-attack-destination6</name></destination-prefix-list></from><then><count>dos-attack-traffic6</count><discard/></then></term><term><name>SPOOF-filter6</name><from><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>geantnoc-address-space6</name></source-prefix-list></from><then><count>spoofed-attack-traffic6</count><discard/></then></term><term><name>NOC6-accept</name><from><destination-prefix-list><name>geantnoc-address-space6</name></destination-prefix-list></from><then><accept/></then></term><term><name>TTM-allow-tcp</name><from><destination-address><name>2001:798:2012:47::2/128</name></destination-address><payload-protocol>tcp</payload-protocol><port>9142</port><port>10259</port></from><then><accept/></then></term><term><name>BGP6-protect</name><from><source-address><name>2001:798:18:10aa::6/126</name></source-address><source-address><name>2001:798:17:10aa::2/126</name></source-address><source-address><name>2001:798:99:1::46/126</name></source-address><destination-address><name>2001:798:18:10aa::5/126</name></destination-address><destination-address><name>2001:798:17:10aa::1/126</name></destination-address><destination-address><name>2001:798:99:1::45/126</name></destination-address><port>bgp</port></from><then><count>bgpv6-accept</count><accept/></then></term><term><name>BGP6-filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><port>bgp</port></from><then><count>bgpv6-attack</count><syslog/><discard/></then></term><term><name>NREN-router-accept</name><from><destination-address><name>2001:798:12:20ff::1/128</name></destination-address><destination-address><name>2001:798:17:10ff::1/128</name></destination-address><port>ssh</port></from><then><accept/></then></term><term><name>DNSv6-server-accept</name><from><destination-address><name>2001:798:2:284d::30/128</name></destination-address><destination-address><name>2001:798:ff23:28::2/128</name></destination-address><payload-protocol>udp</payload-protocol><payload-protocol>tcp</payload-protocol><port>domain</port></from><then><accept/></then></term><term><name>TTM-allow-udp</name><from><destination-address><name>2001:798:2012:47::2/128</name></destination-address><payload-protocol>udp</payload-protocol></from><then><accept/></then></term><term><name>ICMP-accept</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><payload-protocol>icmp6</payload-protocol></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>UDP-traceroute6</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><payload-protocol>udp</payload-protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>External-Projects-interfaces6</name><from><destination-prefix-list><name>external-project-interfaces6</name></destination-prefix-list></from><then><count>extv6-attack</count><discard/></then></term><term><name>External-Projects6</name><from><destination-prefix-list><name>external-project6</name></destination-prefix-list></from><then><accept/></then></term><term><name>CORE-filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list></from><then><count>corev6-attack</count><discard/></then></term><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term><term><name>WEB6-accept</name><from><destination-address><name>2001:798:2:284d::60/128</name></destination-address><destination-address><name>2001:798:2:284d::30/128</name></destination-address><payload-protocol>tcp</payload-protocol><port>http</port></from><then><accept/></then></term></filter><filter><name>REDIR6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>nren_IAS_REDIRIS_V6_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>REDIRIS_blocking_service</name><from><destination-prefix-list><name>REDIRIS6-blocking-list</name></destination-prefix-list></from><then><count>REDIRIS-blocking-service6</count><discard/></then></term><term><name>BOGON_filter</name><from><source-prefix-list><name>bogons-list6</name></source-prefix-list></from><then><count>bogons-source6</count><discard/></then></term><term><name>DOS_source_filtering</name><from><source-prefix-list><name>dos-attack-source6</name></source-prefix-list></from><then><count>dos-attack-traffic6-src</count><discard/></then></term><term><name>DOS_destination_filtering</name><from><destination-prefix-list><name>dos-attack-destination6</name></destination-prefix-list></from><then><count>dos-attack-traffic6-dst</count><discard/></then></term><term><name>BGP_protect</name><from><source-address><name>2001:798:1::9e/128</name></source-address><destination-address><name>2001:798:1::9d/128</name></destination-address><port>bgp</port></from><then><accept/></then></term><term><name>BGP_filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list><port>bgp</port></from><then><syslog/><discard/></then></term><term><name>SPOOF_filter</name><from><source-address><name>2001:798:1::9e/128</name><except/></source-address><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>geant-address-space-V6</name></source-prefix-list><source-prefix-list><name>geant-ias-address-space-V6</name></source-prefix-list></from><then><count>spoofed-attack-traffic6</count><discard/></then></term><term><name>NREN_router_accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><port>ssh</port></from><then><accept/></then></term><term><name>DNS_server_accept</name><from><destination-prefix-list><name>GEANT-DNS-V6</name></destination-prefix-list><payload-protocol>udp</payload-protocol><payload-protocol>tcp</payload-protocol><port>domain</port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list><payload-protocol>icmp6</payload-protocol></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>UDP_traceroute</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list><payload-protocol>udp</payload-protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>External_Projects_interfaces</name><from><destination-prefix-list><name>external-project-interfaces6</name></destination-prefix-list></from><then><discard/></then></term><term><name>External_Projects</name><from><destination-prefix-list><name>external-project6</name></destination-prefix-list></from><then><accept/></then></term><term><name>CORE_filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list></from><then><count>corev6-attack</count><discard/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_IAS_REDIRIS_V6_OUT</name><term><name>default</name><then><accept/></then></term></filter><filter><name>AE10_V6_MIDDLE_OUT</name><term inactive="inactive"><name>Access_Allow</name><then><accept/></then></term><term><name>DNS</name><from><source-address><name>2001:798:ee:10::2/128</name></source-address><source-address><name>2001:798:ee:f::2/128</name></source-address><next-header>udp</next-header><port>53</port></from><then><accept/></then></term><term><name>IT_RDP_Access</name><from><source-address><name>2001:799:cb2:101::/64</name></source-address><destination-address><name>2001:798:ee:b::46/128</name></destination-address><port>3389</port></from><then><accept/></then></term><term><name>VCENTER</name><from><source-address><name>2001:798:ee:18::/64</name></source-address><source-address><name>2001:798:ee:19::/64</name></source-address><source-address><name>2001:798:ee:14::/64</name></source-address></from><then><accept/></then></term><term><name>VEEAM_PEER_SERVER</name><from><source-address><name>2001:798:ee:b::42/128</name></source-address></from><then><accept/></then></term><term><name>MAIL-Accept</name><from><address><name>2001:798:3::11f/128</name></address><port>25</port></from><then><accept/></then></term></filter><filter><name>AE10_V6_MIDDLE_IN</name><term inactive="inactive"><name>Access_Allow</name><then><accept/></then></term><term><name>DNS</name><from><destination-address><name>2001:798:ee:10::2/128</name></destination-address><destination-address><name>2001:798:ee:f::2/128</name></destination-address><next-header>udp</next-header><port>53</port></from><then><accept/></then></term><term><name>VCENTER</name><from><destination-address><name>2001:798:ee:18::/64</name></destination-address><destination-address><name>2001:798:ee:19::/64</name></destination-address><destination-address><name>2001:798:ee:14::/64</name></destination-address><next-header>tcp</next-header><port>443</port><port>9443</port><port>902</port></from><then><accept/></then></term><term><name>VEEAM_PEER_SERVER</name><from><destination-address><name>2001:798:ee:b::42/128</name></destination-address></from><then><accept/></then></term><term><name>SECURE_SMTP_ALLOW</name><from><port>587</port></from><then><accept/></then></term><term><name>MAIL-Accept</name><from><address><name>2001:798:3::11f/128</name></address><port>25</port></from><then><accept/></then></term><term><name>KACE</name><from><destination-address><name>2001:799:cb2:104::12/128</name></destination-address><destination-port>443</destination-port></from><then><accept/></then></term><term><name>ZABBIX</name><from><destination-address><name>2001:798:4:1::25/128</name></destination-address><destination-port>10051</destination-port></from><then><accept/></then></term></filter><filter><name>DE-CIX-MRS-v6-in</name><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>MARK_DSCP_41</name><then><traffic-class>41</traffic-class><next>term</next></then></term><term><name>BOGON-filter6</name><from><source-prefix-list><name>bogons-list6</name></source-prefix-list></from><then><count>bogons-source6</count><discard/></then></term><term><name>PIM-V6-log</name><from><next-header>pim</next-header></from><then><accept/></then></term><term><name>dos-source-counting6</name><from><source-prefix-list><name>dos-attack-source-count6</name></source-prefix-list></from><then><count>dos-attack-traffic-count6</count><next>term</next></then></term><term><name>dos-destination-counting6</name><from><destination-prefix-list><name>dos-attack-destination-count6</name></destination-prefix-list></from><then><count>dos-attack-traffic-count6</count><next>term</next></then></term><term><name>dos-source-filtering6</name><from><source-prefix-list><name>dos-attack-source6</name></source-prefix-list></from><then><count>dos-attack-traffic6</count><discard/></then></term><term><name>dos-destination-filtering6</name><from><destination-prefix-list><name>dos-attack-destination6</name></destination-prefix-list></from><then><count>dos-attack-traffic6</count><discard/></then></term><term><name>SPOOF-filter6</name><from><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>geantnoc-address-space6</name></source-prefix-list></from><then><count>spoofed-attack-traffic6</count><discard/></then></term><term><name>NOC6-accept</name><from><destination-prefix-list><name>geantnoc-address-space6</name></destination-prefix-list></from><then><accept/></then></term><term><name>TTM-allow-tcp</name><from><destination-address><name>2001:798:2012:47::2/128</name></destination-address><payload-protocol>tcp</payload-protocol><port>9142</port><port>10259</port></from><then><accept/></then></term><term><name>BGP6-protect</name><from><source-address><name>2001:7f8:36::1b1b:0:1/128</name></source-address><source-address><name>2001:7f8:36::50ed:fc:1/128</name></source-address><source-address><name>2001:7f8:36::50ed:fd:1/128</name></source-address><source-address><name>2001:7f8:36::787c:0:1/128</name></source-address><source-address><name>2001:7f8:36::2846:0:2/128</name></source-address><source-address><name>2001:7f8:36::2846:0:1/128</name></source-address><source-address><name>2001:7f8:36::b599:0:1/128</name></source-address><source-address><name>2001:7f8:36::b599:0:2/128</name></source-address><source-address><name>2001:7f8:36::2a:0:1/128</name></source-address><source-address><name>2001:7f8:36::f10:0:1/128</name></source-address><source-address><name>2001:7f8:36::32e6:0:1/128</name></source-address><source-address><name>2001:7f8:36::80a6:0:1/128</name></source-address><source-address><name>2001:7f8:36::80a6:0:2/128</name></source-address><source-address><name>2001:7f8:36::407d:0:1/128</name></source-address><source-address><name>2001:7f8:36::1f8b:0:1/128</name></source-address><source-address><name>2001:7f8:36::5926:0:1/128</name></source-address><source-address><name>2001:7f8:36::3b1d:0:1/128</name></source-address><source-address><name>2001:7f8:36::799d:0:1/128</name></source-address><source-address><name>2001:7f8:36::ce7:0:1/128</name></source-address><source-address><name>2001:7f8:36::3417:0:1/128</name></source-address><source-address><name>2001:7f8:36:0:3:b64:0:1/128</name></source-address><destination-address><name>2001:798:14:10aa::9/128</name></destination-address><destination-address><name>2001:7f8:36::51e5:0:1/128</name></destination-address><destination-address><name>2001:798:14:20ff::1/128</name></destination-address><destination-address><name>2001:798:22:20ff::3/128</name></destination-address><port>bgp</port></from><then><count>bgpv6-accept</count><accept/></then></term><term><name>BGP6-filter</name><from><destination-address><name>2001:7f8:36::51e5:0:1/128</name></destination-address><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><port>bgp</port></from><then><count>bgpv6-attack</count><discard/></then></term><term inactive="inactive"><name>NREN-router-accept</name><from><destination-address><name>2001:798:aa:1::4/128</name></destination-address><port>ssh</port></from><then><accept/></then></term><term><name>WEB6-accept</name><from><destination-address><name>2001:798:2:284d::60/128</name></destination-address><destination-address><name>2001:798:2:284d::30/128</name></destination-address><destination-address><name>2001:798:ff10:a5::2/128</name></destination-address><payload-protocol>tcp</payload-protocol><port>http</port><port>443</port></from><then><accept/></then></term><term><name>DNSv6-server-accept</name><from><destination-address><name>2001:798:2:284d::30/128</name></destination-address><destination-address><name>2001:798:ff23:28::2/128</name></destination-address><payload-protocol>udp</payload-protocol><payload-protocol>tcp</payload-protocol><port>domain</port></from><then><accept/></then></term><term><name>TTM-allow-udp</name><from><destination-address><name>2001:798:2012:47::2/128</name></destination-address><payload-protocol>udp</payload-protocol></from><then><accept/></then></term><term><name>ICMP-accept</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><payload-protocol>icmp6</payload-protocol></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>UDP-traceroute6</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><payload-protocol>udp</payload-protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>External-Projects6</name><from><destination-prefix-list><name>external-project6</name></destination-prefix-list></from><then><accept/></then></term><term><name>CORE-filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list></from><then><count>corev6-attack</count><discard/></then></term><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>DE-CIX-MRS-v6-out</name><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>nren_CLS_REDIRIS_V6_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>BOGON_filter</name><from><source-prefix-list><name>bogons-list6</name></source-prefix-list></from><then><count>bogons-source6</count><discard/></then></term><term><name>DOS_source_filtering</name><from><source-prefix-list><name>dos-attack-source6</name></source-prefix-list></from><then><count>dos-attack-traffic6-src</count><discard/></then></term><term><name>DOS_destination_filtering</name><from><destination-prefix-list><name>dos-attack-destination6</name></destination-prefix-list></from><then><count>dos-attack-traffic6-dst</count><discard/></then></term><term><name>BGP_protect</name><from><source-address><name>2001:798::22/128</name></source-address><destination-address><name>2001:798::21/128</name></destination-address><port>bgp</port></from><then><accept/></then></term><term><name>BGP_filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list><port>bgp</port></from><then><syslog/><discard/></then></term><term><name>SPOOF_filter</name><from><source-address><name>2001:798::22/128</name><except/></source-address><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>geant-address-space-V6</name></source-prefix-list><source-prefix-list><name>geant-ias-address-space-V6</name></source-prefix-list></from><then><count>spoofed-attack-traffic6</count><discard/></then></term><term><name>NREN_router_accept</name><from><source-prefix-list><name>nren-access</name></source-prefix-list><destination-prefix-list><name>geant-routers</name></destination-prefix-list><port>ssh</port></from><then><accept/></then></term><term><name>DNS_server_accept</name><from><destination-prefix-list><name>GEANT-DNS-V6</name></destination-prefix-list><payload-protocol>udp</payload-protocol><payload-protocol>tcp</payload-protocol><port>domain</port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list><payload-protocol>icmp6</payload-protocol></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>UDP_traceroute</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list><payload-protocol>udp</payload-protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMPv6-flood</policer><accept/></then></term><term><name>External_Projects_interfaces</name><from><destination-prefix-list><name>external-project-interfaces6</name></destination-prefix-list></from><then><discard/></then></term><term><name>External_Projects</name><from><destination-prefix-list><name>external-project6</name></destination-prefix-list></from><then><accept/></then></term><term><name>CORE_filter</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><destination-prefix-list><name>geant-ias-address-space-V6</name></destination-prefix-list></from><then><count>corev6-attack</count><discard/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_CLS_REDIRIS_V6_OUT</name><term><name>default</name><then><accept/></then></term></filter><filter><name>router-access-out_V6</name><term><name>geant-network-control-traffic</name><from><traffic-class>48</traffic-class><traffic-class>56</traffic-class></from><then><loss-priority>low</loss-priority><forwarding-class>network-control</forwarding-class><accept/></then></term><term><name>accept</name><then><accept/></then></term></filter><filter><name>ROUTER_access_V6</name><term><name>TCP_established_accept</name><from><payload-protocol>tcp</payload-protocol><tcp-established/></from><then><accept/></then></term><term><name>SSH_accept</name><from><source-address><name>2001:610:9d8:7:8000::/112</name></source-address><source-address><name>2001:610:9d8:1::4/128</name></source-address><source-address><name>2001:798:64::/64</name></source-address><source-address><name>2001:799:64::/64</name></source-address><source-address><name>2001:799:cb2:101::/64</name></source-address><source-address><name>2001:799:cb2:111::/64</name></source-address><source-address><name>2001:610:9d8:4::/64</name></source-address><source-address><name>2001:798:2::/35</name></source-address><source-prefix-list><name>geantncc-address-space-v6</name></source-prefix-list><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>restena-access-v6</name></source-prefix-list><source-prefix-list><name>nmteam-dev-servers-v6</name></source-prefix-list><source-prefix-list><name>nren-access-v6</name></source-prefix-list><source-prefix-list><name>vuln-scanner-v6</name></source-prefix-list><source-prefix-list><name>renater-access-v6</name></source-prefix-list><source-prefix-list><name>pref-list-router-access-v6</name></source-prefix-list><source-prefix-list><name>GEANT-lg-v6</name></source-prefix-list><source-prefix-list><name>opennsa-servers-v6</name></source-prefix-list><source-prefix-list><name>MDVPN-SI-TOOLS-V6</name></source-prefix-list><payload-protocol>tcp</payload-protocol><destination-port>ssh</destination-port></from><then><accept/></then></term><term><name>NE-Saltmaster</name><from><source-prefix-list><name>NE-Saltmaster-v6</name></source-prefix-list><payload-protocol>tcp</payload-protocol><destination-port>ssh</destination-port><destination-port>830</destination-port></from><then><accept/></then></term><term><name>Netconf_accept</name><from><source-prefix-list><name>GEANT-Superpop-v6</name></source-prefix-list><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><source-prefix-list><name>geant-address-space-v6</name></source-prefix-list><payload-protocol>tcp</payload-protocol><destination-port>830</destination-port></from><then><accept/></then></term><term><name>BGP_accept</name><from><source-prefix-list><name>RE_BGP_inet6</name></source-prefix-list><source-prefix-list><name>IAS_DUMMY_BGP_inet6</name></source-prefix-list><source-prefix-list><name>IAS_BGP_inet6</name></source-prefix-list><source-prefix-list><name>CLS_BGP_inet6</name></source-prefix-list><source-prefix-list><name>lhcone-l3vpn_BGP_inet6</name></source-prefix-list><source-prefix-list><name>taas-control_BGP_inet6</name></source-prefix-list><source-prefix-list><name>mgmt-l3vpn_BGP_inet6</name></source-prefix-list><source-prefix-list><name>mdvpn_BGP_inet6</name></source-prefix-list><source-prefix-list><name>mdvpn-nren-gn_BGP_inet6</name></source-prefix-list><source-prefix-list><name>confine-l3vpn_BGP_inet6</name></source-prefix-list><source-prefix-list><name>VPN-PROXY_BGP_inet6</name></source-prefix-list><source-prefix-list><name>VRR_BGP_inet6</name></source-prefix-list><source-prefix-list><name>VPN-PROXY_RI_BGP_inet6</name></source-prefix-list><payload-protocol>tcp</payload-protocol><port>bgp</port></from><then><accept/></then></term><term><name>GRE_accept</name><from><payload-protocol>gre</payload-protocol></from><then><count>EUMETSAT-GRE-v6</count><syslog/><accept/></then></term><term><name>FTP_accept</name><from><source-prefix-list><name>geantncc-address-space-v6</name></source-prefix-list><source-prefix-list><name>corporate-address-space6</name></source-prefix-list><payload-protocol>tcp</payload-protocol><destination-port>ftp</destination-port><destination-port>ftp-data</destination-port></from><then><accept/></then></term><term><name>RADIUS_accept</name><from><source-prefix-list><name>GEANT-DC-v6</name></source-prefix-list><source-prefix-list><name>GEANT-Infrastructure-v6</name></source-prefix-list><payload-protocol>udp</payload-protocol><port>1812</port><port>1813</port></from><then><accept/></then></term><term><name>NTP_accept</name><from><source-prefix-list><name>geant-routers-v6</name></source-prefix-list><source-prefix-list><name>GEANT-DC-v6</name></source-prefix-list><source-prefix-list><name>GEANT-Infrastructure-v6</name></source-prefix-list><source-prefix-list><name>geant-address-space-v6</name></source-prefix-list><source-prefix-list><name>DANTE-CH-servers-v6</name></source-prefix-list><source-prefix-list><name>ddos-scrubbing-v6</name></source-prefix-list><payload-protocol>udp</payload-protocol><port>ntp</port></from><then><accept/></then></term><term><name>DNS_accept</name><from><source-prefix-list><name>GEANT-DNS-V6</name></source-prefix-list><source-prefix-list><name>GEANT-DNS-EXT-v6</name></source-prefix-list><port>domain</port></from><then><accept/></then></term><term><name>BFD_accept</name><from><source-prefix-list><name>geant-address-space-v6</name></source-prefix-list><port>3784</port><port>3785</port><port>4784</port></from><then><accept/></then></term><term><name>TRACEROUTE_accept</name><from><payload-protocol>udp</payload-protocol><destination-port>33434-33534</destination-port></from><then><accept/></then></term><term><name>ICMP_accept</name><from><payload-protocol>icmp6</payload-protocol></from><then><policer>lo0-flood</policer><accept/></then></term><term><name>DENY</name><from><next-header>tcp</next-header><next-header>udp</next-header><port>830</port><port>bgp</port><port>ftp</port><port>ftp-data</port><port>ssh</port><port>telnet</port><port>6784</port></from><then><syslog/><discard/></then></term><term><name>default</name><then><syslog/><accept/></then></term></filter></inet6></family><policer><name>ICMP-flood</name><if-exceeding><bandwidth-limit>10m</bandwidth-limit><burst-size-limit>1m</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>ICMPv6-flood</name><if-exceeding><bandwidth-limit>10m</bandwidth-limit><burst-size-limit>1m</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>pol-rate-limiting</name><if-exceeding><bandwidth-limit>10m</bandwidth-limit><burst-size-limit>125k</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>pol-ARN-DWS-out</name><if-exceeding><bandwidth-limit>322m</bandwidth-limit><burst-size-limit>388750</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>lo0-flood</name><if-exceeding><bandwidth-limit>12m</bandwidth-limit><burst-size-limit>900k</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>IX-ARP</name><logical-interface-policer/><if-exceeding><bandwidth-limit>640k</bandwidth-limit><burst-size-limit>75k</burst-size-limit></if-exceeding><then><discard/></then></policer></firewall><routing-instances><instance><name>CLS</name><description>L3 BGP/MPLS VPN for Cloud Services (CLS)</description><instance-type>vrf</instance-type><interface><name>ae15.667</name></interface><route-distinguisher><rd-type>62.40.96.12:667</rd-type></route-distinguisher><vrf-import>ps-into-CLS-vrf</vrf-import><vrf-export>ps-from-CLS-vrf</vrf-export><vrf-target><community>target:20965:667</community></vrf-target><vrf-table-label> - </vrf-table-label><routing-options><rib><name>CLS.inet.0</name><martians><address>128.0.0.0/16</address><orlonger/><allow/></martians><martians><address>191.255.0.0/16</address><orlonger/><allow/></martians><martians><address>223.255.255.0/24</address><orlonger/><allow/></martians></rib><rib><name>CLS.inet6.0</name><static><route><name>::/0</name><discard/></route><route><name>0100::/64</name><discard/><no-readvertise/></route></static><aggregate><route><name>2001:798::/64</name><community>20965:64912</community></route></aggregate></rib><static><route><name>0.0.0.0/0</name><discard/></route><route><name>192.0.2.101/32</name><discard/><no-readvertise/></route></static><aggregate><route><name>62.40.100.0/24</name><community>20965:64912</community></route></aggregate><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options><protocols><bgp><log-updown/><group><name>CLS-NRENS-ipv6</name><description>NRENS</description><neighbor><name>2001:798::22</name><description>-- IPv6 Peering with RedIRIS --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-CLS-NREN</import><import>ps-CLS-from-REDIRIS-V6-nren</import><family><inet6><unicast><prefix-limit><maximum>125000</maximum><teardown><limit-threshold>90</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></unicast></inet6></family><export>ps-BOGONS-V6</export><export>ps-CLS-to-REDIRIS-V6-nren</export><peer-as>766</peer-as></neighbor></group><group><name>CLS-NRENS</name><description>NRENS</description><neighbor><name>62.40.100.19</name><description>REDIRIS</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-CLS-NREN</import><import>ps-CLS-from-REDIRIS-nren</import><family><inet><unicast><prefix-limit><maximum>125000</maximum><teardown><limit-threshold>90</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></unicast></inet></family><export>ps-BOGONS</export><export>ps-CLS-to-REDIRIS-nren</export><peer-as>766</peer-as></neighbor></group><group><name>CLS-PROVIDERS</name><description>PROVIDERS</description><family><inet><unicast><rib-group><ribgroup-name>cls-to-geant-geant-rtbh</ribgroup-name></rib-group></unicast></inet></family></group><group><name>CLS-PROVIDERS-ipv6</name><description>PROVIDERS</description><family><inet6><unicast><rib-group><ribgroup-name>cls-to-geant-geant-rtbh6</ribgroup-name></rib-group></unicast></inet6></family></group></bgp></protocols></instance><instance><name>IAS</name><description>GEANT IAS Internet VRF</description><instance-type>vrf</instance-type><interface><name>lt-3/0/0.61</name></interface><interface><name>ae13.100</name></interface><interface><name>ae15.333</name></interface><interface><name>ae18.333</name></interface><route-distinguisher><rd-type>20965:333</rd-type></route-distinguisher><vrf-import>ps-into-ias-vrf</vrf-import><vrf-export>ps-from-ias-vrf</vrf-export><vrf-target><community>target:20965:333</community></vrf-target><vrf-table-label><source-class-usage/></vrf-table-label><routing-options><rib><name>IAS.inet6.0</name><static><route><name>0100::/64</name><discard/><no-readvertise/></route><route><name>2001:798:1::/48</name><discard/><community>21320:64912</community></route></static></rib><static><route><name>83.97.88.0/21</name><discard/><community>21320:64912</community><community>64700:65532</community><community>64700:65533</community><community>64700:65534</community></route><route><name>192.0.2.101/32</name><discard/><no-readvertise/></route></static><label><allocation>ps-direct-route-label</allocation></label><flow><route><name>IP_Scanning_3RB6SU</name><match><destination>82.116.200.248/29</destination><source>92.118.38.53/32</source></match><then><discard/></then></route><route><name>Regra_sbc_voip_fccn_pt_S3HSJV</name><match><protocol>tcp</protocol><protocol>udp</protocol><destination-port>3478</destination-port><destination>193.137.57.194/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>minedu-gov-gr_VT2UPO</name><match><protocol>udp</protocol><port>443</port><destination>83.212.170.25/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-matriculas_NP301B</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>123</source-port><source-port>389</source-port><source-port>1900</source-port><source-port>3283</source-port><source-port>3702</source-port><destination>193.236.75.210/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-matriculas-2_PJLFJK</name><match><protocol>udp</protocol><destination-port>442</destination-port><destination>193.236.75.210/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>protect-ehealth_M08K0L</name><match><protocol>tcp</protocol><port>80</port><port>443</port><destination>195.251.99.226/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Regra_prevencao_ataques_193_136_6_51_0IWSJJ</name><match><protocol>udp</protocol><source-port>53</source-port><destination>193.136.6.51/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>1m</rate-limit></then></route><route><name>Regra_prevencao_ataques_193_136_6_49_GC0XHT</name><match><protocol>icmp</protocol><protocol>udp</protocol><destination>193.136.6.48/29</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Ataque_DDoS_193_236_38_121_LP4YXO</name><match><protocol>udp</protocol><source-port>1900</source-port><source-port>53</source-port><source-port>123</source-port><source-port>443</source-port><source-port>0</source-port><source-port>389</source-port><destination>193.236.38.121/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Maquina_comprometida_LPR9GA</name><match><destination>193.137.197.26/32</destination><source>188.120.249.106/32</source></match><then><discard/></then></route><route><name>Ataques_DDoS_UNIV_COIMBRA_Z8XDSF</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>443</source-port><source-port>389</source-port><destination>193.137.208.253/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-2_DQ6AKD</name><match><protocol>udp</protocol><fragment>is-fragment</fragment><destination>193.236.57.113/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>1m</rate-limit></then></route><route><name>Ataque_UNIV-CATOLICA_CIZC2W</name><match><destination>193.137.1.46/32</destination><source>91.213.50.0/24</source></match><then><discard/></then></route><route><name>Ataques_SQLI_193_137_197_37_T21CFI</name><match><destination>193.137.197.37/32</destination><source>45.146.164.254/32</source></match><then><discard/></then></route><route><name>ddos-rae-15dez_OLOBQL</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>123</source-port><source-port>389</source-port><source-port>1900</source-port><source-port>3283</source-port><source-port>3702</source-port><destination>193.236.75.208/31</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-ddos-15dez_7L4Q79</name><match><protocol>udp</protocol><destination-port>442</destination-port><destination>193.236.75.208/31</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ataque_univ_aveiro_SSFYYR</name><match><protocol>udp</protocol><source-port>123</source-port><source-port>53</source-port><source-port>389</source-port><destination>193.136.173.58/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>xervers-check_F2S7CV</name><match><protocol>icmp</protocol><protocol>tcp</protocol><protocol>udp</protocol><destination>193.136.250.115/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Ataque-inesctec-194_117_27_60_7FHSL7</name><match><protocol>udp</protocol><destination>194.117.27.60/32</destination><source>3.13.170.34/32</source></match><then><discard/></then></route><route><name>ddos_193_219_169_206_A9QRP4</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>389</source-port><fragment>is-fragment</fragment><destination>193.219.169.206/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_83_171_6_154_4RL81Z</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>83.171.5.154/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_193_219_61_9_4N9FEO</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>193.219.61.9/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>http_193_219_61_9_MGAEVF</name><match><protocol>tcp</protocol><destination-port>443</destination-port><destination>193.219.61.9/32</destination><source>198.54.128.151/32</source></match><then><discard/></then></route><route><name>Block_to_worpress1-geant-org_3OTITF</name><match><protocol>tcp</protocol><destination>83.97.92.46/32</destination><source>41.112.0.0/14</source></match><then><discard/></then></route><route><name>uom-ntp-1_2LQINL</name><match><protocol>udp</protocol><destination>83.212.88.5/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>100k</rate-limit></then></route><route><name>uom-ntp-2_XSL671</name><match><protocol>udp</protocol><destination>195.251.213.76/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>100k</rate-limit></then></route><route><name>EENet_tahvel_edu_ee_src3283_8WNAAR</name><match><protocol>udp</protocol><source-port>3283</source-port><destination>193.40.55.99/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Wordpress1_5MBYCH</name><match><protocol>tcp</protocol><protocol>udp</protocol><destination>83.97.92.46/32</destination><source>45.0.0.0/8</source></match><then><discard/></then></route><route><name>EENet_moodle_edu_ee_UDP_fragment_C33QQE</name><match><protocol>udp</protocol><fragment>is-fragment</fragment><destination>193.40.55.60/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_158_129_0_159_S5STD5</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>158.129.0.159/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route></flow></routing-options><protocols><bgp><log-updown/><group><name>IAS-NRENS</name><family><inet><unicast><rib-group><ribgroup-name>ias-to-geant-cls-rtbh</ribgroup-name></rib-group></unicast></inet></family><neighbor><name>83.97.88.194</name><description>-- Peering with ARN --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-NREN</import><import>ps-IAS-from-ARN-nren</import><family><inet><unicast><prefix-limit><maximum>125000</maximum></prefix-limit></unicast></inet></family><export>ps-IAS-to-ARN-Default</export><peer-as>3208</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>83.97.88.130</name><description>-- Peering with REDIRIS --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-NREN</import><import>ps-IAS-from-REDIRIS-nren</import><family><inet><unicast><prefix-limit><maximum>125000</maximum></prefix-limit></unicast></inet></family><export>ps-BOGONS</export><export>ps-IAS-to-REDIRIS-nren</export><peer-as>766</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>IAS-NRENS-ipv6</name><family><inet6><unicast><rib-group><ribgroup-name>ias-to-geant-cls-rtbh6</ribgroup-name></rib-group></unicast></inet6></family><neighbor><name>2001:798:1::e6</name><description>-- IPv6 Peering with ARN --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-NREN</import><import>ps-IAS-from-ARN-nren-v6</import><family><inet6><unicast><prefix-limit><maximum>125000</maximum></prefix-limit></unicast></inet6></family><export>ps-IAS-to-ARN-Default-V6</export><peer-as>3208</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:798:1::9e</name><description>-- IPv6 Peering with REDIRIS --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-NREN</import><import>ps-IAS-from-REDIRIS-V6-nren</import><family><inet6><unicast><prefix-limit><maximum>125000</maximum></prefix-limit></unicast></inet6></family><export>ps-BOGONS-V6</export><export>ps-IAS-to-REDIRIS-V6-nren</export><peer-as>766</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>DWS</name><type>external</type><description>--- Commodity Traffic Peerings ---</description><out-delay>30</out-delay><family><inet><any> - </any></inet></family></group><group><name>GEANT-IX-DE-CIX-MRS</name><type>external</type><description>DE-CIX - Public IPv4 Peering Group</description><out-delay>10</out-delay><import>ps-deny-all</import><family><inet><unicast><prefix-limit><maximum>150000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></unicast><any> - </any></inet></family><export>ps-deny-all</export><neighbor><name>185.1.47.2</name><description>Hurricane_Electric AS6939</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6939_Hurricane_Electric</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>253500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6939_Hurricane_Electric</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>6939</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.252</name><description>DE-CIX AS20717</description><import>ps-deny-all</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><family><inet><any><prefix-limit><maximum>360000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-deny-all</export><peer-as>20717</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.253</name><description>DE-CIX AS20717</description><import>ps-deny-all</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><family><inet><any><prefix-limit><maximum>360000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-deny-all</export><peer-as>20717</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.38</name><description>Liquid_Telecommunications AS30844</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS30844_Liquid_Telecommunications</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>7500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS30844_Liquid_Telecommunications</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>30844</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.55</name><description>Oath AS10310</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>1500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>10310</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.54</name><description>Oath AS10310</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>1500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>10310</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.45</name><description>Twitch AS46489</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_Twitch</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>45</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_Twitch</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>46489</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.46</name><description>Twitch AS46489</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_Twitch</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>45</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_Twitch</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>46489</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.42</name><description>Packet_Clearing_House AS42</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS42_Packet_Clearing_House</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>900</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS42_Packet_Clearing_House</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>42</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.21</name><description>Packet_Clearing_House AS3856</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS3856_Packet_Clearing_House</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>15</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS3856_Packet_Clearing_House</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>3856</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.85</name><description>Init7 AS13030</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS13030_Init7_Switzerland_Ltd</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>6000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS13030_Init7_Switzerland_Ltd</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>13030</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.9</name><description>Facebook AS32934</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_Facebook</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>150</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_Facebook</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>32934</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.26</name><description>Facebook AS32934</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_Facebook</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>150</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_Facebook</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>32934</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.48</name><description>Amazon AS16509</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16509_Amazon.com</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>7500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16509_Amazon.com</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>16509</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.13</name><description>Microsoft AS8075</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8075_Microsoft_Corporation</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>3500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8075_Microsoft_Corporation</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>8075</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.28</name><description>Limelight AS22822</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS22822_Limelight_Networks</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>7500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS22822_Limelight_Networks</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>22822</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.56</name><description>VERIZON_DIGITAL_MEDIA_SERVICES AS15133</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS15133_VERIZON_DIGITAL_MEDIA_SERVICES,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>7500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS15133_VERIZON_DIGITAL_MEDIA_SERVICES,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>15133</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.79</name><description>MegaFon AS31133</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS31133_MegaFon</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>30000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS31133_MegaFon</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>31133</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.36</name><description>Swisscom AS3303</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS3303_Swisscom_Switzerland_Ltd</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>15000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS3303_Swisscom_Switzerland_Ltd</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>3303</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.4</name><description>Cloudflare AS13335</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS13335_Cloudflare</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>3000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS13335_Cloudflare</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>13335</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>185.1.47.113</name><description>G-Core_Labs_S.A. AS199524</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet><any><prefix-limit><maximum>1500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>199524</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>GEANT-IXv6-DE-CIX-MRS</name><type>external</type><description>DE-CIX - Public IPv6 Peering Group</description><import>ps-deny-all</import><family><inet6><unicast><prefix-limit><maximum>150000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></unicast></inet6></family><export>ps-deny-all</export><neighbor><name>2001:7f8:36::1b1b:0:1</name><description>Hurricane_Electric AS6939</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6939_Hurricane_Electric</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>73500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6939_Hurricane_Electric</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>6939</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::50ed:fc:1</name><description>DE-CIX AS20717</description><import>ps-deny-all</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><family><inet6><any><prefix-limit><maximum>75000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-deny-all</export><peer-as>20717</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::50ed:fd:1</name><description>DE-CIX AS20717</description><import>ps-deny-all</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><family><inet6><any><prefix-limit><maximum>75000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-deny-all</export><peer-as>20717</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::787c:0:1</name><description>Liquid_Telecommunications AS30844</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS30844_Liquid_Telecommunications</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>1500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS30844_Liquid_Telecommunications</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>30844</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::2846:0:2</name><description>Oath AS10310</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>750</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>10310</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::2846:0:1</name><description>Oath AS10310</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>750</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>10310</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::b599:0:1</name><description>Twitch AS46489</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_Twitch</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>15</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_Twitch</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>46489</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::b599:0:2</name><description>Twitch AS46489</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_Twitch</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>15</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_Twitch</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>46489</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::2a:0:1</name><description>Packet_Clearing_House AS42</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS42_Packet_Clearing_House</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>900</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS42_Packet_Clearing_House</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>42</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::f10:0:1</name><description>Packet_Clearing_House AS3856</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS3856_Packet_Clearing_House</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>15</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS3856_Packet_Clearing_House</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>3856</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::32e6:0:1</name><description>Init7 AS13030</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS13030_Init7_Switzerland_Ltd</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>2250</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS13030_Init7_Switzerland_Ltd</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>13030</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::80a6:0:1</name><description>Facebook AS32934</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_Facebook</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>150</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_Facebook</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>32934</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::80a6:0:2</name><description>Facebook AS32934</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_Facebook</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>150</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_Facebook</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>32934</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::407d:0:1</name><description>Amazon AS16509</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16509_Amazon.com</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>3000</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16509_Amazon.com</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>16509</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::1f8b:0:1</name><description>Microsoft AS8075</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8075_Microsoft_Corporation</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>2600</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8075_Microsoft_Corporation</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>8075</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::5926:0:1</name><description>Limelight AS22822</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS22822_Limelight_Networks</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>750</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS22822_Limelight_Networks</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>22822</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::3b1d:0:1</name><description>VERIZON_DIGITAL_MEDIA_SERVICES AS15133</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS15133_VERIZON_DIGITAL_MEDIA_SERVICES,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>7500</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS15133_VERIZON_DIGITAL_MEDIA_SERVICES,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>15133</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::799d:0:1</name><description>MegaFon AS31133</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS31133_MegaFon</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>2250</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS31133_MegaFon</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>31133</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::ce7:0:1</name><description>Swisscom AS3303</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS3303_Swisscom_Switzerland_Ltd</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>2700</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS3303_Swisscom_Switzerland_Ltd</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>3303</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36::3417:0:1</name><description>Cloudflare AS13335</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS13335_Cloudflare</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>750</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS13335_Cloudflare</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>13335</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:36:0:3:b64:0:1</name><description>G-Core_Labs_S.A. AS199524</description><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-PRIVATE-AS-BLOCK</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</import><import>IAS_PS-FROM-PUBLIC-PEERS_DE-CIX-MRS_TAIL</import><family><inet6><any><prefix-limit><maximum>150</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</export><export>IAS_PS-TO-PUBLIC-PEERS_DE-CIX-MRS_TAIL</export><peer-as>199524</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group></bgp></protocols></instance><instance><name>coriant-mgmt</name><description>L3VPN for Coriant Groove Management</description><instance-type>vrf</instance-type><interface><name>ae2.103</name></interface><route-distinguisher><rd-type>20965:991</rd-type></route-distinguisher><vrf-import>ps-to-coriant-vrf</vrf-import><vrf-export>ps-from-coriant-vrf</vrf-export><vrf-target><community>target:20965:991</community></vrf-target><vrf-table-label> - </vrf-table-label><routing-options><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options></instance><instance><name>lhcone-l3vpn</name><routing-options><rib><name>lhcone-l3vpn.inet6.0</name><aggregate><route><name>2001:798:111:1::/64</name><community>20965:0155</community></route></aggregate></rib></routing-options></instance><instance><name>mdvpn</name><instance-type>vrf</instance-type><interface><name>lt-1/0/0.12</name></interface><interface><name>ae15.2000</name></interface><route-distinguisher><rd-type>62.40.96.12:65100</rd-type></route-distinguisher><vrf-import>mdvpn-import</vrf-import><vrf-export>mdvpn-export</vrf-export><vrf-table-label> - </vrf-table-label><routing-options><static><route><name>62.40.102.0/26</name><discard/></route></static></routing-options><protocols><bgp><log-updown/><group><name>BGPLU</name><type>internal</type><neighbor><name>62.40.102.19</name><description>MD VPN CoC - VPN-Proxy for the NREN</description><out-delay>10</out-delay><family><inet><labeled-unicast><prefix-limit><maximum>1000</maximum><teardown><limit-threshold>90</limit-threshold><idle-timeout><timeout>15</timeout></idle-timeout></teardown></prefix-limit></labeled-unicast></inet></family><peer-as>20965</peer-as></neighbor></group><group><name>BGPLU-ext</name><neighbor><name>62.40.102.43</name><description>MD VPN CoC - REDIRIS</description><out-delay>10</out-delay><family><inet><labeled-unicast><prefix-limit><maximum>1000</maximum><teardown><limit-threshold>90</limit-threshold><idle-timeout><timeout>15</timeout></idle-timeout></teardown></prefix-limit></labeled-unicast></inet></family><peer-as>766</peer-as></neighbor></group></bgp></protocols></instance></routing-instances><routing-options><nonstop-routing/><interface-routes><rib-group><inet>unicast-multicast</inet><inet6>unicast-multicastv6</inet6></rib-group></interface-routes><rib><name>inet6.0</name><static><route><name>0100::/64</name><discard/><no-readvertise/></route><route><name>::/0</name><next-hop>2001:798:1::152</next-hop></route><route><name>2001:798::/32</name><discard/><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></route><route><name>2001:799::/32</name><discard/><community>20965:155</community><community>20965:65532</community><community>20965:65533</community><community>64700:65532</community><community>64700:65533</community><community>64700:65534</community></route></static></rib><rib><name>inetflow.0</name><maximum-prefixes><limit>100</limit><threshold>90</threshold></maximum-prefixes></rib><rib><name>inet6.2</name><static><route><name>2001:798::/32</name><reject/></route></static></rib><static><route><name>172.16.5.252/30</name><next-hop>172.16.11.254</next-hop><retain/><no-readvertise/></route><route><name>192.0.2.102/32</name><next-hop>192.0.2.101</next-hop></route><route><name>0.0.0.0/0</name><next-hop>83.97.89.41</next-hop></route><route><name>192.0.2.101/32</name><discard/><no-readvertise/></route><route><name>62.40.96.0/19</name><discard/><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></route></static><flow><route><name>IP_Scanning_3RB6SU</name><match><destination>82.116.200.248/29</destination><source>92.118.38.53/32</source></match><then><discard/></then></route><route><name>Regra_sbc_voip_fccn_pt_S3HSJV</name><match><protocol>tcp</protocol><protocol>udp</protocol><destination-port>3478</destination-port><destination>193.137.57.194/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>minedu-gov-gr_VT2UPO</name><match><protocol>udp</protocol><port>443</port><destination>83.212.170.25/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-matriculas_NP301B</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>123</source-port><source-port>389</source-port><source-port>1900</source-port><source-port>3283</source-port><source-port>3702</source-port><destination>193.236.75.210/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-matriculas-2_PJLFJK</name><match><protocol>udp</protocol><destination-port>442</destination-port><destination>193.236.75.210/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>protect-ehealth_M08K0L</name><match><protocol>tcp</protocol><port>80</port><port>443</port><destination>195.251.99.226/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Regra_prevencao_ataques_193_136_6_51_0IWSJJ</name><match><protocol>udp</protocol><source-port>53</source-port><destination>193.136.6.51/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>1m</rate-limit></then></route><route><name>Regra_prevencao_ataques_193_136_6_49_GC0XHT</name><match><protocol>icmp</protocol><protocol>udp</protocol><destination>193.136.6.48/29</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Ataque_DDoS_193_236_38_121_LP4YXO</name><match><protocol>udp</protocol><source-port>1900</source-port><source-port>53</source-port><source-port>123</source-port><source-port>443</source-port><source-port>0</source-port><source-port>389</source-port><destination>193.236.38.121/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Maquina_comprometida_LPR9GA</name><match><destination>193.137.197.26/32</destination><source>188.120.249.106/32</source></match><then><discard/></then></route><route><name>Ataques_DDoS_UNIV_COIMBRA_Z8XDSF</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>443</source-port><source-port>389</source-port><destination>193.137.208.253/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-2_DQ6AKD</name><match><protocol>udp</protocol><fragment>is-fragment</fragment><destination>193.236.57.113/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>1m</rate-limit></then></route><route><name>Ataque_UNIV-CATOLICA_CIZC2W</name><match><destination>193.137.1.46/32</destination><source>91.213.50.0/24</source></match><then><discard/></then></route><route><name>Ataques_SQLI_193_137_197_37_T21CFI</name><match><destination>193.137.197.37/32</destination><source>45.146.164.254/32</source></match><then><discard/></then></route><route><name>ddos-rae-15dez_OLOBQL</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>123</source-port><source-port>389</source-port><source-port>1900</source-port><source-port>3283</source-port><source-port>3702</source-port><destination>193.236.75.208/31</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>rae-ddos-15dez_7L4Q79</name><match><protocol>udp</protocol><destination-port>442</destination-port><destination>193.236.75.208/31</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ataque_univ_aveiro_SSFYYR</name><match><protocol>udp</protocol><source-port>123</source-port><source-port>53</source-port><source-port>389</source-port><destination>193.136.173.58/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>xervers-check_F2S7CV</name><match><protocol>icmp</protocol><protocol>tcp</protocol><protocol>udp</protocol><destination>193.136.250.115/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Ataque-inesctec-194_117_27_60_7FHSL7</name><match><protocol>udp</protocol><destination>194.117.27.60/32</destination><source>3.13.170.34/32</source></match><then><discard/></then></route><route><name>ddos_193_219_169_206_A9QRP4</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>53</source-port><source-port>389</source-port><fragment>is-fragment</fragment><destination>193.219.169.206/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_83_171_6_154_4RL81Z</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>83.171.5.154/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_193_219_61_9_4N9FEO</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>193.219.61.9/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>http_193_219_61_9_MGAEVF</name><match><protocol>tcp</protocol><destination-port>443</destination-port><destination>193.219.61.9/32</destination><source>198.54.128.151/32</source></match><then><discard/></then></route><route><name>Block_to_worpress1-geant-org_3OTITF</name><match><protocol>tcp</protocol><destination>83.97.92.46/32</destination><source>41.112.0.0/14</source></match><then><discard/></then></route><route><name>uom-ntp-1_2LQINL</name><match><protocol>udp</protocol><destination>83.212.88.5/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>100k</rate-limit></then></route><route><name>uom-ntp-2_XSL671</name><match><protocol>udp</protocol><destination>195.251.213.76/32</destination><source>0.0.0.0/0</source></match><then><rate-limit>100k</rate-limit></then></route><route><name>EENet_tahvel_edu_ee_src3283_8WNAAR</name><match><protocol>udp</protocol><source-port>3283</source-port><destination>193.40.55.99/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>Wordpress1_5MBYCH</name><match><protocol>tcp</protocol><protocol>udp</protocol><destination>83.97.92.46/32</destination><source>45.0.0.0/8</source></match><then><discard/></then></route><route><name>EENet_moodle_edu_ee_UDP_fragment_C33QQE</name><match><protocol>udp</protocol><fragment>is-fragment</fragment><destination>193.40.55.60/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route><route><name>ddos_158_129_0_159_S5STD5</name><match><protocol>udp</protocol><source-port>0</source-port><source-port>389</source-port><source-port>53</source-port><fragment>is-fragment</fragment><destination>158.129.0.159/32</destination><source>0.0.0.0/0</source></match><then><discard/></then></route></flow><rib-groups><name>unicast-multicast</name><export-rib>inet.0</export-rib><import-rib>inet.0</import-rib><import-rib>inet.2</import-rib></rib-groups><rib-groups><name>unicast-multicastv6</name><export-rib>inet6.0</export-rib><import-rib>inet6.0</import-rib><import-rib>inet6.2</import-rib></rib-groups><rib-groups><name>multicast</name><export-rib>inet.2</export-rib><import-rib>inet.2</import-rib></rib-groups><rib-groups><name>multicastv6</name><import-rib>inet6.2</import-rib></rib-groups><rib-groups><name>ias-to-geant-cls-rtbh</name><import-rib>IAS.inet.0</import-rib><import-rib>CLS.inet.0</import-rib><import-rib>inet.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><rib-groups><name>ias-to-geant-cls-rtbh6</name><import-rib>IAS.inet6.0</import-rib><import-rib>CLS.inet6.0</import-rib><import-rib>inet6.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><rib-groups><name>geant-to-ias-cls-rtbh</name><import-rib>inet.0</import-rib><import-rib>IAS.inet.0</import-rib><import-rib>CLS.inet.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><rib-groups><name>geant-to-ias-cls-rtbh6</name><import-rib>inet6.0</import-rib><import-rib>IAS.inet6.0</import-rib><import-rib>CLS.inet6.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><rib-groups><name>cls-to-geant-geant-rtbh</name><import-rib>CLS.inet.0</import-rib><import-rib>inet.0</import-rib><import-rib>IAS.inet.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><rib-groups><name>cls-to-geant-geant-rtbh6</name><import-rib>CLS.inet6.0</import-rib><import-rib>inet6.0</import-rib><import-rib>IAS.inet6.0</import-rib><import-policy>rtbh-policy</import-policy></rib-groups><router-id>62.40.96.12</router-id><autonomous-system><as-number>20965</as-number></autonomous-system><forwarding-table><export>dest-class-usage</export><export>source-class-usage</export></forwarding-table><validation><notification-rib>IAS.inet.0</notification-rib><notification-rib>IAS.inet6.0</notification-rib><notification-rib>CLS.inet6.0</notification-rib><notification-rib>CLS.inet.0</notification-rib><notification-rib>inet.0</notification-rib><notification-rib>inet6.0</notification-rib><group><name>octo-rpki</name><session><name>83.97.94.110</name><port>8282</port><local-address>62.40.96.12</local-address></session></group><group><name>routinator</name><session><name>83.97.94.109</name><port>8282</port><local-address>62.40.96.12</local-address></session></group></validation></routing-options><protocols><neighbor-discovery><onlink-subnet-only/></neighbor-discovery><msdp><rib-group><ribgroup-name>multicast</ribgroup-name></rib-group><active-source-limit><maximum>20000</maximum><threshold>20000</threshold><log-interval>32700</log-interval></active-source-limit><local-address>62.40.96.12</local-address><source><name>0.0.0.0/0</name><active-source-limit><maximum>1000</maximum><threshold>900</threshold><log-interval>32700</log-interval></active-source-limit></source><group><name>internal_msdp</name><mode>mesh-group</mode><export>Bogon-Sources</export><export>ASM-Allow</export><import>Bogon-Sources</import><import>ASM-Allow</import><peer><name>62.40.97.11</name></peer><peer><name>62.40.96.19</name></peer><peer><name>62.40.97.1</name></peer><peer><name>62.40.97.12</name></peer><peer><name>62.40.97.14</name></peer><peer><name>62.40.96.26</name></peer><peer><name>62.40.96.16</name></peer><peer><name>62.40.97.5</name></peer><peer><name>62.40.97.16</name></peer><peer><name>62.40.97.15</name></peer><peer><name>62.40.97.13</name></peer><peer><name>62.40.97.10</name></peer><peer><name>62.40.97.2</name></peer><peer><name>62.40.96.21</name></peer><peer><name>62.40.97.7</name></peer><peer><name>62.40.96.11</name></peer><peer><name>62.40.97.4</name></peer><peer><name>62.40.96.20</name></peer><peer><name>62.40.96.17</name></peer><peer><name>62.40.96.10</name></peer><peer><name>62.40.96.8</name></peer><peer><name>62.40.96.25</name></peer><peer><name>62.40.96.3</name></peer><peer><name>62.40.96.15</name></peer><peer><name>62.40.96.39</name></peer><peer><name>62.40.96.51</name></peer><peer><name>62.40.96.60</name></peer><peer><name>62.40.96.52</name></peer><peer><name>62.40.96.53</name></peer><peer><name>62.40.96.58</name></peer><peer><name>62.40.96.59</name></peer></group><group><name>external_msdp</name><export>Bogon-Sources</export><export>ASM-Allow</export><import>Bogon-Sources</import><import>ASM-Allow</import><peer><name>62.40.124.193</name><local-address>62.40.124.192</local-address></peer></group></msdp><ldp><preference>16</preference><track-igp-metric/><deaggregate/><interface><name>ae0.0</name></interface><interface><name>ae1.0</name></interface><interface><name>lo0.0</name></interface></ldp><bgp><precision-timers/><path-selection><external-router-id/></path-selection><log-updown/><undocumented><drop-path-attributes>128</drop-path-attributes></undocumented><group><name>TOOLS</name><type>internal</type><description>PEERING WITH TOOLS</description><local-address>62.40.96.12</local-address><neighbor><name>83.97.93.247</name><description>EARL Netflow/ISIS/BGP feed VM</description><hold-time>180</hold-time><passive/><import>ps-deny-all</import><family><inet><unicast> - </unicast><multicast> - </multicast></inet><inet-vpn><unicast> - </unicast></inet-vpn></family><local-as><as-number>20965</as-number></local-as></neighbor><neighbor><name>193.177.129.61</name><description>Kentik EU</description><hold-time>720</hold-time><import>ps-deny-all</import><family><inet><unicast> - </unicast></inet><inet-vpn><unicast> - </unicast></inet-vpn><inet6-vpn><unicast> - </unicast></inet6-vpn></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.96.12</cluster><local-as><as-number>20965</as-number></local-as></neighbor></group><group><name>eGEANT</name><type>external</type><family><inet><unicast><rib-group><ribgroup-name>geant-to-ias-cls-rtbh</ribgroup-name></rib-group></unicast><multicast> - </multicast><any> - </any></inet></family><neighbor><name>62.40.124.193</name><description>--Peering with RedIRIS --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-RE-NREN</import><import>ps-from-REDIRIS-nren</import><family><inet><any> - </any></inet></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-to-REDIRIS-nren</export><peer-as>766</peer-as></neighbor></group><group><name>eGEANT6</name><type>external</type><family><inet6><unicast><rib-group><ribgroup-name>geant-to-ias-cls-rtbh6</ribgroup-name></rib-group></unicast><multicast> - </multicast><any> - </any></inet6></family><neighbor><name>2001:798:99:1::46</name><description>-- IPv6 Peering with RedIRIS --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-RPKI-RE-NREN</import><import>ps-from-REDIRIS-V6-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-to-REDIRIS-V6-nren</export><peer-as>766</peer-as></neighbor></group><group><name>iGEANT</name><type>internal</type><local-address>62.40.96.12</local-address><import>rtbh-ibgp</import><import>ps-RPKI-iBGP</import><family><inet><unicast><rib-group><ribgroup-name>geant-to-ias-cls-rtbh</ribgroup-name></rib-group></unicast><flow inactive="inactive"><no-validate>accept-all-flowspec</no-validate></flow><any> - </any></inet><inet-vpn><unicast> - </unicast><flow inactive="inactive"> - </flow></inet-vpn><inet6-vpn><unicast> - </unicast></inet6-vpn><l2vpn><signaling> - </signaling></l2vpn><evpn><signaling> - </signaling></evpn></family><authentication-key>/* SECRET-DATA */</authentication-key><neighbor><name>62.40.97.11</name><description>mx1.ams.nl.geant.net</description></neighbor><neighbor><name>62.40.96.19</name><description>mx1.buc.ro.geant.net</description></neighbor><neighbor><name>62.40.97.1</name><description>mx1.bud.hu.geant.net</description></neighbor><neighbor><name>62.40.97.12</name><description>mx1.fra.de.geant.net</description></neighbor><neighbor><name>62.40.97.14</name><description>mx1.gen.ch.geant.net</description></neighbor><neighbor><name>62.40.96.26</name><description>mx1.ham.de.geant.net</description></neighbor><neighbor><name>62.40.96.16</name><description>mx1.lis.pt.geant.net</description></neighbor><neighbor><name>62.40.97.5</name><description>mx1.lon.uk.geant.net</description></neighbor><neighbor><name>62.40.97.16</name><description>mx1.mad.es.geant.net</description></neighbor><neighbor><name>62.40.97.15</name><description>mx1.mil2.it.geant.net</description></neighbor><neighbor><name>62.40.97.13</name><description>mx1.par.fr.geant.net</description></neighbor><neighbor><name>62.40.97.10</name><description>mx1.poz.pl.geant.net</description></neighbor><neighbor><name>62.40.97.2</name><description>mx1.pra.cz.geant.net</description></neighbor><neighbor><name>62.40.96.21</name><description>mx1.sof.bg.geant.net</description></neighbor><neighbor><name>62.40.97.7</name><description>mx1.vie.at.geant.net</description></neighbor><neighbor><name>62.40.96.11</name><description>mx2.ath.gr.geant.net</description></neighbor><neighbor><name>62.40.97.4</name><description>mx2.bra.sk.geant.net</description></neighbor><neighbor><name>62.40.96.20</name><description>mx2.bru.be.geant.net</description></neighbor><neighbor><name>62.40.96.17</name><description>mx2.lis.pt.geant.net</description></neighbor><neighbor><name>62.40.96.10</name><description>mx2.lju.si.geant.net</description></neighbor><neighbor><name>62.40.96.8</name><description>mx2.zag.hr.geant.net</description></neighbor><neighbor><name>62.40.96.15</name><description>mx1.lon2.uk.geant.net</description></neighbor><neighbor><name>62.40.96.3</name><description>mx1.dub.ie.geant.net</description></neighbor><neighbor><name>62.40.96.25</name><description>mx1.dub2.ie.geant.net</description></neighbor><neighbor><name>62.40.96.39</name><description>mx1.ath2.gr.geant.net</description></neighbor><neighbor><name>62.40.96.51</name><description>rt1.tal.ee.geant.net</description></neighbor><neighbor><name>62.40.96.60</name><description>rt2.tal.ee.geant.net</description></neighbor><neighbor><name>62.40.96.52</name><description>rt1.kau.lt.geant.net</description></neighbor><neighbor><name>62.40.96.53</name><description>rt2.kau.lt.geant.net</description></neighbor><neighbor><name>62.40.96.58</name><description>rt1.rig.lv.geant.net</description></neighbor><neighbor><name>62.40.96.59</name><description>rt2.rig.lv.geant.net</description></neighbor><neighbor><name>62.40.96.62</name><description>rt2.ams.nl.geant.net</description></neighbor><neighbor><name>62.40.96.36</name><description>rt1.por.pt.geant.net</description></neighbor><neighbor><name>62.40.96.42</name><description>rt1.bil.es.geant.net</description></neighbor></group><group><name>iGEANT6</name><type>internal</type><local-address>2001:798:aa:1::4</local-address><import>rtbh-ibgp</import><import>ps-RPKI-iBGP</import><family><inet6><unicast><rib-group><ribgroup-name>geant-to-ias-cls-rtbh6</ribgroup-name></rib-group></unicast><any> - </any></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><neighbor><name>2001:798:22:20ff::3</name><description>mx1.ams.nl.geant.net</description></neighbor><neighbor><name>2001:798:2b:10ff::3</name><description>mx1.buc.ro.geant.net</description></neighbor><neighbor><name>2001:798:1b:20ff::1</name><description>mx1.bud.hu.geant.net</description></neighbor><neighbor><name>2001:798:14:20ff::1</name><description>mx1.fra.de.geant.net</description></neighbor><neighbor><name>2001:798:12:20ff::1</name><description>mx1.gen.ch.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::3</name><description>mx1.ham.de.geant.net</description></neighbor><neighbor><name>2001:798:2f:20ff::1</name><description>mx1.lis.pt.geant.net</description></neighbor><neighbor><name>2001:798:28:20ff::1</name><description>mx1.lon.uk.geant.net</description></neighbor><neighbor><name>2001:798:17:20ff::1</name><description>mx1.mad.es.geant.net</description></neighbor><neighbor><name>2001:798:1e:20ff::3</name><description>mx1.mil2.it.geant.net</description></neighbor><neighbor><name>2001:798:18:20ff::3</name><description>mx1.par.fr.geant.net</description></neighbor><neighbor><name>2001:798:23:20ff::1</name><description>mx1.poz.pl.geant.net</description></neighbor><neighbor><name>2001:798:13:20ff::1</name><description>mx1.pra.cz.geant.net</description></neighbor><neighbor><name>2001:798:2c:10ff::2</name><description>mx1.sof.bg.geant.net</description></neighbor><neighbor><name>2001:798:10:20ff::1</name><description>mx1.vie.at.geant.net</description></neighbor><neighbor><name>2001:798:19:20ff::1</name><description>mx2.ath.gr.geant.net</description></neighbor><neighbor><name>2001:798:33:20ff::2</name><description>mx2.bra.sk.geant.net</description></neighbor><neighbor><name>2001:798:2b:20ff::2</name><description>mx2.bru.be.geant.net</description></neighbor><neighbor><name>2001:798:2f:20ff::2</name><description>mx2.lis.pt.geant.net</description></neighbor><neighbor><name>2001:798:32:20ff::2</name><description>mx2.lju.si.geant.net</description></neighbor><neighbor><name>2001:798:2d:20ff::2</name><description>mx2.zag.hr.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::5</name><description>mx1.lon2.uk.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::1</name><description>mx1.dub.ie.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::2</name><description>mx1.dub2.ie.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::a</name><description>mx1.ath2.gr.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::17</name><description>rt1.tal.ee.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::20</name><description>rt2.tal.ee.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::18</name><description>rt1.kau.lt.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::19</name><description>rt2.kau.lt.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::1e</name><description>rt1.rig.lv.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::1f</name><description>rt2.rig.lv.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::c</name><description>rt2.ams.nl.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::22</name><description>rt1.por.pt.geant.net</description></neighbor><neighbor><name>2001:798:aa:1::d</name><description>rt1.bil.es.geant.net</description></neighbor></group><group><name>IBGP-VPN-Proxy</name><type>internal</type><local-address>62.40.98.10</local-address><advertise-inactive/><family><inet><unicast> - </unicast></inet></family><export>nhs</export><cluster>1.1.1.24</cluster><peer-as>20965</peer-as><neighbor><name>62.40.98.11</name><description>Peering with VPN-Proxy for joining VPN-RR</description></neighbor></group><group><name>DUMMY_EBGP</name><type>external</type><description>Dummy group for stability; see XTAC TT#2016122634000229</description><local-address>62.40.96.12</local-address><family><inet><unicast> - </unicast><multicast> - </multicast><flow inactive="inactive"> - </flow></inet><inet-vpn><unicast> - </unicast><flow inactive="inactive"> - </flow></inet-vpn><inet6><unicast> - </unicast><multicast> - </multicast></inet6><inet6-vpn><unicast> - </unicast></inet6-vpn><l2vpn><signaling> - </signaling></l2vpn></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.96.12</cluster><peer-as>56902</peer-as><local-as><as-number>20965</as-number></local-as><neighbor><name>192.168.254.254</name><passive/><import>ps-deny-all</import><export>nhs-ibgp</export></neighbor></group><group><name>DUMMY_EBGP6</name><type>external</type><description>Dummy group for stability; see XTAC TT#2016122634000229</description><local-address>2001:798:aa:1::4</local-address><family><inet6><unicast> - </unicast><multicast> - </multicast></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.96.12</cluster><peer-as>56902</peer-as><local-as><as-number>20965</as-number></local-as><neighbor><name>100::1</name><passive/><import>ps-deny-all</import><export>nhs-ibgp</export></neighbor></group><group><name>TOOLSv6</name><type>internal</type><description>PEERING WITH TOOLS</description><local-address>2001:798:aa:1::4</local-address><neighbor><name>2001:798:3::1de</name><description>EARL Netflow/ISIS/BGP feed VM</description><hold-time>180</hold-time><import>ps-deny-all</import><family><inet6><unicast> - </unicast><multicast> - </multicast></inet6></family><local-as><as-number>20965</as-number></local-as></neighbor><neighbor><name>2a0c:dec0:f100:1::179</name><description>Kentik EU</description><hold-time>720</hold-time><import>ps-deny-all</import><family><inet6><unicast> - </unicast></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.96.12</cluster><local-as><as-number>20965</as-number></local-as></neighbor></group><group><name>GEANT-RE</name><neighbor><name>62.40.125.42</name><description>ARN</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-RE-PEER</import><import>ps-from-ARN-nren</import><authentication-key inactive="inactive">/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-to-ARN-nren</export><peer-as>3208</peer-as></neighbor></group><group><name>GEANT-REv6</name><neighbor><name>2001:798:99:1::6e</name><description>ARN</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-RPKI-RE-PEER</import><import>ps-from-ARN-V6-nren</import><export>ps-BOGONS-V6</export><export>ps-to-ARN-V6-nren</export><peer-as>3208</peer-as></neighbor></group></bgp><isis><rib-group><inet>unicast-multicast</inet><inet6>unicast-multicastv6</inet6></rib-group><backup-spf-options><use-post-convergence-lfa> - </use-post-convergence-lfa><use-source-packet-routing> - </use-source-packet-routing></backup-spf-options><source-packet-routing><node-segment><ipv4-index>4612</ipv4-index><ipv6-index>6612</ipv6-index><index-range>8192</index-range></node-segment></source-packet-routing><level><name>1</name><disable/></level><level><name>2</name><wide-metrics-only/></level><interface><name>ae0.0</name><point-to-point/><level><name>2</name><post-convergence-lfa><node-protection> - </node-protection></post-convergence-lfa><metric>32</metric></level></interface><interface><name>ae1.0</name><point-to-point/><level><name>2</name><post-convergence-lfa><node-protection> - </node-protection></post-convergence-lfa><metric>32</metric></level></interface><interface><name>all</name><passive> - </passive></interface><interface><name>fxp0.0</name><disable/></interface></isis><igmp><interface><name>all</name><disable/></interface><interface><name>dsc.0</name><version>3</version><static><group><name>232.223.222.1</name><source><name>212.201.139.66</name></source><source><name>193.17.9.3</name></source></group></static></interface></igmp><mld><interface><name>all</name><disable/></interface></mld><rsvp><interface><name>all</name></interface></rsvp><mpls><explicit-null/><ipv6-tunneling/><icmp-tunneling/><interface><name>all</name></interface></mpls><pim><rib-group><inet>multicast</inet><inet6>multicastv6</inet6></rib-group><rp><bootstrap-import>no-bsr</bootstrap-import><bootstrap><family><inet6><priority>1</priority><import>pim-import</import><export>pim-export</export></inet6></family></bootstrap><embedded-rp><group-ranges><name>ff7e::/16</name></group-ranges></embedded-rp><static><address><name>10.10.10.10</name></address><address><name>2001:660:3007:300:1::</name><group-ranges><name>ff0e::/16</name></group-ranges><group-ranges><name>ff1e::/16</name></group-ranges><group-ranges><name>ff3e::/16</name></group-ranges></address><address><name>2001:798:2016:10ff::3</name><group-ranges><name>ff08::1/128</name></group-ranges></address></static></rp><interface><name>all</name><mode>sparse</mode></interface><interface><name>fxp0.0</name><disable/></interface></pim><l2circuit><neighbor><name>62.40.96.20</name><interface><name>ae15.197</name><virtual-circuit-id>14001</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ae15.186</name><virtual-circuit-id>14010</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ae15.189</name><virtual-circuit-id>14013</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ae15.190</name><virtual-circuit-id>14014</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ae15.187</name><virtual-circuit-id>14011</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ae15.188</name><virtual-circuit-id>14012</virtual-circuit-id><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.3</name><interface inactive="inactive"><name>ae15.9</name><virtual-circuit-id>9</virtual-circuit-id><no-control-word/><mtu>9100</mtu><ignore-encapsulation-mismatch/></interface></neighbor><neighbor><name>62.40.97.10</name></neighbor><neighbor><name>62.0.0.0</name></neighbor><neighbor><name>62.40.97.5</name><interface><name>ae15.196</name><virtual-circuit-id>13013</virtual-circuit-id><no-control-word/><mtu>9100</mtu></interface><interface><name>ae15.930</name><virtual-circuit-id>160181</virtual-circuit-id><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.13</name></neighbor><neighbor><name>62.40.97.11</name><interface><name>ae15.409</name><virtual-circuit-id>4000010001</virtual-circuit-id><description>SRV_GCS CUSTOMER GEANT | RedIRIS_USC_ExpressRoute_Vlan409 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED</description><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.14</name></neighbor><neighbor><name>62.40.96.11</name></neighbor><neighbor><name>62.40.97.12</name><interface><name>ae15.766</name><virtual-circuit-id>120092</virtual-circuit-id><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.96.62</name><interface><name>ae15.412</name><virtual-circuit-id>160920202</virtual-circuit-id><no-control-word/><ignore-mtu-mismatch/></interface></neighbor></l2circuit><lldp><port-id-subtype>interface-name</port-id-subtype><interface><name>all</name><disable/></interface><interface><name>fxp0</name></interface><interface><name>et-3/0/0</name></interface><interface><name>et-2/0/0</name></interface><interface><name>xe-0/0/0</name></interface><interface><name>xe-1/1/1</name></interface><interface><name>et-4/0/0</name></interface></lldp></protocols></configuration> \ No newline at end of file diff --git a/test/data/router-info.json b/test/data/router-info.json index 213f34b48238c27b9d813ccddb8c914280e64405..cb5ddc3b55b0e47a07d09dc100afbea0e6caba11 100644 Binary files a/test/data/router-info.json and b/test/data/router-info.json differ diff --git a/test/test_general_poller_routes.py b/test/test_general_poller_routes.py index 4a40cb4f4ad971370700b45c5ae51faddb286917..dab2f8b38c16904f78ab84af4b2faf1d2675822f 100644 --- a/test/test_general_poller_routes.py +++ b/test/test_general_poller_routes.py @@ -318,86 +318,98 @@ def test_interface_dashboard_mapping(description, expected_dashboards): assert set(list(dashboards)) == set(expected_dashboards) -@pytest.mark.parametrize('interface,dashboard_info', [ +@pytest.mark.parametrize('interface,customers,dashboard_info', [ ({ 'description': 'SRV_IAS CUSTOMER JISC #JISC-AP1-IAS IASPS | ASN786', 'dashboards': ['IAS_CUSTOMER', 'NREN'] - }, {'name': 'JISC', 'interface_type': 'LOGICAL'}), + }, [{'name': 'JISC'}], {'name': 'JISC', 'interface_type': 'LOGICAL'}), ({ 'description': 'SRV_L2CIRCUIT CUSTOMER JISC JISC #DUB-LON-NRENBBEXT-JANET-13015 | backup for niran ', # noqa: E501 'dashboards': ['L2_CIRCUIT'] - }, {'name': 'JISC', 'interface_type': 'LOGICAL'}), + }, [{'name': 'JISC'}], {'name': 'JISC', 'interface_type': 'LOGICAL'}), ({ 'description': 'SRV_L3VPN CUSTOMER EENET #EENET-AP2-LHCONE | ASN3221', 'dashboards': ['LHCONE', 'LHCONE_CUST', 'NREN'] - }, {'name': 'EENET', 'interface_type': 'LOGICAL'}), + }, [{'name': 'EENET'}], {'name': 'EENET', 'interface_type': 'LOGICAL'}), ({ 'description': 'SRV_IAS PRIVATE OPTIMA-TELEKOM #HR-EduZone | For Eduzone', # noqa: E501 'dashboards': ['IAS_PEERS', 'IAS_PRIVATE'] - }, {'name': 'OPTIMA-TELEKOM', 'interface_type': 'LOGICAL'}), + }, + [{'name': 'OPTIMA-TELEKOM'}], + {'name': 'OPTIMA-TELEKOM', 'interface_type': 'LOGICAL'}), ({ 'description': 'SRV_CLS PRIVATE AWS #AT-AWS-CLS|ASN16509 | ', 'dashboards': ['CLS', 'CLS_PEERS'] - }, {'name': 'AWS', 'interface_type': 'LOGICAL'}), + }, [{'name': 'AWS'}], {'name': 'AWS', 'interface_type': 'LOGICAL'}), ({ 'description': 'SRV_IAS PUBLIC MIX #IX_Peerings_in_MIX |', 'dashboards': ['IAS_PEERS', 'IAS_PUBLIC'] - }, {'name': 'MIX', 'interface_type': 'LOGICAL'}), + }, [{'name': 'MIX'}], {'name': 'MIX', 'interface_type': 'LOGICAL'}), ({ 'description': 'LAG INFRASTRUCTURE BACKBONE SRF0000001 | bil-por', 'dashboards': ['INFRASTRUCTURE_BACKBONE'] - }, {'name': 'bil-por', 'interface_type': 'AGGREGATE'}), + }, [{'name': 'bil-por'}], {'name': 'bil-por', 'interface_type': 'AGGREGATE'}), # noqa: E501 ({ 'description': 'SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001 | bil-por', # noqa: E501 'dashboards': ['INFRASTRUCTURE_BACKBONE'] - }, {'name': 'bil-por', 'interface_type': 'LOGICAL'}), + }, [{'name': 'bil-por'}], {'name': 'bil-por', 'interface_type': 'LOGICAL'}), # noqa: E501 ({ 'description': 'SRV_GCS CUSTOMER FCCN MICROSOFT #FCCN_NoveSBE_ExpressRoute_Vlan1945 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED', # noqa: E501 'dashboards': ['GCS'] - }, {'name': 'FCCN', 'interface_type': 'LOGICAL'}), + }, [{'name': 'FCCN'}], {'name': 'FCCN', 'interface_type': 'LOGICAL'}), ({ 'description': 'PHY UPSTREAM TELIA SRF9940473 | Telia ID: IC-326863', 'router': 'mx1.bud.hu.geant.net', 'dashboards': ['GWS_PHY_UPSTREAM'] - }, {'name': 'TELIA - BUD', 'interface_type': 'PHYSICAL'}), + }, [{'name': 'TELIA - BUD'}], {'name': 'TELIA - BUD', 'interface_type': 'PHYSICAL'}), # noqa: E501 ({ 'description': 'SRV_IAS UPSTREAM COGENT #COGENT_GWS_VIE | ASN174', 'dashboards': ['IAS_UPSTREAM'] - }, {'name': 'COGENT', 'interface_type': 'LOGICAL'}), + }, [{'name': 'COGENT'}], {'name': 'COGENT', 'interface_type': 'LOGICAL'}), ({ 'description': 'SRV_L3VPN RE_INTERCONNECT CLARA #REDCLARA-LIS-LHCONE | ASN27750', # noqa: E501 'dashboards': ['LHCONE', 'LHCONE_PEER', 'RE_PEER'] - }, {'name': 'CLARA', 'interface_type': 'LOGICAL'}), + }, [{'name': 'CLARA'}], {'name': 'CLARA', 'interface_type': 'LOGICAL'}), ({ 'description': 'SRV_MDVPN CUSTOMER REDIRIS #RedIRIS_AP1_BGP_LU_CoC_1 | MD VPN CoC-REDIRIS - ', # noqa: E501 'dashboards': ['MDVPN_CUSTOMERS', 'NREN'] - }, {'name': 'REDIRIS', 'interface_type': 'LOGICAL'}), + }, [{'name': 'REDIRIS'}], {'name': 'REDIRIS', 'interface_type': 'LOGICAL'}), # noqa: E501 ({ 'description': 'SRV_L2CIRCUIT CUSTOMER TENET PSNC #lon-lon-GEANTOPEN-PSNC-TENET-18067 |', # noqa: E501 'dashboards': ['GEANTOPEN', 'L2_CIRCUIT'] - }, {'name': 'TENET', 'interface_type': 'LOGICAL'}), + }, [{'name': 'TENET'}, {'name': 'PSNC'}], {'name': 'TENET', 'interface_type': 'LOGICAL'}), # noqa: E501 ({ 'description': 'SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001', 'dashboards': ['INFRASTRUCTURE_BACKBONE'] - }, {'name': 'SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001', 'interface_type': 'LOGICAL'}), # noqa: E501 + }, + [{'name': 'SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001'}], + {'name': 'SRV_GLOBAL INFRASTRUCTURE BACKBONE SRF0000001', 'interface_type': 'LOGICAL'}), # noqa: E501 ({ 'description': 'SRV_MDVPN CUSTOMER', 'dashboards': ['MDVPN_CUSTOMERS', 'NREN'] - }, {'name': 'SRV_MDVPN CUSTOMER', 'interface_type': 'LOGICAL'}), + }, + [{'name': 'SRV_MDVPN CUSTOMER'}], + {'name': 'SRV_MDVPN CUSTOMER', 'interface_type': 'LOGICAL'}), ({ 'description': 'SRV_MDVPN CUSTOMER', 'dashboards': ['MDVPN_CUSTOMERS', 'NREN'] - }, {'name': 'SRV_MDVPN CUSTOMER', 'interface_type': 'LOGICAL'}), + }, + [{'name': 'SRV_MDVPN CUSTOMER'}], + {'name': 'SRV_MDVPN CUSTOMER', 'interface_type': 'LOGICAL'}), ({ 'description': 'SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-MAD-COPERNICUS | ASN27750', # noqa: E501 'dashboards': ['COPERNICUS'] - }, {'name': 'REDCLARA', 'interface_type': 'LOGICAL'}), + }, [{'name': 'REDCLARA'}], {'name': 'REDCLARA', 'interface_type': 'LOGICAL'}), # noqa: E501 ]) -def test_description_dashboard_parsing(interface, dashboard_info): +def test_description_dashboard_parsing( + interface, customers, dashboard_info): - updated = poller._get_dashboard_data(interface) + updated = poller._get_dashboard_data(interface, customers) info = updated['dashboard_info'] assert info == dashboard_info + dashboards_info = updated['dashboards_info'] + expected_names = [c['name'] for c in customers] + assert set(expected_names) == {d['name'] for d in dashboards_info} def test_gws_config_json(client): diff --git a/test/test_ims_data.py b/test/test_ims_data.py index ae2a2e8cbd713adc806e3bd0bfaf177ee8bdc850..69d0737a03191c9f3466b86241a8401964605db8 100644 --- a/test/test_ims_data.py +++ b/test/test_ims_data.py @@ -164,7 +164,8 @@ def test_get_port_id_services(mocker): 'project': 'ORG A', 'customer': 'ORG A', 'port_a_id': 224507, - 'customerid': 57658 + 'customerid': 57658, + 'port_type': 'internal' }, { 'id': 663104, @@ -175,7 +176,8 @@ def test_get_port_id_services(mocker): 'project': 'ORG B', 'customer': 'ORG B', 'port_a_id': 224464, - 'customerid': 57664 + 'customerid': 57664, + 'port_type': 'internal' }, { 'id': 679324, @@ -187,7 +189,8 @@ def test_get_port_id_services(mocker): 'customer': 'ETH', 'port_a_id': 6423107, 'port_b_id': 6419340, - 'customerid': 57744 + 'customerid': 57744, + 'port_type': 'ports' }, { 'id': 679324, @@ -199,7 +202,8 @@ def test_get_port_id_services(mocker): 'customer': 'ETH', 'port_a_id': 6419340, 'port_b_id': 6423107, - 'customerid': 57744 + 'customerid': 57744, + 'port_type': 'ports' }, { 'id': 679324, @@ -210,7 +214,8 @@ def test_get_port_id_services(mocker): 'project': 'ETH', 'customer': 'ETH', 'port_a_id': 6423111, - 'customerid': 57744 + 'customerid': 57744, + 'port_type': 'ports' }, { 'id': 702560, @@ -221,7 +226,8 @@ def test_get_port_id_services(mocker): 'project': 'ORG C', 'customer': 'ORG C', 'port_a_id': 6419453, - 'customerid': 57640 + 'customerid': 57640, + 'port_type': 'port relate' } ] assert res == predicted diff --git a/test/test_mic_routes.py b/test/test_mic_routes.py new file mode 100644 index 0000000000000000000000000000000000000000..e29b64702419cfdcc60d832e6d8fd91d234d0f10 --- /dev/null +++ b/test/test_mic_routes.py @@ -0,0 +1,54 @@ +import json + +import jsonschema +import pytest + +from inventory_provider.routes.mic import SITES_LIST_SCHEMA, \ + NODES_LIST_SCHEMA, INTERFACES_LIST_SCHEMA, IMPACT_SCHEMA + +DEFAULT_REQUEST_HEADERS = { + "Content-type": "application/json", + "Accept": ["application/json"] +} + + +def test_get_sites(client, mocked_redis): + rv = client.get( + '/mic/sites', + headers=DEFAULT_REQUEST_HEADERS) + assert rv.status_code == 200 + assert rv.is_json + response_data = json.loads(rv.data.decode('utf-8')) + jsonschema.validate(response_data, SITES_LIST_SCHEMA) + + +def test_get_nodes(client, mocked_redis): + rv = client.get( + '/mic/nodes/AMSTERDAM', + headers=DEFAULT_REQUEST_HEADERS) + assert rv.status_code == 200 + assert rv.is_json + response_data = json.loads(rv.data.decode('utf-8')) + jsonschema.validate(response_data, NODES_LIST_SCHEMA) + + +def test_get_interfaces(client, mocked_redis): + rv = client.get( + '/mic/interfaces/MX1.LON.UK', + headers=DEFAULT_REQUEST_HEADERS) + assert rv.status_code == 200 + assert rv.is_json + response_data = json.loads(rv.data.decode('utf-8')) + jsonschema.validate(response_data, INTERFACES_LIST_SCHEMA) + + +@pytest.mark.parametrize('endpoint', [ + '/mic/impact/AMSTERDAM/MX1.AMS.NL/AE21', + '/mic/impact/LONDON/MX1.LON.UK', + '/mic/impact/GENEVA']) +def test_get_impact(endpoint, client, mocked_redis): + rv = client.get(endpoint, headers=DEFAULT_REQUEST_HEADERS) + assert rv.status_code == 200 + assert rv.is_json + response_data = json.loads(rv.data.decode('utf-8')) + jsonschema.validate(response_data, IMPACT_SCHEMA) diff --git a/test/test_msr_routes.py b/test/test_msr_routes.py index 198864e68ae6613815f037bd8b8673e64fc1166d..0bec3d504185fa7070f8e06fa5a3686ec91c6c74 100644 --- a/test/test_msr_routes.py +++ b/test/test_msr_routes.py @@ -310,3 +310,14 @@ def test_system_correlation_services(client): response_data = json.loads(rv.data.decode('utf-8')) jsonschema.validate(response_data, SYSTEM_CORRELATION_SERVICES_LIST_SCHEMA) assert response_data # test data is non-empty + + +def test_get_all_peerings(client): + rv = client.get( + '/msr/bgp', + headers=DEFAULT_REQUEST_HEADERS) + assert rv.status_code == 200 + assert rv.is_json + response_data = json.loads(rv.data.decode('utf-8')) + jsonschema.validate(response_data, PEERING_LIST_SCHEMA) + assert response_data # test data is non-empty diff --git a/test/test_worker.py b/test/test_worker.py index 2ff0ce69d32d2bc8da47ea5eb728489565c3a9f5..6693e97117a3d867e1b8b96b93205df764f80316 100644 --- a/test/test_worker.py +++ b/test/test_worker.py @@ -119,18 +119,21 @@ def test_extract_ims_data(mocker): def test_transform_ims_data(): locations = { "eq_a": { + "equipment-name": "eq_a", "pop": { "name": "pop_loc_a", "abbreviation": "pla", } }, "eq_b": { + "equipment-name": "eq_b", "pop": { "name": "pop_loc_b", "abbreviation": "plb", } }, "UNKNOWN_LOC": { + "equipment-name": "UNKNOWN_LOC", "pop": { "name": "UNKNOWN", "abbreviation": "UNKNOWN", @@ -326,6 +329,14 @@ def test_transform_ims_data(): "geant_nodes": ["eq_b"] } res = transform_ims_data(data) + pop_nodes_res = { + "pop_loc_a": ["eq_a"], + "pop_loc_b": ["eq_b"], + "UNKNOWN": ["UNKNOWN_LOC"] + } + assert sorted(res["pop_nodes"].keys()) == sorted(pop_nodes_res.keys()) + for k, v in pop_nodes_res.items(): + assert v == res["pop_nodes"][k] ifs = res["interface_services"] assert list(ifs.keys()) == [ "eq_a:if_a", "eq_b:if_b", "eq_a:if_c", "eq_b:if_c"] @@ -392,9 +403,19 @@ def test_persist_ims_data(mocker, data_config, mocked_redis): return_value=r) data = { + "pop_nodes": { + "LOC A": ["eq_a"], + "LOC B": ["eq_b"] + }, "locations": { - "loc_a": {'pop': {'name': "LOC A", 'abbreviation': 'aaa'}}, - "loc_b": {'pop': {'name': "LOC B", 'abbreviation': 'bbb'}}, + "eq_a": { + 'equipment-name': 'eq_a', + 'pop': {'name': "LOC A", 'abbreviation': 'aaa'} + }, + "eq_b": { + 'equipment-name': 'eq_b', + 'pop': {'name': "LOC B", 'abbreviation': 'bbb'} + }, }, "lg_routers": [ {"equipment name": "lg_eq1"}, {"equipment name": "lg_eq2"} @@ -442,8 +463,11 @@ def test_persist_ims_data(mocker, data_config, mocked_redis): r.delete(k) persist_ims_data(data) + assert [k.decode("utf-8") for k in r.keys("ims:pop_nodes:*")] == \ + ["ims:pop_nodes:LOC A", "ims:pop_nodes:LOC B"] + assert [k.decode("utf-8") for k in r.keys("ims:location:*")] == \ - ["ims:location:loc_a", "ims:location:loc_b"] + ["ims:location:eq_a", "ims:location:eq_b"] assert [k.decode("utf-8") for k in r.keys("ims:lg:*")] == \ ["ims:lg:lg_eq1", "ims:lg:lg_eq2"] @@ -488,8 +512,7 @@ def test_populate_poller_interfaces_cache( mocker, data_config, mocked_redis): r = common._get_redis(data_config) - mocker.patch('inventory_provider.tasks.common.get_next_redis', - return_value=r) + mocker.patch('inventory_provider.tasks.common.get_next_redis') mocker.patch('inventory_provider.tasks.worker.get_next_redis', return_value=r) all_interfaces = [ @@ -574,20 +597,26 @@ def test_populate_poller_interfaces_cache( } }, } - services = { + services_and_customers = { "ROUTER_A": { - "AE_A.123": [{ - "id": 321, - "name": "SERVICE A", - "type": "SERVICE TYPE", - "status": "operational" - }], - "AE_A.456": [{ - "id": 654, - "name": "SERVICE B", - "type": "SERVICE TYPE", - "status": "operational" - }] + "AE_A.123": { + 'services': [{ + "id": 321, + "name": "SERVICE A", + "type": "SERVICE TYPE", + "status": "operational" + }], + 'customers': {'geant'} + }, + "AE_A.456": { + 'services': [{ + "id": 654, + "name": "SERVICE B", + "type": "SERVICE TYPE", + "status": "operational" + }], + 'customers': {'geant'} + } } } @@ -652,8 +681,9 @@ def test_populate_poller_interfaces_cache( return_value=bundles) mocker.patch('inventory_provider.routes.common.load_snmp_indexes', return_value=snmp_indexes) - mocker.patch('inventory_provider.routes.poller._load_services', - return_value=services) + mocker.patch( + 'inventory_provider.routes.poller._get_services_and_customers', + return_value=services_and_customers) mocker.patch( 'inventory_provider.tasks.worker.InventoryTask.config' )