diff --git a/Changelog.md b/Changelog.md
index 4389be4f1b3434156ceba0cf1cff234e7d08a1da..6fd6bc1209c0a22d01e0ed0c3956ca7e25909366 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -2,6 +2,9 @@
 
 All notable changes to this project will be documented in this file.
 
+## [0.104] - 2023-05-05
+- DBOARD3-692: Created MIC data cache as part of Inventory Update process
+
 ## [0.103] - 2023-04-25
 - bring branches, artifacts and release system back into consistency by making a new release
 
diff --git a/inventory_provider/routes/classifier_schema.py b/inventory_provider/routes/classifier_schema.py
index 7bfd8219013027834071c75aebfd01b41b222d0f..0a62fdb62eca40ff313797d9e4f63b81ffa88dbc 100644
--- a/inventory_provider/routes/classifier_schema.py
+++ b/inventory_provider/routes/classifier_schema.py
@@ -54,7 +54,10 @@ _common_schema_definitions = {
             "service_type": {"type": "string"},
             "project": {"type": "string"},
             "sid": {"type": "string"},
-            "contacts": {"type": "array", "items": {"type": "string"}}
+            "contacts": {"type": "array", "items": {"type": "string"}},
+            "planned_work_contacts": {
+                "type": "array", "items": {"type": "string"}
+            }
         },
         "additionalProperties": False
     },
@@ -256,7 +259,10 @@ _juniper_link_response_schema_definitions = {
             "service_type": {"type": "string"},
             "project": {"type": "string"},
             "sid": {"type": "string"},
-            "contacts": {"type": "array", "items": {"type": "string"}}
+            "contacts": {"type": "array", "items": {"type": "string"}},
+            "planned_work_contacts": {
+                "type": "array", "items": {"type": "string"}
+            }
         },
         "required": [
             "name",
@@ -517,7 +523,10 @@ _infinera_lambda_response_schema_definitions = {
             "service_type": {"type": "string"},
             "project": {"type": "string"},
             "sid": {"type": "string"},
-            "contacts": {"type": "array", "items": {"type": "string"}}
+            "contacts": {"type": "array", "items": {"type": "string"}},
+            "planned_work_contacts": {
+                "type": "array", "items": {"type": "string"}
+            }
         },
         "required": [
             "name",
diff --git a/inventory_provider/routes/mic.py b/inventory_provider/routes/mic.py
index a335ae3eb8ee176bba4de1bf93c3f9153d3683e0..cc12a56f1fcdb15caabb2e8c920a49661110e1e2 100644
--- a/inventory_provider/routes/mic.py
+++ b/inventory_provider/routes/mic.py
@@ -13,12 +13,9 @@ These endpoints are intended for use by the Maintenance Impact Calculator tool
 
 
 """
-import itertools
-import json
 import logging
-from collections import defaultdict
 
-from flask import Blueprint, request, current_app, Response
+from flask import Blueprint, request, Response
 
 from inventory_provider.routes import common
 from inventory_provider.routes.common import _ignore_cache_or_retrieve
@@ -26,54 +23,42 @@ from inventory_provider.routes.common import _ignore_cache_or_retrieve
 logger = logging.getLogger(__name__)
 routes = Blueprint('mic-support-routes', __name__)
 
-SITES_LIST_SCHEMA = {
-    "$schema": "https://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": "https://json-schema.org/draft-07/schema#",
-    "type": "array",
-    "items": {"type": "string"},
-    "additionalProperties": False
-}
 
-INTERFACES_LIST_SCHEMA = {
-    "$schema": "https://json-schema.org/draft-07/schema#",
-    "type": "array",
-    "items": {"type": "string"},
-    "additionalProperties": False
-}
-
-IMPACT_SCHEMA = {
-    "schema": "http:json-schema.org/draft-07/schema#",
+ALL_DATA_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"}
+            "type": "object",
+            "patternProperties": {
+                "^.*$": {
+                    "type": "object",
+                    "patternProperties": {
+                        "^.*$": {
+                            "type": "array",
+                            "items": {
+                                "type": "object",
+                                "properties": {
+                                    "id": {"type": "integer"},
+                                    "sid": {"type": "string"},
+                                    "status": {"type": "string"},
+                                    "name": {"type": "string"},
+                                    "service_type": {"type": "string"},
+                                    "contacts": {
+                                        "type": "array",
+                                        "items": {"type": "string"}
+                                    },
+                                    "planned_work_contacts": {
+                                        "type": "array",
+                                        "items": {"type": "string"}
+                                    }
+                                },
+                                "required": ["id", "sid", "status", "name", "service_type", "contacts", "planned_work_contacts"],  # noqa E501
+                                "additionalProperties": False
+                            }
+                        }
                     }
-                },
-                "required": ["id", "sid", "name", "service_type", "contacts"],
-                "additionalProperties": False
+                }
             }
         }
     },
@@ -81,151 +66,15 @@ IMPACT_SCHEMA = {
 }
 
 
-@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"
+    cache_key = "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] = \
-                        [rs for rs in d['related-services']
-                         if rs['status'] == 'operational']
-        result = json.dumps(all_data)
-
-        r.set(cache_key, result.encode('utf-8'))
+        return Response(
+            response='no data found',
+            status=404,
+            mimetype="text/html")
     return Response(result, mimetype='application/json')
diff --git a/inventory_provider/tasks/worker.py b/inventory_provider/tasks/worker.py
index a3b96c6d9691b3b58cf15a5cf45ae7ac3e360ec0..3c93541f4820b7db157890e5564af0a749fcb1b1 100644
--- a/inventory_provider/tasks/worker.py
+++ b/inventory_provider/tasks/worker.py
@@ -691,11 +691,22 @@ def snmp_refresh_peerings_chorded(
     update_callback(f'snmp peering info loaded from {hostname}')
 
 
+def cache_extracted_ims_data(extracted_data, use_current=False):
+    if use_current:
+        r = get_current_redis(InventoryTask.config)
+    else:
+        r = get_next_redis(InventoryTask.config)
+
+    for k, v in extracted_data.items():
+        r.set(f'ims:cache:{k}', json.dumps(v))
+
+
 @app.task(base=InventoryTask, bind=True, name='ims_task')
 @log_task_entry_and_exit
 def ims_task(self, use_current=False):
     try:
         extracted_data = extract_ims_data()
+        cache_extracted_ims_data(extracted_data)
         transformed_data = transform_ims_data(extracted_data)
         transformed_data['locations'] = extracted_data['locations']
         transformed_data['lg_routers'] = extracted_data['lg_routers']
@@ -1245,6 +1256,7 @@ def persist_ims_data(data, use_current=False):
     rp = r.pipeline()
 
     populate_poller_cache(interface_services, r)
+    populate_mic_cache(interface_services, r)
 
     for service_type, services in services_by_type.items():
         for v in services.values():
@@ -1279,6 +1291,41 @@ def persist_ims_data(data, use_current=False):
     rp.execute()
 
 
+def populate_mic_cache(interface_services, r):
+    cache_key = "mic:impact:all-data"
+    all_data = defaultdict(lambda: defaultdict(dict))
+
+    def _get_formatted_rs(_d):
+        for rs in _d['related-services']:
+            if rs['status'] == 'operational':
+                yield {
+                    'id': rs['id'],
+                    'sid': rs.get('sid', ''),
+                    'status': rs['status'],
+                    'name': rs['name'],
+                    'service_type': rs['service_type'],
+                    'contacts': rs['contacts'],
+                    'planned_work_contacts': rs['planned_work_contacts']
+                }
+
+    for services in interface_services.values():
+        if services:
+            current_interface_services = []
+            for d in services:
+                if d.get('related-services'):
+                    current_interface_services.extend(
+                        list(_get_formatted_rs(d)))
+            if current_interface_services:
+                site = f'{services[0]["pop_name"]} ' \
+                       f'({services[0]["pop_abbreviation"]})'
+                eq_name = services[0]['equipment']
+                if_name = services[0]['port']
+                all_data[site][eq_name][if_name] = current_interface_services
+
+    result = json.dumps(all_data)
+    r.set(cache_key, result.encode('utf-8'))
+
+
 @app.task(base=InventoryTask, bind=True, name='final_task')
 @log_task_entry_and_exit
 def final_task(self):
diff --git a/setup.py b/setup.py
index cb5a079946cf06de2c593dcf5e4f6dcfb2f81d01..f6532f734f2c0607dd838405620eb1f358aaf8a7 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
 
 setup(
     name='inventory-provider',
-    version="0.103",
+    version="0.104",
     author='GEANT',
     author_email='swd@geant.org',
     description='Dashboard inventory provider',
diff --git a/test/data/mx1.mil2.it.geant.net-netconf.xml b/test/data/mx1.mil2.it.geant.net-netconf.xml
deleted file mode 100644
index befc1ea4de596dd3cf8f6854506113c2095c1adf..0000000000000000000000000000000000000000
--- a/test/data/mx1.mil2.it.geant.net-netconf.xml
+++ /dev/null
@@ -1,298 +0,0 @@
-<configuration changed-seconds="1617276194" changed-localtime="2021-04-01 11:23:14 UTC"><version>18.4R3-S4.2</version><groups><name>re0</name><system><host-name>mx1.mil2.it.re0</host-name></system><interfaces><interface><name>fxp0</name><description>PHY INFRASTRUCTURE MANAGEMENT | re0</description><unit><name>0</name><family><inet><address><name>172.16.45.100/24</name></address><address><name>172.16.20.3/24</name></address></inet></family></unit></interface></interfaces></groups><groups><name>re1</name><system><host-name>mx1.mil2.it.re1</host-name></system><interfaces><interface><name>fxp0</name><description>PHY INFRASTRUCTURE MANAGEMENT | re1</description><unit><name>0</name><family><inet><address><name>172.16.45.101/24</name></address><address><name>172.16.20.4/24</name></address></inet></family></unit></interface></interfaces></groups><groups><name>urpf-template</name><firewall><family><inet><filter><name>&lt;*&gt;</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>&lt;*&gt;</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-bogon</count><discard/></then></term><term><name>discard</name><then><count>urpfv6-fail</count><discard/></then></term></filter></inet6></family></firewall></groups><groups><name>NO_TRAPS</name><interfaces><interface><name>&lt;*&gt;</name><unit><name>&lt;*&gt;</name><no-traps/></unit></interface></interfaces></groups><groups><name>load-balance-adaptive</name><interfaces><interface><name>&lt;ae*&gt;</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>FoD</name><permissions>configure</permissions><permissions>rollback</permissions><permissions>routing-control</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><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>2011</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>amres</name><uid>2012</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>amresnoc</name><uid>2003</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>2013</uid><class>nrn</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>basnet</name><uid>2014</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>belnet</name><uid>2018</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>bren</name><uid>2019</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>carnet</name><uid>2020</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ccssupport</name><uid>2055</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>2021</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>fod</name><uid>2049</uid><class>FoD</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>garr</name><uid>2002</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-cesnet</name><uid>2022</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-cynet</name><uid>2023</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-eenet</name><uid>2024</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-fccn</name><uid>2025</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-garr</name><uid>2004</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-hungar</name><uid>2026</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-malta</name><uid>2006</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-ne-salt-robot</name><uid>2059</uid><class>super-user</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>geant-switch</name><uid>2027</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>grnet</name><uid>2007</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>2062</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>2060</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>2056</uid><class>nren</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>opennsa</name><uid>2050</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>2009</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>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>2008</uid><class>geantnms</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>space15.2R2.4-paris</name><uid>2053</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>2047</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>srv-space-ssh</name><uid>2051</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>2058</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>2057</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>2052</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.mil2.it.geant.net, a GEANT Router in Milan, Italy \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><time-zone>UTC</time-zone><authentication-order>radius</authentication-order><authentication-order>password</authentication-order><location><country-code>IT</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.97.15</source-address></radius-server><radius-server><name>83.97.94.130</name><timeout>2</timeout><source-address>62.40.97.15</source-address></radius-server><static-host-mapping><name>lo0</name><inet>62.40.97.15</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.97.15</source-address></syslog><ddos-protection><global><flow-detection/></global><protocols><tcp-flags><aggregate><undocumented><flow-level-detection><subscriber>on</subscriber><logical-interface>on</logical-interface><physical-interface>on</physical-interface></flow-level-detection></undocumented></aggregate><established><flow-level-detection><subscriber>on</subscriber><logical-interface>on</logical-interface><physical-interface>on</physical-interface></flow-level-detection></established></tcp-flags></protocols></ddos-protection><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.97.15</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><fabric><redundancy-mode><increased-bandwidth/></redundancy-mode></fabric><fpc><name>0</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>1</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>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><pic><name>2</name><tunnel-services><bandwidth>1g</bandwidth></tunnel-services><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>4</name><pic><name>0</name><pic-mode>100G</pic-mode></pic><pic><name>1</name><pic-mode>100G</pic-mode></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>5</name><pic><name>0</name><pic-mode>100G</pic-mode></pic><pic><name>1</name><pic-mode>100G</pic-mode></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>10</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>11</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><network-services>enhanced-ip</network-services></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.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.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.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.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.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.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_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_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_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_AS137_62.40.125.181</name><test><name>icmp-test</name><probe-type>icmp-ping</probe-type><target><address>62.40.125.181</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>eGEANT_AS57961_62.40.125.174</name><test><name>icmp-test</name><probe-type>icmp-ping</probe-type><target><address>62.40.125.174</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>eGEANT_AS1853_62.40.124.134</name><test><name>icmp-test</name><probe-type>icmp-ping</probe-type><target><address>62.40.124.134</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>eGEANT_AS2107_62.40.124.207</name><test><name>icmp-test</name><probe-type>icmp-ping</probe-type><target><address>62.40.124.207</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>eGEANT_AS12046_62.40.125.241</name><test><name>icmp-test</name><probe-type>icmp-ping</probe-type><target><address>62.40.125.241</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>ge-0/2/0</name><description>PHY INFRASTRUCTURE ACCESS INFINERA SRF9922285 | MIL01-DTNX10-1 XCM 1</description><unit><name>0</name><family><bridge><interface-mode>access</interface-mode><vlan-id>999</vlan-id></bridge></family></unit></interface><interface><name>ge-0/2/1</name><description>PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | MGMT interface for corsa</description><mtu>9100</mtu><unit><name>0</name><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>GE0-2-1_MIDDLE_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>GE0-2-1_MIDDLE_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.115.110/31</name></address></inet></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 INFRASTRUCTURE ACCESS CORSA SRF0000001 | OPENFLOW port for virtual switch OF control</description></interface><interface><name>ge-0/2/4</name><description>PHY SPARE |reserved for Tirana</description><disable/></interface><interface><name>ge-0/2/5</name><description>PHY SPARE |reserved for Tirana</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/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></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 INFINERA SRF9922287 | MIL01-DTNX10-1 XCM 2</description><unit><name>0</name><family><bridge><interface-mode>access</interface-mode><vlan-id>999</vlan-id></bridge></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 INFRASTRUCTURE ACCESS LAN SRF0000001 | mil it POP LAN</description><vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation><unit><name>7</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #NTP5.GEANT.NET</description><vlan-id>7</vlan-id><family><inet><filter><input-list>PROTECTED_EXTERNAL_HEAD_IN</input-list><input-list>VL07_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_HEAD_OUT</output-list><output-list>VL07_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.123.22/31</name></address></inet></family></unit><unit><name>21</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-mil2-it-DRAC | HADES DRAC</description><vlan-id>21</vlan-id><family><inet><filter><input><filter-name>HADES-IN</filter-name></input><output><filter-name>HADES-OUT</filter-name></output></filter><address><name>62.40.117.22/31</name></address></inet></family></unit><unit><name>22</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP_MIL2_IT | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811</description><vlan-id>22</vlan-id><family><inet><filter><input-list>PROTECTED_EXTERNAL_HEAD_IN</input-list><input-list>VL022_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_HEAD_OUT</output-list><output-list>VL022_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.106.184/31</name></address></inet><inet6><filter><input-list>PROTECTED_EXTERNAL_V6_HEAD_IN</input-list><input-list>VL022_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>VL022_V6_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_V6_TAIL_OUT</output-list></filter><address><name>2001:798:fc00:1e::1/126</name></address></inet6></family></unit><unit><name>23</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-mil2-it-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.186/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::49/126</name></address></inet6></family></unit><unit><name>24</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-mil2-it-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.123.100/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::9d/126</name></address></inet6></family></unit><unit><name>250</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #taas-control-mil2-it-vlan250| TAAS GTS CONTROL</description><vlan-id>250</vlan-id><family><inet><mtu inactive="inactive">9000</mtu><address><name>10.0.2.129/26</name></address></inet></family></unit><unit><name>301</name><description>SRV_GLOBAL INFRASTRUCTURE  Access  #MIL2_Groove_1 | MIL2 Groove 1  </description><vlan-id>301</vlan-id><family><inet><address><name>10.0.3.41/30</name></address></inet></family></unit><unit><name>302</name><description>SRV_GLOBAL INFRASTRUCTURE  Access  #MIL2_Groove_1_Management | MIL2 Groove 1 Direct Management</description><vlan-id>302</vlan-id><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>vc4_access_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>vc4_access_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.115.250/31</name></address></inet></family></unit><unit><name>401</name><description>SRV_GLOBAL INFRASTRUCTURE Access   #MIL2_Groove_2 | MIL2 Groove 2  </description><vlan-id>401</vlan-id><family><inet><address><name>10.0.3.45/30</name></address></inet></family></unit><unit><name>402</name><description>SRV_GLOBAL INFRASTRUCTURE  Access  #MIL2_Groove_2_Management | MIL2 Groove 2 Direct Management</description><vlan-id>402</vlan-id><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>vc4_access_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>vc4_access_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.115.252/31</name></address></inet></family></unit><unit><name>991</name><description>SRV_GLOBAL INFRASTRUCTURE Access #MIL2_Groove | MIL2 Groove G30</description><vlan-id>991</vlan-id><family><inet><address><name>172.18.21.1/24</name></address></inet></family></unit></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 INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP</description><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-mil2-it-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160906</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.84/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::a1/126</name></address></inet6></family></unit></interface><interface><name>ge-0/3/7</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access</description><no-traps/><vlan-tagging/><mtu>9192</mtu><encapsulation>vlan-vpls</encapsulation><unit><name>0</name><encapsulation>vlan-vpls</encapsulation><vlan-id-range>1000-2600</vlan-id-range><family><vpls>
-                    </vpls></family></unit></interface><interface><name>ge-0/3/8</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access | TO GTS EX P12</description><no-traps/><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>ge-0/3/9</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.160/31</name></address></inet></family></unit></interface><interface><name>xe-1/0/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | OTEGlobe 1-4XPLWIS </description><framing><lan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae2</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/0/1</name><description>PHY CUSTOMER RASH P_AE13 SRF0000001 |</description><gigether-options><ieee-802.3ad><bundle>ae13</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/0/2</name><description>PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | OTEGlobe 1-6RK0GC7 </description><framing><lan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae2</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/0/4</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx1 xe-1/2/5:3</description><unit><name>0</name><family><inet><address><name>62.40.104.22/31</name></address></inet><inet6><address><name>2001:798:bb:1::1/64</name></address></inet6></family></unit></interface><interface><name>xe-1/0/5</name><description>PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | OTE 1-94LW1NA</description><gigether-options><ieee-802.3ad><bundle>ae2</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/0/6</name><description>PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P4</description><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation><unit><name>1</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostC-to-Br51 </description><encapsulation>vlan-ccc</encapsulation><vlan-id>1</vlan-id><input-vlan-map><swap/><vlan-id>1013</vlan-id><inner-vlan-id inactive="inactive">1013</inner-vlan-id></input-vlan-map></unit><unit><name>2</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostD-to-Br51 </description><encapsulation>vlan-ccc</encapsulation><vlan-id>2</vlan-id><input-vlan-map><swap/><vlan-id>1014</vlan-id></input-vlan-map></unit><unit><name>3</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostC-to-Br52 </description><encapsulation>vlan-ccc</encapsulation><vlan-id>3</vlan-id><input-vlan-map><swap/><vlan-id>1015</vlan-id></input-vlan-map></unit><unit><name>4</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2-HostD-to-Br52 </description><encapsulation>vlan-ccc</encapsulation><vlan-id>4</vlan-id><input-vlan-map><swap/><vlan-id>1016</vlan-id></input-vlan-map></unit></interface><interface><name>xe-1/0/7</name><description>PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | Previously PSMP NETMON, not in use</description><vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/1/0</name><description>PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL</description><mtu>9192</mtu><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-mil2-it-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160906</description><family><inet><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.86/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::a5/126</name></address></inet6></family></unit></interface><interface><name>xe-1/1/1</name><description>PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P6</description><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation><unit><name>1</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2_PILOT-Br52-OF-P3_mil2   </description><encapsulation>vlan-ccc</encapsulation><vlan-id>1</vlan-id></unit><unit><name>1001</name><description>SRV_L3VPN INFRASTRUCTURE SDX-L2_PILOT ACCESS JRA1 #JRA1_SDX_L2_PILOT_VLAN1001 | PAR-BR51</description><vlan-id>1001</vlan-id></unit><unit><name>1002</name><description>SRV_L3VPN INFRASTRUCTURE SDX-L2_PILOT ACCESS JRA1 #JRA1_SDX_L2_PILOT_VLAN1002 | PAR-BR52</description><vlan-id>1002</vlan-id></unit><unit><name>1003</name><description>SRV_L3VPN INFRASTRUCTURE SDN-BOD_PILOT ACCESS JRA1 #JRA1_SDN_BOD_PILOT_BR53_VLAN1003 | SDN-BOD PILOT BR53</description><vlan-id>1003</vlan-id><family><inet><address><name>10.0.0.29/30</name></address></inet></family></unit></interface><interface><name>xe-1/1/2</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P9</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/1/3</name><description>PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P5</description><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation><unit><name>1</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDX-L2_PILOT-Br51-OF-P3_mil2  </description><encapsulation>vlan-ccc</encapsulation><vlan-id>1</vlan-id></unit><unit><name>1022</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-1-host-g-eth1</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1022</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1023</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-6-host-g-eth2</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1023</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1024</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-7-host-g-eth3</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1024</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1025</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-8-host-g-eth4</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1025</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1032</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-2-host-h-eth1</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1032</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1033</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-9-host-h-eth2</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1033</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1034</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-10-host-h-eth3</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1034</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1035</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-br53-Of-11-host-h-eth4</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1035</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit></interface><interface><name>xe-1/1/4</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P8</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/1/5</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P7</description><no-traps/><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/1/6</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 3</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/1/7</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 0</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/2/0</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 1</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/2/1</name><description>PHY INFRASTRUCTURE BACKBONE P_ae1 SRF0000001 | Patched to EX3400 xe-0/2/0</description><gigether-options><ieee-802.3ad><bundle>ae1</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/2/2</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/2/3</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P10</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/2/4</name><description>PHY PRIVATE GOOGLE P_AE12 SRF9930727</description><gigether-options><ieee-802.3ad><bundle>ae12</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/2/5</name><description>PHY INFRASTRUCTURE BACKBONE P_AE2 SRF0000001 | OTEGlobe 1-4XPLWG5 </description><framing><lan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae2</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/2/6</name><description>PHY INFRASTRUCTURE BACKBONE P_ae1 SRF0000001 | Patched to EX3400 xe-0/2/1</description><gigether-options><ieee-802.3ad><bundle>ae1</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/2/7</name><description>PHY PRIVATE GOOGLE P_AE12 SRF9930725</description><gigether-options><ieee-802.3ad><bundle>ae12</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/3/0</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-1/3/1</name><description>PHY SPARE</description></interface><interface><name>xe-1/3/2</name><description>PHY SPARE</description></interface><interface><name>xe-1/3/3</name><description>PHY SPARE</description></interface><interface><name>xe-1/3/4</name><description>PHY SPARE</description></interface><interface><name>xe-1/3/5</name><description>PHY SPARE</description></interface><interface><name>xe-1/3/6</name><description>PHY SPARE</description></interface><interface><name>xe-1/3/7</name><description>PHY SPARE</description></interface><interface><name>xe-2/0/0</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/0/1</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/0/2</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/0/3</name><description>PHY SPARE</description><disable/></interface><interface><name>et-2/1/0</name><description>PHY CUSTOMER GARR P_AE10 SRF9926135 |</description><gigether-options><ieee-802.3ad><bundle>ae10</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-2/2/0</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/2/1</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/2/2</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/2/3</name><description>PHY SPARE</description><disable/></interface><interface><name>et-2/3/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE3 SRF0000001 |</description><gigether-options><ieee-802.3ad><bundle>ae3</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-3/0/0</name><description>PHY RESERVED | Reserved for ACONET AP2</description></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>lt-3/2/10</name><description>TUN INFRASTRUCTURE ACCESS_FOD SRF0000001 | Tunnel between R&amp;E and IAS</description><unit><name>13</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #FOD_R&amp;E_ENDPOINT_MIL2_IT | FOD R&amp;E endpoint</description><encapsulation>ethernet</encapsulation><peer-unit>31</peer-unit><family><inet><address><name>62.40.98.94/31</name></address></inet></family></unit><unit><name>31</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #TUNNEL_INTERFACE_20965_21320 | 20965_TO_21320_FOD IAS endpoint</description><encapsulation>ethernet</encapsulation><peer-unit>13</peer-unit><family><inet><address><name>62.40.98.95/31</name></address></inet></family></unit></interface><interface><name>et-4/0/2</name><description>PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 1</description><gigether-options><ieee-802.3ad><bundle>ae6</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-4/0/5</name><description>PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 2</description><gigether-options><ieee-802.3ad><bundle>ae6</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-4/1/2</name><description>PHY INFRASTRUCTURE BACKBONE P_ae6 SRF0000001 | Coriant G30 link 3</description><gigether-options><ieee-802.3ad><bundle>ae6</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-4/1/5</name><description>PHY SPARE</description></interface><interface><name>et-5/0/2</name><description>PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 1</description><gigether-options><ieee-802.3ad><bundle>ae8</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-5/0/5</name><description>PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 2</description><gigether-options><ieee-802.3ad><bundle>ae8</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-5/1/2</name><description>PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 3</description><gigether-options><ieee-802.3ad><bundle>ae8</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-5/1/5</name><description>PHY PUBLIC MIX P_AE11 SRF9949654 | MIX ID: XCID202001-019</description><gigether-options><ieee-802.3ad><bundle>ae11</bundle></ieee-802.3ad><ignore-l3-incompletes/></gigether-options></interface><interface><name>et-10/0/0</name><description>PHY SPARE</description><disable/></interface><interface><name>lt-10/0/0</name><description>TUN INFRASTRUCTURE ACCESS SRF0000001 </description><unit><name>16</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-mil2-it-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.88.228/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::119/126</name></address></inet6></family></unit><unit><name>61</name><description>SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #MIL2-IAS-RE-Peering | BGP Peering - IAS Side</description><encapsulation>ethernet</encapsulation><peer-unit>16</peer-unit><family><inet><address><name>83.97.88.229/31</name></address></inet><inet6><address><name>2001:798:1::11a/126</name></address></inet6></family></unit></interface><interface><name>xe-11/0/0</name><description>PHY CUSTOMER UOM SRF19046 | UOM AP</description><flexible-vlan-tagging/><mtu>9192</mtu><hold-time><up>300</up><down>5000</down></hold-time><encapsulation>flexible-ethernet-services</encapsulation><framing><wan-phy/></framing><unit><name>100</name><description>SRV_GLOBAL CUSTOMER UOM #UOM_AP1 | ASN12046 | </description><vlan-id>100</vlan-id><family><inet><accounting><source-class-usage><output/></source-class-usage><destination-class-usage/></accounting><mtu>9000</mtu><filter><input><filter-name>UOM-in</filter-name></input><output><filter-name>UOM-out</filter-name></output></filter><address><name>62.40.125.240/31</name></address></inet><iso>
-                    </iso><inet6><mtu>1500</mtu><filter><input><filter-name>UOM6-in</filter-name></input><output><filter-name>UOM6-out</filter-name></output></filter><address><name>2001:798:99:1::d1/126</name></address></inet6><mpls>
-                    </mpls></family></unit><unit><name>333</name><description>SRV_IAS CUSTOMER UOM #UOM_AP1_IAS IASGWS| ASN12046 | </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_UOM_IN</filter-name></input><output><filter-name>nren_IAS_UOM_OUT</filter-name></output></filter><address><name>83.97.89.28/31</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>nren_IAS_UOM_V6_IN</filter-name></input><output><filter-name>nren_IAS_UOM_V6_OUT</filter-name></output></filter><address><name>2001:798:1::1b5/126</name></address></inet6></family></unit></interface><interface><name>xe-11/0/1</name><description>PHY CUSTOMER ARNES P_AE14 SRF19032 </description><gigether-options><ieee-802.3ad><bundle>ae14</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-11/0/2</name><description>PHY SPARE</description></interface><interface><name>xe-11/0/3</name><description>PHY SPARE</description></interface><interface><name>et-11/1/0</name><description>PHY INFRASTRUCTURE BACKBONE P_ae4 SRF0000001 |</description><gigether-options><ieee-802.3ad><bundle>ae4</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-11/2/0</name><description>PHY CUSTOMER ACONET P_ae18 AP_B SRF9942612 |ACONET AP2 DWDM</description><gigether-options><ieee-802.3ad><bundle>ae18</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-11/2/1</name><description>PHY CUSTOMER ACONET P_ae18 AP_B SRF9912979 |ACONET AP2 DWDM</description><gigether-options><ieee-802.3ad><bundle>ae18</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-11/2/2</name><description>PHY CUSTOMER ACONET P_ae18 AP_B SRF9942612 |ACONET AP2 DWDM</description><gigether-options><ieee-802.3ad><bundle>ae18</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-11/2/3</name><description>PHY SPARE</description></interface><interface><name>et-11/3/0</name><description>PHY INFRASTRUCTURE BACKBONE P_ae4 SRF0000001 |</description><gigether-options><ieee-802.3ad><bundle>ae4</bundle></ieee-802.3ad></gigether-options></interface><interface><name>ae1</name><description>LAG INFRASTRUCTURE BACKBONE SRF0000001 | mx1-sw2 (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_POR_PT | DCN MANAGEMENT </description><vlan-id>103</vlan-id><family><inet><address><name>172.18.12.1/24</name></address></inet></family></unit><unit><name>998</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-por-pt| SW2-EX3400 MANAGEMENT</description><vlan-id>998</vlan-id><family><inet><address><name>62.40.117.86/31</name></address></inet></family></unit></interface><interface><name>ae2</name><description>LAG INFRASTRUCTURE BACKBONE SRF0000001 | ath-mil</description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.96.11</neighbor><local-address>62.40.97.15</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 #ATH_MIL_IPTRUNK | ATH-MIL |  </description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9100</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.150/31</name></address></inet><iso>
-                    </iso><inet6><mtu>9100</mtu><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:cc:1e01:1901::2/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae3</name><description>LAG INFRASTRUCTURE BACKBONE SRF0000001 | mar-mil</description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.96.12</neighbor><local-address>62.40.97.15</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.71/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::2a/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae4</name><description>LAG INFRASTRUCTURE BACKBONE MIL2 SRF0000001 | lju-mil2  | </description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.96.10</neighbor><local-address>62.40.97.15</local-address></bfd-liveness-detection><minimum-links>2</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU_MIL2_IPTRUNK | LJU-MIL2 |</description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9100</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.39/31</name></address></inet><iso>
-                    </iso><inet6><mtu>9100</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::4a/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae6</name><description>LAG INFRASTRUCTURE BACKBONE MIL2 SRF0000001 | gen-mil2 | Coriant G30 300G</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.97.15</local-address></bfd-liveness-detection><minimum-links>3</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN_MIL2_IPTRUNK | MIL2-GEN |Coriant G30 300G</description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9100</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.81/31</name></address></inet><iso>
-                    </iso><inet6><mtu>9100</mtu><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:cc::1e/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae8</name><description>LAG INFRASTRUCTURE BACKBONE MIL2 SRF0000001 | mil2-vie  | Coriant G30 300G</description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.97.7</neighbor><local-address>62.40.97.15</local-address></bfd-liveness-detection><minimum-links>3</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2_VIE_IPTRUNK | MIL2-VIE |Coriant G30 300G</description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9100</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.188/31</name></address></inet><iso>
-                    </iso><inet6><mtu>9100</mtu><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:cc::21/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae10</name><description>LAG CUSTOMER GARR SRF9923977 |</description><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><aggregated-ether-options><minimum-links>1</minimum-links><link-speed>100g</link-speed><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>25</name><description>SRV_L2CIRCUIT CUSTOMER GARR UBUNTUNET #lon-mil2_ASI_BSC_to_Fucino_Ubuntunet-GARR_20008 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>25</vlan-id></unit><unit><name>111</name><description>SRV_L3VPN CUSTOMER GARR #GARR_AP_LHCONE | ASN137</description><vlan-id>111</vlan-id><family><inet><filter><input><filter-name>LHCONE-in</filter-name></input></filter><address><name>62.40.126.248/31</name></address></inet><inet6><filter><input><filter-name>LHCONE6-in</filter-name></input><output><filter-name>LHCONE6-out</filter-name></output></filter><address><name>2001:798:111:1::19/126</name></address></inet6></family></unit><unit><name>333</name><description>SRV_IAS CUSTOMER GARR #GARR_AP_IAS IASPS | ASN137 </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_GARR_IN</filter-name></input><output><filter-name>nren_IAS_GARR_OUT</filter-name></output></filter><address><name>83.97.88.221/30</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>nren_IAS_GARR_V6_IN</filter-name></input><output><filter-name>nren_IAS_GARR_V6_OUT</filter-name></output></filter><address><name>2001:798:1::51/126</name></address></inet6></family></unit><unit><name>550</name><description>SRV_L2CIRCUIT CUSTOMER GARR ARNES #GARR_ARNES_TEST_MIL2_IT | TEST TT#2019010934000713</description><encapsulation>vlan-ccc</encapsulation><vlan-id>550</vlan-id><family><ccc><filter><input>filter_in_ae10_550</input></filter></ccc></family></unit><unit><name>667</name><description>SRV_CLS CUSTOMER GARR #GARR_AP1_CLS|ASN137 | </description><vlan-id>667</vlan-id><family><inet><filter><input><filter-name>nren_CLS_GARR_IN</filter-name></input><output><filter-name>nren_CLS_GARR_OUT</filter-name></output></filter><address><name>62.40.100.14/31</name></address></inet><inet6><filter><input><filter-name>nren_CLS_GARR_V6_IN</filter-name></input><output><filter-name>nren_CLS_GARR_V6_OUT</filter-name></output></filter><address><name>2001:798::19/126</name></address></inet6></family></unit><unit><name>1000</name><description>SRV_GLOBAL CUSTOMER GARR #GARR_AP1 | ASN137 | </description><vlan-id>1000</vlan-id><family><inet><accounting><source-class-usage><output/></source-class-usage><destination-class-usage/></accounting><mtu>9000</mtu><filter><input><filter-name>GARR-in</filter-name></input><output><filter-name>GARR-out</filter-name></output></filter><address><name>62.40.125.180/31</name></address></inet><iso>
-                    </iso><inet6><mtu>9000</mtu><filter><input><filter-name>GARR6-in</filter-name></input><output><filter-name>GARR6-out</filter-name></output></filter><address><name>2001:798:1e:10aa::9/126</name></address></inet6><mpls>
-                    </mpls></family></unit><unit><name>1001</name><description>SRV_MDVPN CUSTOMER GARR #GARR_BGP_LU_CoC_1 | MD VPN CoC #1 - GARR</description><vlan-id>1001</vlan-id><family><inet><address><name>62.40.102.14/31</name></address></inet><mpls>
-                    </mpls></family></unit><unit><name>4086</name><description>SRV_GCS CUSTOMER GARR  #GARR_UDMilano_ExpressRoute_Vlan4086 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED</description><encapsulation>vlan-ccc</encapsulation><vlan-id>4086</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>4088</name><description>SRV_GCS CUSTOMER GARR  #GARR_ROMA_ExpressRoute_VLAN4088 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED</description><encapsulation>vlan-ccc</encapsulation><vlan-id>4088</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit></interface><interface><name>ae11</name><description>LAG PUBLIC MIX SRF9929723 |</description><mtu>1514</mtu><mac>00:17:a3:51:e5:80</mac><no-gratuitous-arp-reply/><no-gratuitous-arp-request/><aggregated-ether-options><minimum-links>1</minimum-links><link-speed>100g</link-speed><lacp><active/><periodic>slow</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_IAS PUBLIC GEANT #IX_Peerings_in_MIX | </description><family><inet><mtu>1500</mtu><filter><input><filter-name>MIX-in</filter-name></input><output><filter-name>MIX-out</filter-name></output></filter><policer><arp>IX-ARP</arp></policer><address><name>217.29.66.183/23</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>MIX6-in</filter-name></input><output><filter-name>MIX6-out</filter-name></output></filter><address><name>2001:7f8:b:100:1d1:a5d2:965:183/64</name></address></inet6></family></unit></interface><interface><name>ae12</name><description>LAG PRIVATE GOOGLE SRF9931047</description><mtu>1514</mtu><aggregated-ether-options><minimum-links>2</minimum-links><lacp><active/></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_IAS PRIVATE GOOGLE #GOOGLE_15169_IT | ASN15169</description><family><inet><mtu>1500</mtu><filter><input><filter-name>Google-in</filter-name></input><output><filter-name>Google-out</filter-name></output></filter><address><name>72.14.203.33/31</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>GoogleV6-in</filter-name></input><output><filter-name>GoogleV6-out</filter-name></output></filter><address><name>2001:4860:1:1:0:51e5:0:2/126</name></address></inet6></family></unit></interface><interface><name>ae13</name><description>LAG CUSTOMER RASH SRF9938973 | </description><vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><aggregated-ether-options><minimum-links>1</minimum-links></aggregated-ether-options><unit><name>100</name><description>SRV_GLOBAL CUSTOMER RASH #RASH_AP1|ASN57961| </description><vlan-id>100</vlan-id><family><inet><accounting><source-class-usage><output/></source-class-usage><destination-class-usage/></accounting><mtu>9000</mtu><filter><input><filter-name>RASH-in</filter-name></input><output><filter-name>RASH-out</filter-name></output></filter><address><name>62.40.125.173/30</name></address></inet><iso>
-                    </iso></family></unit><unit><name>333</name><description>SRV_IAS CUSTOMER RASH #RASH_AP_IAS IASGWS | ASN57961 | default route</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_RASH_IN</filter-name></input><output><filter-name>nren_IAS_RASH_OUT</filter-name></output></filter><address><name>83.97.88.184/31</name></address></inet><inet6><mtu>1500</mtu></inet6></family></unit></interface><interface><name>ae14</name><description>LAG CUSTOMER ARNES SRF19032 | ARNES AP3 LAG</description><vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><aggregated-ether-options><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>100</name><description>SRV_GLOBAL CUSTOMER ARNES #ARNES_AP3 | ASN2107 | ARNES AP3 </description><vlan-id>100</vlan-id><family><inet><accounting><source-class-usage><output/></source-class-usage><destination-class-usage/></accounting><mtu>9000</mtu><filter><input><filter-name>ARNES-in</filter-name></input><output><filter-name>ARNES-out</filter-name></output></filter><address><name>62.40.124.206/31</name></address></inet><iso>
-                    </iso><inet6><mtu>9000</mtu><filter><input><filter-name>ARNES6-in</filter-name></input><output><filter-name>ARNES6-out</filter-name></output></filter><address><name>2001:798:99:1::bd/126</name></address></inet6></family></unit><unit><name>333</name><description>SRV_IAS CUSTOMER ARNES #ARNES_AP3_IAS IASPS | ASN2107 </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_ARNES_IN</filter-name></input><output><filter-name>nren_IAS_ARNES_OUT</filter-name></output></filter><address><name>83.97.89.218/31</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>nren_IAS_ARNES_V6_IN</filter-name></input><output><filter-name>nren_IAS_ARNES_V6_OUT</filter-name></output></filter><address><name>2001:798:1::1b1/126</name></address></inet6></family></unit></interface><interface><name>ae18</name><description>LAG CUSTOMER ACONET AP_B SRF9943109|</description><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><aggregated-ether-options><minimum-links>2</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>52</name><description>SRV_IAS CUSTOMER ACONET #ACONET_AP2_IAS IASPS | ASN1853 </description><vlan-id>52</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_ACONET_IN</filter-name></input><output><filter-name>nren_IAS_ACONET_OUT</filter-name></output></filter><address><name>83.97.89.216/31</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>nren_IAS_ACONET_V6_IN</filter-name></input><output><filter-name>nren_IAS_ACONET_V6_OUT</filter-name></output></filter><address><name>2001:798:1::1ad/126</name></address></inet6></family></unit><unit><name>53</name><description>SRV_GLOBAL CUSTOMER ACONET #ACONET_AP2| ASN1853 | </description><vlan-id>53</vlan-id><family><inet><accounting><destination-class-usage/></accounting><mtu>9000</mtu><filter><input><filter-name>ACONE-in</filter-name></input><output><filter-name>ACONE-out</filter-name></output></filter><address><name>62.40.124.133/30</name></address></inet><iso>
-                    </iso><inet6><filter><input><filter-name>ACONE6-in</filter-name></input><output><filter-name>ACONE6-out</filter-name></output></filter><address><name>2001:0798:001e:10aa::d/126</name></address></inet6><mpls>
-                    </mpls></family></unit><unit><name>55</name><description>SRV_GLOBAL CUSTOMER ACONET #ACONET_AP2_Multicast | ASN1853 | mcast </description><vlan-id>55</vlan-id><family><inet><mtu>9000</mtu><filter><input><filter-name>ACONE-in</filter-name></input><output><filter-name>ACONE-out</filter-name></output></filter><address><name>62.40.125.69/30</name></address></inet><iso>
-                    </iso><inet6><mtu>9000</mtu><filter><input><filter-name>ACONE6-in</filter-name></input><output><filter-name>ACONE6-out</filter-name></output></filter><address><name>2001:0798:001e:10aa::19/126</name></address></inet6><mpls>
-                    </mpls></family></unit><unit><name>667</name><description>SRV_CLS CUSTOMER ACONET #ACONET_AP2_CLS|ASN1853 | </description><vlan-id>667</vlan-id><family><inet><filter><input><filter-name>nren_CLS_ACONET_IN</filter-name></input><output><filter-name>nren_CLS_ACONET_OUT</filter-name></output></filter><address><name>62.40.100.52/31</name></address></inet><inet6><filter><input><filter-name>nren_CLS_ACONET_V6_IN</filter-name></input><output><filter-name>nren_CLS_ACONET_V6_OUT</filter-name></output></filter><address><name>2001:798::65/126</name></address></inet6></family></unit></interface><interface><name>dsc</name><unit><name>0</name><family><inet><address><name>192.0.2.129/32</name></address></inet></family></unit></interface><interface><name>irb</name><unit><name>999</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-mil2-it-mgmt-vrf-vlan999|</description><family><inet><address><name>10.0.8.100/24</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.97.15/32</name></address></inet><iso><address><name>49.51e5.0001.0620.4009.7015.00</name></address></iso><inet6><filter><input><filter-name>ROUTER_access_V6</filter-name></input></filter><address><name>2001:798:1e:20ff::3/128</name></address></inet6></family></unit></interface></interfaces><snmp><location>MIL2, IT ##LOC 45 28 31.88 N 9 6 11.95 E ##</location><contact>GEANT OC, support@oc.geant.net, +44 (0) 1223 733033</contact><community><name>As4n0gN!</name><comment>/* JANET monitoring tool */</comment><clients><name>128.86.32.16/29</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.97.15</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.97.15</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.97.15</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-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><comment>/* JUNOS SPACE ssh access */</comment><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>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><comment>/* Primary Dashboard */</comment><prefix-list-item><name>62.40.104.51/32</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><comment>/* Backup Dashboard */</comment><prefix-list-item><name>62.40.104.155/32</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>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:0798: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:0798:2001::/48</name></prefix-list-item><prefix-list-item><name>2001:0798: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><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>geant-address-space</name><prefix-list-item><name>62.40.96.0/19</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>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>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>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>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>route-from-UOM</name><prefix-list-item><name>94.138.224.0/19</name></prefix-list-item><prefix-list-item><name>94.138.224.0/20</name></prefix-list-item><prefix-list-item><name>94.138.240.0/20</name></prefix-list-item><prefix-list-item><name>185.222.76.0/22</name></prefix-list-item><prefix-list-item><name>192.136.7.0/24</name></prefix-list-item><prefix-list-item><name>192.136.7.0/25</name></prefix-list-item><prefix-list-item><name>192.136.7.128/25</name></prefix-list-item><prefix-list-item><name>193.188.32.0/20</name></prefix-list-item><prefix-list-item><name>193.188.32.0/21</name></prefix-list-item><prefix-list-item><name>193.188.32.0/24</name></prefix-list-item><prefix-list-item><name>193.188.33.0/24</name></prefix-list-item><prefix-list-item><name>193.188.38.0/24</name></prefix-list-item><prefix-list-item><name>193.188.39.0/24</name></prefix-list-item><prefix-list-item><name>193.188.40.0/21</name></prefix-list-item><prefix-list-item><name>193.188.42.0/24</name></prefix-list-item><prefix-list-item><name>193.188.44.0/24</name></prefix-list-item><prefix-list-item><name>193.188.46.0/23</name></prefix-list-item><prefix-list-item><name>193.188.47.0/24</name></prefix-list-item><prefix-list-item><name>217.30.96.0/20</name></prefix-list-item><prefix-list-item><name>217.30.96.0/22</name></prefix-list-item><prefix-list-item><name>217.30.96.0/24</name></prefix-list-item><prefix-list-item><name>217.30.97.0/24</name></prefix-list-item><prefix-list-item><name>217.30.98.0/24</name></prefix-list-item><prefix-list-item><name>217.30.99.0/24</name></prefix-list-item><prefix-list-item><name>217.30.100.0/24</name></prefix-list-item><prefix-list-item><name>217.30.101.0/24</name></prefix-list-item><prefix-list-item><name>217.30.102.0/23</name></prefix-list-item><prefix-list-item><name>217.30.102.0/24</name></prefix-list-item><prefix-list-item><name>217.30.104.0/21</name></prefix-list-item><prefix-list-item><name>217.30.104.0/22</name></prefix-list-item><prefix-list-item><name>217.30.104.0/24</name></prefix-list-item><prefix-list-item><name>217.30.105.0/24</name></prefix-list-item><prefix-list-item><name>217.30.106.0/24</name></prefix-list-item><prefix-list-item><name>217.30.107.0/24</name></prefix-list-item><prefix-list-item><name>217.30.108.0/22</name></prefix-list-item><prefix-list-item><name>217.30.108.0/24</name></prefix-list-item><prefix-list-item><name>217.30.109.0/24</name></prefix-list-item><prefix-list-item><name>217.30.110.0/23</name></prefix-list-item><prefix-list-item><name>217.71.176.0/20</name></prefix-list-item><prefix-list-item><name>217.71.176.0/21</name></prefix-list-item><prefix-list-item><name>217.71.176.0/22</name></prefix-list-item><prefix-list-item><name>217.71.176.0/24</name></prefix-list-item><prefix-list-item><name>217.71.177.0/24</name></prefix-list-item><prefix-list-item><name>217.71.178.0/24</name></prefix-list-item><prefix-list-item><name>217.71.179.0/24</name></prefix-list-item><prefix-list-item><name>217.71.180.0/24</name></prefix-list-item><prefix-list-item><name>217.71.180.0/26</name></prefix-list-item><prefix-list-item><name>217.71.181.0/24</name></prefix-list-item><prefix-list-item><name>217.71.182.0/24</name></prefix-list-item><prefix-list-item><name>217.71.183.0/24</name></prefix-list-item><prefix-list-item><name>217.71.184.0/22</name></prefix-list-item><prefix-list-item><name>217.71.184.0/23</name></prefix-list-item><prefix-list-item><name>217.71.186.0/23</name></prefix-list-item><prefix-list-item><name>217.71.188.0/22</name></prefix-list-item><prefix-list-item><name>217.71.188.0/23</name></prefix-list-item><prefix-list-item><name>217.71.190.0/24</name></prefix-list-item><prefix-list-item><name>217.71.191.0/24</name></prefix-list-item></prefix-list><prefix-list><name>route-from-UOM-v6</name><prefix-list-item><name>2001:1a70::/32</name></prefix-list-item><prefix-list-item><name>2a00:1060::/32</name></prefix-list-item></prefix-list><prefix-list><name>route-from-GARR</name><prefix-list-item><name>5.144.184.0/21</name></prefix-list-item><prefix-list-item><name>5.144.184.0/22</name></prefix-list-item><prefix-list-item><name>5.144.188.0/22</name></prefix-list-item><prefix-list-item><name>5.144.188.0/24</name></prefix-list-item><prefix-list-item><name>5.144.190.0/24</name></prefix-list-item><prefix-list-item><name>37.156.96.0/22</name></prefix-list-item><prefix-list-item><name>37.156.96.0/23</name></prefix-list-item><prefix-list-item><name>37.156.98.0/23</name></prefix-list-item><prefix-list-item><name>37.156.148.0/22</name></prefix-list-item><prefix-list-item><name>37.156.148.0/23</name></prefix-list-item><prefix-list-item><name>37.156.150.0/23</name></prefix-list-item><prefix-list-item><name>37.156.168.0/22</name></prefix-list-item><prefix-list-item><name>37.156.168.0/23</name></prefix-list-item><prefix-list-item><name>37.156.170.0/23</name></prefix-list-item><prefix-list-item><name>37.156.208.0/22</name></prefix-list-item><prefix-list-item><name>37.156.208.0/23</name></prefix-list-item><prefix-list-item><name>37.156.210.0/23</name></prefix-list-item><prefix-list-item><name>44.134.206.0/23</name></prefix-list-item><prefix-list-item><name>45.89.120.0/24</name></prefix-list-item><prefix-list-item><name>45.89.121.0/24</name></prefix-list-item><prefix-list-item><name>45.141.231.0/24</name></prefix-list-item><prefix-list-item><name>46.18.24.0/21</name></prefix-list-item><prefix-list-item><name>46.18.24.0/22</name></prefix-list-item><prefix-list-item><name>46.18.28.0/22</name></prefix-list-item><prefix-list-item><name>46.255.80.0/21</name></prefix-list-item><prefix-list-item><name>46.255.80.0/22</name></prefix-list-item><prefix-list-item><name>46.255.80.0/24</name></prefix-list-item><prefix-list-item><name>46.255.83.0/24</name></prefix-list-item><prefix-list-item><name>46.255.84.0/22</name></prefix-list-item><prefix-list-item><name>46.255.85.0/24</name></prefix-list-item><prefix-list-item><name>46.255.86.0/24</name></prefix-list-item><prefix-list-item><name>77.83.224.0/22</name></prefix-list-item><prefix-list-item><name>77.83.224.0/23</name></prefix-list-item><prefix-list-item><name>77.83.226.0/24</name></prefix-list-item><prefix-list-item><name>78.40.168.0/22</name></prefix-list-item><prefix-list-item><name>86.104.6.0/24</name></prefix-list-item><prefix-list-item><name>86.104.229.0/24</name></prefix-list-item><prefix-list-item><name>86.105.8.0/24</name></prefix-list-item><prefix-list-item><name>86.105.179.0/24</name></prefix-list-item><prefix-list-item><name>86.109.128.0/19</name></prefix-list-item><prefix-list-item><name>89.33.232.0/24</name></prefix-list-item><prefix-list-item><name>89.34.6.0/24</name></prefix-list-item><prefix-list-item><name>89.36.155.0/24</name></prefix-list-item><prefix-list-item><name>89.39.92.0/24</name></prefix-list-item><prefix-list-item><name>89.39.224.0/20</name></prefix-list-item><prefix-list-item><name>89.39.224.0/21</name></prefix-list-item><prefix-list-item><name>89.39.232.0/21</name></prefix-list-item><prefix-list-item><name>89.42.230.0/24</name></prefix-list-item><prefix-list-item><name>89.44.189.0/24</name></prefix-list-item><prefix-list-item><name>89.44.206.0/24</name></prefix-list-item><prefix-list-item><name>89.45.24.0/21</name></prefix-list-item><prefix-list-item><name>89.45.24.0/24</name></prefix-list-item><prefix-list-item><name>89.45.25.0/24</name></prefix-list-item><prefix-list-item><name>89.45.26.0/24</name></prefix-list-item><prefix-list-item><name>89.45.27.0/24</name></prefix-list-item><prefix-list-item><name>89.45.95.0/24</name></prefix-list-item><prefix-list-item><name>89.45.229.0/24</name></prefix-list-item><prefix-list-item><name>89.47.32.0/23</name></prefix-list-item><prefix-list-item><name>89.47.32.0/24</name></prefix-list-item><prefix-list-item><name>89.47.33.0/24</name></prefix-list-item><prefix-list-item><name>90.147.0.0/16</name></prefix-list-item><prefix-list-item><name>91.200.208.0/22</name></prefix-list-item><prefix-list-item><name>93.113.46.0/24</name></prefix-list-item><prefix-list-item><name>93.113.89.0/24</name></prefix-list-item><prefix-list-item><name>93.115.154.0/24</name></prefix-list-item><prefix-list-item><name>93.115.170.0/23</name></prefix-list-item><prefix-list-item><name>93.118.37.0/24</name></prefix-list-item><prefix-list-item><name>93.119.194.0/24</name></prefix-list-item><prefix-list-item><name>94.176.131.0/24</name></prefix-list-item><prefix-list-item><name>94.176.151.0/24</name></prefix-list-item><prefix-list-item><name>94.177.18.0/23</name></prefix-list-item><prefix-list-item><name>94.177.151.0/24</name></prefix-list-item><prefix-list-item><name>130.136.0.0/16</name></prefix-list-item><prefix-list-item><name>130.186.0.0/19</name></prefix-list-item><prefix-list-item><name>130.192.0.0/16</name></prefix-list-item><prefix-list-item><name>130.251.0.0/16</name></prefix-list-item><prefix-list-item><name>131.114.0.0/16</name></prefix-list-item><prefix-list-item><name>131.154.0.0/16</name></prefix-list-item><prefix-list-item><name>131.175.0.0/16</name></prefix-list-item><prefix-list-item><name>131.176.247.0/24</name></prefix-list-item><prefix-list-item><name>136.156.32.0/22</name></prefix-list-item><prefix-list-item><name>136.156.40.0/21</name></prefix-list-item><prefix-list-item><name>136.156.144.0/20</name></prefix-list-item><prefix-list-item><name>136.156.192.0/18</name></prefix-list-item><prefix-list-item><name>137.204.0.0/16</name></prefix-list-item><prefix-list-item><name>138.41.0.0/16</name></prefix-list-item><prefix-list-item><name>139.191.0.0/16</name></prefix-list-item><prefix-list-item><name>139.191.96.0/20</name></prefix-list-item><prefix-list-item><name>139.191.112.0/20</name></prefix-list-item><prefix-list-item><name>139.191.192.0/20</name></prefix-list-item><prefix-list-item><name>140.105.0.0/16</name></prefix-list-item><prefix-list-item><name>140.164.0.0/16</name></prefix-list-item><prefix-list-item><name>141.108.0.0/16</name></prefix-list-item><prefix-list-item><name>141.250.0.0/16</name></prefix-list-item><prefix-list-item><name>143.225.0.0/16</name></prefix-list-item><prefix-list-item><name>146.48.0.0/16</name></prefix-list-item><prefix-list-item><name>147.122.0.0/16</name></prefix-list-item><prefix-list-item><name>147.162.0.0/15</name></prefix-list-item><prefix-list-item><name>149.132.0.0/16</name></prefix-list-item><prefix-list-item><name>149.139.0.0/16</name></prefix-list-item><prefix-list-item><name>150.145.0.0/16</name></prefix-list-item><prefix-list-item><name>150.146.0.0/16</name></prefix-list-item><prefix-list-item><name>150.178.0.0/16</name></prefix-list-item><prefix-list-item><name>150.217.0.0/16</name></prefix-list-item><prefix-list-item><name>151.97.0.0/16</name></prefix-list-item><prefix-list-item><name>151.100.0.0/16</name></prefix-list-item><prefix-list-item><name>155.185.0.0/16</name></prefix-list-item><prefix-list-item><name>155.253.0.0/16</name></prefix-list-item><prefix-list-item><name>156.14.0.0/16</name></prefix-list-item><prefix-list-item><name>156.148.0.0/16</name></prefix-list-item><prefix-list-item><name>157.27.0.0/16</name></prefix-list-item><prefix-list-item><name>157.138.0.0/16</name></prefix-list-item><prefix-list-item><name>158.110.0.0/16</name></prefix-list-item><prefix-list-item><name>159.149.0.0/16</name></prefix-list-item><prefix-list-item><name>159.213.0.0/16</name></prefix-list-item><prefix-list-item><name>160.78.0.0/16</name></prefix-list-item><prefix-list-item><name>160.80.0.0/16</name></prefix-list-item><prefix-list-item><name>160.97.0.0/16</name></prefix-list-item><prefix-list-item><name>176.223.164.0/24</name></prefix-list-item><prefix-list-item><name>185.11.152.0/22</name></prefix-list-item><prefix-list-item><name>185.11.152.0/24</name></prefix-list-item><prefix-list-item><name>185.11.153.0/24</name></prefix-list-item><prefix-list-item><name>185.11.154.0/24</name></prefix-list-item><prefix-list-item><name>185.11.155.0/24</name></prefix-list-item><prefix-list-item><name>185.77.161.0/24</name></prefix-list-item><prefix-list-item><name>185.82.168.0/22</name></prefix-list-item><prefix-list-item><name>185.82.168.0/23</name></prefix-list-item><prefix-list-item><name>185.82.169.0/24</name></prefix-list-item><prefix-list-item><name>185.82.170.0/23</name></prefix-list-item><prefix-list-item><name>185.82.170.0/24</name></prefix-list-item><prefix-list-item><name>185.82.171.0/24</name></prefix-list-item><prefix-list-item><name>185.151.24.0/22</name></prefix-list-item><prefix-list-item><name>185.191.180.0/22</name></prefix-list-item><prefix-list-item><name>188.209.80.0/20</name></prefix-list-item><prefix-list-item><name>188.209.80.0/21</name></prefix-list-item><prefix-list-item><name>188.209.80.0/24</name></prefix-list-item><prefix-list-item><name>188.209.81.0/24</name></prefix-list-item><prefix-list-item><name>188.209.82.0/24</name></prefix-list-item><prefix-list-item><name>188.209.83.0/24</name></prefix-list-item><prefix-list-item><name>188.209.86.0/24</name></prefix-list-item><prefix-list-item><name>188.209.87.0/24</name></prefix-list-item><prefix-list-item><name>188.209.88.0/21</name></prefix-list-item><prefix-list-item><name>188.209.88.0/24</name></prefix-list-item><prefix-list-item><name>188.209.89.0/24</name></prefix-list-item><prefix-list-item><name>188.210.239.0/24</name></prefix-list-item><prefix-list-item><name>188.212.153.0/24</name></prefix-list-item><prefix-list-item><name>188.214.29.0/24</name></prefix-list-item><prefix-list-item><name>188.215.44.0/22</name></prefix-list-item><prefix-list-item><name>188.215.65.0/24</name></prefix-list-item><prefix-list-item><name>188.215.247.0/24</name></prefix-list-item><prefix-list-item><name>188.215.248.0/24</name></prefix-list-item><prefix-list-item><name>188.241.4.0/23</name></prefix-list-item><prefix-list-item><name>188.241.190.0/23</name></prefix-list-item><prefix-list-item><name>192.12.192.0/23</name></prefix-list-item><prefix-list-item><name>192.12.192.0/24</name></prefix-list-item><prefix-list-item><name>192.12.193.0/24</name></prefix-list-item><prefix-list-item><name>192.12.194.0/24</name></prefix-list-item><prefix-list-item><name>192.41.218.0/24</name></prefix-list-item><prefix-list-item><name>192.55.101.0/24</name></prefix-list-item><prefix-list-item><name>192.65.131.0/24</name></prefix-list-item><prefix-list-item><name>192.82.220.0/24</name></prefix-list-item><prefix-list-item><name>192.82.221.0/24</name></prefix-list-item><prefix-list-item><name>192.84.127.0/24</name></prefix-list-item><prefix-list-item><name>192.84.128.0/20</name></prefix-list-item><prefix-list-item><name>192.84.144.0/21</name></prefix-list-item><prefix-list-item><name>192.84.152.0/22</name></prefix-list-item><prefix-list-item><name>192.84.156.0/24</name></prefix-list-item><prefix-list-item><name>192.106.196.0/23</name></prefix-list-item><prefix-list-item><name>192.106.234.0/24</name></prefix-list-item><prefix-list-item><name>192.106.246.0/23</name></prefix-list-item><prefix-list-item><name>192.107.51.0/24</name></prefix-list-item><prefix-list-item><name>192.107.52.0/22</name></prefix-list-item><prefix-list-item><name>192.107.56.0/21</name></prefix-list-item><prefix-list-item><name>192.107.64.0/19</name></prefix-list-item><prefix-list-item><name>192.107.96.0/22</name></prefix-list-item><prefix-list-item><name>192.107.100.0/24</name></prefix-list-item><prefix-list-item><name>192.132.34.0/24</name></prefix-list-item><prefix-list-item><name>192.133.28.0/24</name></prefix-list-item><prefix-list-item><name>192.135.8.0/21</name></prefix-list-item><prefix-list-item><name>192.135.16.0/20</name></prefix-list-item><prefix-list-item><name>192.135.32.0/23</name></prefix-list-item><prefix-list-item><name>192.135.34.0/24</name></prefix-list-item><prefix-list-item><name>192.135.35.0/24</name></prefix-list-item><prefix-list-item><name>192.135.36.0/24</name></prefix-list-item><prefix-list-item><name>192.135.37.0/24</name></prefix-list-item><prefix-list-item><name>192.135.165.0/24</name></prefix-list-item><prefix-list-item><name>192.146.242.0/24</name></prefix-list-item><prefix-list-item><name>192.148.193.0/24</name></prefix-list-item><prefix-list-item><name>192.150.194.0/23</name></prefix-list-item><prefix-list-item><name>192.150.196.0/24</name></prefix-list-item><prefix-list-item><name>192.156.132.0/24</name></prefix-list-item><prefix-list-item><name>192.156.213.0/24</name></prefix-list-item><prefix-list-item><name>192.160.156.0/24</name></prefix-list-item><prefix-list-item><name>192.167.0.0/16</name></prefix-list-item><prefix-list-item><name>192.167.59.0/24</name></prefix-list-item><prefix-list-item><name>192.195.110.0/24</name></prefix-list-item><prefix-list-item><name>193.42.139.0/24</name></prefix-list-item><prefix-list-item><name>193.42.140.0/23</name></prefix-list-item><prefix-list-item><name>193.42.140.0/24</name></prefix-list-item><prefix-list-item><name>193.43.18.0/23</name></prefix-list-item><prefix-list-item><name>193.43.80.0/21</name></prefix-list-item><prefix-list-item><name>193.43.97.0/24</name></prefix-list-item><prefix-list-item><name>193.43.101.0/24</name></prefix-list-item><prefix-list-item><name>193.43.109.0/24</name></prefix-list-item><prefix-list-item><name>193.43.116.0/24</name></prefix-list-item><prefix-list-item><name>193.43.117.0/24</name></prefix-list-item><prefix-list-item><name>193.43.128.0/22</name></prefix-list-item><prefix-list-item><name>193.43.141.0/24</name></prefix-list-item><prefix-list-item><name>193.43.184.0/21</name></prefix-list-item><prefix-list-item><name>193.43.192.0/20</name></prefix-list-item><prefix-list-item><name>193.104.137.0/24</name></prefix-list-item><prefix-list-item><name>193.104.137.0/25</name></prefix-list-item><prefix-list-item><name>193.104.137.128/25</name></prefix-list-item><prefix-list-item><name>193.106.180.0/22</name></prefix-list-item><prefix-list-item><name>193.106.180.0/23</name></prefix-list-item><prefix-list-item><name>193.106.182.0/23</name></prefix-list-item><prefix-list-item><name>193.178.124.0/22</name></prefix-list-item><prefix-list-item><name>193.200.213.0/24</name></prefix-list-item><prefix-list-item><name>193.204.0.0/15</name></prefix-list-item><prefix-list-item><name>193.206.0.0/16</name></prefix-list-item><prefix-list-item><name>194.0.16.0/24</name></prefix-list-item><prefix-list-item><name>194.116.112.0/21</name></prefix-list-item><prefix-list-item><name>194.116.112.0/24</name></prefix-list-item><prefix-list-item><name>194.116.116.0/24</name></prefix-list-item><prefix-list-item><name>194.116.118.0/24</name></prefix-list-item><prefix-list-item><name>194.116.119.0/24</name></prefix-list-item><prefix-list-item><name>194.119.192.0/19</name></prefix-list-item><prefix-list-item><name>195.62.160.0/19</name></prefix-list-item><prefix-list-item><name>195.62.160.0/20</name></prefix-list-item><prefix-list-item><name>195.62.176.0/20</name></prefix-list-item><prefix-list-item><name>198.17.117.0/24</name></prefix-list-item><prefix-list-item><name>212.77.0.0/19</name></prefix-list-item><prefix-list-item><name>212.77.31.0/24</name></prefix-list-item><prefix-list-item><name>212.189.128.0/17</name></prefix-list-item><prefix-list-item><name>217.9.64.0/20</name></prefix-list-item><prefix-list-item><name>217.29.64.0/21</name></prefix-list-item><prefix-list-item><name>217.29.72.0/21</name></prefix-list-item><prefix-list-item><name>217.29.72.0/24</name></prefix-list-item><prefix-list-item><name>217.29.76.0/24</name></prefix-list-item><prefix-list-item><name>217.29.77.0/24</name></prefix-list-item><prefix-list-item><name>217.77.80.0/20</name></prefix-list-item></prefix-list><prefix-list><name>route-from-GARR-v6</name><prefix-list-item><name>2001:678:12::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1b08::/48</name></prefix-list-item><prefix-list-item><name>2001:760::/32</name></prefix-list-item><prefix-list-item><name>2001:848:804::/48</name></prefix-list-item><prefix-list-item><name>2001:1678::/32</name></prefix-list-item><prefix-list-item><name>2001:1ac0::/32</name></prefix-list-item><prefix-list-item><name>2001:1ac0::/64</name></prefix-list-item><prefix-list-item><name>2001:41a0::/32</name></prefix-list-item><prefix-list-item><name>2a00:d40::/32</name></prefix-list-item><prefix-list-item><name>2a00:d40:1::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:100::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:101::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:102::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:103::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:104::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:105::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:106::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:107::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:108::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:109::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:10a::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:10b::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:10c::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:300::/48</name></prefix-list-item><prefix-list-item><name>2a00:d40:400::/48</name></prefix-list-item><prefix-list-item><name>2a00:1620::/32</name></prefix-list-item><prefix-list-item><name>2a01:b8::/32</name></prefix-list-item><prefix-list-item><name>2a02:20d8::/29</name></prefix-list-item><prefix-list-item><name>2a02:20d8::/32</name></prefix-list-item><prefix-list-item><name>2a02:27e8::/32</name></prefix-list-item><prefix-list-item><name>2a09:9180:ec00::/42</name></prefix-list-item><prefix-list-item><name>2a09:9180:ecfb::/48</name></prefix-list-item><prefix-list-item><name>2a09:9180:ecfd::/48</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>geantnoc-address-space6</name></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>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:7::1/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>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>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>nren-access</name><prefix-list-item><name>62.40.96.11/32</name></prefix-list-item><prefix-list-item><name>62.40.109.68/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>geant-routers</name><prefix-list-item><name>62.40.96.0/23</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>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>2002:3e28:69d2::3e28:69d2/128</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-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-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>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>geantnoc-address-space-v6</name></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>Iron-Mountain</name><prefix-list-item><name>188.95.84.128/25</name></prefix-list-item><prefix-list-item><name>188.95.86.128/25</name></prefix-list-item><prefix-list-item><name>193.30.234.0/24</name></prefix-list-item><prefix-list-item><name>193.239.113.128/25</name></prefix-list-item><prefix-list-item><name>208.66.136.0/21</name></prefix-list-item><prefix-list-item><name>208.66.142.0/23</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>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.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>Infinera-address-space</name><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.130/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>Infinera-DNA-servers</name><comment>/* Frankfurt DNA Server */</comment><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><comment>/* London DNA Server */</comment><prefix-list-item><name>62.40.99.114/32</name></prefix-list-item><comment>/* OTSv VM in LAB - Guy Roberts */</comment><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>Juniper-vpn</name><prefix-list-item><name>193.110.55.0/24</name></prefix-list-item></prefix-list><prefix-list><name>LAB-Junos-Space</name><prefix-list-item><name>62.40.120.15/32</name></prefix-list-item><prefix-list-item><name>62.40.120.16/32</name></prefix-list-item><prefix-list-item><name>62.40.120.20/32</name></prefix-list-item><prefix-list-item><name>62.40.120.25/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-VPN</name><prefix-list-item><name>62.40.104.2/32</name></prefix-list-item><prefix-list-item><name>193.63.211.189/32</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_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>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>GEANT_NTP_APPLIANCES</name><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>fod</name><prefix-list-item><name>83.97.93.59/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT_NTP_APPLIANCES_USERS</name><prefix-list-item><name>62.40.114.41/32</name></prefix-list-item><prefix-list-item><name>150.100.209.162/32</name></prefix-list-item><prefix-list-item><name>150.100.209.163/32</name></prefix-list-item></prefix-list><prefix-list><name>RE_BGP_inet</name><apply-path>protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>RE_BGP_inet6</name><apply-path>protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>IAS_BGP_inet</name><apply-path>routing-instances IAS protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>IAS_BGP_inet6</name><apply-path>routing-instances IAS protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>CLS_BGP_inet</name><apply-path>routing-instances CLS protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>CLS_BGP_inet6</name><apply-path>routing-instances CLS protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>IAS_DUMMY_BGP_inet</name><apply-path>routing-instances IAS_DUMMY protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>IAS_DUMMY_BGP_inet6</name><apply-path>routing-instances IAS_DUMMY protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>lhcone-l3vpn_BGP_inet</name><apply-path>routing-instances lhcone-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>lhcone-l3vpn_BGP_inet6</name><apply-path>routing-instances lhcone-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>taas-control_BGP_inet</name><apply-path>routing-instances taas-control protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>taas-control_BGP_inet6</name><apply-path>routing-instances taas-control protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>mgmt-l3vpn_BGP_inet</name><apply-path>routing-instances mgmt-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>mgmt-l3vpn_BGP_inet6</name><apply-path>routing-instances mgmt-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn_BGP_inet</name><apply-path>routing-instances mdvpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn_BGP_inet6</name><apply-path>routing-instances mdvpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn-nren-gn_BGP_inet</name><apply-path>routing-instances mdvpn-nren-gn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn-nren-gn_BGP_inet6</name><apply-path>routing-instances mdvpn-nren-gn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>confine-l3vpn_BGP_inet</name><apply-path>routing-instances confine-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>confine-l3vpn_BGP_inet6</name><apply-path>routing-instances confine-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>VPN-PROXY_BGP_inet</name><apply-path>logical-systems VPN-PROXY protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>VPN-PROXY_BGP_inet6</name><apply-path>logical-systems VPN-PROXY protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>VRR_BGP_inet</name><apply-path>logical-systems VRR protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>VRR_BGP_inet6</name><apply-path>logical-systems VRR protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</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>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_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>R730XD_DRAC</name><prefix-list-item><name>62.40.117.37/32</name></prefix-list-item><prefix-list-item><name>62.40.117.39/32</name></prefix-list-item></prefix-list><prefix-list><name>XANTARO_PS</name><prefix-list-item><name>81.209.178.194/32</name></prefix-list-item></prefix-list><prefix-list><name>qfx-vme-interfaces</name><prefix-list-item><name>62.40.117.162/32</name></prefix-list-item><prefix-list-item><name>62.40.117.170/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT_SUPERPOP_DRAC</name><prefix-list-item><name>62.40.117.208/28</name></prefix-list-item><prefix-list-item><name>62.40.117.224/28</name></prefix-list-item></prefix-list><prefix-list><name>GEANT_SUPERPOP_ESXI</name><prefix-list-item><name>62.40.108.64/27</name></prefix-list-item><prefix-list-item><name>62.40.108.128/27</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>JRA2_MICHAL_ACCESS_SRCIPS</name><prefix-list-item><name>78.128.217.0/25</name></prefix-list-item><prefix-list-item><name>195.113.161.160/28</name></prefix-list-item><prefix-list-item><name>195.113.222.0/24</name></prefix-list-item><prefix-list-item><name>212.79.96.72/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-MSDP</name><apply-path>protocols msdp group &lt;*&gt; peer &lt;*&gt;</apply-path></prefix-list><prefix-list><name>GEANT-SNMP</name><apply-path>snmp community &lt;*&gt; clients &lt;*&gt;</apply-path></prefix-list><prefix-list><name>GEANT-LDP</name><apply-path>protocols l2circuit neighbor &lt;*&gt;</apply-path></prefix-list><prefix-list><name>route-from-RASH</name><prefix-list-item><name>37.139.112.0/21</name></prefix-list-item><prefix-list-item><name>37.139.112.0/22</name></prefix-list-item><prefix-list-item><name>37.139.115.0/24</name></prefix-list-item><prefix-list-item><name>37.139.116.0/22</name></prefix-list-item><prefix-list-item><name>129.134.155.0/24</name></prefix-list-item><prefix-list-item><name>185.63.176.0/22</name></prefix-list-item></prefix-list><prefix-list><name>static-route</name><prefix-list-item><name>0.0.0.0/0</name></prefix-list-item></prefix-list><prefix-list><name>default-route-v6</name><prefix-list-item><name>::/0</name></prefix-list-item></prefix-list><prefix-list><name>default-route-v4</name><prefix-list-item><name>0.0.0.0/0</name></prefix-list-item></prefix-list><prefix-list><name>JRA1_SDN_CORSA_ACCESS</name><prefix-list-item><name>62.40.120.82/32</name></prefix-list-item><prefix-list-item><name>147.83.206.64/27</name></prefix-list-item><prefix-list-item><name>147.91.255.0/25</name></prefix-list-item><prefix-list-item><name>193.49.159.128/26</name></prefix-list-item></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>superpop-address-space</name><prefix-list-item><name>83.97.92.0/22</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>route-from-ACONET</name><prefix-list-item><name>5.183.244.0/22</name></prefix-list-item><prefix-list-item><name>23.128.24.0/24</name></prefix-list-item><prefix-list-item><name>23.128.25.0/25</name></prefix-list-item><prefix-list-item><name>23.128.25.240/28</name></prefix-list-item><prefix-list-item><name>27.0.0.0/24</name></prefix-list-item><prefix-list-item><name>27.50.0.0/22</name></prefix-list-item><prefix-list-item><name>39.0.1.0/24</name></prefix-list-item><prefix-list-item><name>45.86.164.0/22</name></prefix-list-item><prefix-list-item><name>45.86.164.0/24</name></prefix-list-item><prefix-list-item><name>45.86.166.0/24</name></prefix-list-item><prefix-list-item><name>45.86.167.0/24</name></prefix-list-item><prefix-list-item><name>74.116.176.0/22</name></prefix-list-item><prefix-list-item><name>77.80.0.0/17</name></prefix-list-item><prefix-list-item><name>78.41.144.0/23</name></prefix-list-item><prefix-list-item><name>78.41.144.0/24</name></prefix-list-item><prefix-list-item><name>78.41.145.0/24</name></prefix-list-item><prefix-list-item><name>78.41.148.0/24</name></prefix-list-item><prefix-list-item><name>78.41.149.0/24</name></prefix-list-item><prefix-list-item><name>78.41.150.0/24</name></prefix-list-item><prefix-list-item><name>78.104.0.0/16</name></prefix-list-item><prefix-list-item><name>78.104.0.0/20</name></prefix-list-item><prefix-list-item><name>78.104.68.0/22</name></prefix-list-item><prefix-list-item><name>78.104.72.0/24</name></prefix-list-item><prefix-list-item><name>78.104.145.0/24</name></prefix-list-item><prefix-list-item><name>78.104.175.0/24</name></prefix-list-item><prefix-list-item><name>81.91.164.0/24</name></prefix-list-item><prefix-list-item><name>83.136.32.0/21</name></prefix-list-item><prefix-list-item><name>83.136.32.0/24</name></prefix-list-item><prefix-list-item><name>83.136.33.0/24</name></prefix-list-item><prefix-list-item><name>83.136.34.0/24</name></prefix-list-item><prefix-list-item><name>83.136.35.0/24</name></prefix-list-item><prefix-list-item><name>83.136.36.0/24</name></prefix-list-item><prefix-list-item><name>83.136.37.0/24</name></prefix-list-item><prefix-list-item><name>83.136.38.0/24</name></prefix-list-item><prefix-list-item><name>84.205.64.0/24</name></prefix-list-item><prefix-list-item><name>84.205.65.0/24</name></prefix-list-item><prefix-list-item><name>84.205.66.0/24</name></prefix-list-item><prefix-list-item><name>84.205.67.0/24</name></prefix-list-item><prefix-list-item><name>84.205.68.0/24</name></prefix-list-item><prefix-list-item><name>84.205.69.0/24</name></prefix-list-item><prefix-list-item><name>84.205.70.0/24</name></prefix-list-item><prefix-list-item><name>84.205.71.0/24</name></prefix-list-item><prefix-list-item><name>84.205.72.0/24</name></prefix-list-item><prefix-list-item><name>84.205.73.0/24</name></prefix-list-item><prefix-list-item><name>84.205.74.0/24</name></prefix-list-item><prefix-list-item><name>84.205.75.0/24</name></prefix-list-item><prefix-list-item><name>84.205.76.0/24</name></prefix-list-item><prefix-list-item><name>84.205.77.0/24</name></prefix-list-item><prefix-list-item><name>84.205.78.0/24</name></prefix-list-item><prefix-list-item><name>84.205.79.0/24</name></prefix-list-item><prefix-list-item><name>84.205.80.0/24</name></prefix-list-item><prefix-list-item><name>84.205.81.0/24</name></prefix-list-item><prefix-list-item><name>84.205.82.0/24</name></prefix-list-item><prefix-list-item><name>84.205.83.0/24</name></prefix-list-item><prefix-list-item><name>84.205.84.0/24</name></prefix-list-item><prefix-list-item><name>84.205.85.0/24</name></prefix-list-item><prefix-list-item><name>84.205.86.0/24</name></prefix-list-item><prefix-list-item><name>84.205.87.0/24</name></prefix-list-item><prefix-list-item><name>84.205.88.0/24</name></prefix-list-item><prefix-list-item><name>84.205.89.0/24</name></prefix-list-item><prefix-list-item><name>84.205.90.0/24</name></prefix-list-item><prefix-list-item><name>84.205.91.0/24</name></prefix-list-item><prefix-list-item><name>84.205.92.0/24</name></prefix-list-item><prefix-list-item><name>84.205.93.0/24</name></prefix-list-item><prefix-list-item><name>84.205.94.0/24</name></prefix-list-item><prefix-list-item><name>84.205.95.0/24</name></prefix-list-item><prefix-list-item><name>85.158.224.0/21</name></prefix-list-item><prefix-list-item><name>89.106.208.0/21</name></prefix-list-item><prefix-list-item><name>91.208.95.0/24</name></prefix-list-item><prefix-list-item><name>91.227.128.0/24</name></prefix-list-item><prefix-list-item><name>91.227.129.0/24</name></prefix-list-item><prefix-list-item><name>91.229.57.0/24</name></prefix-list-item><prefix-list-item><name>91.233.191.0/24</name></prefix-list-item><prefix-list-item><name>91.237.67.0/24</name></prefix-list-item><prefix-list-item><name>93.175.144.0/24</name></prefix-list-item><prefix-list-item><name>93.175.146.0/24</name></prefix-list-item><prefix-list-item><name>93.175.147.0/24</name></prefix-list-item><prefix-list-item><name>93.175.148.0/24</name></prefix-list-item><prefix-list-item><name>93.175.149.0/24</name></prefix-list-item><prefix-list-item><name>93.175.150.0/24</name></prefix-list-item><prefix-list-item><name>93.175.151.0/24</name></prefix-list-item><prefix-list-item><name>95.131.192.0/22</name></prefix-list-item><prefix-list-item><name>95.131.196.0/23</name></prefix-list-item><prefix-list-item><name>95.131.198.0/24</name></prefix-list-item><prefix-list-item><name>95.131.199.0/24</name></prefix-list-item><prefix-list-item><name>103.0.0.0/16</name></prefix-list-item><prefix-list-item><name>103.1.0.0/22</name></prefix-list-item><prefix-list-item><name>103.1.4.0/24</name></prefix-list-item><prefix-list-item><name>106.0.1.0/24</name></prefix-list-item><prefix-list-item><name>128.130.0.0/15</name></prefix-list-item><prefix-list-item><name>129.27.0.0/16</name></prefix-list-item><prefix-list-item><name>131.130.0.0/16</name></prefix-list-item><prefix-list-item><name>137.208.0.0/16</name></prefix-list-item><prefix-list-item><name>137.208.10.10/32</name></prefix-list-item><prefix-list-item><name>137.208.20.10/32</name></prefix-list-item><prefix-list-item><name>137.208.250.10/32</name></prefix-list-item><prefix-list-item><name>138.22.0.0/16</name></prefix-list-item><prefix-list-item><name>138.232.0.0/16</name></prefix-list-item><prefix-list-item><name>140.78.0.0/16</name></prefix-list-item><prefix-list-item><name>141.201.0.0/16</name></prefix-list-item><prefix-list-item><name>141.203.0.0/16</name></prefix-list-item><prefix-list-item><name>141.244.0.0/16</name></prefix-list-item><prefix-list-item><name>143.50.0.0/16</name></prefix-list-item><prefix-list-item><name>143.130.0.0/16</name></prefix-list-item><prefix-list-item><name>143.205.0.0/16</name></prefix-list-item><prefix-list-item><name>143.224.0.0/16</name></prefix-list-item><prefix-list-item><name>144.65.0.0/16</name></prefix-list-item><prefix-list-item><name>145.244.0.0/16</name></prefix-list-item><prefix-list-item><name>147.125.0.0/16</name></prefix-list-item><prefix-list-item><name>149.148.0.0/16</name></prefix-list-item><prefix-list-item><name>157.177.0.0/16</name></prefix-list-item><prefix-list-item><name>157.177.248.0/22</name></prefix-list-item><prefix-list-item><name>161.110.0.0/16</name></prefix-list-item><prefix-list-item><name>162.218.32.0/23</name></prefix-list-item><prefix-list-item><name>162.218.32.0/24</name></prefix-list-item><prefix-list-item><name>162.218.33.0/24</name></prefix-list-item><prefix-list-item><name>176.97.158.0/24</name></prefix-list-item><prefix-list-item><name>185.80.188.0/22</name></prefix-list-item><prefix-list-item><name>185.80.188.0/24</name></prefix-list-item><prefix-list-item><name>185.80.189.0/24</name></prefix-list-item><prefix-list-item><name>185.80.190.0/24</name></prefix-list-item><prefix-list-item><name>185.80.191.0/24</name></prefix-list-item><prefix-list-item><name>185.85.28.0/22</name></prefix-list-item><prefix-list-item><name>185.85.28.0/23</name></prefix-list-item><prefix-list-item><name>185.102.12.0/24</name></prefix-list-item><prefix-list-item><name>185.102.13.0/24</name></prefix-list-item><prefix-list-item><name>185.102.14.0/24</name></prefix-list-item><prefix-list-item><name>185.102.15.0/24</name></prefix-list-item><prefix-list-item><name>185.117.40.0/22</name></prefix-list-item><prefix-list-item><name>185.130.252.0/22</name></prefix-list-item><prefix-list-item><name>185.151.141.0/24</name></prefix-list-item><prefix-list-item><name>185.151.142.0/24</name></prefix-list-item><prefix-list-item><name>185.151.143.0/24</name></prefix-list-item><prefix-list-item><name>185.154.40.0/22</name></prefix-list-item><prefix-list-item><name>185.160.113.0/24</name></prefix-list-item><prefix-list-item><name>185.167.176.0/24</name></prefix-list-item><prefix-list-item><name>185.197.44.0/22</name></prefix-list-item><prefix-list-item><name>185.210.12.0/22</name></prefix-list-item><prefix-list-item><name>185.223.20.0/24</name></prefix-list-item><prefix-list-item><name>185.223.22.0/24</name></prefix-list-item><prefix-list-item><name>192.5.162.0/24</name></prefix-list-item><prefix-list-item><name>192.26.237.0/24</name></prefix-list-item><prefix-list-item><name>192.26.238.0/24</name></prefix-list-item><prefix-list-item><name>192.35.240.0/22</name></prefix-list-item><prefix-list-item><name>192.35.244.0/24</name></prefix-list-item><prefix-list-item><name>192.76.243.0/24</name></prefix-list-item><prefix-list-item><name>192.76.244.0/24</name></prefix-list-item><prefix-list-item><name>192.82.157.0/24</name></prefix-list-item><prefix-list-item><name>192.82.158.0/24</name></prefix-list-item><prefix-list-item><name>192.88.23.0/24</name></prefix-list-item><prefix-list-item><name>192.88.24.0/24</name></prefix-list-item><prefix-list-item><name>192.92.125.0/24</name></prefix-list-item><prefix-list-item><name>192.102.1.0/24</name></prefix-list-item><prefix-list-item><name>192.107.124.0/23</name></prefix-list-item><prefix-list-item><name>192.107.232.0/24</name></prefix-list-item><prefix-list-item><name>192.107.233.0/24</name></prefix-list-item><prefix-list-item><name>192.111.104.0/24</name></prefix-list-item><prefix-list-item><name>192.149.232.0/24</name></prefix-list-item><prefix-list-item><name>192.150.203.0/24</name></prefix-list-item><prefix-list-item><name>192.152.54.0/24</name></prefix-list-item><prefix-list-item><name>192.153.173.0/24</name></prefix-list-item><prefix-list-item><name>192.153.174.0/24</name></prefix-list-item><prefix-list-item><name>192.153.175.0/24</name></prefix-list-item><prefix-list-item><name>192.153.176.0/24</name></prefix-list-item><prefix-list-item><name>192.153.177.0/24</name></prefix-list-item><prefix-list-item><name>192.153.178.0/24</name></prefix-list-item><prefix-list-item><name>192.153.180.0/24</name></prefix-list-item><prefix-list-item><name>192.153.182.0/24</name></prefix-list-item><prefix-list-item><name>192.164.176.0/20</name></prefix-list-item><prefix-list-item><name>192.164.176.0/24</name></prefix-list-item><prefix-list-item><name>192.164.177.0/24</name></prefix-list-item><prefix-list-item><name>192.164.178.0/24</name></prefix-list-item><prefix-list-item><name>192.164.179.0/24</name></prefix-list-item><prefix-list-item><name>192.164.180.0/24</name></prefix-list-item><prefix-list-item><name>192.164.181.0/24</name></prefix-list-item><prefix-list-item><name>192.164.182.0/24</name></prefix-list-item><prefix-list-item><name>192.164.183.0/24</name></prefix-list-item><prefix-list-item><name>192.164.184.0/24</name></prefix-list-item><prefix-list-item><name>192.164.185.0/24</name></prefix-list-item><prefix-list-item><name>192.164.186.0/24</name></prefix-list-item><prefix-list-item><name>192.164.187.0/24</name></prefix-list-item><prefix-list-item><name>192.164.188.0/24</name></prefix-list-item><prefix-list-item><name>192.164.189.0/24</name></prefix-list-item><prefix-list-item><name>192.164.190.0/24</name></prefix-list-item><prefix-list-item><name>192.164.191.0/24</name></prefix-list-item><prefix-list-item><name>192.164.192.0/20</name></prefix-list-item><prefix-list-item><name>192.164.192.0/24</name></prefix-list-item><prefix-list-item><name>192.164.193.0/24</name></prefix-list-item><prefix-list-item><name>192.164.194.0/24</name></prefix-list-item><prefix-list-item><name>192.164.195.0/24</name></prefix-list-item><prefix-list-item><name>192.164.196.0/24</name></prefix-list-item><prefix-list-item><name>192.164.197.0/24</name></prefix-list-item><prefix-list-item><name>192.164.198.0/24</name></prefix-list-item><prefix-list-item><name>192.164.199.0/24</name></prefix-list-item><prefix-list-item><name>192.164.200.0/24</name></prefix-list-item><prefix-list-item><name>192.164.201.0/24</name></prefix-list-item><prefix-list-item><name>192.164.202.0/24</name></prefix-list-item><prefix-list-item><name>192.164.203.0/24</name></prefix-list-item><prefix-list-item><name>192.164.204.0/24</name></prefix-list-item><prefix-list-item><name>192.164.205.0/24</name></prefix-list-item><prefix-list-item><name>192.164.206.0/24</name></prefix-list-item><prefix-list-item><name>192.164.207.0/24</name></prefix-list-item><prefix-list-item><name>192.174.64.0/24</name></prefix-list-item><prefix-list-item><name>192.174.65.0/24</name></prefix-list-item><prefix-list-item><name>192.174.66.0/24</name></prefix-list-item><prefix-list-item><name>192.174.67.0/24</name></prefix-list-item><prefix-list-item><name>192.174.68.0/24</name></prefix-list-item><prefix-list-item><name>192.188.121.0/24</name></prefix-list-item><prefix-list-item><name>192.189.51.0/24</name></prefix-list-item><prefix-list-item><name>193.0.24.0/21</name></prefix-list-item><prefix-list-item><name>193.29.206.0/24</name></prefix-list-item><prefix-list-item><name>193.33.150.0/23</name></prefix-list-item><prefix-list-item><name>193.41.228.0/24</name></prefix-list-item><prefix-list-item><name>193.46.104.0/21</name></prefix-list-item><prefix-list-item><name>193.46.104.0/24</name></prefix-list-item><prefix-list-item><name>193.46.105.0/24</name></prefix-list-item><prefix-list-item><name>193.46.106.0/24</name></prefix-list-item><prefix-list-item><name>193.46.107.0/24</name></prefix-list-item><prefix-list-item><name>193.46.108.0/24</name></prefix-list-item><prefix-list-item><name>193.46.109.0/24</name></prefix-list-item><prefix-list-item><name>193.46.110.0/24</name></prefix-list-item><prefix-list-item><name>193.46.111.0/24</name></prefix-list-item><prefix-list-item><name>193.46.112.0/20</name></prefix-list-item><prefix-list-item><name>193.46.112.0/24</name></prefix-list-item><prefix-list-item><name>193.46.113.0/24</name></prefix-list-item><prefix-list-item><name>193.46.114.0/24</name></prefix-list-item><prefix-list-item><name>193.46.115.0/24</name></prefix-list-item><prefix-list-item><name>193.46.116.0/24</name></prefix-list-item><prefix-list-item><name>193.46.117.0/24</name></prefix-list-item><prefix-list-item><name>193.46.118.0/24</name></prefix-list-item><prefix-list-item><name>193.46.119.0/24</name></prefix-list-item><prefix-list-item><name>193.46.120.0/24</name></prefix-list-item><prefix-list-item><name>193.46.121.0/24</name></prefix-list-item><prefix-list-item><name>193.46.122.0/24</name></prefix-list-item><prefix-list-item><name>193.46.123.0/24</name></prefix-list-item><prefix-list-item><name>193.46.124.0/24</name></prefix-list-item><prefix-list-item><name>193.46.125.0/24</name></prefix-list-item><prefix-list-item><name>193.46.126.0/24</name></prefix-list-item><prefix-list-item><name>193.46.127.0/24</name></prefix-list-item><prefix-list-item><name>193.46.128.0/21</name></prefix-list-item><prefix-list-item><name>193.46.128.0/24</name></prefix-list-item><prefix-list-item><name>193.46.129.0/24</name></prefix-list-item><prefix-list-item><name>193.46.130.0/24</name></prefix-list-item><prefix-list-item><name>193.46.131.0/24</name></prefix-list-item><prefix-list-item><name>193.46.132.0/24</name></prefix-list-item><prefix-list-item><name>193.46.133.0/24</name></prefix-list-item><prefix-list-item><name>193.46.134.0/24</name></prefix-list-item><prefix-list-item><name>193.46.135.0/24</name></prefix-list-item><prefix-list-item><name>193.46.188.0/23</name></prefix-list-item><prefix-list-item><name>193.80.132.0/22</name></prefix-list-item><prefix-list-item><name>193.80.136.0/21</name></prefix-list-item><prefix-list-item><name>193.80.144.0/20</name></prefix-list-item><prefix-list-item><name>193.80.160.0/22</name></prefix-list-item><prefix-list-item><name>193.81.1.0/24</name></prefix-list-item><prefix-list-item><name>193.170.0.0/15</name></prefix-list-item><prefix-list-item><name>193.170.1.128/28</name></prefix-list-item><prefix-list-item><name>193.170.1.144/28</name></prefix-list-item><prefix-list-item><name>193.170.2.0/24</name></prefix-list-item><prefix-list-item><name>193.170.4.0/24</name></prefix-list-item><prefix-list-item><name>193.170.16.0/20</name></prefix-list-item><prefix-list-item><name>193.170.32.0/21</name></prefix-list-item><prefix-list-item><name>193.170.50.0/24</name></prefix-list-item><prefix-list-item><name>193.170.52.0/23</name></prefix-list-item><prefix-list-item><name>193.170.54.0/24</name></prefix-list-item><prefix-list-item><name>193.170.55.0/24</name></prefix-list-item><prefix-list-item><name>193.170.56.0/24</name></prefix-list-item><prefix-list-item><name>193.170.57.0/24</name></prefix-list-item><prefix-list-item><name>193.170.58.0/24</name></prefix-list-item><prefix-list-item><name>193.170.59.0/24</name></prefix-list-item><prefix-list-item><name>193.170.60.0/23</name></prefix-list-item><prefix-list-item><name>193.170.72.0/21</name></prefix-list-item><prefix-list-item><name>193.170.72.0/22</name></prefix-list-item><prefix-list-item><name>193.170.76.0/23</name></prefix-list-item><prefix-list-item><name>193.170.78.0/24</name></prefix-list-item><prefix-list-item><name>193.170.80.0/22</name></prefix-list-item><prefix-list-item><name>193.170.84.0/23</name></prefix-list-item><prefix-list-item><name>193.170.86.0/24</name></prefix-list-item><prefix-list-item><name>193.170.87.0/25</name></prefix-list-item><prefix-list-item><name>193.170.88.0/21</name></prefix-list-item><prefix-list-item><name>193.170.93.0/24</name></prefix-list-item><prefix-list-item><name>193.170.94.0/24</name></prefix-list-item><prefix-list-item><name>193.170.96.0/22</name></prefix-list-item><prefix-list-item><name>193.170.100.0/23</name></prefix-list-item><prefix-list-item><name>193.170.102.0/23</name></prefix-list-item><prefix-list-item><name>193.170.104.0/22</name></prefix-list-item><prefix-list-item><name>193.170.111.0/24</name></prefix-list-item><prefix-list-item><name>193.170.115.32/28</name></prefix-list-item><prefix-list-item><name>193.170.117.0/26</name></prefix-list-item><prefix-list-item><name>193.170.120.40/29</name></prefix-list-item><prefix-list-item><name>193.170.120.96/28</name></prefix-list-item><prefix-list-item><name>193.170.124.0/22</name></prefix-list-item><prefix-list-item><name>193.170.128.0/22</name></prefix-list-item><prefix-list-item><name>193.170.132.0/22</name></prefix-list-item><prefix-list-item><name>193.170.137.0/24</name></prefix-list-item><prefix-list-item><name>193.170.138.192/28</name></prefix-list-item><prefix-list-item><name>193.170.150.0/24</name></prefix-list-item><prefix-list-item><name>193.170.151.0/24</name></prefix-list-item><prefix-list-item><name>193.170.184.0/24</name></prefix-list-item><prefix-list-item><name>193.170.185.0/24</name></prefix-list-item><prefix-list-item><name>193.170.186.0/24</name></prefix-list-item><prefix-list-item><name>193.170.187.0/24</name></prefix-list-item><prefix-list-item><name>193.170.190.0/23</name></prefix-list-item><prefix-list-item><name>193.170.199.0/24</name></prefix-list-item><prefix-list-item><name>193.170.213.0/24</name></prefix-list-item><prefix-list-item><name>193.170.214.0/23</name></prefix-list-item><prefix-list-item><name>193.170.218.0/24</name></prefix-list-item><prefix-list-item><name>193.170.219.0/24</name></prefix-list-item><prefix-list-item><name>193.170.220.0/22</name></prefix-list-item><prefix-list-item><name>193.170.230.0/24</name></prefix-list-item><prefix-list-item><name>193.170.238.0/23</name></prefix-list-item><prefix-list-item><name>193.171.1.0/24</name></prefix-list-item><prefix-list-item><name>193.171.3.0/24</name></prefix-list-item><prefix-list-item><name>193.171.4.0/22</name></prefix-list-item><prefix-list-item><name>193.171.8.0/24</name></prefix-list-item><prefix-list-item><name>193.171.32.0/20</name></prefix-list-item><prefix-list-item><name>193.171.52.0/24</name></prefix-list-item><prefix-list-item><name>193.171.61.0/24</name></prefix-list-item><prefix-list-item><name>193.171.74.0/23</name></prefix-list-item><prefix-list-item><name>193.171.80.0/21</name></prefix-list-item><prefix-list-item><name>193.171.88.0/23</name></prefix-list-item><prefix-list-item><name>193.171.90.0/24</name></prefix-list-item><prefix-list-item><name>193.171.108.0/23</name></prefix-list-item><prefix-list-item><name>193.171.108.0/24</name></prefix-list-item><prefix-list-item><name>193.171.109.0/24</name></prefix-list-item><prefix-list-item><name>193.171.110.0/24</name></prefix-list-item><prefix-list-item><name>193.171.111.0/24</name></prefix-list-item><prefix-list-item><name>193.171.112.0/24</name></prefix-list-item><prefix-list-item><name>193.171.113.128/27</name></prefix-list-item><prefix-list-item><name>193.171.115.0/24</name></prefix-list-item><prefix-list-item><name>193.171.122.0/24</name></prefix-list-item><prefix-list-item><name>193.171.157.224/27</name></prefix-list-item><prefix-list-item><name>193.171.158.0/24</name></prefix-list-item><prefix-list-item><name>193.171.159.0/24</name></prefix-list-item><prefix-list-item><name>193.171.160.0/20</name></prefix-list-item><prefix-list-item><name>193.171.176.0/21</name></prefix-list-item><prefix-list-item><name>193.171.184.0/22</name></prefix-list-item><prefix-list-item><name>193.171.190.0/23</name></prefix-list-item><prefix-list-item><name>193.171.192.0/23</name></prefix-list-item><prefix-list-item><name>193.171.194.0/23</name></prefix-list-item><prefix-list-item><name>193.171.196.0/22</name></prefix-list-item><prefix-list-item><name>193.171.200.0/21</name></prefix-list-item><prefix-list-item><name>193.171.255.0/24</name></prefix-list-item><prefix-list-item><name>193.171.255.8/29</name></prefix-list-item><prefix-list-item><name>193.171.255.16/28</name></prefix-list-item><prefix-list-item><name>193.171.255.32/27</name></prefix-list-item><prefix-list-item><name>193.171.255.64/26</name></prefix-list-item><prefix-list-item><name>193.171.255.64/27</name></prefix-list-item><prefix-list-item><name>193.186.0.0/24</name></prefix-list-item><prefix-list-item><name>193.186.88.0/21</name></prefix-list-item><prefix-list-item><name>193.186.96.0/21</name></prefix-list-item><prefix-list-item><name>193.186.172.0/22</name></prefix-list-item><prefix-list-item><name>193.186.176.0/22</name></prefix-list-item><prefix-list-item><name>193.186.188.0/23</name></prefix-list-item><prefix-list-item><name>193.186.190.0/24</name></prefix-list-item><prefix-list-item><name>193.186.191.0/24</name></prefix-list-item><prefix-list-item><name>193.186.214.0/24</name></prefix-list-item><prefix-list-item><name>193.187.2.0/23</name></prefix-list-item><prefix-list-item><name>193.187.2.0/24</name></prefix-list-item><prefix-list-item><name>193.187.3.0/24</name></prefix-list-item><prefix-list-item><name>193.203.0.0/23</name></prefix-list-item><prefix-list-item><name>193.223.78.0/24</name></prefix-list-item><prefix-list-item><name>193.228.100.0/24</name></prefix-list-item><prefix-list-item><name>194.0.0.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.10.0/24</name></prefix-list-item><prefix-list-item><name>194.0.11.0/24</name></prefix-list-item><prefix-list-item><name>194.0.12.0/24</name></prefix-list-item><prefix-list-item><name>194.0.13.0/24</name></prefix-list-item><prefix-list-item><name>194.0.14.0/24</name></prefix-list-item><prefix-list-item><name>194.0.24.0/23</name></prefix-list-item><prefix-list-item><name>194.0.24.0/24</name></prefix-list-item><prefix-list-item><name>194.0.25.0/24</name></prefix-list-item><prefix-list-item><name>194.0.26.0/24</name></prefix-list-item><prefix-list-item><name>194.8.61.0/24</name></prefix-list-item><prefix-list-item><name>194.29.99.0/24</name></prefix-list-item><prefix-list-item><name>194.37.4.0/22</name></prefix-list-item><prefix-list-item><name>194.37.8.0/21</name></prefix-list-item><prefix-list-item><name>194.37.72.0/21</name></prefix-list-item><prefix-list-item><name>194.37.104.0/21</name></prefix-list-item><prefix-list-item><name>194.37.192.0/19</name></prefix-list-item><prefix-list-item><name>194.48.4.0/22</name></prefix-list-item><prefix-list-item><name>194.48.32.0/19</name></prefix-list-item><prefix-list-item><name>194.48.64.0/22</name></prefix-list-item><prefix-list-item><name>194.48.236.0/22</name></prefix-list-item><prefix-list-item><name>194.50.109.0/24</name></prefix-list-item><prefix-list-item><name>194.107.60.0/22</name></prefix-list-item><prefix-list-item><name>194.107.64.0/22</name></prefix-list-item><prefix-list-item><name>194.107.68.0/23</name></prefix-list-item><prefix-list-item><name>194.153.217.0/24</name></prefix-list-item><prefix-list-item><name>194.158.128.0/19</name></prefix-list-item><prefix-list-item><name>194.158.133.0/24</name></prefix-list-item><prefix-list-item><name>194.180.184.0/22</name></prefix-list-item><prefix-list-item><name>194.232.0.0/16</name></prefix-list-item><prefix-list-item><name>194.232.48.0/24</name></prefix-list-item><prefix-list-item><name>194.232.66.0/24</name></prefix-list-item><prefix-list-item><name>194.232.69.0/24</name></prefix-list-item><prefix-list-item><name>194.232.72.0/24</name></prefix-list-item><prefix-list-item><name>194.232.79.0/24</name></prefix-list-item><prefix-list-item><name>194.232.95.0/24</name></prefix-list-item><prefix-list-item><name>194.232.104.0/24</name></prefix-list-item><prefix-list-item><name>194.232.116.0/24</name></prefix-list-item><prefix-list-item><name>194.232.117.0/24</name></prefix-list-item><prefix-list-item><name>194.232.133.0/24</name></prefix-list-item><prefix-list-item><name>194.246.96.0/24</name></prefix-list-item><prefix-list-item><name>195.177.250.0/23</name></prefix-list-item><prefix-list-item><name>195.245.225.0/24</name></prefix-list-item><prefix-list-item><name>195.254.190.0/23</name></prefix-list-item><prefix-list-item><name>198.32.64.0/24</name></prefix-list-item><prefix-list-item><name>199.253.250.0/24</name></prefix-list-item><prefix-list-item><name>200.219.158.0/23</name></prefix-list-item><prefix-list-item><name>200.219.158.0/24</name></prefix-list-item><prefix-list-item><name>200.219.159.0/24</name></prefix-list-item><prefix-list-item><name>212.51.224.0/19</name></prefix-list-item><prefix-list-item><name>217.116.64.0/20</name></prefix-list-item><prefix-list-item><name>217.149.224.0/20</name></prefix-list-item></prefix-list><prefix-list><name>route-from-ACONET-v6</name><prefix-list-item><name>2001:628::/29</name></prefix-list-item><prefix-list-item><name>2001:628::/30</name></prefix-list-item><prefix-list-item><name>2001:628:404::/48</name></prefix-list-item><prefix-list-item><name>2001:628:404:a::10/128</name></prefix-list-item><prefix-list-item><name>2001:628:404:14::10/128</name></prefix-list-item><prefix-list-item><name>2001:628:404:250::10/128</name></prefix-list-item><prefix-list-item><name>2001:628:453::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2000::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2003::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2020::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2090::/48</name></prefix-list-item><prefix-list-item><name>2001:628:20d0::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2100::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2120::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2130::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2280::/48</name></prefix-list-item><prefix-list-item><name>2001:629::/32</name></prefix-list-item><prefix-list-item><name>2001:62a::/31</name></prefix-list-item><prefix-list-item><name>2001:678:2::/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:d::/48</name></prefix-list-item><prefix-list-item><name>2001:678:e::/48</name></prefix-list-item><prefix-list-item><name>2001:678:f::/48</name></prefix-list-item><prefix-list-item><name>2001:678:11::/48</name></prefix-list-item><prefix-list-item><name>2001:678:1c::/48</name></prefix-list-item><prefix-list-item><name>2001:678:20::/48</name></prefix-list-item><prefix-list-item><name>2001:678:24::/48</name></prefix-list-item><prefix-list-item><name>2001:678:8d4::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:64::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:148::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1bc::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:210::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:27c::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:10b8::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:10e0::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1280::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:133c::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:13f8::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1750::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1790::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1864::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1b70::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:2260::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:23c0::/48</name></prefix-list-item><prefix-list-item><name>2001:7f8:30::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fd02::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fd03::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fd04::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe00::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe01::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe02::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe03::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe04::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe05::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe06::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe07::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0a::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0b::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0c::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0d::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0e::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0f::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe10::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe12::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe13::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe14::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe15::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe16::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe17::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff00::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff01::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff02::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff03::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff04::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff05::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff06::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff07::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0a::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0b::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0c::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0d::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0e::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0f::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff10::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff12::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff13::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff14::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff15::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff16::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff17::/48</name></prefix-list-item><prefix-list-item><name>2001:12f8:c::/47</name></prefix-list-item><prefix-list-item><name>2001:12f8:c::/48</name></prefix-list-item><prefix-list-item><name>2001:12f8:d::/48</name></prefix-list-item><prefix-list-item><name>2604:3500::/32</name></prefix-list-item><prefix-list-item><name>2620:7d:e000::/48</name></prefix-list-item><prefix-list-item><name>2620:10a:80ba::/48</name></prefix-list-item><prefix-list-item><name>2620:130:1000::/48</name></prefix-list-item><prefix-list-item><name>2a00:1610::/29</name></prefix-list-item><prefix-list-item><name>2a00:1ba0:2::/48</name></prefix-list-item><prefix-list-item><name>2a00:40c0::/32</name></prefix-list-item><prefix-list-item><name>2a00:40c1::/32</name></prefix-list-item><prefix-list-item><name>2a00:4400::/32</name></prefix-list-item><prefix-list-item><name>2a01:190:15ed::/48</name></prefix-list-item><prefix-list-item><name>2a01:468::/29</name></prefix-list-item><prefix-list-item><name>2a02:3e0::/32</name></prefix-list-item><prefix-list-item><name>2a02:568:fe00::/48</name></prefix-list-item><prefix-list-item><name>2a02:568:fe01::/48</name></prefix-list-item><prefix-list-item><name>2a02:568:fe02::/48</name></prefix-list-item><prefix-list-item><name>2a02:850::/32</name></prefix-list-item><prefix-list-item><name>2a02:850::/44</name></prefix-list-item><prefix-list-item><name>2a02:850:ffff::/48</name></prefix-list-item><prefix-list-item><name>2a03:f080::/32</name></prefix-list-item><prefix-list-item><name>2a03:f080:1000::/48</name></prefix-list-item><prefix-list-item><name>2a03:f080:1800::/48</name></prefix-list-item><prefix-list-item><name>2a05:7f00::/29</name></prefix-list-item><prefix-list-item><name>2a05:7f00:188::/48</name></prefix-list-item><prefix-list-item><name>2a05:7f00:189::/48</name></prefix-list-item><prefix-list-item><name>2a05:7f00:190::/48</name></prefix-list-item><prefix-list-item><name>2a05:7f00:191::/48</name></prefix-list-item><prefix-list-item><name>2a0a:8bc0::/29</name></prefix-list-item><prefix-list-item><name>2a0a:f500::/32</name></prefix-list-item><prefix-list-item><name>2a0b:8e00::/48</name></prefix-list-item><prefix-list-item><name>2a0b:8e00:1::/48</name></prefix-list-item><prefix-list-item><name>2a0e:e280::/29</name></prefix-list-item></prefix-list><prefix-list><name>route-from-ARNES</name><prefix-list-item><name>74.116.176.0/22</name></prefix-list-item><prefix-list-item><name>84.39.208.0/20</name></prefix-list-item><prefix-list-item><name>88.200.0.0/17</name></prefix-list-item><prefix-list-item><name>91.199.15.0/24</name></prefix-list-item><prefix-list-item><name>91.199.17.0/24</name></prefix-list-item><prefix-list-item><name>91.208.95.0/24</name></prefix-list-item><prefix-list-item><name>91.220.191.0/24</name></prefix-list-item><prefix-list-item><name>91.220.194.0/24</name></prefix-list-item><prefix-list-item><name>92.244.64.0/19</name></prefix-list-item><prefix-list-item><name>95.87.128.0/18</name></prefix-list-item><prefix-list-item><name>109.127.192.0/18</name></prefix-list-item><prefix-list-item><name>141.255.192.0/18</name></prefix-list-item><prefix-list-item><name>149.62.64.0/18</name></prefix-list-item><prefix-list-item><name>153.5.0.0/16</name></prefix-list-item><prefix-list-item><name>164.8.0.0/16</name></prefix-list-item><prefix-list-item><name>164.8.0.0/17</name></prefix-list-item><prefix-list-item><name>164.8.128.0/17</name></prefix-list-item><prefix-list-item><name>164.8.128.0/20</name></prefix-list-item><prefix-list-item><name>178.172.0.0/17</name></prefix-list-item><prefix-list-item><name>185.13.52.0/22</name></prefix-list-item><prefix-list-item><name>185.36.4.0/24</name></prefix-list-item><prefix-list-item><name>185.36.5.0/24</name></prefix-list-item><prefix-list-item><name>185.36.6.0/24</name></prefix-list-item><prefix-list-item><name>185.36.7.0/24</name></prefix-list-item><prefix-list-item><name>185.182.160.0/22</name></prefix-list-item><prefix-list-item><name>185.182.160.0/24</name></prefix-list-item><prefix-list-item><name>185.182.161.0/24</name></prefix-list-item><prefix-list-item><name>185.182.162.0/24</name></prefix-list-item><prefix-list-item><name>185.182.163.0/24</name></prefix-list-item><prefix-list-item><name>185.206.184.0/22</name></prefix-list-item><prefix-list-item><name>185.221.56.0/22</name></prefix-list-item><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>193.2.0.0/16</name></prefix-list-item><prefix-list-item><name>193.138.1.0/24</name></prefix-list-item><prefix-list-item><name>193.138.2.0/24</name></prefix-list-item><prefix-list-item><name>193.223.78.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.7.0/24</name></prefix-list-item><prefix-list-item><name>194.180.184.0/22</name></prefix-list-item><prefix-list-item><name>194.249.0.0/16</name></prefix-list-item><prefix-list-item><name>195.47.197.0/24</name></prefix-list-item><prefix-list-item><name>195.234.53.0/24</name></prefix-list-item><prefix-list-item><name>198.32.64.0/24</name></prefix-list-item><prefix-list-item><name>212.101.128.0/18</name></prefix-list-item><prefix-list-item><name>212.235.128.0/17</name></prefix-list-item></prefix-list><prefix-list><name>route-from-ARNES-v6</name><prefix-list-item><name>2001:503:c27::/48</name></prefix-list-item><prefix-list-item><name>2001:503:231d::/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:a::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:40::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:9c::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:69c::/48</name></prefix-list-item><prefix-list-item><name>2001:7f8:46::/48</name></prefix-list-item><prefix-list-item><name>2001:1470::/29</name></prefix-list-item><prefix-list-item><name>2001:1470::/32</name></prefix-list-item><prefix-list-item><name>2620:7d:e000::/48</name></prefix-list-item><prefix-list-item><name>2a00:1368::/32</name></prefix-list-item><prefix-list-item><name>2a00:1600::/32</name></prefix-list-item><prefix-list-item><name>2a00:d440::/29</name></prefix-list-item><prefix-list-item><name>2a0b:15c0::/29</name></prefix-list-item><prefix-list-item><name>2a0f:eb80::/32</name></prefix-list-item><prefix-list-item><name>2a0f:eb80::/44</name></prefix-list-item><prefix-list-item><name>2a0f:eb80::/48</name></prefix-list-item><prefix-list-item><name>2a0f:eb80:1::/48</name></prefix-list-item><prefix-list-item><name>2a0f:eb80:a::/48</name></prefix-list-item><prefix-list-item><name>2a0f:eb80:f::/48</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 &lt;*&gt; address &lt;*.*&gt;</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 &lt;*.*&gt;</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>EXPORT-STATIC-TO-ISIS</name><term><name>1</name><from><protocol>static</protocol><route-filter><address>62.40.96.45/32</address><exact/></route-filter></from><then><accept/></then></term><term><name>staticv6</name><from><protocol>static</protocol><rib>inet6.0</rib><route-filter><address>2001:798:aa:1::12/128</address><exact/></route-filter></from><then><accept/></then></term></policy-statement><policy-statement><name>FOD_EXPORT_IBGP</name><term><name>REJECT_LARGE_SUBNETS</name><from><rib>inetflow.0</rib><route-filter><address>0.0.0.0/0</address><prefix-length-range>/0-/28</prefix-length-range></route-filter></from><then><reject/></then></term><term><name>REJECT_PROTECTED_ROUTES</name><from><rib>inetflow.0</rib><route-filter><address>62.40.96.0/23</address><orlonger/></route-filter></from><then><reject/></then></term><term><name>ACCEPT_ANY</name><from><rib>inetflow.0</rib></from><then><community><add/><community-name>geant-FOD</community-name></community><accept/></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_TAIL</name><term><name>GENERAL_ACCEPT</name><then><local-preference><local-preference>90</local-preference></local-preference><community><add/><community-name>INFO_PUBLIC_PEER_MIX-IT</community-name></community><community><add/><community-name>INFO_PUBLIC_PEER_MIL2</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_AS12654_RIPE_NCC</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_CLOUDFLARENET_-_CloudFlare,_Inc.,US_</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS136907_HUAWEI_CLOUDS</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS15133_EDGECAST_-_EdgeCast_Networks,_Inc.,US</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS16004_MIXITA-AS_MIX_S.r.L._-_Milan</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS16276_OVH_OVH_SAS,FR__</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,US_</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS19551_Imperva</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS19679_Dropbox</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_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS22822_LLNW_-_Limelight_Networks,_Inc.,US</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS24429_Alibaba_Cloud_CDN</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS2635_Automattic</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS26415_VeriSign</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS2906_Netflix</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS32934_FACEBOOK_-_Facebook,_Inc.,US_</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_AS33438_Highwinds_Network_Group,_Inc</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS36351_SOFTLAYER_-_SoftLayer_Technologies_Inc.,U</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS36692_OpenDNS,_Inc.</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_AS5400_BT_British_Telecommunications_plc,GB_</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS54113_Fastly,_Inc.</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS57976_Blizzard_Entertainment</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS61968_MIX-RS_MIX_S.r.L._-_Milan</name><term><name>GENERAL_ACCEPT</name><from><as-path>MIX_RS_ACCEPT</as-path></from><then><local-preference><local-preference>90</local-preference></local-preference><community><add/><community-name>INFO_PUBLIC_PEER_MIX-IT</community-name></community><community><add/><community-name>INFO_PUBLIC_PEER_MIL2</community-name></community><community><add/><community-name>geant-peers</community-name></community><community><add/><community-name>geant-ixpeers</community-name></community><accept/></then></term><term><name>REJECT</name><then><reject/></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,US</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS8075_MICROSOFT-CORP-MSN-AS-BLOCK_-_Microsoft_C_</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS8220_COLT_COLT_Technology_Services_Group</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS8551_Bezeq_International</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS8674_NETNOD-IX_Netnod_Internet_Exchange_Sverig</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS9002_RETN-AS</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS9009_M247_Ltd</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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_MIX-IT</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_MIX-IT_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_MIX-IT</community><community>TE_BLOCK_AS10310_MIX-IT_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_MIX-IT</community><community>TE_ANNOUNCE_AS10310_MIX-IT_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_AS12654_RIPE_NCC</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS12654</community><community>TE_BLOCK_AS12654_2</community><community>TE_BLOCK_AS12654_MIX-IT</community><community>TE_BLOCK_AS12654_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS12654_x1_4byte</community><community>TE_PREPEND_AS12654_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_AS12654_x2_4byte</community><community>TE_PREPEND_AS12654_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_AS12654_x3_4byte</community><community>TE_PREPEND_AS12654_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_AS12654_x6_4byte</community><community>TE_PREPEND_AS12654_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_AS12654</community><community>TE_ANNOUNCE_AS12654_2</community><community>TE_ANNOUNCE_AS12654_3</community><community>TE_ANNOUNCE_AS12654_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_AS12654_MIX-IT</community><community>TE_ANNOUNCE_AS12654_MIX-IT_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_MIX-IT</community><community>TE_BLOCK_AS13030_MIX-IT_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_MIX-IT_x1_4byte</community><community>TE_PREPEND_AS13030_MIX-IT_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_MIX-IT_x2_4byte</community><community>TE_PREPEND_AS13030_MIX-IT_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_MIX-IT_x3_4byte</community><community>TE_PREPEND_AS13030_MIX-IT_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_MIX-IT_x6_4byte</community><community>TE_PREPEND_AS13030_MIX-IT_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_MIX-IT</community><community>TE_ANNOUNCE_AS13030_MIX-IT_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_CLOUDFLARENET_-_CloudFlare,_Inc.,US_</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS13335</community><community>TE_BLOCK_AS13335_MIX-IT</community><community>TE_BLOCK_AS13335_2</community><community>TE_BLOCK_AS13335_MIX-IT_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></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></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></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></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_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS13335_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS13335_MIX-IT_2</community><community>TE_ANNOUNCE_AS13335_2</community><community>TE_ANNOUNCE_AS13335_3</community><community>TE_ANNOUNCE_AS13335_4</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_AS136907_HUAWEI_CLOUDS</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS136907_2</community><community>TE_BLOCK_AS136907_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS136907_x1_4byte</community><community>TE_PREPEND_AS136907_MIX-IT_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_AS136907_x2_4byte</community><community>TE_PREPEND_AS136907_MIX-IT_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_AS136907_x3_4byte</community><community>TE_PREPEND_AS136907_MIX-IT_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_AS136907_x6_4byte</community><community>TE_PREPEND_AS136907_MIX-IT_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_AS136907_3</community><community>TE_ANNOUNCE_AS136907_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_AS136907_MIX-IT_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_EDGECAST_-_EdgeCast_Networks,_Inc.,US</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS15133</community><community>TE_BLOCK_AS15133_MIX-IT</community><community>TE_BLOCK_AS15133_2</community><community>TE_BLOCK_AS15133_MIX-IT_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></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></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></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></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_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS15133_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS15133_MIX-IT_2</community><community>TE_ANNOUNCE_AS15133_2</community><community>TE_ANNOUNCE_AS15133_3</community><community>TE_ANNOUNCE_AS15133_4</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_AS16004_MIXITA-AS_MIX_S.r.L._-_Milan</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS16004</community><community>TE_BLOCK_AS16004_MIX-IT</community><community>TE_BLOCK_AS16004_2</community><community>TE_BLOCK_AS16004_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS16004_x1_4byte</community><community>TE_PREPEND_AS16004_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_AS16004_x2_4byte</community><community>TE_PREPEND_AS16004_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_AS16004_x3_4byte</community><community>TE_PREPEND_AS16004_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_AS16004_x6_4byte</community><community>TE_PREPEND_AS16004_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_AS16004</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS16004_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS16004_MIX-IT_2</community><community>TE_ANNOUNCE_AS16004_2</community><community>TE_ANNOUNCE_AS16004_3</community><community>TE_ANNOUNCE_AS16004_4</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_AS16276_OVH_OVH_SAS,FR__</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS16276</community><community>TE_BLOCK_AS16276_MIX-IT</community><community>TE_BLOCK_AS16276_2</community><community>TE_BLOCK_AS16276_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS16276_x1_4byte</community><community>TE_PREPEND_AS16276_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_AS16276_x2_4byte</community><community>TE_PREPEND_AS16276_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_AS16276_x3_4byte</community><community>TE_PREPEND_AS16276_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_AS16276_x6_4byte</community><community>TE_PREPEND_AS16276_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_AS16276</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS16276_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS16276_MIX-IT_2</community><community>TE_ANNOUNCE_AS16276_2</community><community>TE_ANNOUNCE_AS16276_3</community><community>TE_ANNOUNCE_AS16276_4</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-02_-_Amazon.com,_Inc.,US_</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS16509</community><community>TE_BLOCK_AS16509_MIX-IT</community><community>TE_BLOCK_AS16509_2</community><community>TE_BLOCK_AS16509_MIX-IT_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></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></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></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></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_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS16509_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS16509_MIX-IT_2</community><community>TE_ANNOUNCE_AS16509_2</community><community>TE_ANNOUNCE_AS16509_3</community><community>TE_ANNOUNCE_AS16509_4</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_AS19551_Imperva</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS19551</community><community>TE_BLOCK_AS19551_2</community><community>TE_BLOCK_AS19551_MIX-IT</community><community>TE_BLOCK_AS19551_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS19551_x1_4byte</community><community>TE_PREPEND_AS19551_x1_2byte</community><community>TE_PREPEND_AS19551_MIX-IT_x1_4byte</community><community>TE_PREPEND_AS19551_MIX-IT_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_AS19551_x2_4byte</community><community>TE_PREPEND_AS19551_x2_2byte</community><community>TE_PREPEND_AS19551_MIX-IT_x2_4byte</community><community>TE_PREPEND_AS19551_MIX-IT_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_AS19551_x3_4byte</community><community>TE_PREPEND_AS19551_x3_2byte</community><community>TE_PREPEND_AS19551_MIX-IT_x3_4byte</community><community>TE_PREPEND_AS19551_MIX-IT_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_AS19551_x6_4byte</community><community>TE_PREPEND_AS19551_x6_2byte</community><community>TE_PREPEND_AS19551_MIX-IT_x6_4byte</community><community>TE_PREPEND_AS19551_MIX-IT_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_AS19551</community><community>TE_ANNOUNCE_AS19551_2</community><community>TE_ANNOUNCE_AS19551_3</community><community>TE_ANNOUNCE_AS19551_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_AS19551_MIX-IT</community><community>TE_ANNOUNCE_AS19551_MIX-IT_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_AS19679_Dropbox</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS19679</community><community>TE_BLOCK_AS19679_2</community><community>TE_BLOCK_AS19679_MIX-IT</community><community>TE_BLOCK_AS19679_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS19679_x1_4byte</community><community>TE_PREPEND_AS19679_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_AS19679_x2_4byte</community><community>TE_PREPEND_AS19679_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_AS19679_x3_4byte</community><community>TE_PREPEND_AS19679_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_AS19679_x6_4byte</community><community>TE_PREPEND_AS19679_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_AS19679</community><community>TE_ANNOUNCE_AS19679_2</community><community>TE_ANNOUNCE_AS19679_3</community><community>TE_ANNOUNCE_AS19679_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_AS19679_MIX-IT</community><community>TE_ANNOUNCE_AS19679_MIX-IT_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_MIX-IT_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_MIX-IT_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_MIX-IT_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_MIX-IT_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_MIX-IT_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_MIX-IT_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_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS20940</community><community>TE_BLOCK_AS20940_MIX-IT</community><community>TE_BLOCK_AS20940_2</community><community>TE_BLOCK_AS20940_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS20940_x1_4byte</community><community>TE_PREPEND_AS20940_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_AS20940_x2_4byte</community><community>TE_PREPEND_AS20940_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_AS20940_x3_4byte</community><community>TE_PREPEND_AS20940_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_AS20940_x6_4byte</community><community>TE_PREPEND_AS20940_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_AS20940</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS20940_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS20940_MIX-IT_2</community><community>TE_ANNOUNCE_AS20940_2</community><community>TE_ANNOUNCE_AS20940_3</community><community>TE_ANNOUNCE_AS20940_4</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_LLNW_-_Limelight_Networks,_Inc.,US</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS22822</community><community>TE_BLOCK_AS22822_MIX-IT</community><community>TE_BLOCK_AS22822_2</community><community>TE_BLOCK_AS22822_MIX-IT_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></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></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></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></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_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS22822_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS22822_MIX-IT_2</community><community>TE_ANNOUNCE_AS22822_2</community><community>TE_ANNOUNCE_AS22822_3</community><community>TE_ANNOUNCE_AS22822_4</community></from><then><metric><igp>
-                        </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><as-path-expand><aspath>21320</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-PEER_AS24429_Alibaba_Cloud_CDN</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS24429</community><community>TE_BLOCK_AS24429_2</community><community>TE_BLOCK_AS24429_MIX-IT</community><community>TE_BLOCK_AS24429_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS24429_x1_4byte</community><community>TE_PREPEND_AS24429_x1_2byte</community><community>TE_PREPEND_AS24429_MIX-IT_x1_4byte</community><community>TE_PREPEND_AS24429_MIX-IT_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_AS24429_x2_4byte</community><community>TE_PREPEND_AS24429_x2_2byte</community><community>TE_PREPEND_AS24429_MIX-IT_x2_4byte</community><community>TE_PREPEND_AS24429_MIX-IT_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_AS24429_x3_4byte</community><community>TE_PREPEND_AS24429_x3_2byte</community><community>TE_PREPEND_AS24429_MIX-IT_x3_4byte</community><community>TE_PREPEND_AS24429_MIX-IT_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_AS24429_x6_4byte</community><community>TE_PREPEND_AS24429_x6_2byte</community><community>TE_PREPEND_AS24429_MIX-IT_x6_4byte</community><community>TE_PREPEND_AS24429_MIX-IT_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_AS24429</community><community>TE_ANNOUNCE_AS24429_2</community><community>TE_ANNOUNCE_AS24429_3</community><community>TE_ANNOUNCE_AS24429_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_AS24429_MIX-IT</community><community>TE_ANNOUNCE_AS24429_MIX-IT_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_AS2635_Automattic</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS2635</community><community>TE_BLOCK_AS2635_2</community><community>TE_BLOCK_AS2635_MIX-IT</community><community>TE_BLOCK_AS2635_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS2635_x1_4byte</community><community>TE_PREPEND_AS2635_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_AS2635_x2_4byte</community><community>TE_PREPEND_AS2635_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_AS2635_x3_4byte</community><community>TE_PREPEND_AS2635_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_AS2635_x6_4byte</community><community>TE_PREPEND_AS2635_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_AS2635</community><community>TE_ANNOUNCE_AS2635_2</community><community>TE_ANNOUNCE_AS2635_3</community><community>TE_ANNOUNCE_AS2635_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_AS2635_MIX-IT</community><community>TE_ANNOUNCE_AS2635_MIX-IT_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_AS26415_VeriSign</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS26415</community><community>TE_BLOCK_AS26415_2</community><community>TE_BLOCK_AS26415_MIX-IT</community><community>TE_BLOCK_AS26415_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS26415_x1_4byte</community><community>TE_PREPEND_AS26415_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_AS26415_x2_4byte</community><community>TE_PREPEND_AS26415_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_AS26415_x3_4byte</community><community>TE_PREPEND_AS26415_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_AS26415_x6_4byte</community><community>TE_PREPEND_AS26415_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_AS26415</community><community>TE_ANNOUNCE_AS26415_2</community><community>TE_ANNOUNCE_AS26415_3</community><community>TE_ANNOUNCE_AS26415_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_AS26415_MIX-IT</community><community>TE_ANNOUNCE_AS26415_MIX-IT_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_AS2906_Netflix</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS2906</community><community>TE_BLOCK_AS2906_2</community><community>TE_BLOCK_AS2906_MIX-IT</community><community>TE_BLOCK_AS2906_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS2906_x1_4byte</community><community>TE_PREPEND_AS2906_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_AS2906_x2_4byte</community><community>TE_PREPEND_AS2906_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_AS2906_x3_4byte</community><community>TE_PREPEND_AS2906_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_AS2906_x6_4byte</community><community>TE_PREPEND_AS2906_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_AS2906</community><community>TE_ANNOUNCE_AS2906_2</community><community>TE_ANNOUNCE_AS2906_3</community><community>TE_ANNOUNCE_AS2906_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_AS2906_MIX-IT</community><community>TE_ANNOUNCE_AS2906_MIX-IT_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_-_Facebook,_Inc.,US_</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS32934</community><community>TE_BLOCK_AS32934_MIX-IT</community><community>TE_BLOCK_AS32934_2</community><community>TE_BLOCK_AS32934_MIX-IT_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></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></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></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></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_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS32934_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS32934_MIX-IT_2</community><community>TE_ANNOUNCE_AS32934_2</community><community>TE_ANNOUNCE_AS32934_3</community><community>TE_ANNOUNCE_AS32934_4</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_MIX-IT</community><community>TE_BLOCK_AS3303_MIX-IT_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_MIX-IT_x1_4byte</community><community>TE_PREPEND_AS3303_MIX-IT_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_MIX-IT_x2_4byte</community><community>TE_PREPEND_AS3303_MIX-IT_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_MIX-IT_x3_4byte</community><community>TE_PREPEND_AS3303_MIX-IT_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_MIX-IT_x6_4byte</community><community>TE_PREPEND_AS3303_MIX-IT_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_MIX-IT</community><community>TE_ANNOUNCE_AS3303_MIX-IT_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_AS33438_Highwinds_Network_Group,_Inc</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS33438</community><community>TE_BLOCK_AS33438_2</community><community>TE_BLOCK_AS33438_MIX-IT</community><community>TE_BLOCK_AS33438_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS33438_x1_4byte</community><community>TE_PREPEND_AS33438_x1_2byte</community><community>TE_PREPEND_AS33438_MIX-IT_x1_4byte</community><community>TE_PREPEND_AS33438_MIX-IT_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_AS33438_x2_4byte</community><community>TE_PREPEND_AS33438_x2_2byte</community><community>TE_PREPEND_AS33438_MIX-IT_x2_4byte</community><community>TE_PREPEND_AS33438_MIX-IT_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_AS33438_x3_4byte</community><community>TE_PREPEND_AS33438_x3_2byte</community><community>TE_PREPEND_AS33438_MIX-IT_x3_4byte</community><community>TE_PREPEND_AS33438_MIX-IT_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_AS33438_x6_4byte</community><community>TE_PREPEND_AS33438_x6_2byte</community><community>TE_PREPEND_AS33438_MIX-IT_x6_4byte</community><community>TE_PREPEND_AS33438_MIX-IT_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_AS33438</community><community>TE_ANNOUNCE_AS33438_2</community><community>TE_ANNOUNCE_AS33438_3</community><community>TE_ANNOUNCE_AS33438_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_AS33438_MIX-IT</community><community>TE_ANNOUNCE_AS33438_MIX-IT_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_AS36351_SOFTLAYER_-_SoftLayer_Technologies_Inc.,U</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS36351</community><community>TE_BLOCK_AS36351_MIX-IT</community><community>TE_BLOCK_AS36351_2</community><community>TE_BLOCK_AS36351_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS36351_x1_4byte</community><community>TE_PREPEND_AS36351_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_AS36351_x2_4byte</community><community>TE_PREPEND_AS36351_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_AS36351_x3_4byte</community><community>TE_PREPEND_AS36351_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_AS36351_x6_4byte</community><community>TE_PREPEND_AS36351_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_AS36351</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS36351_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS36351_MIX-IT_2</community><community>TE_ANNOUNCE_AS36351_2</community><community>TE_ANNOUNCE_AS36351_3</community><community>TE_ANNOUNCE_AS36351_4</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_AS36692_OpenDNS,_Inc.</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS36692</community><community>TE_BLOCK_AS36692_2</community><community>TE_BLOCK_AS36692_MIX-IT</community><community>TE_BLOCK_AS36692_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS36692_x1_4byte</community><community>TE_PREPEND_AS36692_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_AS36692_x2_4byte</community><community>TE_PREPEND_AS36692_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_AS36692_x3_4byte</community><community>TE_PREPEND_AS36692_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_AS36692_x6_4byte</community><community>TE_PREPEND_AS36692_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_AS36692</community><community>TE_ANNOUNCE_AS36692_2</community><community>TE_ANNOUNCE_AS36692_3</community><community>TE_ANNOUNCE_AS36692_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_AS36692_MIX-IT</community><community>TE_ANNOUNCE_AS36692_MIX-IT_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_MIX-IT</community><community>TE_BLOCK_AS46489_MIX-IT_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_MIX-IT_x1_4byte</community><community>TE_PREPEND_AS46489_MIX-IT_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_MIX-IT_x2_4byte</community><community>TE_PREPEND_AS46489_MIX-IT_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_MIX-IT_x3_4byte</community><community>TE_PREPEND_AS46489_MIX-IT_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_MIX-IT_x6_4byte</community><community>TE_PREPEND_AS46489_MIX-IT_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_MIX-IT</community><community>TE_ANNOUNCE_AS46489_MIX-IT_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_AS5400_BT_British_Telecommunications_plc,GB_</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS5400</community><community>TE_BLOCK_AS5400_MIX-IT</community><community>TE_BLOCK_AS5400_2</community><community>TE_BLOCK_AS5400_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS5400_x1_4byte</community><community>TE_PREPEND_AS5400_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_AS5400_x2_4byte</community><community>TE_PREPEND_AS5400_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_AS5400_x3_4byte</community><community>TE_PREPEND_AS5400_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_AS5400_x6_4byte</community><community>TE_PREPEND_AS5400_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_AS5400</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS5400_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS5400_MIX-IT_2</community><community>TE_ANNOUNCE_AS5400_2</community><community>TE_ANNOUNCE_AS5400_3</community><community>TE_ANNOUNCE_AS5400_4</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_AS54113_Fastly,_Inc.</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS54113</community><community>TE_BLOCK_AS54113_2</community><community>TE_BLOCK_AS54113_MIX-IT</community><community>TE_BLOCK_AS54113_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS54113_x1_4byte</community><community>TE_PREPEND_AS54113_x1_2byte</community><community>TE_PREPEND_AS54113_MIX-IT_x1_4byte</community><community>TE_PREPEND_AS54113_MIX-IT_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_AS54113_x2_4byte</community><community>TE_PREPEND_AS54113_x2_2byte</community><community>TE_PREPEND_AS54113_MIX-IT_x2_4byte</community><community>TE_PREPEND_AS54113_MIX-IT_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_AS54113_x3_4byte</community><community>TE_PREPEND_AS54113_x3_2byte</community><community>TE_PREPEND_AS54113_MIX-IT_x3_4byte</community><community>TE_PREPEND_AS54113_MIX-IT_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_AS54113_x6_4byte</community><community>TE_PREPEND_AS54113_x6_2byte</community><community>TE_PREPEND_AS54113_MIX-IT_x6_4byte</community><community>TE_PREPEND_AS54113_MIX-IT_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_AS54113</community><community>TE_ANNOUNCE_AS54113_2</community><community>TE_ANNOUNCE_AS54113_3</community><community>TE_ANNOUNCE_AS54113_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_AS54113_MIX-IT</community><community>TE_ANNOUNCE_AS54113_MIX-IT_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_AS57976_Blizzard_Entertainment</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS57976</community><community>TE_BLOCK_AS57976_2</community><community>TE_BLOCK_AS57976_MIX-IT</community><community>TE_BLOCK_AS57976_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS57976_x1_4byte</community><community>TE_PREPEND_AS57976_x1_2byte</community><community>TE_PREPEND_AS57976_MIX-IT_x1_4byte</community><community>TE_PREPEND_AS57976_MIX-IT_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_AS57976_x2_4byte</community><community>TE_PREPEND_AS57976_x2_2byte</community><community>TE_PREPEND_AS57976_MIX-IT_x2_4byte</community><community>TE_PREPEND_AS57976_MIX-IT_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_AS57976_x3_4byte</community><community>TE_PREPEND_AS57976_x3_2byte</community><community>TE_PREPEND_AS57976_MIX-IT_x3_4byte</community><community>TE_PREPEND_AS57976_MIX-IT_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_AS57976_x6_4byte</community><community>TE_PREPEND_AS57976_x6_2byte</community><community>TE_PREPEND_AS57976_MIX-IT_x6_4byte</community><community>TE_PREPEND_AS57976_MIX-IT_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_AS57976</community><community>TE_ANNOUNCE_AS57976_2</community><community>TE_ANNOUNCE_AS57976_3</community><community>TE_ANNOUNCE_AS57976_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_AS57976_MIX-IT</community><community>TE_ANNOUNCE_AS57976_MIX-IT_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_AS61968_MIX-RS_MIX_S.r.L._-_Milan</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,US</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS6939</community><community>TE_BLOCK_AS6939_MIX-IT</community><community>TE_BLOCK_AS6939_2</community><community>TE_BLOCK_AS6939_MIX-IT_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_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS6939_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS6939_MIX-IT_2</community><community>TE_ANNOUNCE_AS6939_2</community><community>TE_ANNOUNCE_AS6939_3</community><community>TE_ANNOUNCE_AS6939_4</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-CORP-MSN-AS-BLOCK_-_Microsoft_C_</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS8075</community><community>TE_BLOCK_AS8075_MIX-IT</community><community>TE_BLOCK_AS8075_2</community><community>TE_BLOCK_AS8075_MIX-IT_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></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></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></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></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_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS8075_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS8075_MIX-IT_2</community><community>TE_ANNOUNCE_AS8075_2</community><community>TE_ANNOUNCE_AS8075_3</community><community>TE_ANNOUNCE_AS8075_4</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_AS8220_COLT_COLT_Technology_Services_Group</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS8220</community><community>TE_BLOCK_AS8220_MIX-IT</community><community>TE_BLOCK_AS8220_2</community><community>TE_BLOCK_AS8220_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS8220_x1_4byte</community><community>TE_PREPEND_AS8220_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_AS8220_x2_4byte</community><community>TE_PREPEND_AS8220_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_AS8220_x3_4byte</community><community>TE_PREPEND_AS8220_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_AS8220_x6_4byte</community><community>TE_PREPEND_AS8220_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_AS8220</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS8220_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS8220_MIX-IT_2</community><community>TE_ANNOUNCE_AS8220_2</community><community>TE_ANNOUNCE_AS8220_3</community><community>TE_ANNOUNCE_AS8220_4</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_AS8551_Bezeq_International</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS8551</community><community>TE_BLOCK_AS8551_2</community><community>TE_BLOCK_AS8551_MIX-IT</community><community>TE_BLOCK_AS8551_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS8551_x1_4byte</community><community>TE_PREPEND_AS8551_x1_2byte</community><community>TE_PREPEND_AS8551_MIX-IT_x1_4byte</community><community>TE_PREPEND_AS8551_MIX-IT_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_AS8551_x2_4byte</community><community>TE_PREPEND_AS8551_x2_2byte</community><community>TE_PREPEND_AS8551_MIX-IT_x2_4byte</community><community>TE_PREPEND_AS8551_MIX-IT_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_AS8551_x3_4byte</community><community>TE_PREPEND_AS8551_x3_2byte</community><community>TE_PREPEND_AS8551_MIX-IT_x3_4byte</community><community>TE_PREPEND_AS8551_MIX-IT_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_AS8551_x6_4byte</community><community>TE_PREPEND_AS8551_x6_2byte</community><community>TE_PREPEND_AS8551_MIX-IT_x6_4byte</community><community>TE_PREPEND_AS8551_MIX-IT_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_AS8551</community><community>TE_ANNOUNCE_AS8551_2</community><community>TE_ANNOUNCE_AS8551_3</community><community>TE_ANNOUNCE_AS8551_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_AS8551_MIX-IT</community><community>TE_ANNOUNCE_AS8551_MIX-IT_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_AS8674_NETNOD-IX_Netnod_Internet_Exchange_Sverig</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS8674</community><community>TE_BLOCK_AS8674_MIX-IT</community><community>TE_BLOCK_AS8674_2</community><community>TE_BLOCK_AS8674_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS8674_x1_4byte</community><community>TE_PREPEND_AS8674_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_AS8674_x2_4byte</community><community>TE_PREPEND_AS8674_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_AS8674_x3_4byte</community><community>TE_PREPEND_AS8674_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_AS8674_x6_4byte</community><community>TE_PREPEND_AS8674_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_AS8674</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS</community><community>TE_ANNOUNCE_AS8674_MIX-IT</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_2</community><community>TE_ANNOUNCE_ALL_PUBLIC_PEERS_3</community><community>TE_ANNOUNCE_AS8674_MIX-IT_2</community><community>TE_ANNOUNCE_AS8674_2</community><community>TE_ANNOUNCE_AS8674_3</community><community>TE_ANNOUNCE_AS8674_4</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_AS9002_RETN-AS</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS9002</community><community>TE_BLOCK_AS9002_2</community><community>TE_BLOCK_AS9002_MIX-IT</community><community>TE_BLOCK_AS9002_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS9002_x1_4byte</community><community>TE_PREPEND_AS9002_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_AS9002_x2_4byte</community><community>TE_PREPEND_AS9002_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_AS9002_x3_4byte</community><community>TE_PREPEND_AS9002_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_AS9002_x6_4byte</community><community>TE_PREPEND_AS9002_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_AS9002</community><community>TE_ANNOUNCE_AS9002_2</community><community>TE_ANNOUNCE_AS9002_3</community><community>TE_ANNOUNCE_AS9002_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_AS9002_MIX-IT</community><community>TE_ANNOUNCE_AS9002_MIX-IT_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_AS9009_M247_Ltd</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS9009</community><community>TE_BLOCK_AS9009_2</community><community>TE_BLOCK_AS9009_MIX-IT</community><community>TE_BLOCK_AS9009_MIX-IT_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS9009_x1_4byte</community><community>TE_PREPEND_AS9009_x1_2byte</community><community>TE_PREPEND_AS9009_MIX-IT_x1_4byte</community><community>TE_PREPEND_AS9009_MIX-IT_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_AS9009_x2_4byte</community><community>TE_PREPEND_AS9009_x2_2byte</community><community>TE_PREPEND_AS9009_MIX-IT_x2_4byte</community><community>TE_PREPEND_AS9009_MIX-IT_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_AS9009_x3_4byte</community><community>TE_PREPEND_AS9009_x3_2byte</community><community>TE_PREPEND_AS9009_MIX-IT_x3_4byte</community><community>TE_PREPEND_AS9009_MIX-IT_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_AS9009_x6_4byte</community><community>TE_PREPEND_AS9009_x6_2byte</community><community>TE_PREPEND_AS9009_MIX-IT_x6_4byte</community><community>TE_PREPEND_AS9009_MIX-IT_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_AS9009</community><community>TE_ANNOUNCE_AS9009_2</community><community>TE_ANNOUNCE_AS9009_3</community><community>TE_ANNOUNCE_AS9009_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_AS9009_MIX-IT</community><community>TE_ANNOUNCE_AS9009_MIX-IT_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-PUBLIC-PEERS-BODY-MIX</name><then><next>policy</next></then></policy-statement><policy-statement><name>PS-TO-PUBLIC-PEERS-TAIL-MIX</name><term><name>to-peers-prepend-1</name><from><community>ixpeers-prepend</community></from><then><as-path-prepend>20965</as-path-prepend><next>term</next></then></term><term><name>to-peers-prepend-3</name><from><community>ixpeers-prepend-3</community><community>peers-prepend-3</community></from><then><as-path-prepend>20965 20965 20965</as-path-prepend></then></term><term><name>to-IX-Peers</name><from><community>geant-adv2-public-peer</community></from><then><metric><igp>
-                        </igp></metric><accept/></then></term><term><name>default-reject</name><then><reject/></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.1000</interface><interface>ae10.111</interface><interface>ae3.0</interface><interface>ae18.54</interface><interface>ae18.53</interface><interface>ae18.55</interface><interface>ae14.100</interface></from><then><reject/></then></policy-statement><policy-statement><name>pim-import</name><from><interface>ae10.1000</interface><interface>ae10.111</interface><interface>ae3.0</interface><interface>ae18.54</interface><interface>ae18.53</interface><interface>ae18.55</interface><interface>ae14.100</interface></from><then><reject/></then></policy-statement><policy-statement><name>ps-20965-v4</name><term><name>geant-prefix</name><from><route-filter><address>62.40.96.0/19</address><exact/></route-filter></from><then><accept/></then></term><term><name>datacenter-prefix</name><from><route-filter><address>83.97.92.0/22</address><exact/></route-filter></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-20965-v6</name><term><name>geant-prefix</name><from><route-filter><address>2001:798::/32</address><exact/></route-filter></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></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>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>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-CLS-from-ACONET-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-ACONET-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-ACONET-V6-nren</name><from><prefix-list><name>route-from-ACONET-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-ACONET-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-from-ACONET-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-ACONET</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-ACONET-nren</name><from><prefix-list><name>route-from-ACONET</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-ACONET-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-from-GARR-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-GARR-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-GARR-V6-nren</name><from><prefix-list><name>route-from-GARR-v6</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>CLS_NREN_ROUTES</community-name></community><accept/></then></term><term><name>from-GARR-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-from-GARR-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-GARR</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-GARR-nren</name><from><prefix-list><name>route-from-GARR</name></prefix-list></from><then><local-preference><local-preference>175</local-preference></local-preference><community><add/><community-name>CLS_NREN_ROUTES</community-name></community><accept/></then></term><term><name>from-GARR-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-to-ACONET-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-aconet-block</community></from><then><reject/></then></term><term><name>to-ACONET-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-ACONET-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-to-ACONET-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-aconet-block</community></from><then><reject/></then></term><term><name>to-ACONET-nren-general</name><from><community>CLS_PROVIDER_ROUTES</community><community>CLS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>to-ACONET-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-to-GARR-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-garr-block</community></from><then><reject/></then></term><term><name>to-GARR-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-GARR-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-to-GARR-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-garr-block</community></from><then><reject/></then></term><term><name>to-GARR-nren-general</name><from><community>CLS_PROVIDER_ROUTES</community><community>CLS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>to-GARR-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-ACONET-V6_AP-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-ACONET-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-ACONET-V6-nren</name><from><prefix-list><name>route-from-ACONET-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-private-peer</community-name></community><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-nren-mil2</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-ACONET-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-ARNES-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-ARNES-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-mil2</community-name></community><community><add/><community-name>geant-dws-nren</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-ARNES-V6-nren</name><from><prefix-list><name>route-from-ARNES-v6</name></prefix-list></from><then><local-preference><local-preference>100</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-mil2</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-ARNES-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-ARNES-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-ARNES</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-mil2</community-name></community><accept/></then></term><term><name>from-ARNES-nren</name><from><prefix-list><name>route-from-ARNES</name></prefix-list></from><then><local-preference><local-preference>100</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-mil2</community-name></community><accept/></then></term><term><name>from-ARNES-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-GARR-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-GARR-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-mil2</community-name></community><accept/></then></term><term><name>from-GARR-V6-nren</name><from><prefix-list><name>route-from-GARR-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-mil2</community-name></community><accept/></then></term><term><name>from-GARR-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-GARR-nren</name><term><name>RTBH</name><from><community>geant-RTBH</community><community>geant-RTBH-IAS</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-GARR</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-mil2</community-name></community><accept/></then></term><term><name>from-GARR-Toscana</name><from><route-filter><address>159.213.95.0/24</address><exact/></route-filter></from><then><local-preference><local-preference>150</local-preference></local-preference><accept/></then></term><term><name>from-GARR-nren</name><from><prefix-list><name>route-from-GARR</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-mil2</community-name></community><accept/></then></term><term><name>from-GARR-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-RASH-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-RASH</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-mil2</community-name></community><accept/></then></term><term><name>from-RASH-nren</name><from><prefix-list><name>route-from-RASH</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-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-nren-mil2</community-name></community><accept/></then></term><term><name>from-RASH-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-UoM-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-UOM-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-mil2</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-UOM-V6-nren</name><from><prefix-list><name>route-from-UOM-v6</name></prefix-list></from><then><local-preference><local-preference>100</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-mil2</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-UOM-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-UoM-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-UOM</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-mil2</community-name></community><accept/></then></term><term><name>from-UOM-nren</name><from><prefix-list><name>route-from-UOM</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-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><community><add/><community-name>geant-nren-mil2</community-name></community><accept/></then></term><term><name>from-UOM-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-google</name><term><name>remove-RTBH</name><from><community>geant-RTBH</community></from><then><community><delete/><community-name>geant-RTBH</community-name></community></then></term><term><name>BLEACH_PRIVATE_COMMUNITIES</name><then><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community></then></term><term><name>from-GOOGLE</name><then><local-preference><local-preference>95</local-preference></local-preference><community><add/><community-name>geant-google</community-name></community><community><add/><community-name>geant-peers</community-name></community><community><add/><community-name>geant-IAS-private-peer-MIL2</community-name></community><accept/></then></term></policy-statement><policy-statement><name>ps-IAS-from-google-v6</name><term><name>remove-RTBH</name><from><community>geant-RTBH</community></from><then><community><delete/><community-name>geant-RTBH</community-name></community></then></term><term><name>BLEACH_PRIVATE_COMMUNITIES</name><then><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community></then></term><term><name>from-GOOGLE</name><then><local-preference><local-preference>95</local-preference></local-preference><community><add/><community-name>geant-google</community-name></community><community><add/><community-name>geant-peers</community-name></community><community><add/><community-name>geant-IAS-private-peer-MIL2</community-name></community><accept/></then></term></policy-statement><policy-statement><name>ps-IAS-to-ACONET-V6_AP-nren</name><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-ACONET-V6-nren-general</name><from><family>inet6</family><community>geant-dws</community><community>geant-peers</community><community>IAS_AGGREGATE_ROUTES</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-ACONET-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-ACONET_AP-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-ACONET</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-ACONET1-nren</name><from><prefix-list><name>route-from-ACONET</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-private-peer</community-name></community><community><add/><community-name>geant-adv2-public-peer</community-name></community><community><add/><community-name>geant-nren-mil2</community-name></community><accept/></then></term><term><name>from-ACONET1-nren-drop</name><then><reject/></then></term><term><name>exception-block</name><from><community>geant-dummy</community></from><then><reject/></then></term><term><name>to-ACONET1-nren-general</name><from><community>geant-peers</community><community>geant-helix</community><community>IAS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>to-ACONET1-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-ARNES-V6-nren</name><term><name>to-ARNES-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><accept/></then></term><term><name>to-ARNES-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-ARNES-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-arnes-block</community></from><then><reject/></then></term><term><name>to-ARNES-nren-general</name><from><community>geant-google</community><community>geant-ixpeers</community><community>geant-peers</community><community>geant-helix</community><community>IAS_AGGREGATE_ROUTES</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-ARNES-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-GARR-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-garr-block</community></from><then><reject/></then></term><term><name>to-GARR-V6-nren-general</name><from><community>geant-peers</community><community>geant-ixpeers</community><community>IAS_AGGREGATE_ROUTES</community></from><then><metric><metric>50</metric></metric><accept/></then></term><term><name>to-GARR-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-GARR-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-garr-block</community></from><then><reject/></then></term><term><name>to-GARR-nren-general</name><from><community>geant-helix</community><community>geant-peers</community><community>geant-ixpeers</community><community>IAS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>to-GARR-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-ISOLARIO</name><term><name>to-ISOLARIO-general</name><from><community>geant-ixpeers</community><community>geant-google</community><community>geant-peers</community><community>geant-helix</community><community>geant-dws</community><community>IAS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>to-ISOLARIO-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-ISOLARIO-V6</name><term><name>to-ISOLARIO-V6-general</name><from><community>geant-ixpeers</community><community>geant-google</community><community>geant-peers</community><community>geant-helix</community><community>geant-dws</community><community>IAS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>to-ISOLARIO-V6-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-UoM-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-uom-block</community></from><then><reject/></then></term><term><name>to-Malta-V6-nren-general</name><from><community>geant-google</community><community>geant-dws</community><community>IAS_AGGREGATE_ROUTES</community><community>geant-peers</community><community>geant-ixpeers</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-Malta-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-UoM-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-uom-block</community></from><then><reject/></then></term><term><name>to-Malta-nren-general</name><from><community>geant-google</community><community>geant-peers</community><community>geant-ixpeers</community><community>geant-dws</community><community>geant-helix</community><community>IAS_AGGREGATE_ROUTES</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-Malta-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-google</name><term><name>to-private-peers-block</name><from><community>TE_BLOCK_PEERS</community><community>TE_BLOCK_PEERS_2</community><community>TE_BLOCK_PEERS_3</community><community>TE_BLOCK_AS15169</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS15169_x1_2byte</community><community>TE_PREPEND_AS15169_x1_4byte</community></from><then><as-path-prepend>21320</as-path-prepend><next>term</next></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS15169_x2_2byte</community><community>TE_PREPEND_AS15169_x2_4byte</community></from><then><as-path-prepend>21320 21320</as-path-prepend><next>term</next></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS15169_x3_2byte</community><community>TE_PREPEND_AS15169_x3_4byte</community></from><then><as-path-prepend>21320 21320 21320</as-path-prepend><next>term</next></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS15169_x6_2byte</community><community>TE_PREPEND_AS15169_x6_4byte</community></from><then><as-path-prepend>21320 21320 21320 21320 21320 21320</as-path-prepend><next>term</next></then></term><term><name>to-private-peers-prepend-1</name><from><community>geant-private-peers-prepend-1</community></from><then><as-path-prepend>21320</as-path-prepend><next>term</next></then></term><term><name>to-private-peers-prepend-3</name><from><community>geant-private-peers-prepend</community><community>peers-prepend-3</community></from><then><as-path-prepend>21320 21320 21320</as-path-prepend><next>term</next></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>to-GOOGLE</name><from><community>TE_ANNOUNCE_ALL_PRIVATE_PEERS</community><community>TE_ANNOUNCE_ALL_PRIVATE_PEERS_2</community><community>TE_ANNOUNCE_AS15169</community><community>TE_ANNOUNCE_AS15169_2</community><community>TE_ANNOUNCE_AS15169_3</community></from><then><metric><igp>
-                        </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>default-reject</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-google-v6</name><term><name>to-private-peers-block</name><from><community>TE_BLOCK_PEERS</community><community>TE_BLOCK_PEERS_2</community><community>TE_BLOCK_PEERS_3</community><community>TE_BLOCK_AS15169</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS15169_x1_2byte</community><community>TE_PREPEND_AS15169_x1_4byte</community></from><then><as-path-prepend>21320</as-path-prepend><next>term</next></then></term><term><name>PREPEND_THIS_PEER_x2</name><from><community>TE_PREPEND_AS15169_x2_2byte</community><community>TE_PREPEND_AS15169_x2_4byte</community></from><then><as-path-prepend>21320 21320</as-path-prepend><next>term</next></then></term><term><name>PREPEND_THIS_PEER_x3</name><from><community>TE_PREPEND_AS15169_x3_2byte</community><community>TE_PREPEND_AS15169_x3_4byte</community></from><then><as-path-prepend>21320 21320 21320</as-path-prepend><next>term</next></then></term><term><name>PREPEND_THIS_PEER_x6</name><from><community>TE_PREPEND_AS15169_x6_2byte</community><community>TE_PREPEND_AS15169_x6_4byte</community></from><then><as-path-prepend>21320 21320 21320 21320 21320 21320</as-path-prepend><next>term</next></then></term><term><name>to-private-peers-prepend-1</name><from><community>geant-private-peers-prepend-1</community></from><then><as-path-prepend>21320</as-path-prepend><next>term</next></then></term><term><name>to-private-peers-prepend-3</name><from><community>geant-private-peers-prepend</community><community>peers-prepend-3</community></from><then><as-path-prepend>21320 21320 21320</as-path-prepend><next>term</next></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>to-GOOGLE</name><from><community>TE_ANNOUNCE_ALL_PRIVATE_PEERS</community><community>TE_ANNOUNCE_ALL_PRIVATE_PEERS_2</community><community>TE_ANNOUNCE_AS15169</community><community>TE_ANNOUNCE_AS15169_2</community><community>TE_ANNOUNCE_AS15169_3</community></from><then><metric><igp>
-                        </igp></metric><community><delete/><community-name>TE_PRIVATE_COMMUNITIES</community-name></community><accept/></then></term><term><name>default-reject</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-advertise-default</name><term><name>static</name><from><protocol>static</protocol><protocol>bgp</protocol><prefix-list><name>static-route</name></prefix-list></from><then><metric><metric>20</metric></metric><accept/></then></term><term><name>static-reject</name><then><reject/></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-ACONET-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-ACONET-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-ACONET-V6-nren</name><from><prefix-list><name>route-from-ACONET-v6</name></prefix-list></from><then><local-preference><local-preference>125</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><accept/></then></term><term><name>from-ACONET-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-ACONET-mcast</name><term><name>from-ACONET-mcast-nren</name><from><prefix-list><name>route-from-ACONET</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-ACONET-mcast-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-ACONET1-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-ACONET</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-ACONET1-nren</name><from><prefix-list><name>route-from-ACONET</name></prefix-list></from><then><local-preference><local-preference>125</local-preference></local-preference><community><add/><community-name>geant-nrn</community-name></community><accept/></then></term><term><name>from-ACONET1-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-ARNES-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-ARNES-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-ARNES-V6-nren</name><from><prefix-list><name>route-from-ARNES-v6</name></prefix-list></from><then><local-preference><local-preference>100</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-ARNES-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-ARNES-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-ARNES</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-ARNES-nren</name><from><prefix-list><name>route-from-ARNES</name></prefix-list></from><then><local-preference><local-preference>100</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-ARNES-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-GARR-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-GARR-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-GARR-V6-nren</name><from><prefix-list><name>route-from-GARR-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-GARR-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-GARR-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-GARR</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-GARR-Toscana</name><from><route-filter><address>159.213.95.0/24</address><exact/></route-filter></from><then><local-preference><local-preference>150</local-preference></local-preference><accept/></then></term><term><name>from-GARR-nren</name><from><prefix-list><name>route-from-GARR</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-GARR-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-RASH-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-RASH</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-RASH-nren</name><from><prefix-list><name>route-from-RASH</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-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><accept/></then></term><term><name>from-RASH-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-UoM-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-UOM-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-UOM-V6-nren</name><from><prefix-list><name>route-from-UOM-v6</name></prefix-list></from><then><local-preference><local-preference>100</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-UOM-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-UoM-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-UOM</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-UOM-nren</name><from><prefix-list><name>route-from-UOM</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-adv2-public-peer</community-name></community><community><add/><community-name>geant-adv2-private-peer</community-name></community><accept/></then></term><term><name>from-UOM-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-from-mgmt-vrf</name><term><name>mgmt-routes</name><from><protocol>direct</protocol><protocol>static</protocol></from><then><community><add/><community-name>mgmt-vpn</community-name></community><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-sdn-bod-vrf</name><term><name>EXPORT_CONNECTED</name><from><protocol>direct</protocol></from><then><community><add/><community-name>sdn-bod-vpn</community-name></community><accept/></then></term><term><name>BGP_ACCEPT</name><from><protocol>bgp</protocol></from><then><community><add/><community-name>sdn-bod-vpn</community-name></community><accept/></then></term><term><name>THEN_REJECT</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-sdx-l2-vrf</name><term><name>EXPORT_CONNECTED</name><from><protocol>direct</protocol></from><then><community><add/><community-name>sdx-l2-vpn</community-name></community><accept/></then></term><term><name>BGP_ACCEPT</name><from><protocol>bgp</protocol></from><then><community><add/><community-name>sdx-l2-vpn</community-name></community><accept/></then></term><term><name>THEN_REJECT</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-into-mgmt-vrf</name><term><name>mgmt-routes</name><from><protocol>bgp</protocol><community>mgmt-vpn</community></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-into-sdn-bod-vrf</name><term><name>BGP_ACCEPT</name><from><protocol>bgp</protocol><community>sdn-bod-vpn</community></from><then><accept/></then></term><term><name>THEN_REJECT</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-into-sdx-l2-vrf</name><term><name>BGP_ACCEPT</name><from><protocol>bgp</protocol><community>sdx-l2-vpn</community></from><then><accept/></then></term><term><name>THEN_REJECT</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ACONET-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-aconet-block</community></from><then><reject/></then></term><term><name>to-ACONET-V6-nren-general</name><from><family>inet6</family><community>geant-nrn</community><community>geant-peer-RE</community></from><then><metric><metric>20</metric></metric><accept/></then></term><term><name>to-ACONET-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ACONET-mcast</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-aconet-block</community></from><then><reject/></then></term><term><name>to-ACONET-mcast-nren</name><from><community>geant-nrn</community><community>geant-peer-RE</community></from><then><accept/></then></term><term><name>to-ACONET-mcast-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ACONET1-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-aconet-block</community></from><then><reject/></then></term><term><name>to-ACONET1-nren-general</name><from><community>geant-nrn</community><community>geant-peer-RE</community><community>geant-helix</community></from><then><metric><metric>20</metric></metric><accept/></then></term><term><name>to-ACONET1-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ARNES-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-arnes-block</community></from><then><reject/></then></term><term><name>to-ARNES-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></from><then><accept/></then></term><term><name>to-ARNES-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ARNES-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-arnes-block</community></from><then><reject/></then></term><term><name>to-ARNES-nren-general</name><from><community>geant-nrn</community><community>geant-google</community><community>geant-ixpeers</community><community>geant-peers</community><community>geant-peer-RE</community><community>geant-helix</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-ARNES-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-GARR-LHCONE-TE</name><term><name>BLOCK</name><from><community>LHCONE-BLOCK-GARR-137</community></from><then><reject/></then></term><term><name>PREPEND_x1</name><from><community>LHCONE-PREPEND-GARR-137-x1</community></from><then><as-path-prepend>20965</as-path-prepend></then></term><term><name>PREPEND_x2</name><from><community>LHCONE-PREPEND-GARR-137-x2</community></from><then><as-path-prepend>20965 20965</as-path-prepend></then></term><term><name>PREPEND_x3</name><from><community>LHCONE-PREPEND-GARR-137-x3</community></from><then><as-path-prepend>20965 20965 20965</as-path-prepend></then></term></policy-statement><policy-statement><name>ps-to-GARR-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-garr-block</community></from><then><reject/></then></term><term><name>to-GARR-V6-nren-general</name><from><community>geant-nrn</community><community>geant-m6bone</community><community>geant-dws</community><community>geant-peer-RE</community></from><then><metric><metric>50</metric></metric><accept/></then></term><term><name>to-GARR-V6-loopback</name><from><route-filter><address>2001:798:1e:20ff::3/128</address><exact/></route-filter></from><then><accept/></then></term><term><name>to-GARR-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-GARR-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-garr-block</community></from><then><reject/></then></term><term><name>to-GARR-nren-general</name><from><community>geant-nrn</community><community>geant-peer-RE</community><community>geant-helix</community></from><then><accept/></then></term><term><name>to-GARR-loopback</name><from><route-filter><address>62.40.97.15/32</address><exact/></route-filter></from><then><accept/></then></term><term><name>to-GARR-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ISOLARIO</name><term><name>to-ISOLARIO-general</name><from><community>geant-nrn</community><community>geant-peer-RE</community></from><then><accept/></then></term><term><name>to-ISOLARIO-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-ISOLARIO-V6</name><term><name>to-ISOLARIO-V6-general</name><from><community>geant-nrn</community><community>geant-peer-RE</community></from><then><accept/></then></term><term><name>to-ISOLARIO-V6-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-RASH-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-RASH-block</community></from><then><reject/></then></term><term><name>to-RASH-nren-general</name><from><community>geant-nrn</community><community>geant-peer-RE</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-RASH-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-UoM-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-uom-block</community></from><then><reject/></then></term><term><name>to-Malta-V6-nren-general</name><from><community>geant-nrn</community><community>geant-google</community><community>geant-dws</community><community>geant-peer-RE</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-Malta-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-UoM-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-uom-block</community></from><then><reject/></then></term><term><name>to-Malta-nren-general</name><from><community>geant-nrn</community><community>geant-google</community><community>geant-peers</community><community>geant-ixpeers</community><community>geant-dws</community><community>geant-peer-RE</community><community>geant-helix</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-Malta-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-google</name><term><name>to-private-peers-block</name><from><community>geant-peers-block</community><community>geant-private-peers-block</community></from><then><reject/></then></term><term><name>to-private-peers-prepend-1</name><from><community>geant-private-peers-prepend-1</community></from><then><as-path-prepend>20965</as-path-prepend><next>term</next></then></term><term><name>to-private-peers-prepend</name><from><community>geant-private-peers-prepend</community><community>peers-prepend-3</community></from><then><as-path-prepend>20965 20965 20965</as-path-prepend><next>term</next></then></term><term><name>to-IX-Peers</name><from><community>geant-adv2-private-peer</community></from><then><metric><igp>
-                        </igp></metric><accept/></then></term><term><name>default-reject</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-google-v6</name><term><name>to-private-peers-block</name><from><community>geant-peers-block</community><community>geant-private-peers-block</community></from><then><reject/></then></term><term><name>to-private-peers-prepend</name><from><community>geant-private-peers-prepend</community></from><then><as-path-prepend>20965 20965 20965</as-path-prepend><next>term</next></then></term><term><name>to-IX-Peers</name><from><community>geant-adv2-private-peer</community></from><then><accept/></then></term><term><name>default-reject</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-iGEANT</name><term><name>to-iGEANT</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><term><name>to-iGEANT-default</name><from><prefix-list><name>default-route-v4</name></prefix-list></from><then><community><add/><community-name>no-export</community-name></community><accept/></then></term></policy-statement><policy-statement><name>ps-to-iGEANT6</name><term><name>to-iGEANT-v6</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></term><term><name>to-iGEANT-v6-default</name><from><prefix-list><name>default-route-v6</name></prefix-list></from><then><community><add/><community-name>no-export</community-name></community><accept/></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><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><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>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_MIL2</name><members>21320:64633</members></community><community><name>INFO_PUBLIC_PEER_MIX-IT</name><members>21320:64695</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>LHCONE-BLOCK-GARR-137</name><members>65010:137</members></community><community><name>LHCONE-PREPEND-GARR-137-x1</name><members>65001:137</members></community><community><name>LHCONE-PREPEND-GARR-137-x2</name><members>65002:137</members></community><community><name>LHCONE-PREPEND-GARR-137-x3</name><members>65003:137</members></community><community><name>TE_ANNOUNCE_ALL_CLS_PROVIDERS</name><members>64700:65531</members></community><community><name>TE_ANNOUNCE_ALL_PRIVATE_PEERS</name><members>20965:65533</members></community><community><name>TE_ANNOUNCE_ALL_PRIVATE_PEERS_2</name><members>64700:65533</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_MIX-IT</name><members>64795:10310</members></community><community><name>TE_ANNOUNCE_AS10310_MIX-IT_2</name><members>origin:10310L:64795</members></community><community><name>TE_ANNOUNCE_AS12654</name><members>64700:12654</members></community><community><name>TE_ANNOUNCE_AS12654_2</name><members>64712:12654</members></community><community><name>TE_ANNOUNCE_AS12654_3</name><members>origin:12654L:64700</members></community><community><name>TE_ANNOUNCE_AS12654_4</name><members>origin:12654L:64712</members></community><community><name>TE_ANNOUNCE_AS12654_MIX-IT</name><members>64795:12654</members></community><community><name>TE_ANNOUNCE_AS12654_MIX-IT_2</name><members>origin:12654L:64795</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_MIX-IT</name><members>64795:13030</members></community><community><name>TE_ANNOUNCE_AS13030_MIX-IT_2</name><members>origin:13030L:64795</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_MIX-IT</name><members>64795:13335</members></community><community><name>TE_ANNOUNCE_AS13335_MIX-IT_2</name><members>origin:13335L:64795</members></community><community><name>TE_ANNOUNCE_AS136907_3</name><members>origin:136907L:64700</members></community><community><name>TE_ANNOUNCE_AS136907_4</name><members>origin:136907L:64712</members></community><community><name>TE_ANNOUNCE_AS136907_MIX-IT_2</name><members>origin:136907L:64795</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:15133:64700</members></community><community><name>TE_ANNOUNCE_AS15133_4</name><members>origin:15133:64712</members></community><community><name>TE_ANNOUNCE_AS15133_MIX-IT</name><members>64795:15133</members></community><community><name>TE_ANNOUNCE_AS15133_MIX-IT_2</name><members>origin:15133L:64795</members></community><community><name>TE_ANNOUNCE_AS15169</name><members>64700:15169</members></community><community><name>TE_ANNOUNCE_AS15169_2</name><members>64712:15169</members></community><community><name>TE_ANNOUNCE_AS15169_3</name><members>64733:15169</members></community><community><name>TE_ANNOUNCE_AS16004</name><members>64700:16004</members></community><community><name>TE_ANNOUNCE_AS16004_2</name><members>64712:16004</members></community><community><name>TE_ANNOUNCE_AS16004_3</name><members>origin:16004L:64700</members></community><community><name>TE_ANNOUNCE_AS16004_4</name><members>origin:16004L:64712</members></community><community><name>TE_ANNOUNCE_AS16004_MIX-IT</name><members>64795:16004</members></community><community><name>TE_ANNOUNCE_AS16004_MIX-IT_2</name><members>origin:16004L:64795</members></community><community><name>TE_ANNOUNCE_AS16276</name><members>64700:16276</members></community><community><name>TE_ANNOUNCE_AS16276_2</name><members>64712:16276</members></community><community><name>TE_ANNOUNCE_AS16276_3</name><members>origin:16276L:64700</members></community><community><name>TE_ANNOUNCE_AS16276_4</name><members>origin:16276L:64712</members></community><community><name>TE_ANNOUNCE_AS16276_MIX-IT</name><members>64795:16276</members></community><community><name>TE_ANNOUNCE_AS16276_MIX-IT_2</name><members>origin:16276L:64795</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_MIX-IT</name><members>64795:16509</members></community><community><name>TE_ANNOUNCE_AS16509_MIX-IT_2</name><members>origin:16509L:64795</members></community><community><name>TE_ANNOUNCE_AS19551</name><members>64700:19551</members></community><community><name>TE_ANNOUNCE_AS19551_2</name><members>64712:19551</members></community><community><name>TE_ANNOUNCE_AS19551_3</name><members>origin:19551L:64700</members></community><community><name>TE_ANNOUNCE_AS19551_4</name><members>origin:19551L:64712</members></community><community><name>TE_ANNOUNCE_AS19551_MIX-IT</name><members>64795:19551</members></community><community><name>TE_ANNOUNCE_AS19551_MIX-IT_2</name><members>origin:19551L:64795</members></community><community><name>TE_ANNOUNCE_AS19679</name><members>64700:19679</members></community><community><name>TE_ANNOUNCE_AS19679_2</name><members>64712:19679</members></community><community><name>TE_ANNOUNCE_AS19679_3</name><members>origin:19679L:64700</members></community><community><name>TE_ANNOUNCE_AS19679_4</name><members>origin:19679L:64712</members></community><community><name>TE_ANNOUNCE_AS19679_MIX-IT</name><members>64795:19679</members></community><community><name>TE_ANNOUNCE_AS19679_MIX-IT_2</name><members>origin:19679L:64795</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_MIX-IT_2</name><members>origin:199524L:64795</members></community><community><name>TE_ANNOUNCE_AS20940</name><members>64700:20940</members></community><community><name>TE_ANNOUNCE_AS20940_2</name><members>64712:20940</members></community><community><name>TE_ANNOUNCE_AS20940_3</name><members>origin:20940L:64700</members></community><community><name>TE_ANNOUNCE_AS20940_4</name><members>origin:20940L:64712</members></community><community><name>TE_ANNOUNCE_AS20940_MIX-IT</name><members>64795:20940</members></community><community><name>TE_ANNOUNCE_AS20940_MIX-IT_2</name><members>origin:20940L:64795</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_MIX-IT</name><members>64795:22822</members></community><community><name>TE_ANNOUNCE_AS22822_MIX-IT_2</name><members>origin:22822L:64795</members></community><community><name>TE_ANNOUNCE_AS24429</name><members>64700:24429</members></community><community><name>TE_ANNOUNCE_AS24429_2</name><members>64712:24429</members></community><community><name>TE_ANNOUNCE_AS24429_3</name><members>origin:24429L:64700</members></community><community><name>TE_ANNOUNCE_AS24429_4</name><members>origin:24429L:64712</members></community><community><name>TE_ANNOUNCE_AS24429_MIX-IT</name><members>64795:24429</members></community><community><name>TE_ANNOUNCE_AS24429_MIX-IT_2</name><members>origin:24429L:64795</members></community><community><name>TE_ANNOUNCE_AS2635</name><members>64700:2635</members></community><community><name>TE_ANNOUNCE_AS2635_2</name><members>64712:2635</members></community><community><name>TE_ANNOUNCE_AS2635_3</name><members>origin:2635L:64700</members></community><community><name>TE_ANNOUNCE_AS2635_4</name><members>origin:2635L:64712</members></community><community><name>TE_ANNOUNCE_AS2635_MIX-IT</name><members>64795:2635</members></community><community><name>TE_ANNOUNCE_AS2635_MIX-IT_2</name><members>origin:2635L:64795</members></community><community><name>TE_ANNOUNCE_AS26415</name><members>64700:26415</members></community><community><name>TE_ANNOUNCE_AS26415_2</name><members>64712:26415</members></community><community><name>TE_ANNOUNCE_AS26415_3</name><members>origin:26415L:64700</members></community><community><name>TE_ANNOUNCE_AS26415_4</name><members>origin:26415L:64712</members></community><community><name>TE_ANNOUNCE_AS26415_MIX-IT</name><members>64795:26415</members></community><community><name>TE_ANNOUNCE_AS26415_MIX-IT_2</name><members>origin:26415L:64795</members></community><community><name>TE_ANNOUNCE_AS2906</name><members>64700:2906</members></community><community><name>TE_ANNOUNCE_AS2906_2</name><members>64712:2906</members></community><community><name>TE_ANNOUNCE_AS2906_3</name><members>origin:2906L:64700</members></community><community><name>TE_ANNOUNCE_AS2906_4</name><members>origin:2906L:64712</members></community><community><name>TE_ANNOUNCE_AS2906_MIX-IT</name><members>64795:2906</members></community><community><name>TE_ANNOUNCE_AS2906_MIX-IT_2</name><members>origin:2906L:64795</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_MIX-IT</name><members>64795:32934</members></community><community><name>TE_ANNOUNCE_AS32934_MIX-IT_2</name><members>origin:32934L:64795</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_MIX-IT</name><members>64795:3303</members></community><community><name>TE_ANNOUNCE_AS3303_MIX-IT_2</name><members>origin:3303L:64795</members></community><community><name>TE_ANNOUNCE_AS33438</name><members>64700:33438</members></community><community><name>TE_ANNOUNCE_AS33438_2</name><members>64712:33438</members></community><community><name>TE_ANNOUNCE_AS33438_3</name><members>origin:33438L:64700</members></community><community><name>TE_ANNOUNCE_AS33438_4</name><members>origin:33438L:64712</members></community><community><name>TE_ANNOUNCE_AS33438_MIX-IT</name><members>64795:33438</members></community><community><name>TE_ANNOUNCE_AS33438_MIX-IT_2</name><members>origin:33438L:64795</members></community><community><name>TE_ANNOUNCE_AS36351</name><members>64700:36351</members></community><community><name>TE_ANNOUNCE_AS36351_2</name><members>64712:36351</members></community><community><name>TE_ANNOUNCE_AS36351_3</name><members>origin:36351L:64700</members></community><community><name>TE_ANNOUNCE_AS36351_4</name><members>origin:36351L:64712</members></community><community><name>TE_ANNOUNCE_AS36351_MIX-IT</name><members>64795:36351</members></community><community><name>TE_ANNOUNCE_AS36351_MIX-IT_2</name><members>origin:36351L:64795</members></community><community><name>TE_ANNOUNCE_AS36692</name><members>64700:36692</members></community><community><name>TE_ANNOUNCE_AS36692_2</name><members>64712:36692</members></community><community><name>TE_ANNOUNCE_AS36692_3</name><members>origin:36692L:64700</members></community><community><name>TE_ANNOUNCE_AS36692_4</name><members>origin:36692L:64712</members></community><community><name>TE_ANNOUNCE_AS36692_MIX-IT</name><members>64795:36692</members></community><community><name>TE_ANNOUNCE_AS36692_MIX-IT_2</name><members>origin:36692L:64795</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_MIX-IT</name><members>64795:46489</members></community><community><name>TE_ANNOUNCE_AS46489_MIX-IT_2</name><members>origin:46489L:64795</members></community><community><name>TE_ANNOUNCE_AS5400</name><members>64700:5400</members></community><community><name>TE_ANNOUNCE_AS5400_2</name><members>64712:5400</members></community><community><name>TE_ANNOUNCE_AS5400_3</name><members>origin:5400L:64700</members></community><community><name>TE_ANNOUNCE_AS5400_4</name><members>origin:5400L:64712</members></community><community><name>TE_ANNOUNCE_AS5400_MIX-IT</name><members>64795:5400</members></community><community><name>TE_ANNOUNCE_AS5400_MIX-IT_2</name><members>origin:5400L:64795</members></community><community><name>TE_ANNOUNCE_AS54113</name><members>64700:54113</members></community><community><name>TE_ANNOUNCE_AS54113_2</name><members>64712:54113</members></community><community><name>TE_ANNOUNCE_AS54113_3</name><members>origin:54113L:64700</members></community><community><name>TE_ANNOUNCE_AS54113_4</name><members>origin:54113L:64712</members></community><community><name>TE_ANNOUNCE_AS54113_MIX-IT</name><members>64795:54113</members></community><community><name>TE_ANNOUNCE_AS54113_MIX-IT_2</name><members>origin:54113L:64795</members></community><community><name>TE_ANNOUNCE_AS57976</name><members>64700:57976</members></community><community><name>TE_ANNOUNCE_AS57976_2</name><members>64712:57976</members></community><community><name>TE_ANNOUNCE_AS57976_3</name><members>origin:57976L:64700</members></community><community><name>TE_ANNOUNCE_AS57976_4</name><members>origin:57976L:64712</members></community><community><name>TE_ANNOUNCE_AS57976_MIX-IT</name><members>64795:57976</members></community><community><name>TE_ANNOUNCE_AS57976_MIX-IT_2</name><members>origin:57976L:64795</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_MIX-IT</name><members>64795:6939</members></community><community><name>TE_ANNOUNCE_AS6939_MIX-IT_2</name><members>origin:6939L:64795</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_MIX-IT</name><members>64795:8075</members></community><community><name>TE_ANNOUNCE_AS8075_MIX-IT_2</name><members>origin:8075L:64795</members></community><community><name>TE_ANNOUNCE_AS8220</name><members>64700:8220</members></community><community><name>TE_ANNOUNCE_AS8220_2</name><members>64712:8220</members></community><community><name>TE_ANNOUNCE_AS8220_3</name><members>origin:8220L:64700</members></community><community><name>TE_ANNOUNCE_AS8220_4</name><members>origin:8220L:64712</members></community><community><name>TE_ANNOUNCE_AS8220_MIX-IT</name><members>64795:8220</members></community><community><name>TE_ANNOUNCE_AS8220_MIX-IT_2</name><members>origin:8220L:64795</members></community><community><name>TE_ANNOUNCE_AS8551</name><members>64700:8551</members></community><community><name>TE_ANNOUNCE_AS8551_2</name><members>64712:8551</members></community><community><name>TE_ANNOUNCE_AS8551_3</name><members>origin:8551L:64700</members></community><community><name>TE_ANNOUNCE_AS8551_4</name><members>origin:8551L:64712</members></community><community><name>TE_ANNOUNCE_AS8551_MIX-IT</name><members>64795:8551</members></community><community><name>TE_ANNOUNCE_AS8551_MIX-IT_2</name><members>origin:8551L:64795</members></community><community><name>TE_ANNOUNCE_AS8674</name><members>64700:8674</members></community><community><name>TE_ANNOUNCE_AS8674_2</name><members>64712:8674</members></community><community><name>TE_ANNOUNCE_AS8674_3</name><members>origin:8674L:64700</members></community><community><name>TE_ANNOUNCE_AS8674_4</name><members>origin:8674L:64712</members></community><community><name>TE_ANNOUNCE_AS8674_MIX-IT</name><members>64795:8674</members></community><community><name>TE_ANNOUNCE_AS8674_MIX-IT_2</name><members>origin:8674L:64795</members></community><community><name>TE_ANNOUNCE_AS9002</name><members>64700:9002</members></community><community><name>TE_ANNOUNCE_AS9002_2</name><members>64712:9002</members></community><community><name>TE_ANNOUNCE_AS9002_3</name><members>origin:9002L:64700</members></community><community><name>TE_ANNOUNCE_AS9002_4</name><members>origin:9002L:64712</members></community><community><name>TE_ANNOUNCE_AS9002_MIX-IT</name><members>64795:9002</members></community><community><name>TE_ANNOUNCE_AS9002_MIX-IT_2</name><members>origin:9002L:64795</members></community><community><name>TE_ANNOUNCE_AS9009</name><members>64700:9009</members></community><community><name>TE_ANNOUNCE_AS9009_2</name><members>64712:9009</members></community><community><name>TE_ANNOUNCE_AS9009_3</name><members>origin:9009L:64700</members></community><community><name>TE_ANNOUNCE_AS9009_4</name><members>origin:9009L:64712</members></community><community><name>TE_ANNOUNCE_AS9009_MIX-IT</name><members>64795:9009</members></community><community><name>TE_ANNOUNCE_AS9009_MIX-IT_2</name><members>origin:9009L:64795</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_MIX-IT</name><members>64595:10310</members></community><community><name>TE_BLOCK_AS10310_MIX-IT_2</name><members>origin:10310L:64595</members></community><community><name>TE_BLOCK_AS12654</name><members>64512:12654</members></community><community><name>TE_BLOCK_AS12654_2</name><members>origin:12654L:64512</members></community><community><name>TE_BLOCK_AS12654_MIX-IT</name><members>64595:12654</members></community><community><name>TE_BLOCK_AS12654_MIX-IT_2</name><members>origin:12654L:64595</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_MIX-IT</name><members>64595:13030</members></community><community><name>TE_BLOCK_AS13030_MIX-IT_2</name><members>origin:13030L:64595</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_MIX-IT</name><members>64595:13335</members></community><community><name>TE_BLOCK_AS13335_MIX-IT_2</name><members>origin:13335L:64595</members></community><community><name>TE_BLOCK_AS136907_2</name><members>origin:136907L:64512</members></community><community><name>TE_BLOCK_AS136907_MIX-IT_2</name><members>origin:136907L:64595</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_MIX-IT</name><members>64595:15133</members></community><community><name>TE_BLOCK_AS15133_MIX-IT_2</name><members>origin:15133L:64595</members></community><community><name>TE_BLOCK_AS15169</name><members>64512:15169</members></community><community><name>TE_BLOCK_AS16004</name><members>64512:16004</members></community><community><name>TE_BLOCK_AS16004_2</name><members>origin:16004L:64512</members></community><community><name>TE_BLOCK_AS16004_MIX-IT</name><members>64595:16004</members></community><community><name>TE_BLOCK_AS16004_MIX-IT_2</name><members>origin:16004L:64595</members></community><community><name>TE_BLOCK_AS16276</name><members>64512:16276</members></community><community><name>TE_BLOCK_AS16276_2</name><members>origin:16276L:64512</members></community><community><name>TE_BLOCK_AS16276_MIX-IT</name><members>64595:16276</members></community><community><name>TE_BLOCK_AS16276_MIX-IT_2</name><members>origin:16276L:64595</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_MIX-IT</name><members>64595:16509</members></community><community><name>TE_BLOCK_AS16509_MIX-IT_2</name><members>origin:16509L:64595</members></community><community><name>TE_BLOCK_AS19551</name><members>64512:19551</members></community><community><name>TE_BLOCK_AS19551_2</name><members>origin:19551L:64512</members></community><community><name>TE_BLOCK_AS19551_MIX-IT</name><members>64595:19551</members></community><community><name>TE_BLOCK_AS19551_MIX-IT_2</name><members>origin:19551L:64595</members></community><community><name>TE_BLOCK_AS19679</name><members>64512:19679</members></community><community><name>TE_BLOCK_AS19679_2</name><members>origin:19679L:64512</members></community><community><name>TE_BLOCK_AS19679_MIX-IT</name><members>64595:19679</members></community><community><name>TE_BLOCK_AS19679_MIX-IT_2</name><members>origin:19679L:64595</members></community><community><name>TE_BLOCK_AS199524_2</name><members>origin:199524L:64512</members></community><community><name>TE_BLOCK_AS199524_MIX-IT_2</name><members>origin:199524L:64595</members></community><community><name>TE_BLOCK_AS20940</name><members>64512:20940</members></community><community><name>TE_BLOCK_AS20940_2</name><members>origin:20940L:64512</members></community><community><name>TE_BLOCK_AS20940_MIX-IT</name><members>64595:20940</members></community><community><name>TE_BLOCK_AS20940_MIX-IT_2</name><members>origin:20940L:64595</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_MIX-IT</name><members>64595:22822</members></community><community><name>TE_BLOCK_AS22822_MIX-IT_2</name><members>origin:22822L:64595</members></community><community><name>TE_BLOCK_AS24429</name><members>64512:24429</members></community><community><name>TE_BLOCK_AS24429_2</name><members>origin:24429L:64512</members></community><community><name>TE_BLOCK_AS24429_MIX-IT</name><members>64595:24429</members></community><community><name>TE_BLOCK_AS24429_MIX-IT_2</name><members>origin:24429L:64595</members></community><community><name>TE_BLOCK_AS2635</name><members>64512:2635</members></community><community><name>TE_BLOCK_AS2635_2</name><members>origin:2635L:64512</members></community><community><name>TE_BLOCK_AS2635_MIX-IT</name><members>64595:2635</members></community><community><name>TE_BLOCK_AS2635_MIX-IT_2</name><members>origin:2635L:64595</members></community><community><name>TE_BLOCK_AS26415</name><members>64512:26415</members></community><community><name>TE_BLOCK_AS26415_2</name><members>origin:26415L:64512</members></community><community><name>TE_BLOCK_AS26415_MIX-IT</name><members>64595:26415</members></community><community><name>TE_BLOCK_AS26415_MIX-IT_2</name><members>origin:26415L:64595</members></community><community><name>TE_BLOCK_AS2906</name><members>64512:2906</members></community><community><name>TE_BLOCK_AS2906_2</name><members>origin:2906L:64512</members></community><community><name>TE_BLOCK_AS2906_MIX-IT</name><members>64595:2906</members></community><community><name>TE_BLOCK_AS2906_MIX-IT_2</name><members>origin:2906L:64595</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_MIX-IT</name><members>64595:32934</members></community><community><name>TE_BLOCK_AS32934_MIX-IT_2</name><members>origin:32934L:64595</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_MIX-IT</name><members>64595:3303</members></community><community><name>TE_BLOCK_AS3303_MIX-IT_2</name><members>origin:3303L:64595</members></community><community><name>TE_BLOCK_AS33438</name><members>64512:33438</members></community><community><name>TE_BLOCK_AS33438_2</name><members>origin:33438L:64512</members></community><community><name>TE_BLOCK_AS33438_MIX-IT</name><members>64595:33438</members></community><community><name>TE_BLOCK_AS33438_MIX-IT_2</name><members>origin:33438L:64595</members></community><community><name>TE_BLOCK_AS36351</name><members>64512:36351</members></community><community><name>TE_BLOCK_AS36351_2</name><members>origin:36351L:64512</members></community><community><name>TE_BLOCK_AS36351_MIX-IT</name><members>64595:36351</members></community><community><name>TE_BLOCK_AS36351_MIX-IT_2</name><members>origin:36351L:64595</members></community><community><name>TE_BLOCK_AS36692</name><members>64512:36692</members></community><community><name>TE_BLOCK_AS36692_2</name><members>origin:36692L:64512</members></community><community><name>TE_BLOCK_AS36692_MIX-IT</name><members>64595:36692</members></community><community><name>TE_BLOCK_AS36692_MIX-IT_2</name><members>origin:36692L:64595</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_MIX-IT</name><members>64595:46489</members></community><community><name>TE_BLOCK_AS46489_MIX-IT_2</name><members>origin:46489L:64595</members></community><community><name>TE_BLOCK_AS5400</name><members>64512:5400</members></community><community><name>TE_BLOCK_AS5400_2</name><members>origin:5400L:64512</members></community><community><name>TE_BLOCK_AS5400_MIX-IT</name><members>64595:5400</members></community><community><name>TE_BLOCK_AS5400_MIX-IT_2</name><members>origin:5400L:64595</members></community><community><name>TE_BLOCK_AS54113</name><members>64512:54113</members></community><community><name>TE_BLOCK_AS54113_2</name><members>origin:54113L:64512</members></community><community><name>TE_BLOCK_AS54113_MIX-IT</name><members>64595:54113</members></community><community><name>TE_BLOCK_AS54113_MIX-IT_2</name><members>origin:54113L:64595</members></community><community><name>TE_BLOCK_AS57976</name><members>64512:57976</members></community><community><name>TE_BLOCK_AS57976_2</name><members>origin:57976L:64512</members></community><community><name>TE_BLOCK_AS57976_MIX-IT</name><members>64595:57976</members></community><community><name>TE_BLOCK_AS57976_MIX-IT_2</name><members>origin:57976L:64595</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_MIX-IT</name><members>64595:6939</members></community><community><name>TE_BLOCK_AS6939_MIX-IT_2</name><members>origin:6939L:64595</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_MIX-IT</name><members>64595:8075</members></community><community><name>TE_BLOCK_AS8075_MIX-IT_2</name><members>origin:8075L:64595</members></community><community><name>TE_BLOCK_AS8220</name><members>64512:8220</members></community><community><name>TE_BLOCK_AS8220_2</name><members>origin:8220L:64512</members></community><community><name>TE_BLOCK_AS8220_MIX-IT</name><members>64595:8220</members></community><community><name>TE_BLOCK_AS8220_MIX-IT_2</name><members>origin:8220L:64595</members></community><community><name>TE_BLOCK_AS8551</name><members>64512:8551</members></community><community><name>TE_BLOCK_AS8551_2</name><members>origin:8551L:64512</members></community><community><name>TE_BLOCK_AS8551_MIX-IT</name><members>64595:8551</members></community><community><name>TE_BLOCK_AS8551_MIX-IT_2</name><members>origin:8551L:64595</members></community><community><name>TE_BLOCK_AS8674</name><members>64512:8674</members></community><community><name>TE_BLOCK_AS8674_2</name><members>origin:8674L:64512</members></community><community><name>TE_BLOCK_AS8674_MIX-IT</name><members>64595:8674</members></community><community><name>TE_BLOCK_AS8674_MIX-IT_2</name><members>origin:8674L:64595</members></community><community><name>TE_BLOCK_AS9002</name><members>64512:9002</members></community><community><name>TE_BLOCK_AS9002_2</name><members>origin:9002L:64512</members></community><community><name>TE_BLOCK_AS9002_MIX-IT</name><members>64595:9002</members></community><community><name>TE_BLOCK_AS9002_MIX-IT_2</name><members>origin:9002L:64595</members></community><community><name>TE_BLOCK_AS9009</name><members>64512:9009</members></community><community><name>TE_BLOCK_AS9009_2</name><members>origin:9009L:64512</members></community><community><name>TE_BLOCK_AS9009_MIX-IT</name><members>64595:9009</members></community><community><name>TE_BLOCK_AS9009_MIX-IT_2</name><members>origin:9009L:64595</members></community><community><name>TE_BLOCK_LOCAL_IXES</name><members>64533:65532</members></community><community><name>TE_BLOCK_MIX-IT</name><members>64595:65532</members></community><community><name>TE_BLOCK_PEERS</name><members>20965:0013</members></community><community><name>TE_BLOCK_PEERS_2</name><members>64512:65533</members></community><community><name>TE_BLOCK_PEERS_3</name><members>20965:0011</members></community><community><name>TE_PREPEND_ALL_PUBLIC_PEERS_MIX-IT</name><members>64895:65532</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_AS12654_x1_2byte</name><members>64801:12654</members><members>64812:12654</members></community><community><name>TE_PREPEND_AS12654_x1_4byte</name><members>origin:12654L:64801</members><members>origin:12654L:64812</members></community><community><name>TE_PREPEND_AS12654_x2_2byte</name><members>64802:12654</members><members>64812:12654</members></community><community><name>TE_PREPEND_AS12654_x2_4byte</name><members>origin:12654L:64802</members><members>origin:12654L:64812</members></community><community><name>TE_PREPEND_AS12654_x3_2byte</name><members>64803:12654</members><members>64812:12654</members></community><community><name>TE_PREPEND_AS12654_x3_4byte</name><members>origin:12654L:64803</members><members>origin:12654L:64812</members></community><community><name>TE_PREPEND_AS12654_x6_2byte</name><members>64806:12654</members><members>64812:12654</members></community><community><name>TE_PREPEND_AS12654_x6_4byte</name><members>origin:12654L:64806</members><members>origin:12654L:64812</members></community><community><name>TE_PREPEND_AS13030_MIX-IT_x1_2byte</name><members>64801:13030</members><members>64895:13030</members></community><community><name>TE_PREPEND_AS13030_MIX-IT_x1_4byte</name><members>origin:13030L:64801</members><members>origin:13030L:64895</members></community><community><name>TE_PREPEND_AS13030_MIX-IT_x2_2byte</name><members>64802:13030</members><members>64895:13030</members></community><community><name>TE_PREPEND_AS13030_MIX-IT_x2_4byte</name><members>origin:13030L:64802</members><members>origin:13030L:64895</members></community><community><name>TE_PREPEND_AS13030_MIX-IT_x3_2byte</name><members>64803:13030</members><members>64895:13030</members></community><community><name>TE_PREPEND_AS13030_MIX-IT_x3_4byte</name><members>origin:13030L:64803</members><members>origin:13030L:64895</members></community><community><name>TE_PREPEND_AS13030_MIX-IT_x6_2byte</name><members>64806:13030</members><members>64895:13030</members></community><community><name>TE_PREPEND_AS13030_MIX-IT_x6_4byte</name><members>origin:13030L:64806</members><members>origin:13030L:64895</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_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_AS136907_MIX-IT_x1_4byte</name><members>origin:136907L:64801</members><members>origin:136907L:64895</members></community><community><name>TE_PREPEND_AS136907_MIX-IT_x2_4byte</name><members>origin:136907L:64802</members><members>origin:136907L:64895</members></community><community><name>TE_PREPEND_AS136907_MIX-IT_x3_4byte</name><members>origin:136907L:64803</members><members>origin:136907L:64895</members></community><community><name>TE_PREPEND_AS136907_MIX-IT_x6_4byte</name><members>origin:136907L:64806</members><members>origin:136907L:64895</members></community><community><name>TE_PREPEND_AS136907_x1_4byte</name><members>origin:136907L:64801</members><members>origin:136907L:64812</members></community><community><name>TE_PREPEND_AS136907_x2_4byte</name><members>origin:136907L:64802</members><members>origin:136907L:64812</members></community><community><name>TE_PREPEND_AS136907_x3_4byte</name><members>origin:136907L:64803</members><members>origin:136907L:64812</members></community><community><name>TE_PREPEND_AS136907_x6_4byte</name><members>origin:136907L:64806</members><members>origin:136907L:64812</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_AS15169_MIL2_PREPEND_2byte</name><members>64833:15169</members></community><community><name>TE_PREPEND_AS15169_MIL2_PREPEND_4byte</name><members>origin:15169L:64833</members></community><community><name>TE_PREPEND_AS15169_x1_2byte</name><members>64801:15169</members><members>64812:15169</members></community><community><name>TE_PREPEND_AS15169_x1_4byte</name><members>origin:15169L:64801</members><members>origin:15169L:64812</members></community><community><name>TE_PREPEND_AS15169_x1_PREPEND_2byte</name><members>64801:15169</members></community><community><name>TE_PREPEND_AS15169_x1_PREPEND_4byte</name><members>origin:15169L:64801</members></community><community><name>TE_PREPEND_AS15169_x2_2byte</name><members>64802:15169</members><members>64812:15169</members></community><community><name>TE_PREPEND_AS15169_x2_4byte</name><members>origin:15169L:64802</members><members>origin:15169L:64812</members></community><community><name>TE_PREPEND_AS15169_x3_2byte</name><members>64803:15169</members><members>64812:15169</members></community><community><name>TE_PREPEND_AS15169_x3_4byte</name><members>origin:15169L:64803</members><members>origin:15169L:64812</members></community><community><name>TE_PREPEND_AS15169_x3_PREPEND_2byte</name><members>64803:15169</members></community><community><name>TE_PREPEND_AS15169_x3_PREPEND_4byte</name><members>origin:15169L:64803</members></community><community><name>TE_PREPEND_AS15169_x6_2byte</name><members>64806:15169</members><members>64812:15169</members></community><community><name>TE_PREPEND_AS15169_x6_4byte</name><members>origin:15169L:64806</members><members>origin:15169L:64812</members></community><community><name>TE_PREPEND_AS15169_x6_PREPEND_2byte</name><members>64806:15169</members></community><community><name>TE_PREPEND_AS15169_x6_PREPEND_4byte</name><members>origin:15169L:64806</members></community><community><name>TE_PREPEND_AS16004_MIX-IT_2byte</name><members>64895:16004</members></community><community><name>TE_PREPEND_AS16004_MIX-IT_4byte</name><members>origin:16004L:64895</members></community><community><name>TE_PREPEND_AS16004_x1_2byte</name><members>64801:16004</members><members>64812:16004</members></community><community><name>TE_PREPEND_AS16004_x1_4byte</name><members>origin:16004L:64801</members><members>origin:16004L:64812</members></community><community><name>TE_PREPEND_AS16004_x1_PREPEND_2byte</name><members>64801:16004</members></community><community><name>TE_PREPEND_AS16004_x1_PREPEND_4byte</name><members>origin:16004L:64801</members></community><community><name>TE_PREPEND_AS16004_x2_2byte</name><members>64802:16004</members><members>64812:16004</members></community><community><name>TE_PREPEND_AS16004_x2_4byte</name><members>origin:16004L:64802</members><members>origin:16004L:64812</members></community><community><name>TE_PREPEND_AS16004_x2_PREPEND_2byte</name><members>64802:16004</members></community><community><name>TE_PREPEND_AS16004_x2_PREPEND_4byte</name><members>origin:16004L:64802</members></community><community><name>TE_PREPEND_AS16004_x3_2byte</name><members>64803:16004</members><members>64812:16004</members></community><community><name>TE_PREPEND_AS16004_x3_4byte</name><members>origin:16004L:64803</members><members>origin:16004L:64812</members></community><community><name>TE_PREPEND_AS16004_x3_PREPEND_2byte</name><members>64803:16004</members></community><community><name>TE_PREPEND_AS16004_x3_PREPEND_4byte</name><members>origin:16004L:64803</members></community><community><name>TE_PREPEND_AS16004_x6_2byte</name><members>64806:16004</members><members>64812:16004</members></community><community><name>TE_PREPEND_AS16004_x6_4byte</name><members>origin:16004L:64806</members><members>origin:16004L:64812</members></community><community><name>TE_PREPEND_AS16004_x6_PREPEND_2byte</name><members>64806:16004</members></community><community><name>TE_PREPEND_AS16004_x6_PREPEND_4byte</name><members>origin:16004L:64806</members></community><community><name>TE_PREPEND_AS16276_x1_2byte</name><members>64801:16276</members><members>64812:16276</members></community><community><name>TE_PREPEND_AS16276_x1_4byte</name><members>origin:16276L:64801</members><members>origin:16276L:64812</members></community><community><name>TE_PREPEND_AS16276_x2_2byte</name><members>64802:16276</members><members>64812:16276</members></community><community><name>TE_PREPEND_AS16276_x2_4byte</name><members>origin:16276L:64802</members><members>origin:16276L:64812</members></community><community><name>TE_PREPEND_AS16276_x3_2byte</name><members>64803:16276</members><members>64812:16276</members></community><community><name>TE_PREPEND_AS16276_x3_4byte</name><members>origin:16276L:64803</members><members>origin:16276L:64812</members></community><community><name>TE_PREPEND_AS16276_x6_2byte</name><members>64806:16276</members><members>64812:16276</members></community><community><name>TE_PREPEND_AS16276_x6_4byte</name><members>origin:16276L:64806</members><members>origin:16276L:64812</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_AS19551_MIX-IT_x1_2byte</name><members>64801:19551</members><members>64895:19551</members></community><community><name>TE_PREPEND_AS19551_MIX-IT_x1_4byte</name><members>origin:19551L:64801</members><members>origin:19551L:64895</members></community><community><name>TE_PREPEND_AS19551_MIX-IT_x2_2byte</name><members>64802:19551</members><members>64895:19551</members></community><community><name>TE_PREPEND_AS19551_MIX-IT_x2_4byte</name><members>origin:19551L:64802</members><members>origin:19551L:64895</members></community><community><name>TE_PREPEND_AS19551_MIX-IT_x3_2byte</name><members>64803:19551</members><members>64895:19551</members></community><community><name>TE_PREPEND_AS19551_MIX-IT_x3_4byte</name><members>origin:19551L:64803</members><members>origin:19551L:64895</members></community><community><name>TE_PREPEND_AS19551_MIX-IT_x6_2byte</name><members>64806:19551</members><members>64895:19551</members></community><community><name>TE_PREPEND_AS19551_MIX-IT_x6_4byte</name><members>origin:19551L:64806</members><members>origin:19551L:64895</members></community><community><name>TE_PREPEND_AS19551_x1_2byte</name><members>64801:19551</members><members>64812:19551</members></community><community><name>TE_PREPEND_AS19551_x1_4byte</name><members>origin:19551L:64801</members><members>origin:19551L:64812</members></community><community><name>TE_PREPEND_AS19551_x2_2byte</name><members>64802:19551</members><members>64812:19551</members></community><community><name>TE_PREPEND_AS19551_x2_4byte</name><members>origin:19551L:64802</members><members>origin:19551L:64812</members></community><community><name>TE_PREPEND_AS19551_x3_2byte</name><members>64803:19551</members><members>64812:19551</members></community><community><name>TE_PREPEND_AS19551_x3_4byte</name><members>origin:19551L:64803</members><members>origin:19551L:64812</members></community><community><name>TE_PREPEND_AS19551_x6_2byte</name><members>64806:19551</members><members>64812:19551</members></community><community><name>TE_PREPEND_AS19551_x6_4byte</name><members>origin:19551L:64806</members><members>origin:19551L:64812</members></community><community><name>TE_PREPEND_AS19679_x1_2byte</name><members>64801:19679</members><members>64812:19679</members></community><community><name>TE_PREPEND_AS19679_x1_4byte</name><members>origin:19679L:64801</members><members>origin:19679L:64812</members></community><community><name>TE_PREPEND_AS19679_x2_2byte</name><members>64802:19679</members><members>64812:19679</members></community><community><name>TE_PREPEND_AS19679_x2_4byte</name><members>origin:19679L:64802</members><members>origin:19679L:64812</members></community><community><name>TE_PREPEND_AS19679_x3_2byte</name><members>64803:19679</members><members>64812:19679</members></community><community><name>TE_PREPEND_AS19679_x3_4byte</name><members>origin:19679L:64803</members><members>origin:19679L:64812</members></community><community><name>TE_PREPEND_AS19679_x6_2byte</name><members>64806:19679</members><members>64812:19679</members></community><community><name>TE_PREPEND_AS19679_x6_4byte</name><members>origin:19679L:64806</members><members>origin:19679L:64812</members></community><community><name>TE_PREPEND_AS199524_MIX-IT_x1_4byte</name><members>origin:199524L:64801</members><members>origin:199524L:64895</members></community><community><name>TE_PREPEND_AS199524_MIX-IT_x2_4byte</name><members>origin:199524L:64802</members><members>origin:199524L:64895</members></community><community><name>TE_PREPEND_AS199524_MIX-IT_x3_4byte</name><members>origin:199524L:64803</members><members>origin:199524L:64895</members></community><community><name>TE_PREPEND_AS199524_MIX-IT_x6_4byte</name><members>origin:199524L:64806</members><members>origin:199524L:64895</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_AS20940_x1_2byte</name><members>64801:20940</members><members>64812:20940</members></community><community><name>TE_PREPEND_AS20940_x1_4byte</name><members>origin:20940L:64801</members><members>origin:20940L:64812</members></community><community><name>TE_PREPEND_AS20940_x2_2byte</name><members>64802:20940</members><members>64812:20940</members></community><community><name>TE_PREPEND_AS20940_x2_4byte</name><members>origin:20940L:64802</members><members>origin:20940L:64812</members></community><community><name>TE_PREPEND_AS20940_x3_2byte</name><members>64803:20940</members><members>64812:20940</members></community><community><name>TE_PREPEND_AS20940_x3_4byte</name><members>origin:20940L:64803</members><members>origin:20940L:64812</members></community><community><name>TE_PREPEND_AS20940_x6_2byte</name><members>64806:20940</members><members>64812:20940</members></community><community><name>TE_PREPEND_AS20940_x6_4byte</name><members>origin:20940L:64806</members><members>origin:20940L:64812</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_AS24429_MIX-IT_x1_2byte</name><members>64801:24429</members><members>64895:24429</members></community><community><name>TE_PREPEND_AS24429_MIX-IT_x1_4byte</name><members>origin:24429L:64801</members><members>origin:24429L:64895</members></community><community><name>TE_PREPEND_AS24429_MIX-IT_x2_2byte</name><members>64802:24429</members><members>64895:24429</members></community><community><name>TE_PREPEND_AS24429_MIX-IT_x2_4byte</name><members>origin:24429L:64802</members><members>origin:24429L:64895</members></community><community><name>TE_PREPEND_AS24429_MIX-IT_x3_2byte</name><members>64803:24429</members><members>64895:24429</members></community><community><name>TE_PREPEND_AS24429_MIX-IT_x3_4byte</name><members>origin:24429L:64803</members><members>origin:24429L:64895</members></community><community><name>TE_PREPEND_AS24429_MIX-IT_x6_2byte</name><members>64806:24429</members><members>64895:24429</members></community><community><name>TE_PREPEND_AS24429_MIX-IT_x6_4byte</name><members>origin:24429L:64806</members><members>origin:24429L:64895</members></community><community><name>TE_PREPEND_AS24429_x1_2byte</name><members>64801:24429</members><members>64812:24429</members></community><community><name>TE_PREPEND_AS24429_x1_4byte</name><members>origin:24429L:64801</members><members>origin:24429L:64812</members></community><community><name>TE_PREPEND_AS24429_x2_2byte</name><members>64802:24429</members><members>64812:24429</members></community><community><name>TE_PREPEND_AS24429_x2_4byte</name><members>origin:24429L:64802</members><members>origin:24429L:64812</members></community><community><name>TE_PREPEND_AS24429_x3_2byte</name><members>64803:24429</members><members>64812:24429</members></community><community><name>TE_PREPEND_AS24429_x3_4byte</name><members>origin:24429L:64803</members><members>origin:24429L:64812</members></community><community><name>TE_PREPEND_AS24429_x6_2byte</name><members>64806:24429</members><members>64812:24429</members></community><community><name>TE_PREPEND_AS24429_x6_4byte</name><members>origin:24429L:64806</members><members>origin:24429L:64812</members></community><community><name>TE_PREPEND_AS2635_x1_2byte</name><members>64801:2635</members><members>64812:2635</members></community><community><name>TE_PREPEND_AS2635_x1_4byte</name><members>origin:2635L:64801</members><members>origin:2635L:64812</members></community><community><name>TE_PREPEND_AS2635_x2_2byte</name><members>64802:2635</members><members>64812:2635</members></community><community><name>TE_PREPEND_AS2635_x2_4byte</name><members>origin:2635L:64802</members><members>origin:2635L:64812</members></community><community><name>TE_PREPEND_AS2635_x3_2byte</name><members>64803:2635</members><members>64812:2635</members></community><community><name>TE_PREPEND_AS2635_x3_4byte</name><members>origin:2635L:64803</members><members>origin:2635L:64812</members></community><community><name>TE_PREPEND_AS2635_x6_2byte</name><members>64806:2635</members><members>64812:2635</members></community><community><name>TE_PREPEND_AS2635_x6_4byte</name><members>origin:2635L:64806</members><members>origin:2635L:64812</members></community><community><name>TE_PREPEND_AS26415_x1_2byte</name><members>64801:26415</members><members>64812:26415</members></community><community><name>TE_PREPEND_AS26415_x1_4byte</name><members>origin:26415L:64801</members><members>origin:26415L:64812</members></community><community><name>TE_PREPEND_AS26415_x2_2byte</name><members>64802:26415</members><members>64812:26415</members></community><community><name>TE_PREPEND_AS26415_x2_4byte</name><members>origin:26415L:64802</members><members>origin:26415L:64812</members></community><community><name>TE_PREPEND_AS26415_x3_2byte</name><members>64803:26415</members><members>64812:26415</members></community><community><name>TE_PREPEND_AS26415_x3_4byte</name><members>origin:26415L:64803</members><members>origin:26415L:64812</members></community><community><name>TE_PREPEND_AS26415_x6_2byte</name><members>64806:26415</members><members>64812:26415</members></community><community><name>TE_PREPEND_AS26415_x6_4byte</name><members>origin:26415L:64806</members><members>origin:26415L:64812</members></community><community><name>TE_PREPEND_AS2906_x1_2byte</name><members>64801:2906</members><members>64812:2906</members></community><community><name>TE_PREPEND_AS2906_x1_4byte</name><members>origin:2906L:64801</members><members>origin:2906L:64812</members></community><community><name>TE_PREPEND_AS2906_x2_2byte</name><members>64802:2906</members><members>64812:2906</members></community><community><name>TE_PREPEND_AS2906_x2_4byte</name><members>origin:2906L:64802</members><members>origin:2906L:64812</members></community><community><name>TE_PREPEND_AS2906_x3_2byte</name><members>64803:2906</members><members>64812:2906</members></community><community><name>TE_PREPEND_AS2906_x3_4byte</name><members>origin:2906L:64803</members><members>origin:2906L:64812</members></community><community><name>TE_PREPEND_AS2906_x6_2byte</name><members>64806:2906</members><members>64812:2906</members></community><community><name>TE_PREPEND_AS2906_x6_4byte</name><members>origin:2906L:64806</members><members>origin:2906L:64812</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_MIX-IT_x1_2byte</name><members>64801:3303</members><members>64895:3303</members></community><community><name>TE_PREPEND_AS3303_MIX-IT_x1_4byte</name><members>origin:3303L:64801</members><members>origin:3303L:64895</members></community><community><name>TE_PREPEND_AS3303_MIX-IT_x2_2byte</name><members>64802:3303</members><members>64895:3303</members></community><community><name>TE_PREPEND_AS3303_MIX-IT_x2_4byte</name><members>origin:3303L:64802</members><members>origin:3303L:64895</members></community><community><name>TE_PREPEND_AS3303_MIX-IT_x3_2byte</name><members>64803:3303</members><members>64895:3303</members></community><community><name>TE_PREPEND_AS3303_MIX-IT_x3_4byte</name><members>origin:3303L:64803</members><members>origin:3303L:64895</members></community><community><name>TE_PREPEND_AS3303_MIX-IT_x6_2byte</name><members>64806:3303</members><members>64895:3303</members></community><community><name>TE_PREPEND_AS3303_MIX-IT_x6_4byte</name><members>origin:3303L:64806</members><members>origin:3303L:64895</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_AS33438_MIX-IT_x1_2byte</name><members>64801:33438</members><members>64895:33438</members></community><community><name>TE_PREPEND_AS33438_MIX-IT_x1_4byte</name><members>origin:33438L:64801</members><members>origin:33438L:64895</members></community><community><name>TE_PREPEND_AS33438_MIX-IT_x2_2byte</name><members>64802:33438</members><members>64895:33438</members></community><community><name>TE_PREPEND_AS33438_MIX-IT_x2_4byte</name><members>origin:33438L:64802</members><members>origin:33438L:64895</members></community><community><name>TE_PREPEND_AS33438_MIX-IT_x3_2byte</name><members>64803:33438</members><members>64895:33438</members></community><community><name>TE_PREPEND_AS33438_MIX-IT_x3_4byte</name><members>origin:33438L:64803</members><members>origin:33438L:64895</members></community><community><name>TE_PREPEND_AS33438_MIX-IT_x6_2byte</name><members>64806:33438</members><members>64895:33438</members></community><community><name>TE_PREPEND_AS33438_MIX-IT_x6_4byte</name><members>origin:33438L:64806</members><members>origin:33438L:64895</members></community><community><name>TE_PREPEND_AS33438_x1_2byte</name><members>64801:33438</members><members>64812:33438</members></community><community><name>TE_PREPEND_AS33438_x1_4byte</name><members>origin:33438L:64801</members><members>origin:33438L:64812</members></community><community><name>TE_PREPEND_AS33438_x2_2byte</name><members>64802:33438</members><members>64812:33438</members></community><community><name>TE_PREPEND_AS33438_x2_4byte</name><members>origin:33438L:64802</members><members>origin:33438L:64812</members></community><community><name>TE_PREPEND_AS33438_x3_2byte</name><members>64803:33438</members><members>64812:33438</members></community><community><name>TE_PREPEND_AS33438_x3_4byte</name><members>origin:33438L:64803</members><members>origin:33438L:64812</members></community><community><name>TE_PREPEND_AS33438_x6_2byte</name><members>64806:33438</members><members>64812:33438</members></community><community><name>TE_PREPEND_AS33438_x6_4byte</name><members>origin:33438L:64806</members><members>origin:33438L:64812</members></community><community><name>TE_PREPEND_AS36351_x1_2byte</name><members>64801:36351</members><members>64812:36351</members></community><community><name>TE_PREPEND_AS36351_x1_4byte</name><members>origin:36351L:64801</members><members>origin:36351L:64812</members></community><community><name>TE_PREPEND_AS36351_x2_2byte</name><members>64802:36351</members><members>64812:36351</members></community><community><name>TE_PREPEND_AS36351_x2_4byte</name><members>origin:36351L:64802</members><members>origin:36351L:64812</members></community><community><name>TE_PREPEND_AS36351_x3_2byte</name><members>64803:36351</members><members>64812:36351</members></community><community><name>TE_PREPEND_AS36351_x3_4byte</name><members>origin:36351L:64803</members><members>origin:36351L:64812</members></community><community><name>TE_PREPEND_AS36351_x6_2byte</name><members>64806:36351</members><members>64812:36351</members></community><community><name>TE_PREPEND_AS36351_x6_4byte</name><members>origin:36351L:64806</members><members>origin:36351L:64812</members></community><community><name>TE_PREPEND_AS36692_x1_2byte</name><members>64801:36692</members><members>64812:36692</members></community><community><name>TE_PREPEND_AS36692_x1_4byte</name><members>origin:36692L:64801</members><members>origin:36692L:64812</members></community><community><name>TE_PREPEND_AS36692_x2_2byte</name><members>64802:36692</members><members>64812:36692</members></community><community><name>TE_PREPEND_AS36692_x2_4byte</name><members>origin:36692L:64802</members><members>origin:36692L:64812</members></community><community><name>TE_PREPEND_AS36692_x3_2byte</name><members>64803:36692</members><members>64812:36692</members></community><community><name>TE_PREPEND_AS36692_x3_4byte</name><members>origin:36692L:64803</members><members>origin:36692L:64812</members></community><community><name>TE_PREPEND_AS36692_x6_2byte</name><members>64806:36692</members><members>64812:36692</members></community><community><name>TE_PREPEND_AS36692_x6_4byte</name><members>origin:36692L:64806</members><members>origin:36692L:64812</members></community><community><name>TE_PREPEND_AS46489_MIX-IT_x1_2byte</name><members>64801:46489</members><members>64895:46489</members></community><community><name>TE_PREPEND_AS46489_MIX-IT_x1_4byte</name><members>origin:46489L:64801</members><members>origin:46489L:64895</members></community><community><name>TE_PREPEND_AS46489_MIX-IT_x2_2byte</name><members>64802:46489</members><members>64895:46489</members></community><community><name>TE_PREPEND_AS46489_MIX-IT_x2_4byte</name><members>origin:46489L:64802</members><members>origin:46489L:64895</members></community><community><name>TE_PREPEND_AS46489_MIX-IT_x3_2byte</name><members>64803:46489</members><members>64895:46489</members></community><community><name>TE_PREPEND_AS46489_MIX-IT_x3_4byte</name><members>origin:46489L:64803</members><members>origin:46489L:64895</members></community><community><name>TE_PREPEND_AS46489_MIX-IT_x6_2byte</name><members>64806:46489</members><members>64895:46489</members></community><community><name>TE_PREPEND_AS46489_MIX-IT_x6_4byte</name><members>origin:46489L:64806</members><members>origin:46489L:64895</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_AS5400_x1_2byte</name><members>64801:5400</members><members>64812:5400</members></community><community><name>TE_PREPEND_AS5400_x1_4byte</name><members>origin:5400L:64801</members><members>origin:5400L:64812</members></community><community><name>TE_PREPEND_AS5400_x2_2byte</name><members>64802:5400</members><members>64812:5400</members></community><community><name>TE_PREPEND_AS5400_x2_4byte</name><members>origin:5400L:64802</members><members>origin:5400L:64812</members></community><community><name>TE_PREPEND_AS5400_x3_2byte</name><members>64803:5400</members><members>64812:5400</members></community><community><name>TE_PREPEND_AS5400_x3_4byte</name><members>origin:5400L:64803</members><members>origin:5400L:64812</members></community><community><name>TE_PREPEND_AS5400_x6_2byte</name><members>64806:5400</members><members>64812:5400</members></community><community><name>TE_PREPEND_AS5400_x6_4byte</name><members>origin:5400L:64806</members><members>origin:5400L:64812</members></community><community><name>TE_PREPEND_AS54113_MIX-IT_x1_2byte</name><members>64801:54113</members><members>64895:54113</members></community><community><name>TE_PREPEND_AS54113_MIX-IT_x1_4byte</name><members>origin:54113L:64801</members><members>origin:54113L:64895</members></community><community><name>TE_PREPEND_AS54113_MIX-IT_x2_2byte</name><members>64802:54113</members><members>64895:54113</members></community><community><name>TE_PREPEND_AS54113_MIX-IT_x2_4byte</name><members>origin:54113L:64802</members><members>origin:54113L:64895</members></community><community><name>TE_PREPEND_AS54113_MIX-IT_x3_2byte</name><members>64803:54113</members><members>64895:54113</members></community><community><name>TE_PREPEND_AS54113_MIX-IT_x3_4byte</name><members>origin:54113L:64803</members><members>origin:54113L:64895</members></community><community><name>TE_PREPEND_AS54113_MIX-IT_x6_2byte</name><members>64806:54113</members><members>64895:54113</members></community><community><name>TE_PREPEND_AS54113_MIX-IT_x6_4byte</name><members>origin:54113L:64806</members><members>origin:54113L:64895</members></community><community><name>TE_PREPEND_AS54113_x1_2byte</name><members>64801:54113</members><members>64812:54113</members></community><community><name>TE_PREPEND_AS54113_x1_4byte</name><members>origin:54113L:64801</members><members>origin:54113L:64812</members></community><community><name>TE_PREPEND_AS54113_x2_2byte</name><members>64802:54113</members><members>64812:54113</members></community><community><name>TE_PREPEND_AS54113_x2_4byte</name><members>origin:54113L:64802</members><members>origin:54113L:64812</members></community><community><name>TE_PREPEND_AS54113_x3_2byte</name><members>64803:54113</members><members>64812:54113</members></community><community><name>TE_PREPEND_AS54113_x3_4byte</name><members>origin:54113L:64803</members><members>origin:54113L:64812</members></community><community><name>TE_PREPEND_AS54113_x6_2byte</name><members>64806:54113</members><members>64812:54113</members></community><community><name>TE_PREPEND_AS54113_x6_4byte</name><members>origin:54113L:64806</members><members>origin:54113L:64812</members></community><community><name>TE_PREPEND_AS57976_MIX-IT_x1_2byte</name><members>64801:57976</members><members>64895:57976</members></community><community><name>TE_PREPEND_AS57976_MIX-IT_x1_4byte</name><members>origin:57976L:64801</members><members>origin:57976L:64895</members></community><community><name>TE_PREPEND_AS57976_MIX-IT_x2_2byte</name><members>64802:57976</members><members>64895:57976</members></community><community><name>TE_PREPEND_AS57976_MIX-IT_x2_4byte</name><members>origin:57976L:64802</members><members>origin:57976L:64895</members></community><community><name>TE_PREPEND_AS57976_MIX-IT_x3_2byte</name><members>64803:57976</members><members>64895:57976</members></community><community><name>TE_PREPEND_AS57976_MIX-IT_x3_4byte</name><members>origin:57976L:64803</members><members>origin:57976L:64895</members></community><community><name>TE_PREPEND_AS57976_MIX-IT_x6_2byte</name><members>64806:57976</members><members>64895:57976</members></community><community><name>TE_PREPEND_AS57976_MIX-IT_x6_4byte</name><members>origin:57976L:64806</members><members>origin:57976L:64895</members></community><community><name>TE_PREPEND_AS57976_x1_2byte</name><members>64801:57976</members><members>64812:57976</members></community><community><name>TE_PREPEND_AS57976_x1_4byte</name><members>origin:57976L:64801</members><members>origin:57976L:64812</members></community><community><name>TE_PREPEND_AS57976_x2_2byte</name><members>64802:57976</members><members>64812:57976</members></community><community><name>TE_PREPEND_AS57976_x2_4byte</name><members>origin:57976L:64802</members><members>origin:57976L:64812</members></community><community><name>TE_PREPEND_AS57976_x3_2byte</name><members>64803:57976</members><members>64812:57976</members></community><community><name>TE_PREPEND_AS57976_x3_4byte</name><members>origin:57976L:64803</members><members>origin:57976L:64812</members></community><community><name>TE_PREPEND_AS57976_x6_2byte</name><members>64806:57976</members><members>64812:57976</members></community><community><name>TE_PREPEND_AS57976_x6_4byte</name><members>origin:57976L:64806</members><members>origin:57976L:64812</members></community><community><name>TE_PREPEND_AS63293_x1_2byte</name><members>64801:63293</members><members>64812:63293</members></community><community><name>TE_PREPEND_AS63293_x1_4byte</name><members>origin:63293L:64801</members><members>origin:63293L:64812</members></community><community><name>TE_PREPEND_AS63293_x2_2byte</name><members>64802:63293</members><members>64812:63293</members></community><community><name>TE_PREPEND_AS63293_x2_4byte</name><members>origin:63293L:64802</members><members>origin:63293L:64812</members></community><community><name>TE_PREPEND_AS63293_x3_2byte</name><members>64803:63293</members><members>64812:63293</members></community><community><name>TE_PREPEND_AS63293_x3_4byte</name><members>origin:63293L:64803</members><members>origin:63293L:64812</members></community><community><name>TE_PREPEND_AS63293_x6_2byte</name><members>64806:63293</members><members>64812:63293</members></community><community><name>TE_PREPEND_AS63293_x6_4byte</name><members>origin:63293L:64806</members><members>origin:63293L: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_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_PREPEND_AS8220_x1_2byte</name><members>64801:8220</members><members>64812:8220</members></community><community><name>TE_PREPEND_AS8220_x1_4byte</name><members>origin:8220L:64801</members><members>origin:8220L:64812</members></community><community><name>TE_PREPEND_AS8220_x2_2byte</name><members>64802:8220</members><members>64812:8220</members></community><community><name>TE_PREPEND_AS8220_x2_4byte</name><members>origin:8220L:64802</members><members>origin:8220L:64812</members></community><community><name>TE_PREPEND_AS8220_x3_2byte</name><members>64803:8220</members><members>64812:8220</members></community><community><name>TE_PREPEND_AS8220_x3_4byte</name><members>origin:8220L:64803</members><members>origin:8220L:64812</members></community><community><name>TE_PREPEND_AS8220_x6_2byte</name><members>64806:8220</members><members>64812:8220</members></community><community><name>TE_PREPEND_AS8220_x6_4byte</name><members>origin:8220L:64806</members><members>origin:8220L:64812</members></community><community><name>TE_PREPEND_AS8551_MIX-IT_x1_2byte</name><members>64801:8551</members><members>64895:8551</members></community><community><name>TE_PREPEND_AS8551_MIX-IT_x1_4byte</name><members>origin:8551L:64801</members><members>origin:8551L:64895</members></community><community><name>TE_PREPEND_AS8551_MIX-IT_x2_2byte</name><members>64802:8551</members><members>64895:8551</members></community><community><name>TE_PREPEND_AS8551_MIX-IT_x2_4byte</name><members>origin:8551L:64802</members><members>origin:8551L:64895</members></community><community><name>TE_PREPEND_AS8551_MIX-IT_x3_2byte</name><members>64803:8551</members><members>64895:8551</members></community><community><name>TE_PREPEND_AS8551_MIX-IT_x3_4byte</name><members>origin:8551L:64803</members><members>origin:8551L:64895</members></community><community><name>TE_PREPEND_AS8551_MIX-IT_x6_2byte</name><members>64806:8551</members><members>64895:8551</members></community><community><name>TE_PREPEND_AS8551_MIX-IT_x6_4byte</name><members>origin:8551L:64806</members><members>origin:8551L:64895</members></community><community><name>TE_PREPEND_AS8551_x1_2byte</name><members>64801:8551</members><members>64812:8551</members></community><community><name>TE_PREPEND_AS8551_x1_4byte</name><members>origin:8551L:64801</members><members>origin:8551L:64812</members></community><community><name>TE_PREPEND_AS8551_x2_2byte</name><members>64802:8551</members><members>64812:8551</members></community><community><name>TE_PREPEND_AS8551_x2_4byte</name><members>origin:8551L:64802</members><members>origin:8551L:64812</members></community><community><name>TE_PREPEND_AS8551_x3_2byte</name><members>64803:8551</members><members>64812:8551</members></community><community><name>TE_PREPEND_AS8551_x3_4byte</name><members>origin:8551L:64803</members><members>origin:8551L:64812</members></community><community><name>TE_PREPEND_AS8551_x6_2byte</name><members>64806:8551</members><members>64812:8551</members></community><community><name>TE_PREPEND_AS8551_x6_4byte</name><members>origin:8551L:64806</members><members>origin:8551L:64812</members></community><community><name>TE_PREPEND_AS8674_x1_2byte</name><members>64801:8674</members><members>64812:8674</members></community><community><name>TE_PREPEND_AS8674_x1_4byte</name><members>origin:8674L:64801</members><members>origin:8674L:64812</members></community><community><name>TE_PREPEND_AS8674_x2_2byte</name><members>64802:8674</members><members>64812:8674</members></community><community><name>TE_PREPEND_AS8674_x2_4byte</name><members>origin:8674L:64802</members><members>origin:8674L:64812</members></community><community><name>TE_PREPEND_AS8674_x3_2byte</name><members>64803:8674</members><members>64812:8674</members></community><community><name>TE_PREPEND_AS8674_x3_4byte</name><members>origin:8674L:64803</members><members>origin:8674L:64812</members></community><community><name>TE_PREPEND_AS8674_x6_2byte</name><members>64806:8674</members><members>64812:8674</members></community><community><name>TE_PREPEND_AS8674_x6_4byte</name><members>origin:8674L:64806</members><members>origin:8674L:64812</members></community><community><name>TE_PREPEND_AS9002_x1_2byte</name><members>64801:9002</members><members>64812:9002</members></community><community><name>TE_PREPEND_AS9002_x1_4byte</name><members>origin:9002L:64801</members><members>origin:9002L:64812</members></community><community><name>TE_PREPEND_AS9002_x2_2byte</name><members>64802:9002</members><members>64812:9002</members></community><community><name>TE_PREPEND_AS9002_x2_4byte</name><members>origin:9002L:64802</members><members>origin:9002L:64812</members></community><community><name>TE_PREPEND_AS9002_x3_2byte</name><members>64803:9002</members><members>64812:9002</members></community><community><name>TE_PREPEND_AS9002_x3_4byte</name><members>origin:9002L:64803</members><members>origin:9002L:64812</members></community><community><name>TE_PREPEND_AS9002_x6_2byte</name><members>64806:9002</members><members>64812:9002</members></community><community><name>TE_PREPEND_AS9002_x6_4byte</name><members>origin:9002L:64806</members><members>origin:9002L:64812</members></community><community><name>TE_PREPEND_AS9009_MIX-IT_x1_2byte</name><members>64801:9009</members><members>64895:9009</members></community><community><name>TE_PREPEND_AS9009_MIX-IT_x1_4byte</name><members>origin:9009L:64801</members><members>origin:9009L:64895</members></community><community><name>TE_PREPEND_AS9009_MIX-IT_x2_2byte</name><members>64802:9009</members><members>64895:9009</members></community><community><name>TE_PREPEND_AS9009_MIX-IT_x2_4byte</name><members>origin:9009L:64802</members><members>origin:9009L:64895</members></community><community><name>TE_PREPEND_AS9009_MIX-IT_x3_2byte</name><members>64803:9009</members><members>64895:9009</members></community><community><name>TE_PREPEND_AS9009_MIX-IT_x3_4byte</name><members>origin:9009L:64803</members><members>origin:9009L:64895</members></community><community><name>TE_PREPEND_AS9009_MIX-IT_x6_2byte</name><members>64806:9009</members><members>64895:9009</members></community><community><name>TE_PREPEND_AS9009_MIX-IT_x6_4byte</name><members>origin:9009L:64806</members><members>origin:9009L:64895</members></community><community><name>TE_PREPEND_AS9009_x1_2byte</name><members>64801:9009</members><members>64812:9009</members></community><community><name>TE_PREPEND_AS9009_x1_4byte</name><members>origin:9009L:64801</members><members>origin:9009L:64812</members></community><community><name>TE_PREPEND_AS9009_x2_2byte</name><members>64802:9009</members><members>64812:9009</members></community><community><name>TE_PREPEND_AS9009_x2_4byte</name><members>origin:9009L:64802</members><members>origin:9009L:64812</members></community><community><name>TE_PREPEND_AS9009_x3_2byte</name><members>64803:9009</members><members>64812:9009</members></community><community><name>TE_PREPEND_AS9009_x3_4byte</name><members>origin:9009L:64803</members><members>origin:9009L:64812</members></community><community><name>TE_PREPEND_AS9009_x6_2byte</name><members>64806:9009</members><members>64812:9009</members></community><community><name>TE_PREPEND_AS9009_x6_4byte</name><members>origin:9009L:64806</members><members>origin:9009L: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-FOD</name><members>20965:0009</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-private-peer-MIL2</name><members>21320:64733</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-RASH-block</name><members>64512:57961</members></community><community><name>geant-RTBH</name><members>20965:0008</members></community><community><name>geant-RTBH-IAS</name><members>64512:64512</members></community><community><name>geant-TWAREN</name><members>20965:7539</members></community><community><name>geant-aconet-block</name><members>64512:1853</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-arnes-block</name><members>64512:2107</members></community><community><name>geant-dfn-block</name><members>64512:680</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-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-eenet-block</name><members>64512:3221</members></community><community><name>geant-ernet</name><members>20965:2697</members></community><community><name>geant-ernet-block</name><members>20965:0170</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-euro6ix</name><members>20965:786</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-mil2</name><members>21320:64933</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>mgmt-vpn</name><members>target:20965:999</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>sdn-bod-vpn</name><members>target:20965:223</members></community><community><name>sdx-l2-vpn</name><members>target:20965:222</members></community><community><name>tein2-cernet</name><members>^4538:(4538|65155)$</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_MIX</name><path>^16004$</path></as-path><as-path><name>AS-SELF</name><path>.*(20965|21320).*</path></as-path><as-path><name>MIX_RS_ACCEPT</name><path>.*(12654|25152).*</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>urf-filter-catania-v4</name><apply-groups>urpf-template</apply-groups></filter><filter><name>GARR-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>CNAF-to-BNL-Test</name><from><source-address><name>131.154.130.8/29</name></source-address><destination-address><name>192.12.15.224/28</name></destination-address></from><then><count>CNAF-to-BNL</count><accept/></then></term><term><name>VLBI-IT-to-NL</name><from><source-address><name>193.204.89.195/32</name></source-address><destination-address><name>145.146.96.18/32</name></destination-address><destination-address><name>145.146.96.19/32</name></destination-address></from><then><count>vlbi-IT-to-NL</count><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.125.181/32</name></source-address><source-address><name>90.147.84.2/32</name></source-address><source-address><name>90.147.84.4/32</name></source-address><source-address><name>90.147.84.8/32</name></source-address><source-address><name>90.147.84.10/32</name></source-address><source-address><name>146.48.78.13/32</name></source-address><destination-address><name>62.40.125.180/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>193.206.129.251/32</name></source-address><source-address><name>62.40.125.181/32</name></source-address><destination-address><name>62.40.97.15/32</name></destination-address><destination-address><name>62.40.125.180/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>193.206.129.251/32</name></source-address><source-address><name>62.40.125.181/32</name></source-address><destination-address><name>62.40.97.15/32</name></destination-address><destination-address><name>62.40.125.180/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.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>193.204.114.233/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><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>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>193.206.132.188/32</name></source-address><destination-address><name>130.206.206.248/32</name></destination-address><destination-address><name>62.40.114.35/32</name></destination-address><destination-address><name>188.1.201.6/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></filter><filter><name>GARR-out</name><interface-specific/><term><name>UnsolicitedSNMP</name><from><destination-address><name>193.206.129.3/32</name></destination-address><destination-address><name>193.206.129.4/32</name></destination-address><protocol>udp</protocol><destination-port>snmp</destination-port></from><then><syslog/><next>term</next></then></term><term><name>VLBI-NL-to-IT</name><from><source-address><name>145.146.96.18/32</name></source-address><source-address><name>145.146.96.19/32</name></source-address><destination-address><name>193.204.89.195/32</name></destination-address></from><then><count>vlbi-NL-to-IT-out</count><accept/></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>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>UOM-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><name>62.40.125.241/32</name></source-address><destination-address><name>62.40.125.240/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.125.241/32</name></source-address><destination-address><name>62.40.125.240/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/><accept/></then></term><term><name>PIM-protect</name><from><source-address><name>62.40.125.241/32</name></source-address><destination-address><name>62.40.125.240/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.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-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>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>UOM-out</name><interface-specific/><term><name>UOM-rate-limit</name><then><next>term</next></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><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>urpf-filter-garr</name><apply-groups>urpf-template</apply-groups></filter><filter><name>urpf-filter-uom</name><apply-groups>urpf-template</apply-groups></filter><filter><name>LAN-in</name><term><name>VLAN30-in-debug</name><from><source-address><name>62.40.115.83/32</name></source-address></from><then><accept/></then></term><term><name>LAN-DWS-in</name><from><dscp>32</dscp></from><then><policer>pol-DWS-in</policer><count>dws-in</count><loss-priority>high</loss-priority><forwarding-class>best-effort</forwarding-class><accept/></then></term><term><name>LAN-LBE-in</name><from><dscp>8</dscp></from><then><count>lbe-in</count><accept/></then></term><term><name>block-snmp</name><from><address><name>62.40.109.193/32</name></address><port>snmp</port><port>snmptrap</port></from><then><discard>
-                            </discard></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>LAN-out</name><term><name>VLAN30-out-debug</name><from><destination-address><name>62.40.115.83/32</name></destination-address></from><then><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>vlan72-in</name><term><name>router-access</name><from><destination-address><name>62.40.114.0/24</name></destination-address></from><then><accept/></then></term><term><name>NOC-access</name><from><destination-prefix-list><name>geantncc-address-space</name></destination-prefix-list></from><then><accept/></then></term><term><name>external-equipment-access</name><from><destination-prefix-list><name>external-project</name></destination-prefix-list></from><then><accept/></then></term><term><name>UDP-traceroute</name><from><protocol>udp</protocol><port>33434-33690</port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>ICMP-accept</name><from><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>srv3london</name><from><destination-prefix-list><name>GEANT-DNS</name></destination-prefix-list></from><then><accept/></then></term><term><name>SMTP-accept</name><from><source-address><name>62.40.121.102/32</name></source-address><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>25</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>allow-amps-cnis</name><from><source-address><name>62.40.121.102/32</name></source-address><destination-address><name>62.40.122.226/32</name></destination-address><port>8002</port><port>8003</port></from><then><accept/></then></term><term><name>accept</name><then><accept/></then></term></filter><filter><name>vlan72-out</name><term><name>router-access</name><from><source-address><name>62.40.114.0/24</name></source-address></from><then><accept/></then></term><term><name>allow-DANTE</name><from><source-prefix-list><name>corporate-address-space</name></source-prefix-list></from><then><accept/></then></term><term><name>allow-NOC</name><from><source-prefix-list><name>geantncc-address-space</name></source-prefix-list></from><then><accept/></then></term><term><name>allow-22</name><from><port>22</port></from><then><accept/></then></term><term><name>allow-6060</name><from><port>6060</port></from><then><accept/></then></term><term><name>allow-8080</name><from><port>8080</port></from><then><accept/></then></term><term><name>allow-7070</name><from><port>7070</port></from><then><accept/></then></term><term><name>allow-tomcat</name><from><source-address><name>150.254.160.197/32</name></source-address><source-address><name>150.254.160.213/32</name></source-address><source-address><name>194.177.210.90/32</name></source-address><source-address><name>150.254.160.188/32</name></source-address><destination-address><name>62.40.121.102/32</name></destination-address><protocol>tcp</protocol><port>8443</port></from><then><accept/></then></term><term><name>UDP-traceroute</name><from><protocol>udp</protocol><port>33434-33690</port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>ICMP-accept</name><from><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>allow-5050</name><from><port>5050</port></from><then><accept/></then></term><term><name>allow-9090</name><from><port>9090</port></from><then><accept/></then></term><term><name>allow-80</name><from><protocol>tcp</protocol><port>80</port></from><then><accept/></then></term><term><name>srv3london</name><from><source-prefix-list><name>GEANT-DNS</name></source-prefix-list></from><then><accept/></then></term><term><name>allow-amps-cnis</name><from><source-address><name>62.40.122.226/32</name></source-address><destination-address><name>62.40.121.102/32</name></destination-address><port>8002</port><port>8003</port></from><then><accept/></then></term><term><name>Iron-Mountain-Access</name><from><source-address><name>193.239.113.128/25</name></source-address><source-address><name>193.30.234.0/24</name></source-address><source-address><name>208.66.139.142/32</name></source-address><source-address><name>208.66.139.165/32</name></source-address><destination-address><name>62.40.121.102/32</name></destination-address><protocol>tcp</protocol><source-port>443</source-port><source-port>2144</source-port><source-port>2145</source-port></from><then><accept/></then></term><term><name>SMTP-accept</name><from><source-address><name>62.40.123.146/32</name></source-address><source-address><name>62.40.104.134/31</name></source-address><destination-address><name>62.40.121.102/32</name></destination-address><protocol>tcp</protocol><port>25</port></from><then><accept/></then></term></filter><filter><name>laptop-out</name><term><name>laptop</name><from><destination-address><name>62.40.126.42/32</name></destination-address></from><then><accept/></then></term><term><name>default</name><then><discard>
-                            </discard></then></term></filter><filter><name>laptop-in</name><term><name>laptop</name><from><source-address><name>62.40.126.42/32</name></source-address></from><then><accept/></then></term><term><name>default</name><then><discard>
-                            </discard></then></term></filter><filter><name>ext_vlan80-in</name><term><name>DANTE-access</name><from><destination-prefix-list><name>corporate-address-space</name></destination-prefix-list></from><then><accept/></then></term><term><name>NOC-access</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><destination-port>domain</destination-port></from><then><accept/></then></term><term><name>UDP-traceroute</name><from><protocol>udp</protocol><port>33434-33690</port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>ICMP-accept</name><from><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>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>default</name><then><accept/></then></term></filter><filter><name>ext_vlan80-out</name><term><name>dante-access</name><from><source-prefix-list><name>corporate-address-space</name></source-prefix-list></from><then><accept/></then></term><term><name>NOC-access</name><from><source-prefix-list><name>geantncc-address-space</name></source-prefix-list></from><then><accept/></then></term><term><name>DNS-server-accept</name><from><source-prefix-list><name>GEANT-DNS</name></source-prefix-list><protocol>udp</protocol><protocol>tcp</protocol><port>domain</port></from><then><accept/></then></term><term><name>UDP-traceroute</name><from><protocol>udp</protocol><port>33434-33690</port></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>ICMP-accept</name><from><protocol>icmp</protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>External-project-interfaces</name><from><source-prefix-list><name>external-project-interfaces</name></source-prefix-list></from><then><discard>
-                            </discard></then></term><term><name>External-Projects</name><from><source-prefix-list><name>external-project</name></source-prefix-list></from><then><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>HADES-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>861</port><port>1024-65535</port></from><then><accept/></then></term><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>HADES-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><protocol>tcp</protocol><port>22</port><port>861</port><port>4823</port><port>8090</port><port>5000-5099</port><port>32768-61000</port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><protocol>udp</protocol><port>123</port><port>5000-5099</port><port>32768-61000</port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP_from_MPs</name><from><address><name>62.40.106.128/25</name></address><protocol>udp</protocol><port>65000-65060</port></from><then><accept/></then></term><term><name>SSH_Access</name><from><source-address><name>131.188.81.0/24</name></source-address><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>RTBH-count</name><term><name>count</name><then><count>RTBH-count</count></then></term></filter><filter><name>VM-RANGE-VL50-IN</name><term><name>INTERNAL-filter</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><discard>
-                            </discard></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>80</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>VM-RANGE-VL50-OUT</name><term><name>INTERNAL-filter</name><from><source-prefix-list><name>INTERNAL-address-space</name></source-prefix-list></from><then><discard>
-                            </discard></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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</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>VLAN-Access_Allow</name><from><port>80</port></from></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><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></filter><filter><name>VM-RANGE-VL200-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_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>80</port><port>53</port><port>1194</port><port>2114</port></from><then><accept/></then></term><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><log/><discard>
-                            </discard></then></term></filter><filter><name>VM-RANGE-VL200-OUT</name><term><name>EXTERNAL-filter</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><port>443</port><port>80</port><port>53</port><port>1194</port></from><then><accept/></then></term><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><log/><discard>
-                            </discard></then></term></filter><filter><name>VM-RANGE-VL150-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>160</port><port>161</port><port>162</port><port>443</port><port>8080</port></from><then><accept/></then></term><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>VM-RANGE-VL150-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><port>161</port><port>160</port><port>162</port><port>443</port><port>8080</port><port>22</port></from><then><accept/></then></term><term><name>GEANT-SRV-SSH_Access</name><from><source-address><name>192.38.90.48/32</name></source-address><source-address><name>130.225.75.121/32</name></source-address><source-address><name>129.187.12.121/32</name></source-address><source-address><name>129.187.251.3/32</name></source-address><source-address><name>193.63.211.0/24</name></source-address><source-address><name>193.63.90.0/24</name></source-address><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>VM-RANGE-VL160-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>80</port><port>443</port><port>8443</port><port>8140</port></from><then><accept/></then></term><term><name>GEANT-SRV_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>VM-RANGE-VL160-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><port>8140</port><port>8443</port><port>61614</port><port>8081</port><port>443</port><port>8080</port></from><then><accept/></then></term><term><name>GEANT-SRV-Access</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>VM-RANGE-VL161-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>80</port><port>443</port></from><then><accept/></then></term><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>tcp8000</name><from><source-address><name>62.40.106.224/29</name></source-address><destination-address><name>62.40.114.144/28</name></destination-address><protocol>tcp</protocol><port>8000</port></from><then><accept/></then></term><term><name>tcpTEMP-M-Haller-Dec-2016</name><from><port>8161</port><port>61613</port><port>61614</port><port>61616</port></from><then><accept/></then></term><term><name>temp-to-new-puppet</name><from><source-address><name>62.40.106.228/32</name></source-address><destination-address><name>83.97.92.60/32</name></destination-address><destination-address><name>83.97.92.62/32</name></destination-address><port>8000</port></from><then><accept/></then></term><term><name>default</name><then><discard>
-                            </discard></then></term></filter><filter><name>VM-RANGE-VL161-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-acces</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>VLAN-Access-Allow</name><from><port>443</port><port>80</port></from><then><accept/></then></term><term><name>GEANT-SRV-SSH_Access</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>VM-RANGE-VL163-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>80</port><port>443</port><port>2144</port><port>2145</port></from><then><accept/></then></term><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>VM-RANGE-VL163-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><port>443</port></from><then><accept/></then></term><term><name>GEANT-SRV-SSH_Access</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>VM-RANGE-VL100-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>3306</port><port>8140</port><port>10514</port></from><then><accept/></then></term><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>VM-RANGE-VL100-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>3306</port></from><then><accept/></then></term><term><name>GEANT-SRV-SSH_Access</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>VM-RANGE-VL140-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>80</port><port>443</port><port>5000</port><port>5001</port><port>33434-33690</port></from><then><accept/></then></term><term><name>GEANTNCC-SRV-SSH_Access</name><from><destination-prefix-list><name>geantncc-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>VM-RANGE-VL140-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></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>GEANTNCC-SRV-SSH_Access</name><from><source-prefix-list><name>geantncc-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>urpf-filter-mix-v4</name><apply-groups>urpf-template</apply-groups></filter><filter><name>MIX-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>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-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>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>217.29.66.200/32</name></source-address><source-address><name>217.29.66.166/32</name></source-address><source-address><name>217.29.66.112/32</name></source-address><source-address><name>217.29.66.61/32</name></source-address><source-address><name>217.29.66.143/32</name></source-address><source-address><name>217.29.66.153/32</name></source-address><source-address><name>217.29.67.16/32</name></source-address><source-address><name>217.29.66.125/32</name></source-address><source-address><name>217.29.66.67/32</name></source-address><source-address><name>217.29.66.167/32</name></source-address><source-address><name>217.29.66.131/32</name></source-address><source-address><name>217.29.66.156/32</name></source-address><source-address><name>217.29.66.47/32</name></source-address><source-address><name>217.29.66.68/32</name></source-address><source-address><name>217.29.67.57/32</name></source-address><source-address><name>217.29.66.57/32</name></source-address><source-address><name>217.29.66.254/32</name></source-address><source-address><name>217.29.66.253/32</name></source-address><source-address><name>217.29.66.119/32</name></source-address><source-address><name>217.29.66.1/32</name></source-address><source-address><name>217.29.66.116/32</name></source-address><source-address><name>217.29.66.212/32</name></source-address><source-address><name>217.29.66.20/32</name></source-address><source-address><name>217.29.67.10/32</name></source-address><source-address><name>217.29.66.186/32</name></source-address><source-address><name>217.29.66.187/32</name></source-address><source-address><name>217.29.67.20/32</name></source-address><source-address><name>217.29.66.6/32</name></source-address><source-address><name>217.29.67.28/32</name></source-address><source-address><name>217.29.67.29/32</name></source-address><source-address><name>217.29.67.41/32</name></source-address><source-address><name>217.29.67.56/32</name></source-address><source-address><name>217.29.67.55/32</name></source-address><source-address><name>217.29.67.17/32</name></source-address><source-address><name>217.29.67.18/32</name></source-address><source-address><name>217.29.67.33/32</name></source-address><source-address><name>217.29.66.232/32</name></source-address><source-address><name>217.29.67.77/32</name></source-address><source-address><name>217.29.67.78/32</name></source-address><source-address><name>217.29.66.17/32</name></source-address><source-address><name>217.29.67.102/32</name></source-address><source-address><name>217.29.66.201/32</name></source-address><source-address><name>217.29.67.88/32</name></source-address><source-address><name>217.29.66.74/32</name></source-address><source-address><name>217.29.67.64/32</name></source-address><source-address><name>217.29.66.217/32</name></source-address><source-address><name>217.29.67.122/32</name></source-address><source-address><name>217.29.67.139/32</name></source-address><destination-address><name>217.29.66.183/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>217.29.66.183/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><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><then><accept/></then></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>Juniper-dev-access</name><from><source-prefix-list><name>Juniper-vpn</name></source-prefix-list><destination-prefix-list><name>LAB-Junos-Space</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><destination-prefix-list><name>qfx-vme-interfaces</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>XANTARO-SUPERPOP</name><from><source-prefix-list><name>XANTARO_PS</name></source-prefix-list><destination-prefix-list><name>R730XD_DRAC</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>MIX-out</name><term><name>DWS-out</name><from><dscp>32</dscp></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>VL79_MIDDLE_IN</name><term><name>VLAN-Access_Allow</name><from><port>80</port><port>443</port><port>22</port></from><then><accept/></then></term><term><name>VPN-accept</name><from><destination-prefix-list><name>GEANT-VPN</name></destination-prefix-list></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>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>VL022_MIDDLE_IN</name><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_UDP</name><from><protocol>udp</protocol><destination-port>3000-65535</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>VL022_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>VL260_MIDDLE_IN</name><term><name>Netflow_Allow</name><from><protocol>udp</protocol><port>9995</port></from><then><accept/></then></term><term><name>VLAN_Access_Allow</name><from><port>80</port><port>443</port><port>22</port><port>8140</port></from><then><accept/></then></term></filter><filter><name>VL260_MIDDLE_OUT</name><term><name>Netflow_Allow</name><from><protocol>udp</protocol><port>9995</port></from><then><accept/></then></term><term><name>VLAN_Access_Allow</name><from><port>22</port><port>443</port><port>80</port><port>5693</port><port>8888</port></from><then><accept/></then></term></filter><filter><name>VL79_MIDDLE_OUT</name><term><name>VPN-accept</name><from><source-prefix-list><name>GEANT-VPN</name></source-prefix-list></from><then><accept/></then></term></filter><filter><name>Google-in</name><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>BOGON-filter</name><from><source-prefix-list><name>bogons-list</name></source-prefix-list></from><then><count>bogon-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-source-filtering</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>72.14.203.32/32</name></source-address><destination-address><name>72.14.203.33/32</name></destination-address><protocol>tcp</protocol><port>bgp</port></from><then><count>bgp-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>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>WEB-server-accept</name><from><destination-address><name>62.40.120.123/32</name></destination-address><destination-address><name>62.40.123.11/32</name></destination-address><destination-address><name>62.40.122.147/32</name></destination-address><protocol>tcp</protocol><port>http</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>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>GOOGLE-MAIL</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>External-Projects</name><from><destination-prefix-list><name>external-project</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>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>Google-out</name><term><name>DWS-out</name><from><dscp>32</dscp></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>default</name><then><accept/></then></term></filter><filter><name>urpf-filter-google-v4</name><apply-groups>urpf-template</apply-groups></filter><filter><name>nren_IAS_GARR_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>GARR_blocking_service</name><from><destination-prefix-list><name>GARR-blocking-list</name></destination-prefix-list></from><then><count>GARR-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.222/32</name></source-address><source-address><name>146.48.78.13/32</name></source-address><destination-address><name>83.97.88.221/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.222/32</name></source-address><destination-address><name>83.97.88.221/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.222/32</name></source-address><destination-address><name>83.97.88.221/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.222/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>TS1_MIL_TO_RANCID</name><from><source-address><name>217.29.76.21/32</name></source-address><destination-address><name>83.97.92.0/22</name></destination-address></from><then><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_GARR_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_UOM_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>UOM_blocking_service</name><from><destination-prefix-list><name>UOM-blocking-list</name></destination-prefix-list></from><then><count>UOM-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.89.29/32</name></source-address><destination-address><name>83.97.89.28/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.89.29/32</name></source-address><destination-address><name>83.97.89.28/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.89.29/32</name></source-address><destination-address><name>83.97.89.28/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.89.29/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_UOM_OUT</name><interface-specific/><term><name>DWS_out</name><from><dscp>32</dscp></from><then><policer>pol-UOM-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>VL07_MIDDLE_IN</name><term><name>VLAN-Access_Allow_UDP</name><from><destination-prefix-list><name>geant-address-space</name></destination-prefix-list><destination-prefix-list><name>corporate-address-space</name></destination-prefix-list><destination-prefix-list><name>GEANT_TS</name></destination-prefix-list><destination-prefix-list><name>GEANT_NTP</name></destination-prefix-list><destination-prefix-list><name>superpop-address-space</name></destination-prefix-list><protocol>udp</protocol><port>123</port></from><then><forwarding-class>expedited-forwarding</forwarding-class><accept/></then></term><term><name>VLAN-Access_Allow_UDP_External</name><from><destination-prefix-list><name>GEANT_NTP_APPLIANCES_USERS</name></destination-prefix-list><protocol>udp</protocol><port>123</port></from><then><policer>GEANT_NTP_APPLIANCES_POLICER</policer><forwarding-class>expedited-forwarding</forwarding-class><accept/></then></term><term><name>VLAN-Access_Allow_UDP_Syslog</name><from><destination-address><name>83.97.94.11/32</name></destination-address></from><then><accept/></then></term></filter><filter><name>VL07_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_UDP</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><source-prefix-list><name>corporate-address-space</name></source-prefix-list><source-prefix-list><name>GEANT_TS</name></source-prefix-list><source-prefix-list><name>GEANT_NTP</name></source-prefix-list><source-prefix-list><name>GEANT_SUPERPOP_ESXI</name></source-prefix-list><source-prefix-list><name>GEANT_SUPERPOP_DRAC</name></source-prefix-list><source-prefix-list><name>superpop-address-space</name></source-prefix-list><protocol>udp</protocol><port>123</port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_TCP</name><from><source-prefix-list><name>geant-address-space</name></source-prefix-list><source-prefix-list><name>corporate-address-space</name></source-prefix-list><protocol>tcp</protocol><destination-port>22</destination-port><destination-port>443</destination-port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP_External</name><from><source-prefix-list><name>GEANT_NTP_APPLIANCES_USERS</name></source-prefix-list><protocol>udp</protocol><port>123</port></from><then><policer>GEANT_NTP_APPLIANCES_POLICER</policer><accept/></then></term></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></filter><filter><name>VL023_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><port>443</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>5672</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><destination-port>5672</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>VL270_MIDDLE_IN</name><term><name>Consul-Access-TT2017040334000768</name><from><protocol>tcp</protocol><port>8300-8302</port><port>8400</port><port>8500</port><port>8600</port></from><then><accept/></then></term><term><name>Consul-Access2-TT2017040334000768</name><from><protocol>udp</protocol><port>8301</port><port>8302</port><port>8600</port></from><then><accept/></then></term><term><name>VLAN_Access_Allow</name><from><protocol>tcp</protocol><port>80</port><port>443</port><port>8443</port><port>8140</port><port>8000</port><port>4505</port><port>4506</port></from><then><accept/></then></term></filter><filter><name>VL270_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><protocol>tcp</protocol><port>443</port><port>4505</port><port>4506</port><port>8081</port><port>8140</port><port>8443</port><port>61614</port><port>8000</port></from><then><accept/></then></term><term><name>tcp8000</name><from><source-address><name>62.40.106.224/29</name></source-address><source-address><name>62.40.114.216/32</name></source-address><destination-address><name>62.40.114.144/28</name></destination-address><protocol>tcp</protocol><port>8000</port></from><then><accept/></then></term><term><name>Consul-Access-TT2017040334000768</name><from><protocol>tcp</protocol><port>8300-8302</port><port>8400</port><port>8500</port><port>8600</port></from><then><accept/></then></term><term><name>Consul-Access2-TT2017040334000768</name><from><protocol>udp</protocol><port>8301</port><port>8302</port><port>8600</port></from><then><accept/></then></term></filter><filter><name>nren_CLS_GARR_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.15/32</name></source-address><destination-address><name>62.40.100.14/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>62.40.100.15/32</name></source-address><destination-address><name>62.40.100.14/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>62.40.100.15/32</name></source-address><destination-address><name>62.40.100.14/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>62.40.100.15/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_GARR_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>GE0-2-1_MIDDLE_IN</name><term inactive="inactive"><name>VLAN_Access_Allow</name><then><accept/></then></term><term><name>SNMP_TRAPS</name><from><destination-address><name>62.40.123.180/32</name></destination-address><destination-address><name>83.97.92.87/32</name></destination-address><protocol>udp</protocol><destination-port>162</destination-port></from><then><accept/></then></term><term><name>SNMP_Allow</name><from><destination-address><name>62.40.123.180/32</name></destination-address><destination-address><name>83.97.92.87/32</name></destination-address></from></term></filter><filter><name>GE0-2-1_MIDDLE_OUT</name><term inactive="inactive"><name>VLAN_Access_Allow</name><from><port>22</port></from><then><accept/></then></term><term><name>GTS_allow</name><from><source-address><name>62.40.104.180/32</name></source-address><source-address><name>62.40.104.181/32</name></source-address><source-prefix-list><name>JRA2_MICHAL_ACCESS_SRCIPS</name></source-prefix-list></from><then><accept/></then></term><term><name>SNMP_Allow</name><from><source-address><name>62.40.123.180/32</name></source-address><source-address><name>83.97.92.87/32</name></source-address></from></term><term><name>JRA1_ACCESS</name><from><prefix-list><name>JRA1_SDN_CORSA_ACCESS</name></prefix-list><destination-port>22</destination-port></from><then><accept/></then></term></filter><filter><name>VM-RANGE-VL162-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>BLOCK_SMTP_TOWARD_OTRS</name><from><source-address><name>62.40.106.235/32</name></source-address><source-address><name>62.40.106.234/32</name></source-address><destination-port>smtp</destination-port></from><then><discard>
-                            </discard></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><term><name>VLAN-Access_Allow</name><from><port>43</port><port>80</port><port>161</port><port>162</port><port>861</port><port>4823</port><port>5000-6200</port><port>8760-8960</port><port>443</port></from><then><accept/></then></term><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>GEANT-SRV-SSH_Access_NETEAM-SERVER</name><from><destination-address><name>62.40.111.254/32</name></destination-address><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>VM-RANGE-VL162-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><port>25</port><port>80</port><port>161</port><port>162</port><port>861</port><port>4823</port><port>5000-6200</port><port>8760-8960</port><port>443</port></from><then><accept/></then></term><term><name>GEANT-SRV-SSH_Access</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>GEANT-SRV-SSH_Access_NETEAM-SERVER</name><from><source-address><name>62.40.111.254/32</name></source-address><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>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>fod</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>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>nren_IAS_RASH_OUT</name><interface-specific/><term><name>DWS_out</name><from><dscp>32</dscp></from><then><policer>pol-RASH-DWS-out</policer><count>DWS-out</count><next>term</next></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>RASH-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>bfd-allow</name><from><source-address><name>62.40.125.174/32</name></source-address><destination-address><name>62.40.125.173/32</name></destination-address><port>3784</port><port>3785</port></from><then><accept/></then></term><term><name>BGP-protect</name><from><source-address><name>62.40.125.174/32</name></source-address><destination-address><name>62.40.125.173/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>192.114.99.52/32</name></source-address><destination-address><name>62.40.125.173/32</name></destination-address><destination-address><name>62.40.125.1/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/><accept/></then></term><term><name>PIM-protect</name><from><source-address><name>62.40.125.174/32</name></source-address><destination-address><name>62.40.125.173/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><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>128.139.6.20/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><protocol>udp</protocol><port>161</port></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>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>RASH-out</name><interface-specific/><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>nren_IAS_RASH_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>83.97.88.185/32</name></source-address><destination-address><name>83.97.88.184/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.185/32</name></source-address><destination-address><name>83.97.88.184/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.185/32</name></source-address><destination-address><name>83.97.88.184/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.185/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>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>ACONE-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><name>62.40.124.134/32</name></source-address><source-address><name>62.40.125.70/32</name></source-address><source-address><name>193.171.23.251/32</name></source-address><destination-address><name>62.40.124.133/32</name></destination-address><destination-address><name>62.40.125.69/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>193.171.23.251/32</name></source-address><source-address><name>193.171.23.238/32</name></source-address><source-address><name>193.171.23.239/32</name></source-address><destination-address><name>62.40.125.69/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.134/32</name></source-address><source-address><name>62.40.125.70/32</name></source-address><source-address><name>193.171.23.251/32</name></source-address><destination-address><name>62.40.124.133/32</name></destination-address><destination-address><name>62.40.125.69/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.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>131.130.1.11/32</name></source-address><protocol>udp</protocol><port>123</port></from><then><count>ntp-accept</count><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-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>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>ACONE-out</name><interface-specific/><term><name>rl-DWS-out</name><from><dscp>32</dscp></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>default</name><then><accept/></then></term></filter><filter><name>nren_CLS_ACONET_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.53/32</name></source-address><destination-address><name>62.40.100.52/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.53/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_ACONET_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_ACONET_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>ACONET_blocking_service</name><from><destination-prefix-list><name>ACONET-blocking-list</name></destination-prefix-list></from><then><count>ACONET-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.89.217/32</name></source-address><destination-address><name>83.97.89.216/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.89.217/32</name></source-address><destination-address><name>83.97.89.216/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.89.217/32</name></source-address><destination-address><name>83.97.89.216/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.89.217/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_ACONET_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>test</name><term><name>count-icmp</name><from><source-address><name>10.10.20.2/32</name></source-address><protocol>icmp</protocol></from><then><count>arnes-icmp</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>ARNES-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>bfd</name><from><source-address><name>62.40.124.207/32</name></source-address><destination-address><name>62.40.124.206/32</name></destination-address><protocol>udp</protocol><port>3784</port><port>4784</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.207/32</name></source-address><destination-address><name>62.40.124.206/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.207/32</name></source-address><source-address><name>88.200.0.168/32</name></source-address><destination-address><name>62.40.124.206/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.207/32</name></source-address><destination-address><name>62.40.124.206/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.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-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>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>ARNES-out</name><interface-specific/><term><name>BFD</name><from><source-address><name>62.40.124.206/32</name></source-address><destination-address><name>62.40.124.207/32</name></destination-address><protocol>udp</protocol><port>3784</port></from><then><accept/></then></term><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>nren_IAS_ARNES_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>ARNES_blocking_service</name><from><destination-prefix-list><name>ARNES-blocking-list</name></destination-prefix-list></from><then><count>ARNES-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.89.219/32</name></source-address><destination-address><name>83.97.89.218/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.89.219/32</name></source-address><destination-address><name>83.97.89.218/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.89.219/32</name></source-address><destination-address><name>83.97.89.218/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.89.219/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_ARNES_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>vc4_access_OUT</name><term><name>EXTERNAL_vc4_filter</name><from><prefix-list><name>GEANT-Superpop-v4</name></prefix-list></from><then><accept/></then></term></filter><filter><name>vc4_access_IN</name><term><name>EXTERNAL_vc4_filter</name><from><destination-prefix-list><name>GEANT-Superpop-v4</name></destination-prefix-list></from><then><accept/></then></term></filter></inet><inet6><filter><name>router-access-ipv6</name><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><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><term><name>nren-access-ssh</name><from><source-prefix-list><name>restena-access-v6</name></source-prefix-list></from></term></filter><filter><name>urf-filter-catania-v6</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>GARR6-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>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>BGP6-protect</name><from><source-address><name>2001:798:1e:10aa::a/128</name></source-address><source-address><name>2a00:1620:c0:4e:146:48:78:13/128</name></source-address><destination-address><name>2001:798:1e:10aa::9/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:1e:20ff::3/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>GARR6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>UOM6-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: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:798:99:1::d2/126</name></source-address><destination-address><name>2001:798:99:1::d1/126</name></destination-address></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:1e:20ff::3/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>UDP-traceroute6</name><from><destination-prefix-list><name>geant-address-space-V6</name></destination-prefix-list><payload-protocol>udp</payload-protocol><destination-port>33434</destination-port><destination-port>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>UOM6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>urpfv6-GARR</name><apply-groups>urpf-template</apply-groups></filter><filter><name>urpfv6-filter-UOM</name><apply-groups>urpf-template</apply-groups></filter><filter><name>urpfv6-filter-MALTA</name><apply-groups>urpf-template</apply-groups></filter><filter><name>LHCONE6-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>count-ipv6</name><then><count>ipv6-counter</count><next>term</next></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>VM-RANGE-VL050-V6-IN</name><term><name>INTERNAL-filter</name><from><destination-prefix-list><name>INTERNAL-address-spaceV6</name></destination-prefix-list></from><then><discard/></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><term><name>VLAN-Access_Allow</name><from><port>80</port></from><then><accept/></then></term><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>VM-RANGE-VL050-V6-OUT</name><term><name>INTERNAL-filter</name><from><source-prefix-list><name>INTERNAL-address-spaceV6</name></source-prefix-list></from><then><discard/></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>VLAN-Access_Allow</name><from><port>80</port></from><then><accept/></then></term><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>VM-RANGE-VL200-V6-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_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><term><name>VLAN-Access_Allow</name><from><port>443</port><port>53</port><port>80</port><port>1194</port><port>2114</port></from><then><accept/></then></term><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><log/><discard/></then></term></filter><filter><name>VM-RANGE-VL200-V6-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_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-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>VLAN-Access_Allow</name><from><port>443</port><port>53</port><port>80</port><port>1194</port><port>2114</port></from><then><accept/></then></term><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><log/><discard/></then></term></filter><filter><name>VM-RANGE-VL100-V6-IN</name><term><name>PROTECTED</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><term><name>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>3306</port><port>8140</port><port>10514</port></from></term><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>VM-RANGE-VL100-V6-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>VLAN-Access_Allow</name><from><port>80</port><port>443</port><port>3306</port></from><then><accept/></then></term><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>urpf-filter-mix-v6</name><apply-groups>urpf-template</apply-groups></filter><filter><name>MIX6-out</name><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>MIX6-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:4::2ca:1/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d2:940:166/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:8075:112/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d2:2822:61/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d2:2822:143/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:5133:153/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:6939:125/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:6276:67/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:3335:167/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d3:2934:131/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d3:2934:156/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d3:6351:47/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:8220:68/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:8674:357/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:8674:57/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:6004:1/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:6004:254/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:6004:253/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:5400:119/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:9002:116/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:8075:212/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d2:6415:20/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:9679:10/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:2906:186/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:2906:187/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:2635:20/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:2654:6/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:310:28/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:310:29/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d3:6692:41/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:3030:56/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a519:9524:55/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d4:6489:17/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d4:6489:18/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d3:3438:33/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d5:4104:232/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d5:4113:77/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d5:4113:78/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:3303:17/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:8551:102/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:9551:201/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:6509:16/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d1:6509:74/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d0:9009:64/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a5d5:7976:217/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a513:6907:122/128</name></source-address><source-address><name>2001:7f8:b:100:1d1:a513:6907:139/128</name></source-address><destination-address><name>2001:7f8:b:100:1d1:a5d2:965:183/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><destination-address><name>2001:798:28:20ff::1/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:b:100:1d1:a5d2:965:183/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><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 inactive="inactive"><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>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><destination-port>5001-5900</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>VL022_V6_MIDDLE_IN</name><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><term><name>VLAN-Access_Allow_UDP</name><from><payload-protocol>udp</payload-protocol><destination-port>3000-65535</destination-port></from><then><accept/></then></term></filter><filter><name>VL022_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>VL260_V6_MIDDLE_IN</name><term><name>VLAN_Access_Allow</name><from><payload-protocol>tcp</payload-protocol><port>80</port><port>443</port><port>22</port><port>8140</port></from><then><accept/></then></term></filter><filter><name>VL260_V6_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><payload-protocol>tcp</payload-protocol><port>80</port><port>443</port><port>22</port><port>5693</port></from><then><accept/></then></term></filter><filter><name>GoogleV6-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>ICMPv6-check</name><from><icmp-type>packet-too-big</icmp-type></from><then><count>ICMPv6-PTB</count><next>term</next></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>BGP6-protect</name><from><source-address><name>2001:4860:1:1:0:51e5:0:1/128</name></source-address><destination-address><name>2001:4860:1:1:0:51e5:0:2/128</name></destination-address><port>bgp</port></from><then><count>bgpv6-accept</count><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><destination-address><name>2001:798:28:50::11/64</name></destination-address><destination-address><name>2001:798:14:96::3/128</name></destination-address><destination-address><name>2001:798:ff10:a5::2/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>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><term><name>default</name><then><accept/></then></term></filter><filter><name>GoogleV6-out</name><term inactive="inactive"><name>ICMPV6-Block</name><from><icmp-type>echo-request</icmp-type></from><then><count>ICMPV6-Ping-Google</count><discard/></then></term><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>urpf-filter-google-v6</name><apply-groups>urpf-template</apply-groups></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_GARR_V6_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>GARR_blocking_service</name><from><destination-prefix-list><name>GARR6-blocking-list</name></destination-prefix-list></from><then><count>GARR-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::52/128</name></source-address><source-address><name>2a00:1620:c0:4e:146:48:78:13/128</name></source-address><destination-address><name>2001:798:1::51/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::52/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_GARR_V6_OUT</name><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_IAS_UOM_V6_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>UOM_blocking_service</name><from><destination-prefix-list><name>UOM6-blocking-list</name></destination-prefix-list></from><then><count>UOM-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::1b6/128</name></source-address><destination-address><name>2001:798:1::1b5/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::1b6/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_UOM_V6_OUT</name><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>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></filter><filter><name>VL023_V6_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><port>443</port></from><then><accept/></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>5672</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><destination-port>5672</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>VL270_V6_MIDDLE_IN</name><term><name>VLAN_Access_Allow</name><from><next-header>tcp</next-header><port>80</port><port>443</port><port>8443</port><port>8140</port><port>8300-8302</port><port>8400</port><port>8500</port><port>8600</port></from><then><accept/></then></term><term><name>VLAN_Access_Allow_UDP</name><from><next-header>udp</next-header><port>8301-8302</port><port>8600</port></from><then><accept/></then></term></filter><filter><name>VL270_V6_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><next-header>tcp</next-header><port>8140</port><port>8443</port><port>61614</port><port>8081</port><port>443</port><port>8300-8302</port><port>8400</port><port>8500</port><port>8600</port><port>8000</port></from><then><accept/></then></term><term><name>VLAN_Access_Allow_UDP</name><from><next-header>udp</next-header><port>8301-8302</port><port>8600</port></from><then><accept/></then></term></filter><filter><name>nren_CLS_GARR_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::1a/128</name></source-address><destination-address><name>2001:798::19/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::1a/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_GARR_V6_OUT</name><term><name>default</name><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>Established_accept</name><from><next-header>tcp</next-header><tcp-established/></from><then><accept/></then></term><term><name>GEANT_DC_INFRASTRUCTURE_accept</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_TAIL_IN</name><term><name>GEANT_SSH_accept</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>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>Established_accept</name><from><next-header>tcp</next-header><tcp-established/></from><then><accept/></then></term><term><name>GOC_GEANT_accept</name><from><source-prefix-list><name>corporate-address-space6</name></source-prefix-list></from><then><accept/></then></term><term><name>GEANT_DC_INFRASTRUCTURE_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></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_OUT</name><term><name>GEANT_SRV_SSH_accept</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>VM-RANGE-VL162-V6-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><next-header>tcp</next-header><tcp-established/></from><then><accept/></then></term><term><name>BLOCK_SMTP_TOWARD_OTRS</name><from><source-address><name>2001:798:15:a2::3/128</name></source-address><source-address><name>2001:798:15:a2::2/128</name></source-address><destination-port>smtp</destination-port></from><then><discard/></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><term><name>VLAN-Access_Allow</name><from><port>43</port><port>80</port><port>161</port><port>162</port><port>443</port><port>861</port><port>4823</port><port>5000-6200</port><port>8760-8960</port></from><then><accept/></then></term><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>GEANT-SRV-SSH_Access_NETEAM-SERVER</name><from><destination-address><name>2001:799:7::fe/128</name></destination-address><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>VM-RANGE-VL162-V6-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><next-header>tcp</next-header><tcp-established/></from><then><accept/></then></term><comment>/* DO NOT ACTIVATE until prefix-lists are populated */</comment><term inactive="inactive"><name>NOC-DANTE-access</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><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>VLAN-Access_Allow</name><from><port>43</port><port>80</port><port>161</port><port>162</port><port>443</port><port>861</port><port>4823</port><port>5000-6200</port><port>8760-8960</port></from><then><accept/></then></term><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>GEANT-SRV-SSH_Access_NETEAM-SERVER</name><from><source-address><name>2001:799:7::fe/128</name></source-address><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>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>VL161_V6_MIDDLE_IN</name><term><name>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port></from><then><accept/></then></term></filter><filter><name>VL161_V6_MIDDLE_OUT</name><term><name>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port></from><then><accept/></then></term></filter><filter><name>LHCONE6-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>ACONE6-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: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:798:1e:10aa::e/126</name></source-address><source-address><name>2001:0798:001e:10aa::1a/128</name></source-address><destination-address><name>2001:798:1e:10aa::d/126</name></destination-address><destination-address><name>2001:0798:001e:10aa::19/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><syslog/><discard/></then></term><term><name>NREN-router-accept</name><from><destination-address><name>2001:798:1e:20ff::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><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>ACONE6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>nren_CLS_ACONET_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::66/128</name></source-address><destination-address><name>2001:798::65/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::66/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_ACONET_V6_OUT</name><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_IAS_ACONET_V6_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>ACONET_blocking_service</name><from><destination-prefix-list><name>ACONET6-blocking-list</name></destination-prefix-list></from><then><count>ACONET-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::1ae/128</name></source-address><destination-address><name>2001:798:1::1ad/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::1ae/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_ACONET_V6_OUT</name><term><name>default</name><then><accept/></then></term></filter><filter><name>ARNES6-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>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>bfd</name><from><source-address><name>2001:798:99:1::be/128</name></source-address><destination-address><name>2001:798:99:1::bd/128</name></destination-address><payload-protocol>udp</payload-protocol><port>3784</port><port>4784</port></from><then><accept/></then></term><term><name>BGP6-protect</name><from><source-address><name>2001:798:10:10aa::6/126</name></source-address><source-address><name>2001:798:99:1::be/128</name></source-address><destination-address><name>2001:798:10:10aa::5/126</name></destination-address><destination-address><name>2001:798:99:1::bd/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:10: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>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>ARNES6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>nren_IAS_ARNES_V6_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>ARNES_blocking_service</name><from><destination-prefix-list><name>ARNES6-blocking-list</name></destination-prefix-list></from><then><count>ARNES-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::1b2/128</name></source-address><destination-address><name>2001:798:1::1b1/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::1b2/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_ARNES_V6_OUT</name><interface-specific/><term><name>default</name><then><accept/></then></term></filter></inet6><vpls><filter><name>BUM_FLOOD_PROTECTION</name><term><name>BROADCAST</name><from><traffic-type>broadcast</traffic-type></from><then><policer>POL_BUM</policer><accept/></then></term><term><name>UNKNOWN_UNICAST</name><from><traffic-type>unknown-unicast</traffic-type></from><then><policer>POL_BUM</policer><accept/></then></term><term><name>MULTICAST</name><from><traffic-type>multicast</traffic-type></from><then><policer>POL_BUM</policer><accept/></then></term><term><name>UNICAST</name><from><traffic-type>known-unicast</traffic-type></from><then><accept/></then></term></filter></vpls><ccc><filter><name>filter_in_ae10_550</name><interface-specific/><term><name>1</name><then><policer>policer_in_ae10_550</policer><accept/></then></term></filter></ccc></family><policer><name>pol-UOM-DWS-out</name><filter-specific/><if-exceeding><bandwidth-limit>1g</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-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>OWAMP-test-in</name><if-exceeding><bandwidth-limit>50m</bandwidth-limit><burst-size-limit>625k</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>pol-UOM-out</name><filter-specific/><if-exceeding><bandwidth-limit>500m</bandwidth-limit><burst-size-limit>625k</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>GEANT_NTP_APPLIANCES_POLICER</name><if-exceeding><bandwidth-limit>250k</bandwidth-limit><burst-size-limit>4500</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>lo0-flood</name><if-exceeding><bandwidth-limit>9m</bandwidth-limit><burst-size-limit>90k</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>POL_BUM</name><if-exceeding><bandwidth-limit>5m</bandwidth-limit><burst-size-limit>2m</burst-size-limit></if-exceeding><then><discard/></then></policer><policer><name>pol-RASH-DWS-out</name><if-exceeding><bandwidth-limit>1g</bandwidth-limit><burst-size-limit>6250000</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><policer><name>policer_in_ae10_550</name><if-exceeding><bandwidth-limit>5g</bandwidth-limit><burst-size-limit>3125000</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>ae10.667</name></interface><interface><name>ae18.667</name></interface><route-distinguisher><rd-type>62.40.97.15: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::1a</name><description>-- IPv6 Peering with GARR --</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-GARR-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-GARR-V6-nren</export><peer-as>137</peer-as></neighbor><neighbor><name>2001:798::66</name><description>-- IPv6 Peering with ACONET AP2|</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-ACONET-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><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-CLS-to-ACONET-V6-nren</export><peer-as>1853</peer-as></neighbor></group><group><name>CLS-NRENS</name><description>NRENS</description><neighbor><name>62.40.100.15</name><description>GARR</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-GARR-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-GARR-nren</export><peer-as>137</peer-as></neighbor><neighbor><name>62.40.100.53</name><description>ACONET AP2|</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-ACONET-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><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-CLS-to-ACONET-nren</export><peer-as>1853</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>GTS_VPLS-Neutron</name><instance-type>vpls</instance-type><vlan-id>all</vlan-id><interface><name>ge-0/3/7.0</name></interface><route-distinguisher><rd-type>20965:889</rd-type></route-distinguisher><vrf-target><community>target:20965:889</community></vrf-target><forwarding-options><family><vpls><flood><input>BUM_FLOOD_PROTECTION</input></flood></vpls></family></forwarding-options><protocols><vpls><mac-table-size><limit>32768</limit></mac-table-size><interface-mac-limit><limit>1024</limit></interface-mac-limit><no-tunnel-services/><site><name>MIL2</name><site-identifier>33</site-identifier></site><vpls-id>889</vpls-id></vpls></protocols></instance><instance><name>IAS</name><description>GEANT IAS Internet VRF</description><instance-type>vrf</instance-type><interface><name>lt-3/2/10.31</name></interface><interface><name>lt-10/0/0.61</name></interface><interface><name>xe-11/0/0.333</name></interface><interface><name>ae10.333</name></interface><interface><name>ae11.0</name></interface><interface><name>ae12.0</name></interface><interface><name>ae13.333</name></interface><interface><name>ae14.333</name></interface><interface><name>ae18.52</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.222</name><description>-- Peering with GARR --</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-GARR-nren</import><family><inet><unicast><prefix-limit><maximum>125000</maximum></prefix-limit></unicast></inet></family><export>ps-BOGONS</export><export>ps-IAS-to-GARR-nren</export><peer-as>137</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>83.97.88.185</name><description>-- Peering with RASH --</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-RASH-nren</import><family><inet><unicast><prefix-limit><maximum>125000</maximum></prefix-limit></unicast></inet></family><export>ps-advertise-default</export><peer-as>57961</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>83.97.89.217</name><description>-- Peering with ACONET --</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-to-ACONET_AP-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-ACONET_AP-nren</export><peer-as>1853</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>83.97.89.219</name><description>-- Peering with ARNES --|UNDER TESTING </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-ARNES-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-ARNES-nren</export><peer-as>2107</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>83.97.89.29</name><description>-- Peering with UOM --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-IAS-from-UoM-nren</import><import>ps-AS-SELF-REJECT</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-NREN</import><family><inet><unicast><prefix-limit><maximum>125000</maximum></prefix-limit></unicast><multicast>
-                                    </multicast></inet></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-IAS-to-UoM-nren</export><peer-as>12046</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::52</name><description>-- IPv6 Peering with GARR --</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-GARR-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-GARR-V6-nren</export><peer-as>137</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:798:1::1ae</name><description>-- IPv6 Peering with ACONET --</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-ACONET-V6_AP-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-ACONET-V6_AP-nren</export><peer-as>1853</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:798:1::1b2</name><description>-- IPv6 Peering with ARNES --|UNDER TESTING </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-ARNES-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-ARNES-V6-nren</export><peer-as>2107</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:798:1::1b6</name><description>-- IPv6 Peering with UOM --</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-UoM-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-UoM-V6-nren</export><peer-as>12046</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>GEANT-IX-MIX-IT</name><type>external</type><description>MIX-IT - 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>217.29.66.1</name><description>MIX AS16004</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16004_MIXITA-AS_MIX_S.r.L._-_Milan</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>15</maximum></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16004_MIXITA-AS_MIX_S.r.L._-_Milan</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>16004</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.166</name><description>Akamai AS20940</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>9750</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>20940</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.112</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8075_MICROSOFT-CORP-MSN-AS-BLOCK_-_Microsoft_C_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8075_MICROSOFT-CORP-MSN-AS-BLOCK_-_Microsoft_C_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>8075</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.61</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS22822_LLNW_-_Limelight_Networks,_Inc.,US</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS22822_LLNW_-_Limelight_Networks,_Inc.,US</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>22822</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.143</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS22822_LLNW_-_Limelight_Networks,_Inc.,US</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS22822_LLNW_-_Limelight_Networks,_Inc.,US</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>22822</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.153</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS15133_EDGECAST_-_EdgeCast_Networks,_Inc.,US</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS15133_EDGECAST_-_EdgeCast_Networks,_Inc.,US</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>15133</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.16</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>16509</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.125</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,US</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,US</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>6939</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.67</name><description>OVH AS16276</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16276_OVH_OVH_SAS,FR__</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16276_OVH_OVH_SAS,FR__</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>16276</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.167</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS13335_CLOUDFLARENET_-_CloudFlare,_Inc.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS13335_CLOUDFLARENET_-_CloudFlare,_Inc.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>13335</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.131</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_FACEBOOK_-_Facebook,_Inc.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_FACEBOOK_-_Facebook,_Inc.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>32934</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.156</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_FACEBOOK_-_Facebook,_Inc.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_FACEBOOK_-_Facebook,_Inc.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>32934</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.47</name><description>SoftLayer AS36351</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS36351_SOFTLAYER_-_SoftLayer_Technologies_Inc.,U</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>2250</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS36351_SOFTLAYER_-_SoftLayer_Technologies_Inc.,U</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>36351</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.68</name><description>Colt AS8220</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8220_COLT_COLT_Technology_Services_Group</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8220_COLT_COLT_Technology_Services_Group</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>8220</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.57</name><description>Netnod AS8674</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8674_NETNOD-IX_Netnod_Internet_Exchange_Sverig</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>750</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8674_NETNOD-IX_Netnod_Internet_Exchange_Sverig</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>8674</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.57</name><description>Netnod AS8674</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8674_NETNOD-IX_Netnod_Internet_Exchange_Sverig</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>750</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8674_NETNOD-IX_Netnod_Internet_Exchange_Sverig</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>8674</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.254</name><description>MIX-IT AS61968</description><import>ps-deny-all</import><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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS61968_MIX-RS_MIX_S.r.L._-_Milan</import><family><inet><any><prefix-limit><maximum>120000</maximum></prefix-limit></any></inet></family><export>ps-deny-all</export><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS61968_MIX-RS_MIX_S.r.L._-_Milan</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>61968</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.253</name><description>MIX-IT AS61968</description><import>ps-deny-all</import><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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS61968_MIX-RS_MIX_S.r.L._-_Milan</import><family><inet><any><prefix-limit><maximum>120000</maximum></prefix-limit></any></inet></family><export>ps-deny-all</export><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS61968_MIX-RS_MIX_S.r.L._-_Milan</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>61968</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.119</name><description>BT AS5400</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS5400_BT_British_Telecommunications_plc,GB_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>7350</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS5400_BT_British_Telecommunications_plc,GB_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>5400</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.116</name><description>RETN AS9002</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS9002_RETN-AS</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>60000</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS9002_RETN-AS</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>9002</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.212</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8075_MICROSOFT-CORP-MSN-AS-BLOCK_-_Microsoft_C_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8075_MICROSOFT-CORP-MSN-AS-BLOCK_-_Microsoft_C_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>8075</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.20</name><description>VeriSign AS26415</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS26415_VeriSign</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>450</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS26415_VeriSign</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>26415</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.10</name><description>Dropbox AS19679</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS19679_Dropbox</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS19679_Dropbox</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>19679</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.186</name><description>Netflix AS2906</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS2906_Netflix</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>375</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS2906_Netflix</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>2906</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.187</name><description>Netflix AS2906</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS2906_Netflix</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>375</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS2906_Netflix</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>2906</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.20</name><description>Automattic AS2635</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS2635_Automattic</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>225</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS2635_Automattic</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>2635</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.6</name><description>RIPE AS12654</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS12654_RIPE_NCC</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>75</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS12654_RIPE_NCC</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>12654</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.28</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>10310</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.29</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>10310</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.41</name><description>OpenDNS AS36692</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS36692_OpenDNS,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>105</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS36692_OpenDNS,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>36692</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.56</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS13030_Init7_Switzerland_Ltd</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS13030_Init7_Switzerland_Ltd</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>13030</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.55</name><description>G-Core_Labs 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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>199524</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.17</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_Twitch</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_Twitch</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>46489</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.18</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_Twitch</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_Twitch</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>46489</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.33</name><description>Highwinds_Network_Group AS33438</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS33438_Highwinds_Network_Group,_Inc</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>37500</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS33438_Highwinds_Network_Group,_Inc</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>33438</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.232</name><description>Highwinds_Network_Group AS33438</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS33438_Highwinds_Network_Group,_Inc</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>37500</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS33438_Highwinds_Network_Group,_Inc</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>33438</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.77</name><description>Fastly AS54113</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS54113_Fastly,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS54113_Fastly,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>54113</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.78</name><description>Fastly AS54113</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS54113_Fastly,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS54113_Fastly,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>54113</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.17</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS3303_Swisscom_Switzerland_Ltd</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS3303_Swisscom_Switzerland_Ltd</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>3303</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.102</name><description>Bezeq_International AS8551</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8551_Bezeq_International</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>9000</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8551_Bezeq_International</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>8551</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.201</name><description>Imperva AS19551</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS19551_Imperva</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>1200</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS19551_Imperva</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>19551</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.88</name><description>Alibaba_Cloud_CDN AS24429</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS24429_Alibaba_Cloud_CDN</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS24429_Alibaba_Cloud_CDN</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>24429</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.74</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>16509</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.64</name><description>M247_Ltd AS9009</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS9009_M247_Ltd</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS9009_M247_Ltd</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>9009</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.66.217</name><description>Blizzard_Entertainment AS57976</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS57976_Blizzard_Entertainment</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet><any><prefix-limit><maximum>300</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS57976_Blizzard_Entertainment</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>57976</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.122</name><description>HUAWEI_CLOUDS AS136907</description><passive/><import>ps-deny-all</import><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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS136907_HUAWEI_CLOUDS</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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-deny-all</export><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS136907_HUAWEI_CLOUDS</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>136907</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>217.29.67.139</name><description>HUAWEI_CLOUDS AS136907</description><passive/><import>ps-deny-all</import><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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS136907_HUAWEI_CLOUDS</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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-deny-all</export><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS136907_HUAWEI_CLOUDS</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>136907</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>GEANT-IXv6-MIX-IT</name><type>external</type><description>MIX-IT - 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><any>
-                                </any></inet6></family><export>ps-deny-all</export><neighbor><name>2001:7f8:b:100:1d1:a5d1:6004:1</name><description>MIX AS16004</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16004_MIXITA-AS_MIX_S.r.L._-_Milan</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>15</maximum></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16004_MIXITA-AS_MIX_S.r.L._-_Milan</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>16004</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d2:940:166</name><description>Akamai AS20940</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>20940</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:8075:112</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8075_MICROSOFT-CORP-MSN-AS-BLOCK_-_Microsoft_C_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>2600</maximum><teardown><limit-threshold>90</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8075_MICROSOFT-CORP-MSN-AS-BLOCK_-_Microsoft_C_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d2:2822:61</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS22822_LLNW_-_Limelight_Networks,_Inc.,US</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS22822_LLNW_-_Limelight_Networks,_Inc.,US</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d2:2822:143</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS22822_LLNW_-_Limelight_Networks,_Inc.,US</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS22822_LLNW_-_Limelight_Networks,_Inc.,US</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d1:5133:153</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS15133_EDGECAST_-_EdgeCast_Networks,_Inc.,US</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS15133_EDGECAST_-_EdgeCast_Networks,_Inc.,US</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d0:6939:125</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,US</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,US</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d1:6276:67</name><description>OVH AS16276</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16276_OVH_OVH_SAS,FR__</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>300</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16276_OVH_OVH_SAS,FR__</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>16276</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d1:3335:167</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS13335_CLOUDFLARENET_-_CloudFlare,_Inc.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS13335_CLOUDFLARENET_-_CloudFlare,_Inc.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d3:2934:131</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_FACEBOOK_-_Facebook,_Inc.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_FACEBOOK_-_Facebook,_Inc.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d3:2934:156</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_FACEBOOK_-_Facebook,_Inc.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_FACEBOOK_-_Facebook,_Inc.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d3:6351:47</name><description>SoftLayer AS36351</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS36351_SOFTLAYER_-_SoftLayer_Technologies_Inc.,U</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>525</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS36351_SOFTLAYER_-_SoftLayer_Technologies_Inc.,U</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>36351</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:8220:68</name><description>Colt AS8220</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8220_COLT_COLT_Technology_Services_Group</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8220_COLT_COLT_Technology_Services_Group</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>8220</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:8674:357</name><description>Netnod AS8674</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8674_NETNOD-IX_Netnod_Internet_Exchange_Sverig</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>120</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8674_NETNOD-IX_Netnod_Internet_Exchange_Sverig</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>8674</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:8674:57</name><description>Netnod AS8674</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8674_NETNOD-IX_Netnod_Internet_Exchange_Sverig</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>120</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8674_NETNOD-IX_Netnod_Internet_Exchange_Sverig</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>8674</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d1:6004:254</name><description>MIX-IT AS61968</description><import>ps-deny-all</import><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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS61968_MIX-RS_MIX_S.r.L._-_Milan</import><family><inet6><any><prefix-limit><maximum>52500</maximum></prefix-limit></any></inet6></family><export>ps-deny-all</export><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS61968_MIX-RS_MIX_S.r.L._-_Milan</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>61968</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d1:6004:253</name><description>MIX-IT AS61968</description><import>ps-deny-all</import><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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS61968_MIX-RS_MIX_S.r.L._-_Milan</import><family><inet6><any><prefix-limit><maximum>52500</maximum></prefix-limit></any></inet6></family><export>ps-deny-all</export><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS61968_MIX-RS_MIX_S.r.L._-_Milan</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>61968</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:5400:119</name><description>BT AS5400</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS5400_BT_British_Telecommunications_plc,GB_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>367</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS5400_BT_British_Telecommunications_plc,GB_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>5400</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:9002:116</name><description>RETN AS9002</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS9002_RETN-AS</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>6000</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS9002_RETN-AS</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>9002</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:8075:212</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8075_MICROSOFT-CORP-MSN-AS-BLOCK_-_Microsoft_C_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>2600</maximum><teardown><limit-threshold>90</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8075_MICROSOFT-CORP-MSN-AS-BLOCK_-_Microsoft_C_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d2:6415:20</name><description>VeriSign AS26415</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS26415_VeriSign</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>75</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS26415_VeriSign</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>26415</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d1:9679:10</name><description>Dropbox AS19679</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS19679_Dropbox</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>75</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS19679_Dropbox</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>19679</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:2906:186</name><description>Netflix AS2906</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS2906_Netflix</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>375</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS2906_Netflix</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>2906</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:2906:187</name><description>Netflix AS2906</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS2906_Netflix</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>375</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS2906_Netflix</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>2906</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:2635:20</name><description>Automattic AS2635</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS2635_Automattic</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS2635_Automattic</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>2635</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d1:2654:6</name><description>RIPE AS12654</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS12654_RIPE_NCC</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>30</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS12654_RIPE_NCC</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>12654</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d1:310:28</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d1:310:29</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d3:6692:41</name><description>OpenDNS AS36692</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS36692_OpenDNS,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>30</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS36692_OpenDNS,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>36692</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d1:3030:56</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS13030_Init7_Switzerland_Ltd</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS13030_Init7_Switzerland_Ltd</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a519:9524:55</name><description>G-Core_Labs 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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>75</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>199524</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d4:6489:17</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_Twitch</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_Twitch</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d4:6489:18</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_Twitch</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_Twitch</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d3:3438:33</name><description>Highwinds_Network_Group AS33438</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS33438_Highwinds_Network_Group,_Inc</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS33438_Highwinds_Network_Group,_Inc</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>33438</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d5:4113:77</name><description>Fastly AS54113</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS54113_Fastly,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>75</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS54113_Fastly,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>54113</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d5:4113:78</name><description>Fastly AS54113</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS54113_Fastly,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>75</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS54113_Fastly,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>54113</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d0:3303:17</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS3303_Swisscom_Switzerland_Ltd</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS3303_Swisscom_Switzerland_Ltd</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d0:8551:102</name><description>Bezeq_International AS8551</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8551_Bezeq_International</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>600</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8551_Bezeq_International</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>8551</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d1:9551:201</name><description>Imperva AS19551</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS19551_Imperva</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>225</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS19551_Imperva</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>19551</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d1:6509:16</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d1:6509:74</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_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:b:100:1d1:a5d0:9009:64</name><description>M247_Ltd AS9009</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS9009_M247_Ltd</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS9009_M247_Ltd</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>9009</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d5:4104:232</name><description>Highwinds_Network_Group AS33438</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS33438_Highwinds_Network_Group,_Inc</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS33438_Highwinds_Network_Group,_Inc</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>33438</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a5d5:7976:217</name><description>Blizzard_Entertainment AS57976</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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS57976_Blizzard_Entertainment</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_TAIL</import><family><inet6><any><prefix-limit><maximum>75</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_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS57976_Blizzard_Entertainment</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>57976</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a513:6907:122</name><description>HUAWEI_CLOUDS AS136907</description><passive/><import>ps-deny-all</import><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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS136907_HUAWEI_CLOUDS</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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-deny-all</export><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS136907_HUAWEI_CLOUDS</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>136907</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:b:100:1d1:a513:6907:139</name><description>HUAWEI_CLOUDS AS136907</description><passive/><import>ps-deny-all</import><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_MIX-IT_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS136907_HUAWEI_CLOUDS</import><import>IAS_PS-FROM-PUBLIC-PEERS_MIX-IT_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-deny-all</export><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS136907_HUAWEI_CLOUDS</export><export>IAS_PS-TO-PUBLIC-PEERS_MIX-IT_TAIL</export><peer-as>136907</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>GEANT-Peers</name><neighbor><name>72.14.203.32</name><description>-- Peering with Google --</description><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><import>ps-IAS-from-google</import><family><inet><unicast><prefix-limit><maximum>22500</maximum><teardown><limit-threshold>83</limit-threshold></teardown></prefix-limit></unicast></inet></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-IAS-to-google</export><peer-as>15169</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>GEANT-Peers-V6</name><neighbor><name>2001:4860:1:1:0:51e5:0:1</name><description>-- Peering with Google --</description><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><import>ps-IAS-from-google-v6</import><family><inet6><any><prefix-limit><maximum>1125</maximum><teardown><limit-threshold>90</limit-threshold></teardown></prefix-limit></any></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-IAS-to-google-v6</export><peer-as>15169</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>20965_TO_21320_FOD</name><family><inet><flow inactive="inactive"><no-validate>accept-all-flowspec</no-validate></flow></inet></family><neighbor inactive="inactive"><name>62.40.98.94</name><peer-as>64555</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>ISOLARIO-PROJECT-IAS</name><neighbor><name>146.48.78.13</name><description>-- Peering with ISOLARIO --</description><multihop>
-                            </multihop><local-address>83.97.88.221</local-address><out-delay>10</out-delay><import>ps-deny-all</import><import>ps-BOGONS</import><import>ps-RPKI-IAS-PEER</import><family><inet><unicast>
-                                    </unicast></inet></family><export>ps-BOGONS</export><export>ps-IAS-to-ISOLARIO</export><peer-as>65517</peer-as><local-as><as-number>21320</as-number></local-as></neighbor></group><group><name>ISOLARIO-PROJECT-IAS-V6</name><neighbor><name>2a00:1620:c0:4e:146:48:78:13</name><description>-- Peering with ISOLARIO IPv6 --</description><multihop>
-                            </multihop><local-address>2001:798:1::51</local-address><out-delay>10</out-delay><import>ps-deny-all</import><import>ps-BOGONS-V6</import><import>ps-RPKI-IAS-PEER</import><family><inet6><unicast>
-                                    </unicast></inet6></family><export>ps-BOGONS-V6</export><export>ps-IAS-to-ISOLARIO-V6</export><peer-as>65517</peer-as><local-as><as-number>21320</as-number></local-as></neighbor></group><group><name>20965-to-21320-v4</name><type>internal</type><description>20965-to-21320 BGP Peering IPv4</description><local-address>83.97.88.229</local-address><import>ps-20965-v4</import><export>ps-deny-all</export><neighbor><name>83.97.88.228</name><peer-as>20965</peer-as></neighbor></group><group><name>20965-to-21320-v6</name><type>internal</type><description>20965-to-21320 BGP Peering IPv6</description><local-address>2001:798:1::11a</local-address><import>ps-20965-v6</import><export>ps-deny-all</export><neighbor><name>2001:798:1::119</name><peer-as>20965</peer-as></neighbor></group></bgp></protocols></instance><instance><name>JRA1-SDN-BOD-CONTROL</name><description>JRA1 SDN BOD PILOT OPENFLOW CONTROL VPN</description><instance-type>vrf</instance-type><interface><name>xe-1/1/1.1003</name></interface><route-distinguisher><rd-type>20965:223</rd-type></route-distinguisher><vrf-import>ps-into-sdn-bod-vrf</vrf-import><vrf-export>ps-from-sdn-bod-vrf</vrf-export><vrf-target><community>target:20965:223</community></vrf-target><vrf-table-label>
-            </vrf-table-label><routing-options><rib><name>JRA1-SDN-BOD-CONTROL.inet.0</name><martians><address>10.0.0.0/8</address><orlonger/><allow/></martians></rib><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options></instance><instance><name>JRA1-SDX-L2-CONTROL</name><description>JRA1 SDX-L2 PILOT OPENFLOW CONTROL VPN</description><instance-type>vrf</instance-type><interface><name>xe-1/1/1.1001</name></interface><interface><name>xe-1/1/1.1002</name></interface><route-distinguisher><rd-type>20965:222</rd-type></route-distinguisher><vrf-import>ps-into-sdx-l2-vrf</vrf-import><vrf-export>ps-from-sdx-l2-vrf</vrf-export><vrf-target><community>target:20965:222</community></vrf-target><vrf-table-label>
-            </vrf-table-label><routing-options><rib><name>JRA1-SDX-L2-CONTROL.inet.0</name><martians><address>10.0.0.0/8</address><orlonger/><allow/></martians></rib><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options></instance><instance><name>coriant-mgmt</name><description>L3VPN for Coriant Groove Management</description><instance-type>vrf</instance-type><interface><name>ge-0/3/2.301</name></interface><interface><name>ge-0/3/2.401</name></interface><interface><name>ge-0/3/2.991</name></interface><interface><name>ae1.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><description>L3 BGP/MPLS VPN for LHCONE</description><instance-type>vrf</instance-type><interface><name>ae10.111</name></interface><route-distinguisher><rd-type>62.40.97.15: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><vrf-table-label>
-            </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><neighbor><name>62.40.126.249</name><description>GARR LHCONE IP VPN</description><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-PRIVATE-AS-BLOCK</import><import>ps-from-lhcone-nren</import><family><inet><any><prefix-limit><maximum>100</maximum><teardown><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>ps-to-GARR-LHCONE-TE</export><export>ps-to-lhcone-nren</export><peer-as>137</peer-as></neighbor></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><neighbor><name>2001:798:111:1::1a</name><description>GARR LHCONE IPV6 VPN</description><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-PRIVATE-AS-BLOCK</import><import>ps-from-lhcone-nren</import><family><inet6><any><prefix-limit><maximum>100</maximum><teardown><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>ps-to-GARR-LHCONE-TE</export><export>ps-to-lhcone-nren-v6</export><peer-as>137</peer-as></neighbor></group></bgp></protocols></instance><instance><name>mdvpn</name><instance-type>vrf</instance-type><interface><name>ae10.1001</name></interface><route-distinguisher><rd-type>62.40.97.11: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.15</name><description>MD VPN CoC #1 - GARR</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>137</peer-as></neighbor></group></bgp></protocols></instance><instance><name>mgmt-l3vpn</name><description>L3 BGP/MPLS VPN for management</description><instance-type>vrf</instance-type><interface><name>irb.999</name></interface><route-distinguisher><rd-type>62.40.97.15:999</rd-type></route-distinguisher><vrf-import>ps-into-mgmt-vrf</vrf-import><vrf-export>ps-from-mgmt-vrf</vrf-export><vrf-target><community>target:20965:999</community></vrf-target><vrf-table-label>
-            </vrf-table-label><routing-options><rib><name>mgmt-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><static><route><name>10.0.8.1/32</name><next-hop>10.0.8.1</next-hop></route></static><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options></instance><instance><name>taas-control</name><instance-type>vrf</instance-type><interface><name>ge-0/3/2.250</name></interface><route-distinguisher><rd-type>62.40.97.15:888</rd-type></route-distinguisher><vrf-target><community>target:20965:888</community></vrf-target><vrf-table-label>
-            </vrf-table-label><routing-options><rib><name>taas-control.inet.0</name><martians><address>10.0.0.0/8</address><orlonger/><allow/></martians></rib><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options></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::11a</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:798:aa:1::12/128</name><next-hop>2001:798:bb:1::2</next-hop></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>0.0.0.0/0</name><next-hop>83.97.88.229</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><route><name>62.40.96.45/32</name><next-hop>62.40.104.23</next-hop></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.97.15</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.97.15</local-address></session></group><group><name>routinator</name><session><name>83.97.94.109</name><port>8282</port><local-address>62.40.97.15</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.97.15</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.96.8</name></peer><peer><name>62.40.96.10</name></peer><peer><name>62.40.96.16</name></peer><peer><name>62.40.96.17</name></peer><peer><name>62.40.96.20</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.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><group><name>external_msdp</name><export>Bogon-Sources</export><export>ASM-Allow</export><import>Bogon-Sources</import><import>ASM-Allow</import><comment>/* GARR */</comment><peer><name>62.40.125.181</name><local-address>62.40.125.180</local-address></peer><peer><name>193.171.23.238</name><local-address>62.40.125.69</local-address></peer><peer><name>193.171.23.239</name><local-address>62.40.125.69</local-address></peer><peer><name>88.200.0.168</name><local-address>62.40.124.206</local-address></peer></group></msdp><ldp><preference>16</preference><track-igp-metric/><deaggregate/><interface><name>ae2.0</name></interface><interface><name>ae3.0</name></interface><interface><name>ae4.0</name></interface><interface><name>ae6.0</name></interface><interface><name>ae8.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.97.15</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><export>ps-to-iGEANT</export><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.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.16</name><description>mx1.mad.es.geant.net</description></neighbor><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.20</name><description>mx2.bru.be.geant.net</description></neighbor><neighbor><name>62.40.96.16</name><description>mx1.lis.pt.geant.net</description></neighbor><neighbor><name>62.40.96.17</name><description>mx2.lis.pt.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.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>iGEANT6</name><type>internal</type><local-address>2001:798:1e:20ff::3</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><export>ps-to-iGEANT6</export><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: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:33:20ff::2</name><description>mx2.bra.sk.geant.net</description></neighbor><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:2b:20ff::2</name><description>mx2.bru.be.geant.net</description></neighbor><neighbor><name>2001:798:2f:20ff::1</name><description>mx1.lis.pt.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:12:20ff::1</name><description>mx1.gen.ch.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>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.125.181</name><description>-- Peering with GARR--;</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-RE-NREN</import><import>ps-from-GARR-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-to-GARR-nren</export><peer-as>137</peer-as></neighbor><neighbor><name>62.40.125.174</name><description>-- Peering with RASH --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-RE-NREN</import><import>ps-from-RASH-nren</import><export>ps-BOGONS</export><export>ps-to-RASH-nren</export><peer-as>57961</peer-as></neighbor><neighbor><name>62.40.124.134</name><description>-- Backup Peering with ACONET --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-RE-NREN</import><import>ps-from-ACONET1-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-to-ACONET1-nren</export><peer-as>1853</peer-as></neighbor><neighbor><name>62.40.124.207</name><description>-- Peering with ARNES Primary --|UNDER TESTING </description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-RE-NREN</import><import>ps-from-ARNES-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-to-ARNES-nren</export><peer-as>2107</peer-as><bfd-liveness-detection><minimum-interval>100</minimum-interval><multiplier>10</multiplier></bfd-liveness-detection></neighbor><neighbor><name>62.40.125.241</name><description>-- Peering with UOM --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-RE-NREN</import><import>ps-from-UoM-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-to-UoM-nren</export><peer-as>12046</peer-as><include-mp-next-hop/></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:1e:10aa::a</name><description>-- IPv6 Peering with GARR  --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-RPKI-RE-NREN</import><import>ps-from-GARR-V6-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-to-GARR-V6-nren</export><peer-as>137</peer-as></neighbor><neighbor><name>2001:0798:001e:10aa::e</name><description>-- IPv6 Peering with ACOnet backup --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-RPKI-RE-NREN</import><import>ps-from-ACONET-V6-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-to-ACONET-V6-nren</export><peer-as>1853</peer-as></neighbor><neighbor><name>2001:798:99:1::be</name><description>-- IPv6 Peering with ARNES --|UNDER TESTING </description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-RPKI-RE-NREN</import><import>ps-from-ARNES-V6-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-to-ARNES-V6-nren</export><peer-as>2107</peer-as><bfd-liveness-detection><minimum-interval>100</minimum-interval><multiplier>10</multiplier></bfd-liveness-detection></neighbor><neighbor><name>2001:798:99:1::d2</name><description>-- IPv6 Peering with UOM --</description><multihop><ttl>2</ttl></multihop><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-RPKI-RE-NREN</import><import>ps-from-UoM-V6-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-to-UoM-V6-nren</export><peer-as>12046</peer-as></neighbor></group><group><name>TOOLS</name><type>internal</type><description>PEERING WITH TOOLS</description><local-address>62.40.97.15</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.97.15</cluster><local-as><as-number>20965</as-number></local-as></neighbor></group><group><name>20965_TO_21320_FOD</name><family><inet><flow inactive="inactive"><no-validate>accept-all-flowspec</no-validate></flow></inet></family><export>FOD_EXPORT_IBGP</export><neighbor inactive="inactive"><name>62.40.98.95</name><peer-as>21320</peer-as><local-as><as-number>64555</as-number><loops>2</loops><no-prepend-global-as/></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.97.15</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.97.15</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:1e:20ff::3</local-address><family><inet6><unicast>
-                        </unicast><multicast>
-                        </multicast></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.97.15</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>ISOLARIO-PROJECT</name><type>external</type><description>-- ISOLARIO PROJECT --</description><family><inet><unicast>
-                        </unicast></inet></family><neighbor><name>146.48.78.13</name><description>-- Peering with ISOLARIO --</description><multihop>
-                    </multihop><local-address>62.40.125.180</local-address><out-delay>10</out-delay><import>ps-deny-all</import><import>ps-BOGONS</import><import>ps-RPKI-RE-PEER</import><export>ps-BOGONS</export><export>ps-to-ISOLARIO</export><peer-as>65517</peer-as></neighbor></group><group><name>ISOLARIO-PROJECT-V6</name><type>external</type><description>-- ISOLARIO PROJECT IPV6 --</description><family><inet6><unicast>
-                        </unicast></inet6></family><neighbor><name>2a00:1620:c0:4e:146:48:78:13</name><description>-- Peering with ISOLARIO IPv6 --</description><multihop>
-                    </multihop><local-address>2001:798:1e:10aa::9</local-address><out-delay>10</out-delay><import>ps-deny-all</import><import>ps-BOGONS-V6</import><import>ps-RPKI-RE-PEER</import><export>ps-BOGONS-V6</export><export>ps-to-ISOLARIO-V6</export><peer-as>65517</peer-as></neighbor></group><group><name>20965-to-21320-v4</name><type>internal</type><description>20965-to-21320 BGP Peering IPv4</description><local-address>83.97.88.228</local-address><import>ps-deny-all</import><export>ps-20965-v4</export><neighbor><name>83.97.88.229</name><peer-as>20965</peer-as></neighbor></group><group><name>20965-to-21320-v6</name><type>internal</type><description>20965-to-21320 BGP Peering IPv6</description><local-address>2001:798:1::119</local-address><import>ps-deny-all</import><export>ps-20965-v6</export><neighbor><name>2001:798:1::11a</name><peer-as>20965</peer-as></neighbor></group><group><name>TOOLSv6</name><type>internal</type><description>PEERING WITH TOOLS</description><local-address>2001:798:1e:20ff::3</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.97.15</cluster><local-as><as-number>20965</as-number></local-as></neighbor></group><group><name>eGEANT-mcast</name><type>external</type><family><inet><multicast>
-                        </multicast></inet></family><neighbor><name>62.40.125.70</name><description>-- Peering with Aconet-mcast --</description><import>ps-BOGONS</import><import>ps-RPKI-RE-NREN</import><import>ps-from-ACONET-mcast</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-to-ACONET-mcast</export><peer-as>1853</peer-as></neighbor></group></bgp><isis><export>EXPORT-STATIC-TO-ISIS</export><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>4715</ipv4-index><ipv6-index>6715</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>xe-11/0/0.100</name><passive>
-                </passive></interface><interface><name>ae2.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>ae3.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>ae4.0</name><point-to-point/><level><name>2</name><post-convergence-lfa><node-protection>
-                        </node-protection></post-convergence-lfa><metric>541</metric></level></interface><interface><name>ae6.0</name><point-to-point/><level><name>2</name><post-convergence-lfa><node-protection>
-                        </node-protection></post-convergence-lfa><metric>37</metric></level></interface><interface><name>ae8.0</name><point-to-point/><level><name>2</name><post-convergence-lfa><node-protection>
-                        </node-protection></post-convergence-lfa><metric>84</metric></level></interface><interface><name>all</name><passive>
-                </passive></interface><interface><name>fxp0.0</name><disable/></interface></isis><igmp><interface><name>ge-3/2/0.30</name><version>3</version></interface><interface><name>ge-3/2/0.20</name><version>3</version></interface><interface><name>ge-3/2/0.10</name><version>3</version></interface><interface><name>all</name><disable/></interface><interface><name>dsc.0</name><version>3</version><static><group><name>232.223.222.1</name><source><name>193.17.9.3</name></source></group></static></interface></igmp><mld><interface><name>ge-3/2/0.30</name></interface><interface><name>ge-3/2/0.10</name></interface><interface><name>ge-3/2/0.20</name></interface><interface><name>ge-3/2/0.40</name></interface><interface><name>ge-3/2/0.71</name></interface><interface><name>ge-3/2/0.72</name></interface><interface><name>ge-3/2/0.80</name></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><interface><name>ge-3/2/0.10</name><disable/></interface><interface><name>xe-1/3/0.0</name><disable/></interface><interface><name>xe-11/0/0.100</name></interface></pim><l2circuit><neighbor><name>62.40.97.10</name></neighbor><neighbor><name>62.40.97.12</name></neighbor><neighbor><name>62.40.97.16</name></neighbor><neighbor><name>62.40.97.2</name></neighbor><neighbor><name>62.40.96.10</name><interface><name>ae10.550</name><virtual-circuit-id>4000713</virtual-circuit-id><no-control-word/><mtu>9000</mtu><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.11</name><interface><name>ae10.4088</name><virtual-circuit-id>4000014001</virtual-circuit-id><description>SRV_GCS CUSTOMER GEANT | #GARR_ROMA_ExpressRoute_VLAN4088 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED</description><no-control-word/><ignore-mtu-mismatch/></interface><interface><name>ae10.4086</name><virtual-circuit-id>4000014002</virtual-circuit-id><description>SRV_GCS CUSTOMER GEANT | #GARR_UDMilano_ExpressRoute_Vlan4086 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED</description><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.5</name><interface><name>ae10.25</name><virtual-circuit-id>20008</virtual-circuit-id><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.96.26</name></neighbor><neighbor><name>62.40.96.15</name></neighbor><neighbor><name>62.40.97.4</name></neighbor><neighbor><name>62.40.97.13</name></neighbor><local-switching><interface><name>ge-0/3/2.1013</name><end-interface><interface>xe-1/0/6.1</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/2.1014</name><end-interface><interface>xe-1/0/6.2</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/2.1015</name><end-interface><interface>xe-1/0/6.3</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/2.1016</name><end-interface><interface>xe-1/0/6.4</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>xe-1/1/3.1</name><end-interface><interface>xe-1/1/1.1</interface></end-interface></interface><interface><name>ge-0/3/2.1022</name><end-interface><interface>xe-1/1/3.1022</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/2.1032</name><end-interface><interface>xe-1/1/3.1032</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/2.1023</name><end-interface><interface>xe-1/1/3.1023</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/2.1024</name><end-interface><interface>xe-1/1/3.1024</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/2.1025</name><end-interface><interface>xe-1/1/3.1025</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/2.1033</name><end-interface><interface>xe-1/1/3.1033</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/2.1034</name><end-interface><interface>xe-1/1/3.1034</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/2.1035</name><end-interface><interface>xe-1/1/3.1035</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface></local-switching></l2circuit><lldp><port-id-subtype>interface-name</port-id-subtype><interface><name>all</name><disable/></interface><interface><name>fxp0</name></interface><interface><name>xe-1/0/0</name></interface><interface><name>xe-1/0/2</name></interface><interface><name>xe-1/2/5</name></interface><interface><name>et-2/3/0</name></interface><interface><name>et-11/1/0</name></interface><interface><name>et-11/3/0</name></interface><interface><name>et-4/0/2</name></interface><interface><name>et-4/0/5</name></interface><interface><name>et-4/1/2</name></interface><interface><name>et-5/0/2</name></interface><interface><name>et-5/0/5</name></interface><interface><name>et-5/1/2</name></interface><interface><name>ge-0/3/2</name></interface><interface><name>ge-0/3/7</name></interface><interface><name>ge-0/3/8</name></interface><interface><name>xe-1/0/1</name></interface><interface><name>et-2/1/0</name></interface><interface><name>xe-11/0/0</name></interface><interface><name>xe-11/0/1</name></interface><interface><name>xe-11/2/0</name></interface><interface><name>xe-11/2/1</name></interface><interface><name>xe-11/2/2</name></interface></lldp></protocols><bridge-domains><domain><name>mgmt-bridge</name><domain-type>bridge</domain-type><vlan-id>999</vlan-id><routing-interface>irb.999</routing-interface></domain></bridge-domains></configuration>
\ No newline at end of file
diff --git a/test/data/mx1.pra.cz.geant.net-netconf.xml b/test/data/mx1.pra.cz.geant.net-netconf.xml
deleted file mode 100644
index 5bd6fe3861a3efdfaf2144e001658bea765d618f..0000000000000000000000000000000000000000
--- a/test/data/mx1.pra.cz.geant.net-netconf.xml
+++ /dev/null
@@ -1,180 +0,0 @@
-<configuration changed-seconds="1617276224" changed-localtime="2021-04-01 11:23:44 UTC"><version>18.4R3-S4.2</version><groups><name>re0</name><system><host-name>mx1.pra.cz.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.13.100/24</name></address></inet></family></unit></interface></interfaces></groups><groups><name>re1</name><system><host-name>mx1.pra.cz.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.13.101/24</name></address></inet></family></unit></interface></interfaces></groups><groups><name>urpf-template</name><firewall><family><inet><filter><name>&lt;*&gt;</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>&lt;*&gt;</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>NO_TRAPS</name><interfaces><interface><name>&lt;*&gt;</name><unit><name>&lt;*&gt;</name><no-traps/></unit></interface></interfaces></groups><groups><name>load-balance-adaptive</name><interfaces><interface><name>&lt;ae*&gt;</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>2002</uid><class>DANTE-Class</class></user><user><name>Monit0r</name><full-name>Monitor</full-name><uid>2012</uid><class>dante</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>NOC</name><uid>2001</uid><class>NOC-Class</class></user><user><name>aconet</name><uid>2011</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>amres</name><uid>2016</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>amresnoc</name><uid>2004</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>2017</uid><class>nrn</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>basnet</name><uid>2018</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>belnet</name><uid>2019</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>bren</name><uid>2020</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>carnet</name><uid>2021</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>dfn</name><uid>2022</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>garr</name><uid>2023</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-cesnet</name><uid>2024</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-cynet</name><uid>2025</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-eenet</name><uid>2027</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-fccn</name><uid>2028</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-garr</name><uid>2029</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-hungar</name><uid>2030</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-malta</name><uid>2031</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-ne-salt-robot</name><uid>2053</uid><class>super-user</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>geant-switch</name><uid>2032</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>grnet</name><uid>2033</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>heanet</name><uid>2034</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>hungarnet</name><uid>2035</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>iucc</name><uid>2036</uid><class>nrn</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>janet</name><uid>2037</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>2062</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>lat</name><uid>2048</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>litnet</name><uid>2038</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>marnet</name><uid>2039</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>mdvpn-si</name><uid>2060</uid><class>mdvpn-si</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>mian</name><uid>2010</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>mren</name><uid>2040</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>2055</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>2041</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>2014</uid><class>dante</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>opsdbv2</name><uid>2059</uid><class>readonly-permissions</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>pionier</name><uid>2042</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>2043</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>renater</name><uid>2044</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>reporting</name><uid>2054</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>2045</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>roedunet</name><uid>2046</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>2015</uid><class>level1</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>sanet</name><uid>2047</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>2003</uid><class>geantnms</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>space15.2R2.4-paris</name><uid>2058</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>2056</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>2026</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>2013</uid><class>restricted-mon</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>surfnet</name><uid>2049</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ulakbim</name><uid>2050</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>uran</name><uid>2051</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>xantaro</name><uid>2057</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><announcement>\nPotential oversubscription - be aware: set chassis fpc 2 pic 2 tunnel-services bandwidth 10g; check xe-2/2.* is not oversubscribed.\n\n\n</announcement><message>----------------------------------------------------------------\n\n  This is mx1.pra.cz.geant.net, a GEANT Router in Prague, Czech Republic \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>aes256-ctr</ciphers><ciphers>chacha20-poly1305@openssh.com</ciphers><ciphers>aes192-ctr</ciphers><ciphers>aes128-gcm@openssh.com</ciphers><ciphers>aes256-gcm@openssh.com</ciphers><ciphers>3des-cbc</ciphers><ciphers>blowfish-cbc</ciphers><ciphers>aes128-ctr</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.13.254</address><destination>172.16.5.252/30</destination></backup-router><time-zone>UTC</time-zone><undocumented><dump-on-panic>
-        </dump-on-panic></undocumented><authentication-order>radius</authentication-order><authentication-order>password</authentication-order><location><country-code>CZ</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.97.2</source-address></radius-server><radius-server><name>83.97.94.130</name><timeout>2</timeout><source-address>62.40.97.2</source-address></radius-server><static-host-mapping><name>ts1.pra.cz</name><inet>172.16.13.254</inet></static-host-mapping><static-host-mapping><name>lo0</name><inet>62.40.97.2</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.97.2</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.97.2</name></source-address></ntp></system><logical-systems><name>VPN-PROXY</name><interfaces><interface><name>lt-2/2/0</name><unit><name>21</name><description>TUN INFRASTRUCTURE MDVPN SRF9927527 | 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.21/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><peer-unit>13</peer-unit><family><inet><policer inactive="inactive"><input>icmp-policer</input></policer><address><name>62.40.98.27/31</name></address></inet></family></unit></interface><interface><name>ae11</name><unit><name>360</name><description>SRV_MDVPN CUSTOMER CESNET #CESNET-GN-PRACDE-VPN-Proxy-Prague-L3VPN | PRACE VPN-Proxy to NREN CE</description><vlan-id>360</vlan-id><family><inet><address><name>62.40.125.10/31</name></address></inet></family></unit><unit><name>601</name><description>SRV_MDVPN CUSTOMER CESNET #CESnet-GN-XiFi-VPN-Proxy-Prague-L3VPN| VPN-Proxy to NREN CE</description><vlan-id>601</vlan-id><family><inet><policer inactive="inactive"><input>icmp-policer</input></policer><address><name>62.40.124.41/30</name></address></inet></family></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.22/32</name></address></inet><iso><address><name>49.51e5.0001.0620.4009.6022.00</name></address></iso></family></unit></interface></interfaces><protocols><ldp><interface><name>lo0.1</name></interface></ldp><bgp><log-updown/><group><name>internBGP</name><type>internal</type><local-address>62.40.98.27</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.26</name><description>Peering with Prague Master for joining VPN-RR</description></neighbor></group><group><name>BGPLU-GEANT</name><type>internal</type><local-address>62.40.102.21</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.20</name><description>Peering with GN PE</description></neighbor></group><group inactive="inactive"><name>VPN-RR</name><type>external</type><local-address>62.40.96.22</local-address><advertise-inactive/><family inactive="inactive"><inet-vpn><unicast>
-                            </unicast></inet-vpn><inet6-vpn><unicast>
-                            </unicast></inet6-vpn><l2vpn><signaling>
-                            </signaling></l2vpn><route-target inactive="inactive">
-                        </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.22</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>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><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>ps-deny-all</name><term><name>deny-all</name><then><reject/></then></term></policy-statement><policy-statement><name>vpn-proxy-remove-rt</name><term><name>1</name><then><community><delete/><community-name>vpn-proxy-remove-rt</community-name></community><accept/></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>VPN-RR-comm</name><members>20965:65200</members></community><community><name>vpn-proxy-remove-rt</name><members>target:20965:115</members></community><community><name>vpn1-client-comm</name><members>target:2200:01</members></community></policy-options><routing-instances><instance><name>CESnet-PRACE</name><instance-type>vrf</instance-type><interface><name>ae11.360</name></interface><route-distinguisher><rd-type>62.40.96.22: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>2852</peer-as><neighbor><name>62.40.125.11</name><description>CESnet L3VPN PRACE</description><as-override/></neighbor></group></bgp></protocols></instance><instance><name>CESnet-XiFi</name><instance-type>vrf</instance-type><interface><name>ae11.601</name></interface><route-distinguisher><rd-type>62.40.96.22: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>2852</peer-as><neighbor><name>62.40.124.42</name><description>peering with NREN for this particular L3VPN XiFi</description><import>vpn-proxy-remove-rt</import></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.26</next-hop></route><route><name>62.40.96.24/32</name><next-hop>62.40.98.26</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.22</router-id><route-distinguisher-id>62.40.96.22</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.26/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>BGP-Allow</name><from><address><name>62.40.96.23/32</name></address><address><name>62.40.96.24/32</name></address><address><name>62.40.98.26/32</name></address><address><name>62.40.102.20/32</name></address><address><name>62.40.124.42/32</name></address><address><name>62.40.125.11/32</name></address><protocol>tcp</protocol><port>bgp</port></from><then><accept/></then></term><term><name>BGP-Discard</name><from><protocol>tcp</protocol><port>bgp</port></from><then><count>BGP-discard-VPN-proxy</count><log/><discard>
-                                </discard></then></term><term><name>allow-all</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>1</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>1</name><pic><name>3</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>2</name><pic><name>2</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>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><fpc><name>5</name><pic><name>0</name><pic-mode>100G</pic-mode></pic><pic><name>1</name><pic-mode>100G</pic-mode></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>7</name><pic><name>0</name><pic-mode>100G</pic-mode></pic><pic><name>1</name><pic-mode>100G</pic-mode></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>8</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><network-services>enhanced-ip</network-services></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.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_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_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_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_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_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_AS2852_62.40.124.30</name><test><name>icmp-test</name><probe-type>icmp-ping</probe-type><target><address>62.40.124.30</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 SPARE</description><disable/></interface><interface><name>xe-0/0/1</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-0/1/0</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-0/1/1</name><description>PHY PUBLIC NIX P_AE12 SRF9934721 | CESNET ID: GEANT-to-NIX.CZ NIX.CZ ID: GEANT</description><gigether-options><ieee-802.3ad><bundle>ae12</bundle></ieee-802.3ad></gigether-options><optics-options><wavelength>1538.98</wavelength></optics-options></interface><interface><name>ge-0/2/0</name><description>PHY SPARE</description><disable/></interface><interface><name>ge-0/2/1</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | PRA TAAS Control trunk</description><no-traps/><vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><unit><name>250</name><description>SRV_GLOBAL INFRASTRUCTURE GTS #TAAS_GTS_CONTROL-1 | TAAS GTS</description><vlan-id>250</vlan-id><family><inet><mtu>9000</mtu><address><name>10.0.0.161/27</name></address><address><name>10.0.151.1/30</name></address></inet></family></unit><unit><name>251</name><description>SRV_GLOBAL INFRASTRUCTURE GTS #TAAS_GTS_CONTROL-2 | TAAS GTS</description><vlan-id>251</vlan-id><family><inet><mtu>9000</mtu><address><name>10.0.1.193/26</name></address><address><name>10.0.152.1/30</name></address></inet></family></unit><unit><name>252</name><description>SRV_GLOBAL INFRASTRUCTURE GTS #TAAS_GTS_GATE | TAAS GTS</description><vlan-id>252</vlan-id><family><inet><mtu>9000</mtu><address><name>62.40.104.177/29</name></address><address><name>62.40.110.1/24</name></address></inet><inet6><address><name>2001:798:dd:5::1/64</name></address></inet6></family></unit></interface><interface><name>ge-0/2/2</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE ACCESS GTS SRF0000001 | IDRAC CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180315</description><no-traps/><mtu>9192</mtu><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS GTS #GTS_IDRAC_PRA_CZ | IDRAC CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180315</description><family><inet><filter><input-list>PROTECTED_EXTERNAL_HEAD_IN</input-list><input-list>JRA4T2IDRAC_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_HEAD_OUT</output-list><output-list>JRA4T2IDRAC_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.106.60/31</name></address></inet><iso>
-                    </iso><inet6><filter><input-list>PROTECTED_EXTERNAL_V6_HEAD_IN</input-list><input-list>JRA4T2IDRAC_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>JRA4T2IDRAC_V6_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_V6_TAIL_OUT</output-list></filter><address><name>2001:798:bb:2::b9/126</name></address></inet6></family></unit></interface><interface><name>ge-0/2/3</name><description>PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | MGMT interface for corsa</description><unit><name>0</name><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>GE0-2-3_MIDDLE_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>GE0-2-3_MIDDLE_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.115.108/31</name></address></inet></family></unit></interface><interface><name>ge-0/2/4</name><description>PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | OPENFLOW port for virtual switch OF control</description><disable/></interface><interface><name>ge-0/2/5</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS | VPLS Internet Access | To GTS.SW2 ge-0/1/2</description><no-traps/><vlan-tagging/><mtu>9192</mtu><encapsulation>vlan-vpls</encapsulation><unit><name>0</name><encapsulation>vlan-vpls</encapsulation><vlan-id-range>1000-2600</vlan-id-range><family><vpls>
-                    </vpls></family></unit></interface><interface><name>ge-0/2/6</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS | BMS Internet Access | To GTS.SW2 ge-0/1/3</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>ge-0/2/7</name><description>PHY INFRASTRUCTURE ACCESS INFINERA SRF9915893 | PRA01-DTNX10-1 XCM 1</description><unit><name>0</name><family><bridge><interface-mode>access</interface-mode><vlan-id>999</vlan-id></bridge></family></unit></interface><interface><name>ge-0/2/8</name><apply-groups>NO_TRAPS</apply-groups><description>PHY SPARE | Reserved For GTS BOD</description><no-traps/><encapsulation>ethernet-ccc</encapsulation><unit><name>0</name><family><ccc>
-                    </ccc></family></unit></interface><interface inactive="inactive"><name>ge-0/2/9</name><description>PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9918997| BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811</description><mtu>9192</mtu><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-pra-cz-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811</description><family><inet><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.106.162/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:0798:fc00:0013::5/126</name></address></inet6></family></unit></interface><interface inactive="inactive"><name>ge-0/3/0</name><description>PHY SPARE |</description><disable/></interface><interface><name>ge-0/3/1</name><description>PHY INFRASTRUCTURE ACCESS INFINERA SRF9915895 | PRA01-DTNX10-1 XCM 2</description><unit><name>0</name><family><bridge><interface-mode>access</interface-mode><vlan-id>999</vlan-id></bridge></family></unit></interface><interface><name>ge-0/3/2</name><description>PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP OWAMP</description><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-pra-cz-owamp | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160706</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.68/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::7d/126</name></address></inet6></family></unit></interface><interface><name>ge-0/3/3</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE ACCESS GTS SRF0000001 | SRV MGMT CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180315</description><no-traps/><mtu>9192</mtu><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS GTS #GTS_MANAGEMENT_PRA_CZ | SRV MGMT CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180315</description><family><inet><filter><input-list>PROTECTED_EXTERNAL_HEAD_IN</input-list><input-list>JRA4T2_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_HEAD_OUT</output-list><output-list>JRA4T2_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.106.178/31</name></address></inet><iso>
-                    </iso><inet6><filter><input-list>PROTECTED_EXTERNAL_V6_HEAD_IN</input-list><input-list>JRA4T2_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>JRA4T2_V6_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_V6_TAIL_OUT</output-list></filter><address><name>2001:798:bb:2::c1/126</name></address></inet6></family></unit></interface><interface inactive="inactive"><name>ge-0/3/4</name><description>PHY SPARE |</description><disable/></interface><interface inactive="inactive"><name>ge-0/3/5</name><description>PHY SPARE |</description><disable/></interface><interface><name>ge-0/3/6</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access | To GTS EX P22</description><no-traps/><vlan-tagging/><mtu>9192</mtu><encapsulation>vlan-vpls</encapsulation><unit><name>0</name><encapsulation>vlan-vpls</encapsulation><vlan-id-range>1000-2600</vlan-id-range><family><vpls>
-                    </vpls></family></unit></interface><interface><name>ge-0/3/7</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access | To GTS EX P23</description><no-traps/><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>ge-0/3/8</name><apply-groups>NO_TRAPS</apply-groups><description>PHY SPARE | Reserved For GTS BOD</description><disable/><no-traps/></interface><interface><name>ge-0/3/9</name><description>PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | pra cz POP LAN</description><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation><unit><name>21</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-pra-cz-DRAC | HADES DRAC</description><vlan-id>21</vlan-id><family><inet><filter><input><filter-name>HADES-IN</filter-name></input><output><filter-name>HADES-OUT</filter-name></output></filter><address><name>62.40.117.98/31</name></address></inet><iso>
-                    </iso></family></unit><unit><name>22</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP_PRA_CZ | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811</description><vlan-id>22</vlan-id><family><inet><filter><input-list>PROTECTED_EXTERNAL_HEAD_IN</input-list><input-list>VL022_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_HEAD_OUT</output-list><output-list>VL022_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.106.160/31</name></address></inet><iso>
-                    </iso><inet6><filter><input-list>PROTECTED_EXTERNAL_V6_HEAD_IN</input-list><input-list>VL022_V6_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_V6_TAIL_OUT</input-list><output-list>PROTECTED_EXTERNAL_V6_HEAD_OUT</output-list><output-list>VL022_V6_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_V6_TAIL_OUT</output-list></filter><address><name>2001:0798:fc00:0013::1/126</name></address></inet6></family></unit><unit><name>23</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-pra-cz-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.32/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::2d/126</name></address></inet6></family></unit><unit><name>24</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-pra-cz-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.66/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::79/126</name></address></inet6></family></unit><unit><name>60</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-pra-cz| KVMoIP</description><vlan-id>60</vlan-id><family><inet><filter><input><filter-name>LAN-in</filter-name></input><output><filter-name>LAN-out</filter-name></output></filter><address><name>62.40.121.37/30</name></address></inet><iso>
-                    </iso></family></unit><unit><name>80</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-simple-lookup-service | Perfsonar Simple Lookup Service</description><vlan-id>80</vlan-id><family><inet><address><name>62.40.120.49/29</name></address></inet><inet6><address><name>2001:798:ff32:2e::1/64</name></address></inet6></family></unit><unit><name>170</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ipcamera-pra-cz| IP cameras</description><vlan-id>170</vlan-id><family><inet><filter><input><filter-name>VM-RANGE-VL170-IN</filter-name></input><output><filter-name>VM-RANGE-VL170-OUT</filter-name></output></filter><address><name>62.40.118.17/28</name></address></inet><iso>
-                    </iso><inet6 inactive="inactive"><address><name>2001:798:ee:7::1/64</name></address></inet6></family></unit><unit><name>301</name><description>SRV_GLOBAL INFRASTRUCTURE  Access  #PRA_Groove_1 | PRA Groove 1  </description><vlan-id>301</vlan-id><family><inet><address><name>10.0.3.49/30</name></address></inet></family></unit><unit><name>302</name><description>SRV_GLOBAL INFRASTRUCTURE  Access  #PRA_Groove_1_Management | PRA Groove 1 Direct Management</description><vlan-id>302</vlan-id><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>vc4_access_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>vc4_access_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.116.16/31</name></address></inet></family></unit><unit><name>401</name><description>SRV_GLOBAL INFRASTRUCTURE  Access  #PRA_Groove_2 | PRA Groove 2  </description><vlan-id>401</vlan-id><family><inet><address><name>10.0.3.53/30</name></address></inet></family></unit><unit><name>402</name><description>SRV_GLOBAL INFRASTRUCTURE  Access  #PRA_Groove_2_Management | PRA Groove 2 Direct Management</description><vlan-id>402</vlan-id><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>vc4_access_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>vc4_access_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.116.18/31</name></address></inet></family></unit><unit><name>991</name><description>SRV_GLOBAL INFRASTRUCTURE Access #PRA_Groove | PRA Groove G30</description><vlan-id>991</vlan-id><family><inet><address><name>172.18.13.1/24</name></address></inet></family></unit><unit><name>1021</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS  #BOD_SDN_PILOT_HOST_ETH0_PRAGUE | BOD SDN PILOT HOST-F ETH0</description><vlan-id>1021</vlan-id><family><inet><address><name>62.40.121.93/30</name></address></inet></family></unit><unit><name>1022</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS  #BOD_SDN_PILOT_HOST_ETH1_PRAGUE | BOD SDN PILOT HOST-F ETH1</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1022</vlan-id></unit><unit><name>1023</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS  #BOD_SDN_PILOT_HOST_ETH2_PRAGUE | BOD SDN PILOT HOST-F ETH2</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1023</vlan-id></unit><unit><name>1024</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS  #BOD_SDN_PILOT_HOST_ETH3_PRAGUE | BOD SDN PILOT HOST-F ETH3</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1024</vlan-id></unit><unit><name>1025</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS  #BOD_SDN_PILOT_HOST_ETH4_PRAGUE | BOD SDN PILOT HOST-F ETH4</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1025</vlan-id></unit></interface><interface><name>xe-1/0/0</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SERVER 9 | link to GTS SERVER 9</description><undocumented><enable/></undocumented><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/0/1</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SERVER 10 | link to GTS SERVER 10</description><undocumented><enable/></undocumented><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/0/2</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SERVER 11 | link to GTS SERVER 11</description><undocumented><enable/></undocumented><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-1/0/3</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SERVER 12 | link to GTS SERVER 12</description><undocumented><enable/></undocumented><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>et-1/1/0</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-1/2/0</name><description>PHY PUBLIC NIX P_AE12 SRF9943415 | </description><gigether-options><ieee-802.3ad><bundle>ae12</bundle></ieee-802.3ad></gigether-options><optics-options><wavelength>1542.14</wavelength></optics-options></interface><interface><name>xe-1/2/1</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-1/2/2</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-1/2/3</name><description>PHY SPARE</description><disable/></interface><interface><name>et-1/3/0</name><description>PHY CUSTOMER CESNET P_AE11 SRF9922157| </description><gigether-options><ieee-802.3ad><bundle>ae11</bundle></ieee-802.3ad></gigether-options></interface><interface><name>lt-1/3/0</name><description>TUN INFRASTRUCTURE ACCESS SRF0000001 </description><unit><name>16</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-pra-cz-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.46/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::15d/126</name></address></inet6></family></unit><unit><name>61</name><description>SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #PRA-IAS-RE-Peering | BGP Peering - IAS Side</description><encapsulation>ethernet</encapsulation><peer-unit>16</peer-unit><family><inet><address><name>83.97.89.47/31</name></address></inet><inet6><address><name>2001:798:1::15e/126</name></address></inet6></family></unit></interface><interface><name>xe-2/0/0</name><description>PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL</description><mtu>9192</mtu><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-pra-cz-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160706</description><family><inet><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.70/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::81/126</name></address></inet6></family></unit></interface><interface><name>xe-2/0/1</name><description>PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P4</description></interface><interface><name>xe-2/0/2</name><description>PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P5</description><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation><unit><name>1022</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-1_pra </description><encapsulation>vlan-ccc</encapsulation><vlan-id>1022</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1023</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-4  </description><encapsulation>vlan-ccc</encapsulation><vlan-id>1023</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1024</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-5  </description><encapsulation>vlan-ccc</encapsulation><vlan-id>1024</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>1025</name><description>SRV_L2CIRCUIT INFRASTRUCTURE JRA1 JRA1 | #SDN-BOD-BR53-OF-6  </description><encapsulation>vlan-ccc</encapsulation><vlan-id>1025</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit></interface><interface><name>xe-2/0/3</name><description>PHY INFRASTRUCTURE ACCESS JRA SRF0000001 | JRA MX to CORSA P6</description><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation><unit><name>1003</name><description>SRV_L3VPN INFRASTRUCTURE ACCESS JRA1 #JRA1_SDN_BOD_PILOT_BR53_pra | SDN-BOD PILOT BR53</description><vlan-id>1003</vlan-id></unit></interface><interface><name>xe-2/1/0</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P7</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-2/1/1</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P8</description><no-traps/><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-2/1/2</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P9</description><no-traps/><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-2/1/3</name><description>PHY SPARE</description><disable/></interface><interface><name>lt-2/2/0</name><description>TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 |</description><unit><name>12</name><description>TUN INFRASTRUCTURE ACCESS MDVPN SRF0000001 | MDVPN CoC, 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.20/31</name></address></inet><mpls>
-                    </mpls></family></unit><unit><name>13</name><description>SRV_TUN INFRASTRUCTURE ACCESS MDVPN #GEANT_IBGP_Peering-prague| GN PE to VPN-Proxy for IBGP </description><encapsulation>ethernet</encapsulation><peer-unit>31</peer-unit><family><inet><address><name>62.40.98.26/31</name></address></inet></family></unit></interface><interface><name>xe-2/2/0</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/2/1</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/2/2</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/2/3</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/3/0</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to CORSA P10</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-2/3/1</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/3/2</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | SPARE 10GB PORT CORSA P12</description><no-traps/></interface><interface inactive="inactive"><name>xe-2/3/3</name><no-traps/><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-3/0/0</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 0</description><no-traps/><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-3/0/1</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 1</description><undocumented><enable/></undocumented><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-3/0/2</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2</description><undocumented><enable/></undocumented><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-3/0/3</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 3</description><undocumented><enable/></undocumented><no-traps/></interface><interface><name>et-3/1/0</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-3/2/0</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | link to GTS SERVER 8</description><undocumented><enable/></undocumented><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>xe-3/2/1</name><description>PHY INFRASTRUCTURE GTS SRF0000001 | AMS GTS Server #5</description><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation><unit><name>11</name><description>GTS_link|PR-5ff1b72a0d</description><encapsulation>vlan-ccc</encapsulation><vlan-id>11</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>12</name><description>GTS_link|PR-af859a090e</description><encapsulation>vlan-ccc</encapsulation><vlan-id>12</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>13</name><description>GTS_link|PR-2faca91395</description><encapsulation>vlan-ccc</encapsulation><vlan-id>13</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit></interface><interface><name>xe-3/2/2</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | AMS GTS Server #6</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation><unit><name>19</name><description>GTS_link|PR-e1b2e32559</description><encapsulation>vlan-ccc</encapsulation><vlan-id>19</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>20</name><description>GTS_link|PR-e1b2e32559</description><encapsulation>vlan-ccc</encapsulation><vlan-id>20</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>21</name><description>GTS_link|PR-0961c3acc2</description><encapsulation>vlan-ccc</encapsulation><vlan-id>21</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit><unit><name>22</name><description>GTS_link|PR-370f033602</description><encapsulation>vlan-ccc</encapsulation><vlan-id>22</vlan-id><input-vlan-map><pop/></input-vlan-map><output-vlan-map><push/></output-vlan-map></unit></interface><interface><name>xe-3/2/3</name><apply-groups>NO_TRAPS</apply-groups><description>PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to SERVER 7 (BMS)</description><no-traps/><flexible-vlan-tagging/><mtu>9000</mtu><encapsulation>flexible-ethernet-services</encapsulation><unit><name>12</name><description>SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #lon2_pra-WP6-GTS_20064 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>12</vlan-id></unit><unit><name>16</name><description>SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #ham_pra-WP6-GTS_21010 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>16</vlan-id></unit></interface><interface><name>et-3/3/0</name><description>PHY SPARE | Reserved for Pavle JRA2T4 NetMon</description></interface><interface><name>ms-4/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-5/0/2</name><description>PHY INFRASTRUCTURE BACKBONE P_ae2 SRF0000001 | Coriant G30 link 1</description><gigether-options><ieee-802.3ad><bundle>ae2</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-5/0/5</name><description>PHY INFRASTRUCTURE BACKBONE P_ae2 SRF0000001 | Coriant G30 link 2</description><gigether-options><ieee-802.3ad><bundle>ae2</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-5/1/2</name><description>PHY INFRASTRUCTURE BACKBONE P_ae2 SRF0000001 | Coriant G30 link 3</description><gigether-options><ieee-802.3ad><bundle>ae2</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-5/1/5</name><description>PHY SPARE</description><disable/></interface><interface><name>et-7/0/2</name><description>PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 1</description><gigether-options><ieee-802.3ad><bundle>ae8</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-7/0/5</name><description>PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 2</description><gigether-options><ieee-802.3ad><bundle>ae8</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-7/1/2</name><description>PHY INFRASTRUCTURE BACKBONE P_ae8 SRF0000001 | Coriant G30 link 3</description><gigether-options><ieee-802.3ad><bundle>ae8</bundle></ieee-802.3ad></gigether-options></interface><interface><name>et-7/1/5</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-8/0/0</name><description>PHY SPARE</description></interface><interface><name>xe-8/0/1</name><description>PHY SPARE</description></interface><interface><name>xe-8/0/2</name><description>PHY SPARE</description></interface><interface><name>xe-8/0/3</name><description>PHY SPARE</description></interface><interface><name>xe-8/0/4</name><description>PHY SPARE</description></interface><interface><name>xe-8/0/5</name><description>PHY SPARE</description></interface><interface><name>xe-8/0/6</name><description>PHY SPARE</description></interface><interface><name>xe-8/0/7</name><description>PHY SPARE</description></interface><interface><name>xe-8/1/0</name><description>PHY SPARE</description></interface><interface><name>xe-8/1/1</name><description>PHY SPARE</description></interface><interface><name>xe-8/1/2</name><description>PHY SPARE</description></interface><interface><name>xe-8/1/3</name><description>PHY SPARE</description></interface><interface><name>xe-8/1/4</name><description>PHY SPARE</description></interface><interface><name>xe-8/1/5</name><description>PHY SPARE</description></interface><interface><name>xe-8/1/6</name><description>PHY SPARE</description></interface><interface><name>xe-8/1/7</name><description>PHY SPARE</description></interface><interface><name>xe-8/2/0</name><description>PHY SPARE</description></interface><interface><name>xe-8/2/1</name><description>PHY SPARE</description></interface><interface><name>xe-8/2/2</name><description>PHY SPARE</description></interface><interface><name>xe-8/2/3</name><description>PHY SPARE</description></interface><interface><name>xe-8/2/4</name><description>PHY SPARE</description></interface><interface><name>xe-8/2/5</name><description>PHY SPARE</description></interface><interface><name>xe-8/2/6</name><description>PHY SPARE</description></interface><interface><name>xe-8/2/7</name><description>PHY SPARE</description></interface><interface><name>xe-8/3/0</name><description>PHY SPARE</description></interface><interface><name>xe-8/3/1</name><description>PHY SPARE</description></interface><interface><name>xe-8/3/2</name><description>PHY SPARE</description></interface><interface><name>xe-8/3/3</name><description>PHY SPARE</description></interface><interface><name>xe-8/3/4</name><description>PHY SPARE</description></interface><interface><name>xe-8/3/5</name><description>PHY SPARE</description></interface><interface><name>xe-8/3/6</name><description>PHY SPARE</description></interface><interface><name>xe-8/3/7</name><description>PHY SPARE</description></interface><interface><name>ae2</name><description>LAG INFRASTRUCTURE BACKBONE PRA SRF0000001 | pra-vie  | Coriant G30 300G</description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.97.7</neighbor><local-address>62.40.97.2</local-address></bfd-liveness-detection><minimum-links>3</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #PRA_VIE_IPTRUNK | PRA-VIE |Coriant G30 300G</description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9100</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.190/31</name></address></inet><iso>
-                    </iso><inet6><mtu>9100</mtu><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:cc::25/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae8</name><description>LAG INFRASTRUCTURE BACKBONE PRA SRF0000001 | fra-pra  | Coriant G30 300G</description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.97.12</neighbor><local-address>62.40.97.2</local-address></bfd-liveness-detection><minimum-links>3</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA_PRA_IPTRUNK | PRA-FRA |Coriant G30 300G</description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9100</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.193/31</name></address></inet><iso>
-                    </iso><inet6><mtu>9100</mtu><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:cc::2a/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae11</name><description>LAG CUSTOMER CESNET SRF9927551 | CESNET AP</description><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><unit><name>111</name><description>SRV_L3VPN CUSTOMER CESNET #CESNET_AP1_LHCONE | ASN2852</description><vlan-id>111</vlan-id><family><inet><mtu>9000</mtu><filter><input><filter-name>LHCONE-in</filter-name></input></filter><address><name>62.40.126.254/31</name></address></inet><inet6><mtu>9000</mtu><filter><input><filter-name>LHCONE6-in</filter-name></input><output><filter-name>LHCONE6-out</filter-name></output></filter><address><name>2001:798:111:1::45/126</name></address></inet6></family></unit><unit><name>333</name><description>SRV_IAS CUSTOMER CESNET #CESNET_AP1_IAS IASPS | ASN2852 </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_CESNET_IN</filter-name></input><output><filter-name>nren_IAS_CESNET_OUT</filter-name></output></filter><address><name>83.97.88.41/30</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>nren_IAS_CESNET_V6_IN</filter-name></input><output><filter-name>nren_IAS_CESNET_V6_OUT</filter-name></output></filter><address><name>2001:798:1::2d/126</name></address></inet6></family></unit><unit><name>600</name><description>SRV_GLOBAL CUSTOMER CESNET #CESNET_AP1 | ASN2852 | </description><vlan-id>600</vlan-id><family><inet><accounting><source-class-usage><output/></source-class-usage><destination-class-usage/></accounting><filter><input><filter-name>CESNE-in</filter-name></input><output><filter-name>CESNE-out</filter-name></output></filter><address><name>62.40.124.29/30</name></address></inet><iso>
-                    </iso><inet6><filter><input><filter-name>CESne6-in</filter-name></input><output><filter-name>CESne6-out</filter-name></output></filter><address><name>2001:798:13:10aa::1/126</name></address></inet6></family></unit><unit><name>667</name><description>SRV_CLS CUSTOMER CESNET #CESNET_AP_CLS|ASN2852 | </description><vlan-id>667</vlan-id><family><inet><mtu>9000</mtu><filter><input><filter-name>nren_CLS_CESNET_IN</filter-name></input><output><filter-name>nren_CLS_CESNET_OUT</filter-name></output></filter><address><name>62.40.100.0/31</name></address></inet><inet6><mtu>9000</mtu><filter><input><filter-name>nren_CLS_CESNET_V6_IN</filter-name></input><output><filter-name>nren_CLS_CESNET_V6_OUT</filter-name></output></filter><address><name>2001:798::d/126</name></address></inet6></family></unit><unit><name>1700</name><description>SRV_GLOBAL CUSTOMER CESNET P_ae11 SRF0000001| CESnet NSI range - GCS</description><encapsulation>vlan-ccc</encapsulation><vlan-id-list>1700-1799</vlan-id-list></unit></interface><interface><name>ae12</name><description>LAG PUBLIC NIX SRF9934393 |</description><mtu>1514</mtu><mac>a8:d0:e5:f7:0f:c4</mac><no-gratuitous-arp-reply/><no-gratuitous-arp-request/><aggregated-ether-options><minimum-links>1</minimum-links></aggregated-ether-options><unit><name>0</name><description>SRV_IAS PUBLIC GEANT #IX_Peerings_in_NIX | </description><family><inet><mtu>1500</mtu><filter><input><filter-name>NIX.CZ-in</filter-name></input><output><filter-name>NIX.CZ-out</filter-name></output></filter><policer><arp>IX-ARP</arp></policer><address><name>91.210.16.189/22</name></address></inet><inet6><mtu>1500</mtu><filter><input><filter-name>NIX.CZ-V6-in</filter-name></input><output><filter-name>NIX.CZ-V6-out</filter-name></output></filter><address><name>2001:7f8:14::95:1/64</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.122/32</name></address></inet></family></unit></interface><interface><name>irb</name><unit><name>999</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-pra-cz-mgmt-vrf-vlan999|</description><family><inet><address><name>10.0.2.100/24</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.97.2/32</name></address></inet><iso><address><name>49.51e5.0001.0620.4009.7002.00</name></address></iso><inet6><filter><input><filter-name>ROUTER_access_V6</filter-name></input></filter><address><name>2001:798:13:20ff::1/128</name></address></inet6></family></unit></interface></interfaces><snmp><location>Prague, CZ ##LOC  50 6 5 N 14 23 30 E 5m##</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>/* JANET monitoring tool */</comment><clients><name>128.86.32.16/29</name></clients></community><community><name>0pBiFbDmdvpn</name><authorization>read-only</authorization><logical-system><name>VPN-PROXY</name><routing-instance><name>CESnet-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.97.2</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.97.2</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.97.2</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-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>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>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>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>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>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>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><comment>/* LHCONE */</comment><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><prefix-list-item><name>2001:798:ff32:2e::0/64</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</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><comment>/* Primary Dashboard */</comment><prefix-list-item><name>62.40.104.51/32</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><comment>/* Backup Dashboard */</comment><prefix-list-item><name>62.40.104.155/32</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><comment>/* LHCONE */</comment><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>geant-address-space-V6</name><prefix-list-item><name>2001:798::/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-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>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>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>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>route-from-CESnet</name><prefix-list-item><name>5.172.184.0/22</name></prefix-list-item><prefix-list-item><name>5.172.190.0/23</name></prefix-list-item><prefix-list-item><name>5.183.244.0/22</name></prefix-list-item><prefix-list-item><name>5.201.0.0/17</name></prefix-list-item><prefix-list-item><name>5.201.0.0/18</name></prefix-list-item><prefix-list-item><name>23.128.24.0/24</name></prefix-list-item><prefix-list-item><name>23.128.25.0/25</name></prefix-list-item><prefix-list-item><name>23.128.25.240/28</name></prefix-list-item><prefix-list-item><name>27.0.0.0/24</name></prefix-list-item><prefix-list-item><name>27.50.0.0/22</name></prefix-list-item><prefix-list-item><name>31.25.248.0/21</name></prefix-list-item><prefix-list-item><name>31.131.48.0/20</name></prefix-list-item><prefix-list-item><name>31.133.80.0/20</name></prefix-list-item><prefix-list-item><name>31.193.96.0/21</name></prefix-list-item><prefix-list-item><name>37.128.152.0/21</name></prefix-list-item><prefix-list-item><name>39.0.1.0/24</name></prefix-list-item><prefix-list-item><name>45.86.164.0/22</name></prefix-list-item><prefix-list-item><name>45.86.164.0/24</name></prefix-list-item><prefix-list-item><name>45.86.166.0/24</name></prefix-list-item><prefix-list-item><name>45.86.167.0/24</name></prefix-list-item><prefix-list-item><name>45.93.152.0/22</name></prefix-list-item><prefix-list-item><name>46.30.88.0/21</name></prefix-list-item><prefix-list-item><name>46.30.88.0/22</name></prefix-list-item><prefix-list-item><name>46.30.92.0/22</name></prefix-list-item><prefix-list-item><name>46.227.172.0/24</name></prefix-list-item><prefix-list-item><name>46.239.128.0/20</name></prefix-list-item><prefix-list-item><name>62.3.160.0/19</name></prefix-list-item><prefix-list-item><name>62.93.32.0/19</name></prefix-list-item><prefix-list-item><name>62.108.160.0/20</name></prefix-list-item><prefix-list-item><name>62.108.176.0/21</name></prefix-list-item><prefix-list-item><name>74.116.176.0/22</name></prefix-list-item><prefix-list-item><name>77.47.128.0/17</name></prefix-list-item><prefix-list-item><name>77.47.128.0/24</name></prefix-list-item><prefix-list-item><name>77.47.129.0/24</name></prefix-list-item><prefix-list-item><name>77.47.130.0/24</name></prefix-list-item><prefix-list-item><name>77.47.131.0/24</name></prefix-list-item><prefix-list-item><name>77.47.132.0/24</name></prefix-list-item><prefix-list-item><name>77.47.133.0/24</name></prefix-list-item><prefix-list-item><name>77.47.134.0/24</name></prefix-list-item><prefix-list-item><name>77.47.135.0/24</name></prefix-list-item><prefix-list-item><name>77.47.136.0/24</name></prefix-list-item><prefix-list-item><name>77.47.137.0/24</name></prefix-list-item><prefix-list-item><name>77.47.138.0/24</name></prefix-list-item><prefix-list-item><name>77.47.139.0/24</name></prefix-list-item><prefix-list-item><name>77.47.140.0/24</name></prefix-list-item><prefix-list-item><name>77.47.141.0/24</name></prefix-list-item><prefix-list-item><name>77.47.148.0/24</name></prefix-list-item><prefix-list-item><name>77.47.149.0/24</name></prefix-list-item><prefix-list-item><name>77.47.150.0/24</name></prefix-list-item><prefix-list-item><name>77.47.151.0/24</name></prefix-list-item><prefix-list-item><name>77.47.152.0/24</name></prefix-list-item><prefix-list-item><name>77.47.153.0/24</name></prefix-list-item><prefix-list-item><name>77.47.154.0/24</name></prefix-list-item><prefix-list-item><name>77.47.155.0/24</name></prefix-list-item><prefix-list-item><name>77.47.156.0/24</name></prefix-list-item><prefix-list-item><name>77.47.157.0/24</name></prefix-list-item><prefix-list-item><name>77.47.158.0/24</name></prefix-list-item><prefix-list-item><name>77.47.159.0/24</name></prefix-list-item><prefix-list-item><name>77.47.160.0/19</name></prefix-list-item><prefix-list-item><name>77.47.160.0/24</name></prefix-list-item><prefix-list-item><name>77.47.161.0/24</name></prefix-list-item><prefix-list-item><name>77.47.162.0/24</name></prefix-list-item><prefix-list-item><name>77.47.163.0/24</name></prefix-list-item><prefix-list-item><name>77.47.164.0/24</name></prefix-list-item><prefix-list-item><name>77.47.165.0/24</name></prefix-list-item><prefix-list-item><name>77.47.166.0/24</name></prefix-list-item><prefix-list-item><name>77.47.167.0/24</name></prefix-list-item><prefix-list-item><name>77.47.168.0/24</name></prefix-list-item><prefix-list-item><name>77.47.169.0/24</name></prefix-list-item><prefix-list-item><name>77.47.170.0/24</name></prefix-list-item><prefix-list-item><name>77.47.171.0/24</name></prefix-list-item><prefix-list-item><name>77.47.172.0/24</name></prefix-list-item><prefix-list-item><name>77.47.173.0/24</name></prefix-list-item><prefix-list-item><name>77.47.174.0/24</name></prefix-list-item><prefix-list-item><name>77.47.175.0/24</name></prefix-list-item><prefix-list-item><name>77.47.176.0/24</name></prefix-list-item><prefix-list-item><name>77.47.177.0/24</name></prefix-list-item><prefix-list-item><name>77.47.178.0/23</name></prefix-list-item><prefix-list-item><name>77.47.184.0/24</name></prefix-list-item><prefix-list-item><name>77.47.185.0/24</name></prefix-list-item><prefix-list-item><name>77.47.186.0/24</name></prefix-list-item><prefix-list-item><name>77.47.187.0/24</name></prefix-list-item><prefix-list-item><name>77.47.188.0/24</name></prefix-list-item><prefix-list-item><name>77.47.189.0/24</name></prefix-list-item><prefix-list-item><name>77.47.190.0/24</name></prefix-list-item><prefix-list-item><name>77.47.191.0/24</name></prefix-list-item><prefix-list-item><name>77.47.192.0/24</name></prefix-list-item><prefix-list-item><name>77.47.193.0/24</name></prefix-list-item><prefix-list-item><name>77.47.194.0/24</name></prefix-list-item><prefix-list-item><name>77.47.195.0/24</name></prefix-list-item><prefix-list-item><name>77.47.196.0/24</name></prefix-list-item><prefix-list-item><name>77.47.197.0/24</name></prefix-list-item><prefix-list-item><name>77.47.198.0/24</name></prefix-list-item><prefix-list-item><name>77.47.199.0/24</name></prefix-list-item><prefix-list-item><name>77.47.200.0/24</name></prefix-list-item><prefix-list-item><name>77.47.201.0/24</name></prefix-list-item><prefix-list-item><name>77.47.202.0/24</name></prefix-list-item><prefix-list-item><name>77.47.203.0/24</name></prefix-list-item><prefix-list-item><name>77.47.204.0/24</name></prefix-list-item><prefix-list-item><name>77.47.205.0/24</name></prefix-list-item><prefix-list-item><name>77.47.206.0/24</name></prefix-list-item><prefix-list-item><name>77.47.207.0/24</name></prefix-list-item><prefix-list-item><name>77.47.208.0/24</name></prefix-list-item><prefix-list-item><name>77.47.209.0/24</name></prefix-list-item><prefix-list-item><name>77.47.214.0/24</name></prefix-list-item><prefix-list-item><name>77.47.215.0/24</name></prefix-list-item><prefix-list-item><name>77.47.216.0/24</name></prefix-list-item><prefix-list-item><name>77.47.217.0/24</name></prefix-list-item><prefix-list-item><name>77.47.218.0/24</name></prefix-list-item><prefix-list-item><name>77.47.219.0/24</name></prefix-list-item><prefix-list-item><name>77.47.220.0/24</name></prefix-list-item><prefix-list-item><name>77.47.221.0/24</name></prefix-list-item><prefix-list-item><name>77.47.222.0/24</name></prefix-list-item><prefix-list-item><name>77.47.223.0/24</name></prefix-list-item><prefix-list-item><name>77.47.224.0/24</name></prefix-list-item><prefix-list-item><name>77.47.225.0/24</name></prefix-list-item><prefix-list-item><name>77.47.226.0/24</name></prefix-list-item><prefix-list-item><name>77.47.227.0/24</name></prefix-list-item><prefix-list-item><name>77.47.228.0/24</name></prefix-list-item><prefix-list-item><name>77.47.229.0/24</name></prefix-list-item><prefix-list-item><name>77.47.230.0/24</name></prefix-list-item><prefix-list-item><name>77.47.231.0/24</name></prefix-list-item><prefix-list-item><name>77.47.232.0/24</name></prefix-list-item><prefix-list-item><name>77.47.233.0/24</name></prefix-list-item><prefix-list-item><name>77.47.234.0/24</name></prefix-list-item><prefix-list-item><name>77.47.235.0/24</name></prefix-list-item><prefix-list-item><name>77.47.236.0/24</name></prefix-list-item><prefix-list-item><name>77.47.237.0/24</name></prefix-list-item><prefix-list-item><name>77.47.238.0/24</name></prefix-list-item><prefix-list-item><name>77.47.239.0/24</name></prefix-list-item><prefix-list-item><name>77.47.244.0/22</name></prefix-list-item><prefix-list-item><name>77.47.248.0/22</name></prefix-list-item><prefix-list-item><name>77.47.252.0/22</name></prefix-list-item><prefix-list-item><name>77.80.0.0/17</name></prefix-list-item><prefix-list-item><name>78.41.144.0/23</name></prefix-list-item><prefix-list-item><name>78.41.144.0/24</name></prefix-list-item><prefix-list-item><name>78.41.145.0/24</name></prefix-list-item><prefix-list-item><name>78.41.148.0/24</name></prefix-list-item><prefix-list-item><name>78.41.149.0/24</name></prefix-list-item><prefix-list-item><name>78.41.150.0/24</name></prefix-list-item><prefix-list-item><name>78.104.0.0/16</name></prefix-list-item><prefix-list-item><name>78.104.0.0/20</name></prefix-list-item><prefix-list-item><name>78.104.68.0/22</name></prefix-list-item><prefix-list-item><name>78.104.72.0/24</name></prefix-list-item><prefix-list-item><name>78.104.145.0/24</name></prefix-list-item><prefix-list-item><name>78.104.175.0/24</name></prefix-list-item><prefix-list-item><name>78.128.128.0/17</name></prefix-list-item><prefix-list-item><name>79.170.104.0/22</name></prefix-list-item><prefix-list-item><name>79.170.104.0/24</name></prefix-list-item><prefix-list-item><name>79.170.105.0/24</name></prefix-list-item><prefix-list-item><name>79.170.106.0/24</name></prefix-list-item><prefix-list-item><name>79.170.107.0/24</name></prefix-list-item><prefix-list-item><name>79.170.108.0/22</name></prefix-list-item><prefix-list-item><name>79.170.108.0/24</name></prefix-list-item><prefix-list-item><name>79.170.109.0/24</name></prefix-list-item><prefix-list-item><name>79.170.110.0/24</name></prefix-list-item><prefix-list-item><name>79.170.111.0/24</name></prefix-list-item><prefix-list-item><name>80.94.16.0/20</name></prefix-list-item><prefix-list-item><name>80.94.160.0/20</name></prefix-list-item><prefix-list-item><name>80.94.160.0/21</name></prefix-list-item><prefix-list-item><name>80.94.160.0/24</name></prefix-list-item><prefix-list-item><name>80.94.161.0/24</name></prefix-list-item><prefix-list-item><name>80.94.162.0/24</name></prefix-list-item><prefix-list-item><name>80.94.163.0/24</name></prefix-list-item><prefix-list-item><name>80.94.164.0/24</name></prefix-list-item><prefix-list-item><name>80.94.165.0/24</name></prefix-list-item><prefix-list-item><name>80.94.166.0/24</name></prefix-list-item><prefix-list-item><name>80.94.167.0/24</name></prefix-list-item><prefix-list-item><name>80.94.168.0/23</name></prefix-list-item><prefix-list-item><name>80.94.168.0/24</name></prefix-list-item><prefix-list-item><name>80.94.169.0/24</name></prefix-list-item><prefix-list-item><name>80.94.170.0/23</name></prefix-list-item><prefix-list-item><name>80.94.170.0/24</name></prefix-list-item><prefix-list-item><name>80.94.171.0/24</name></prefix-list-item><prefix-list-item><name>80.94.172.0/22</name></prefix-list-item><prefix-list-item><name>80.94.172.0/24</name></prefix-list-item><prefix-list-item><name>80.94.173.0/24</name></prefix-list-item><prefix-list-item><name>80.94.174.0/24</name></prefix-list-item><prefix-list-item><name>80.94.175.0/24</name></prefix-list-item><prefix-list-item><name>81.6.176.0/21</name></prefix-list-item><prefix-list-item><name>81.6.184.0/22</name></prefix-list-item><prefix-list-item><name>81.6.187.0/24</name></prefix-list-item><prefix-list-item><name>81.6.188.0/22</name></prefix-list-item><prefix-list-item><name>81.26.0.0/20</name></prefix-list-item><prefix-list-item><name>81.26.16.0/20</name></prefix-list-item><prefix-list-item><name>81.91.164.0/24</name></prefix-list-item><prefix-list-item><name>81.161.112.0/23</name></prefix-list-item><prefix-list-item><name>82.139.128.0/19</name></prefix-list-item><prefix-list-item><name>82.139.128.0/20</name></prefix-list-item><prefix-list-item><name>82.139.144.0/23</name></prefix-list-item><prefix-list-item><name>82.139.152.0/22</name></prefix-list-item><prefix-list-item><name>82.139.168.0/21</name></prefix-list-item><prefix-list-item><name>82.139.176.0/21</name></prefix-list-item><prefix-list-item><name>82.145.64.0/19</name></prefix-list-item><prefix-list-item><name>82.146.224.0/19</name></prefix-list-item><prefix-list-item><name>83.136.32.0/21</name></prefix-list-item><prefix-list-item><name>83.136.32.0/24</name></prefix-list-item><prefix-list-item><name>83.136.33.0/24</name></prefix-list-item><prefix-list-item><name>83.136.34.0/24</name></prefix-list-item><prefix-list-item><name>83.136.35.0/24</name></prefix-list-item><prefix-list-item><name>83.136.36.0/24</name></prefix-list-item><prefix-list-item><name>83.136.37.0/24</name></prefix-list-item><prefix-list-item><name>83.136.38.0/24</name></prefix-list-item><prefix-list-item><name>83.230.64.0/20</name></prefix-list-item><prefix-list-item><name>83.230.64.0/21</name></prefix-list-item><prefix-list-item><name>83.230.94.0/24</name></prefix-list-item><prefix-list-item><name>83.230.96.0/19</name></prefix-list-item><prefix-list-item><name>83.230.110.0/24</name></prefix-list-item><prefix-list-item><name>83.230.118.0/23</name></prefix-list-item><prefix-list-item><name>83.230.123.0/24</name></prefix-list-item><prefix-list-item><name>84.205.64.0/24</name></prefix-list-item><prefix-list-item><name>84.205.65.0/24</name></prefix-list-item><prefix-list-item><name>84.205.66.0/24</name></prefix-list-item><prefix-list-item><name>84.205.67.0/24</name></prefix-list-item><prefix-list-item><name>84.205.68.0/24</name></prefix-list-item><prefix-list-item><name>84.205.69.0/24</name></prefix-list-item><prefix-list-item><name>84.205.70.0/24</name></prefix-list-item><prefix-list-item><name>84.205.71.0/24</name></prefix-list-item><prefix-list-item><name>84.205.72.0/24</name></prefix-list-item><prefix-list-item><name>84.205.73.0/24</name></prefix-list-item><prefix-list-item><name>84.205.74.0/24</name></prefix-list-item><prefix-list-item><name>84.205.75.0/24</name></prefix-list-item><prefix-list-item><name>84.205.76.0/24</name></prefix-list-item><prefix-list-item><name>84.205.77.0/24</name></prefix-list-item><prefix-list-item><name>84.205.78.0/24</name></prefix-list-item><prefix-list-item><name>84.205.79.0/24</name></prefix-list-item><prefix-list-item><name>84.205.80.0/24</name></prefix-list-item><prefix-list-item><name>84.205.81.0/24</name></prefix-list-item><prefix-list-item><name>84.205.82.0/24</name></prefix-list-item><prefix-list-item><name>84.205.83.0/24</name></prefix-list-item><prefix-list-item><name>84.205.84.0/24</name></prefix-list-item><prefix-list-item><name>84.205.85.0/24</name></prefix-list-item><prefix-list-item><name>84.205.86.0/24</name></prefix-list-item><prefix-list-item><name>84.205.87.0/24</name></prefix-list-item><prefix-list-item><name>84.205.88.0/24</name></prefix-list-item><prefix-list-item><name>84.205.89.0/24</name></prefix-list-item><prefix-list-item><name>84.205.90.0/24</name></prefix-list-item><prefix-list-item><name>84.205.91.0/24</name></prefix-list-item><prefix-list-item><name>84.205.92.0/24</name></prefix-list-item><prefix-list-item><name>84.205.93.0/24</name></prefix-list-item><prefix-list-item><name>84.205.94.0/24</name></prefix-list-item><prefix-list-item><name>84.205.95.0/24</name></prefix-list-item><prefix-list-item><name>85.31.243.0/24</name></prefix-list-item><prefix-list-item><name>85.158.224.0/21</name></prefix-list-item><prefix-list-item><name>86.49.91.0/24</name></prefix-list-item><prefix-list-item><name>87.246.192.0/19</name></prefix-list-item><prefix-list-item><name>87.246.240.0/20</name></prefix-list-item><prefix-list-item><name>89.106.208.0/21</name></prefix-list-item><prefix-list-item><name>89.188.196.0/22</name></prefix-list-item><prefix-list-item><name>89.188.200.0/22</name></prefix-list-item><prefix-list-item><name>89.188.204.0/22</name></prefix-list-item><prefix-list-item><name>89.188.208.0/22</name></prefix-list-item><prefix-list-item><name>89.188.221.0/24</name></prefix-list-item><prefix-list-item><name>89.191.128.0/20</name></prefix-list-item><prefix-list-item><name>91.199.203.0/24</name></prefix-list-item><prefix-list-item><name>91.202.128.0/22</name></prefix-list-item><prefix-list-item><name>91.208.94.0/24</name></prefix-list-item><prefix-list-item><name>91.208.95.0/24</name></prefix-list-item><prefix-list-item><name>91.208.138.0/24</name></prefix-list-item><prefix-list-item><name>91.209.20.0/24</name></prefix-list-item><prefix-list-item><name>91.209.141.0/24</name></prefix-list-item><prefix-list-item><name>91.210.48.0/24</name></prefix-list-item><prefix-list-item><name>91.210.49.0/24</name></prefix-list-item><prefix-list-item><name>91.210.50.0/24</name></prefix-list-item><prefix-list-item><name>91.210.51.0/24</name></prefix-list-item><prefix-list-item><name>91.213.170.0/24</name></prefix-list-item><prefix-list-item><name>91.216.239.0/24</name></prefix-list-item><prefix-list-item><name>91.217.142.0/24</name></prefix-list-item><prefix-list-item><name>91.218.164.0/22</name></prefix-list-item><prefix-list-item><name>91.220.17.0/24</name></prefix-list-item><prefix-list-item><name>91.220.103.0/24</name></prefix-list-item><prefix-list-item><name>91.220.201.0/24</name></prefix-list-item><prefix-list-item><name>91.221.46.0/23</name></prefix-list-item><prefix-list-item><name>91.221.46.0/24</name></prefix-list-item><prefix-list-item><name>91.221.47.0/24</name></prefix-list-item><prefix-list-item><name>91.223.241.0/24</name></prefix-list-item><prefix-list-item><name>91.227.128.0/24</name></prefix-list-item><prefix-list-item><name>91.227.129.0/24</name></prefix-list-item><prefix-list-item><name>91.228.113.0/24</name></prefix-list-item><prefix-list-item><name>91.228.204.0/24</name></prefix-list-item><prefix-list-item><name>91.229.57.0/24</name></prefix-list-item><prefix-list-item><name>91.230.222.0/23</name></prefix-list-item><prefix-list-item><name>91.230.222.0/24</name></prefix-list-item><prefix-list-item><name>91.230.223.0/24</name></prefix-list-item><prefix-list-item><name>91.233.191.0/24</name></prefix-list-item><prefix-list-item><name>91.234.40.0/22</name></prefix-list-item><prefix-list-item><name>91.235.216.0/22</name></prefix-list-item><prefix-list-item><name>91.237.67.0/24</name></prefix-list-item><prefix-list-item><name>93.125.35.0/24</name></prefix-list-item><prefix-list-item><name>93.125.120.0/24</name></prefix-list-item><prefix-list-item><name>93.175.144.0/24</name></prefix-list-item><prefix-list-item><name>93.175.146.0/24</name></prefix-list-item><prefix-list-item><name>93.175.147.0/24</name></prefix-list-item><prefix-list-item><name>93.175.148.0/24</name></prefix-list-item><prefix-list-item><name>93.175.149.0/24</name></prefix-list-item><prefix-list-item><name>93.175.150.0/24</name></prefix-list-item><prefix-list-item><name>93.175.151.0/24</name></prefix-list-item><prefix-list-item><name>94.113.244.0/24</name></prefix-list-item><prefix-list-item><name>95.130.80.0/21</name></prefix-list-item><prefix-list-item><name>95.130.80.0/24</name></prefix-list-item><prefix-list-item><name>95.130.81.0/24</name></prefix-list-item><prefix-list-item><name>95.130.82.0/24</name></prefix-list-item><prefix-list-item><name>95.130.83.0/24</name></prefix-list-item><prefix-list-item><name>95.130.84.0/24</name></prefix-list-item><prefix-list-item><name>95.130.85.0/24</name></prefix-list-item><prefix-list-item><name>95.130.86.0/24</name></prefix-list-item><prefix-list-item><name>95.130.87.0/24</name></prefix-list-item><prefix-list-item><name>95.131.192.0/22</name></prefix-list-item><prefix-list-item><name>95.131.196.0/23</name></prefix-list-item><prefix-list-item><name>95.131.198.0/24</name></prefix-list-item><prefix-list-item><name>95.131.199.0/24</name></prefix-list-item><prefix-list-item><name>103.0.0.0/16</name></prefix-list-item><prefix-list-item><name>103.1.0.0/22</name></prefix-list-item><prefix-list-item><name>103.1.4.0/24</name></prefix-list-item><prefix-list-item><name>106.0.1.0/24</name></prefix-list-item><prefix-list-item><name>109.69.88.0/21</name></prefix-list-item><prefix-list-item><name>128.130.0.0/15</name></prefix-list-item><prefix-list-item><name>129.27.0.0/16</name></prefix-list-item><prefix-list-item><name>130.180.199.0/24</name></prefix-list-item><prefix-list-item><name>131.130.0.0/16</name></prefix-list-item><prefix-list-item><name>137.208.0.0/16</name></prefix-list-item><prefix-list-item><name>137.208.10.10/32</name></prefix-list-item><prefix-list-item><name>137.208.20.10/32</name></prefix-list-item><prefix-list-item><name>137.208.250.10/32</name></prefix-list-item><prefix-list-item><name>138.22.0.0/16</name></prefix-list-item><prefix-list-item><name>138.232.0.0/16</name></prefix-list-item><prefix-list-item><name>140.78.0.0/16</name></prefix-list-item><prefix-list-item><name>141.201.0.0/16</name></prefix-list-item><prefix-list-item><name>141.203.0.0/16</name></prefix-list-item><prefix-list-item><name>141.244.0.0/16</name></prefix-list-item><prefix-list-item><name>143.50.0.0/16</name></prefix-list-item><prefix-list-item><name>143.130.0.0/16</name></prefix-list-item><prefix-list-item><name>143.205.0.0/16</name></prefix-list-item><prefix-list-item><name>143.224.0.0/16</name></prefix-list-item><prefix-list-item><name>144.65.0.0/16</name></prefix-list-item><prefix-list-item><name>145.244.0.0/16</name></prefix-list-item><prefix-list-item><name>146.102.0.0/16</name></prefix-list-item><prefix-list-item><name>146.120.112.0/24</name></prefix-list-item><prefix-list-item><name>147.32.0.0/15</name></prefix-list-item><prefix-list-item><name>147.125.0.0/16</name></prefix-list-item><prefix-list-item><name>147.175.0.0/16</name></prefix-list-item><prefix-list-item><name>147.213.0.0/16</name></prefix-list-item><prefix-list-item><name>147.228.0.0/16</name></prefix-list-item><prefix-list-item><name>147.229.0.0/16</name></prefix-list-item><prefix-list-item><name>147.229.0.0/17</name></prefix-list-item><prefix-list-item><name>147.229.128.0/18</name></prefix-list-item><prefix-list-item><name>147.229.192.0/19</name></prefix-list-item><prefix-list-item><name>147.229.224.0/19</name></prefix-list-item><prefix-list-item><name>147.229.240.0/21</name></prefix-list-item><prefix-list-item><name>147.229.240.0/23</name></prefix-list-item><prefix-list-item><name>147.229.242.0/23</name></prefix-list-item><prefix-list-item><name>147.230.0.0/15</name></prefix-list-item><prefix-list-item><name>147.232.0.0/16</name></prefix-list-item><prefix-list-item><name>147.251.0.0/16</name></prefix-list-item><prefix-list-item><name>148.81.0.0/16</name></prefix-list-item><prefix-list-item><name>148.81.11.0/24</name></prefix-list-item><prefix-list-item><name>148.81.110.0/24</name></prefix-list-item><prefix-list-item><name>148.81.116.0/24</name></prefix-list-item><prefix-list-item><name>148.81.117.0/24</name></prefix-list-item><prefix-list-item><name>148.81.127.0/24</name></prefix-list-item><prefix-list-item><name>148.81.230.0/24</name></prefix-list-item><prefix-list-item><name>148.81.246.0/23</name></prefix-list-item><prefix-list-item><name>148.81.248.0/24</name></prefix-list-item><prefix-list-item><name>149.148.0.0/16</name></prefix-list-item><prefix-list-item><name>149.156.0.0/16</name></prefix-list-item><prefix-list-item><name>150.254.0.0/16</name></prefix-list-item><prefix-list-item><name>150.254.236.0/24</name></prefix-list-item><prefix-list-item><name>153.19.0.0/16</name></prefix-list-item><prefix-list-item><name>155.158.0.0/16</name></prefix-list-item><prefix-list-item><name>156.17.0.0/16</name></prefix-list-item><prefix-list-item><name>157.158.0.0/16</name></prefix-list-item><prefix-list-item><name>157.177.0.0/16</name></prefix-list-item><prefix-list-item><name>157.177.248.0/22</name></prefix-list-item><prefix-list-item><name>158.75.0.0/17</name></prefix-list-item><prefix-list-item><name>158.193.0.0/16</name></prefix-list-item><prefix-list-item><name>158.194.0.0/16</name></prefix-list-item><prefix-list-item><name>158.195.0.0/16</name></prefix-list-item><prefix-list-item><name>158.196.0.0/16</name></prefix-list-item><prefix-list-item><name>158.197.0.0/16</name></prefix-list-item><prefix-list-item><name>160.216.0.0/15</name></prefix-list-item><prefix-list-item><name>161.110.0.0/16</name></prefix-list-item><prefix-list-item><name>162.218.32.0/23</name></prefix-list-item><prefix-list-item><name>162.218.32.0/24</name></prefix-list-item><prefix-list-item><name>162.218.33.0/24</name></prefix-list-item><prefix-list-item><name>171.25.192.0/24</name></prefix-list-item><prefix-list-item><name>176.97.158.0/24</name></prefix-list-item><prefix-list-item><name>176.103.224.0/20</name></prefix-list-item><prefix-list-item><name>176.111.168.0/22</name></prefix-list-item><prefix-list-item><name>178.172.212.0/24</name></prefix-list-item><prefix-list-item><name>178.212.104.0/21</name></prefix-list-item><prefix-list-item><name>185.8.160.0/22</name></prefix-list-item><prefix-list-item><name>185.12.8.0/23</name></prefix-list-item><prefix-list-item><name>185.21.196.0/22</name></prefix-list-item><prefix-list-item><name>185.21.198.0/24</name></prefix-list-item><prefix-list-item><name>185.32.156.0/22</name></prefix-list-item><prefix-list-item><name>185.48.20.0/23</name></prefix-list-item><prefix-list-item><name>185.48.22.0/23</name></prefix-list-item><prefix-list-item><name>185.61.6.0/24</name></prefix-list-item><prefix-list-item><name>185.61.7.0/24</name></prefix-list-item><prefix-list-item><name>185.62.108.0/23</name></prefix-list-item><prefix-list-item><name>185.68.28.0/22</name></prefix-list-item><prefix-list-item><name>185.80.188.0/22</name></prefix-list-item><prefix-list-item><name>185.80.188.0/24</name></prefix-list-item><prefix-list-item><name>185.80.189.0/24</name></prefix-list-item><prefix-list-item><name>185.80.190.0/24</name></prefix-list-item><prefix-list-item><name>185.80.191.0/24</name></prefix-list-item><prefix-list-item><name>185.83.44.0/22</name></prefix-list-item><prefix-list-item><name>185.85.28.0/22</name></prefix-list-item><prefix-list-item><name>185.85.28.0/23</name></prefix-list-item><prefix-list-item><name>185.88.12.0/22</name></prefix-list-item><prefix-list-item><name>185.89.116.0/22</name></prefix-list-item><prefix-list-item><name>185.92.48.0/22</name></prefix-list-item><prefix-list-item><name>185.102.12.0/24</name></prefix-list-item><prefix-list-item><name>185.102.13.0/24</name></prefix-list-item><prefix-list-item><name>185.102.14.0/24</name></prefix-list-item><prefix-list-item><name>185.102.15.0/24</name></prefix-list-item><prefix-list-item><name>185.117.40.0/22</name></prefix-list-item><prefix-list-item><name>185.125.7.0/24</name></prefix-list-item><prefix-list-item><name>185.126.188.0/22</name></prefix-list-item><prefix-list-item><name>185.130.108.0/22</name></prefix-list-item><prefix-list-item><name>185.130.252.0/22</name></prefix-list-item><prefix-list-item><name>185.140.236.0/22</name></prefix-list-item><prefix-list-item><name>185.149.204.0/22</name></prefix-list-item><prefix-list-item><name>185.149.204.0/24</name></prefix-list-item><prefix-list-item><name>185.149.205.0/24</name></prefix-list-item><prefix-list-item><name>185.149.207.0/24</name></prefix-list-item><prefix-list-item><name>185.150.124.0/22</name></prefix-list-item><prefix-list-item><name>185.151.141.0/24</name></prefix-list-item><prefix-list-item><name>185.151.142.0/24</name></prefix-list-item><prefix-list-item><name>185.151.143.0/24</name></prefix-list-item><prefix-list-item><name>185.153.192.0/22</name></prefix-list-item><prefix-list-item><name>185.153.192.0/23</name></prefix-list-item><prefix-list-item><name>185.153.194.0/23</name></prefix-list-item><prefix-list-item><name>185.154.40.0/22</name></prefix-list-item><prefix-list-item><name>185.160.113.0/24</name></prefix-list-item><prefix-list-item><name>185.167.176.0/24</name></prefix-list-item><prefix-list-item><name>185.178.156.0/22</name></prefix-list-item><prefix-list-item><name>185.187.140.0/22</name></prefix-list-item><prefix-list-item><name>185.189.204.0/22</name></prefix-list-item><prefix-list-item><name>185.197.44.0/22</name></prefix-list-item><prefix-list-item><name>185.205.152.0/22</name></prefix-list-item><prefix-list-item><name>185.210.12.0/22</name></prefix-list-item><prefix-list-item><name>185.215.113.0/24</name></prefix-list-item><prefix-list-item><name>185.223.20.0/24</name></prefix-list-item><prefix-list-item><name>185.223.22.0/24</name></prefix-list-item><prefix-list-item><name>185.240.220.0/22</name></prefix-list-item><prefix-list-item><name>192.5.162.0/24</name></prefix-list-item><prefix-list-item><name>192.26.237.0/24</name></prefix-list-item><prefix-list-item><name>192.26.238.0/24</name></prefix-list-item><prefix-list-item><name>192.35.240.0/22</name></prefix-list-item><prefix-list-item><name>192.35.244.0/24</name></prefix-list-item><prefix-list-item><name>192.76.243.0/24</name></prefix-list-item><prefix-list-item><name>192.76.244.0/24</name></prefix-list-item><prefix-list-item><name>192.82.157.0/24</name></prefix-list-item><prefix-list-item><name>192.82.158.0/24</name></prefix-list-item><prefix-list-item><name>192.86.14.0/24</name></prefix-list-item><prefix-list-item><name>192.88.23.0/24</name></prefix-list-item><prefix-list-item><name>192.88.24.0/24</name></prefix-list-item><prefix-list-item><name>192.92.125.0/24</name></prefix-list-item><prefix-list-item><name>192.102.1.0/24</name></prefix-list-item><prefix-list-item><name>192.107.124.0/23</name></prefix-list-item><prefix-list-item><name>192.107.232.0/24</name></prefix-list-item><prefix-list-item><name>192.107.233.0/24</name></prefix-list-item><prefix-list-item><name>192.108.128.0/19</name></prefix-list-item><prefix-list-item><name>192.108.130.0/24</name></prefix-list-item><prefix-list-item><name>192.108.131.0/24</name></prefix-list-item><prefix-list-item><name>192.108.132.0/23</name></prefix-list-item><prefix-list-item><name>192.108.138.0/24</name></prefix-list-item><prefix-list-item><name>192.108.149.0/24</name></prefix-list-item><prefix-list-item><name>192.108.160.0/20</name></prefix-list-item><prefix-list-item><name>192.111.44.0/24</name></prefix-list-item><prefix-list-item><name>192.111.104.0/24</name></prefix-list-item><prefix-list-item><name>192.149.232.0/24</name></prefix-list-item><prefix-list-item><name>192.150.203.0/24</name></prefix-list-item><prefix-list-item><name>192.152.54.0/24</name></prefix-list-item><prefix-list-item><name>192.153.127.0/24</name></prefix-list-item><prefix-list-item><name>192.153.173.0/24</name></prefix-list-item><prefix-list-item><name>192.153.174.0/24</name></prefix-list-item><prefix-list-item><name>192.153.175.0/24</name></prefix-list-item><prefix-list-item><name>192.153.176.0/24</name></prefix-list-item><prefix-list-item><name>192.153.177.0/24</name></prefix-list-item><prefix-list-item><name>192.153.178.0/24</name></prefix-list-item><prefix-list-item><name>192.153.180.0/24</name></prefix-list-item><prefix-list-item><name>192.153.182.0/24</name></prefix-list-item><prefix-list-item><name>192.164.176.0/20</name></prefix-list-item><prefix-list-item><name>192.164.176.0/24</name></prefix-list-item><prefix-list-item><name>192.164.177.0/24</name></prefix-list-item><prefix-list-item><name>192.164.178.0/24</name></prefix-list-item><prefix-list-item><name>192.164.179.0/24</name></prefix-list-item><prefix-list-item><name>192.164.180.0/24</name></prefix-list-item><prefix-list-item><name>192.164.181.0/24</name></prefix-list-item><prefix-list-item><name>192.164.182.0/24</name></prefix-list-item><prefix-list-item><name>192.164.183.0/24</name></prefix-list-item><prefix-list-item><name>192.164.184.0/24</name></prefix-list-item><prefix-list-item><name>192.164.185.0/24</name></prefix-list-item><prefix-list-item><name>192.164.186.0/24</name></prefix-list-item><prefix-list-item><name>192.164.187.0/24</name></prefix-list-item><prefix-list-item><name>192.164.188.0/24</name></prefix-list-item><prefix-list-item><name>192.164.189.0/24</name></prefix-list-item><prefix-list-item><name>192.164.190.0/24</name></prefix-list-item><prefix-list-item><name>192.164.191.0/24</name></prefix-list-item><prefix-list-item><name>192.164.192.0/20</name></prefix-list-item><prefix-list-item><name>192.164.192.0/24</name></prefix-list-item><prefix-list-item><name>192.164.193.0/24</name></prefix-list-item><prefix-list-item><name>192.164.194.0/24</name></prefix-list-item><prefix-list-item><name>192.164.195.0/24</name></prefix-list-item><prefix-list-item><name>192.164.196.0/24</name></prefix-list-item><prefix-list-item><name>192.164.197.0/24</name></prefix-list-item><prefix-list-item><name>192.164.198.0/24</name></prefix-list-item><prefix-list-item><name>192.164.199.0/24</name></prefix-list-item><prefix-list-item><name>192.164.200.0/24</name></prefix-list-item><prefix-list-item><name>192.164.201.0/24</name></prefix-list-item><prefix-list-item><name>192.164.202.0/24</name></prefix-list-item><prefix-list-item><name>192.164.203.0/24</name></prefix-list-item><prefix-list-item><name>192.164.204.0/24</name></prefix-list-item><prefix-list-item><name>192.164.205.0/24</name></prefix-list-item><prefix-list-item><name>192.164.206.0/24</name></prefix-list-item><prefix-list-item><name>192.164.207.0/24</name></prefix-list-item><prefix-list-item><name>192.174.64.0/24</name></prefix-list-item><prefix-list-item><name>192.174.65.0/24</name></prefix-list-item><prefix-list-item><name>192.174.66.0/24</name></prefix-list-item><prefix-list-item><name>192.174.67.0/24</name></prefix-list-item><prefix-list-item><name>192.174.68.0/24</name></prefix-list-item><prefix-list-item><name>192.188.121.0/24</name></prefix-list-item><prefix-list-item><name>192.188.234.0/24</name></prefix-list-item><prefix-list-item><name>192.189.51.0/24</name></prefix-list-item><prefix-list-item><name>192.195.72.0/24</name></prefix-list-item><prefix-list-item><name>192.245.169.0/24</name></prefix-list-item><prefix-list-item><name>193.0.24.0/21</name></prefix-list-item><prefix-list-item><name>193.0.64.0/18</name></prefix-list-item><prefix-list-item><name>193.0.64.0/19</name></prefix-list-item><prefix-list-item><name>193.0.96.0/19</name></prefix-list-item><prefix-list-item><name>193.24.14.0/24</name></prefix-list-item><prefix-list-item><name>193.28.200.0/24</name></prefix-list-item><prefix-list-item><name>193.29.206.0/24</name></prefix-list-item><prefix-list-item><name>193.33.150.0/23</name></prefix-list-item><prefix-list-item><name>193.37.226.0/23</name></prefix-list-item><prefix-list-item><name>193.37.230.0/23</name></prefix-list-item><prefix-list-item><name>193.41.88.0/24</name></prefix-list-item><prefix-list-item><name>193.41.228.0/24</name></prefix-list-item><prefix-list-item><name>193.46.104.0/21</name></prefix-list-item><prefix-list-item><name>193.46.104.0/24</name></prefix-list-item><prefix-list-item><name>193.46.105.0/24</name></prefix-list-item><prefix-list-item><name>193.46.106.0/24</name></prefix-list-item><prefix-list-item><name>193.46.107.0/24</name></prefix-list-item><prefix-list-item><name>193.46.108.0/24</name></prefix-list-item><prefix-list-item><name>193.46.109.0/24</name></prefix-list-item><prefix-list-item><name>193.46.110.0/24</name></prefix-list-item><prefix-list-item><name>193.46.111.0/24</name></prefix-list-item><prefix-list-item><name>193.46.112.0/20</name></prefix-list-item><prefix-list-item><name>193.46.112.0/24</name></prefix-list-item><prefix-list-item><name>193.46.113.0/24</name></prefix-list-item><prefix-list-item><name>193.46.114.0/24</name></prefix-list-item><prefix-list-item><name>193.46.115.0/24</name></prefix-list-item><prefix-list-item><name>193.46.116.0/24</name></prefix-list-item><prefix-list-item><name>193.46.117.0/24</name></prefix-list-item><prefix-list-item><name>193.46.118.0/24</name></prefix-list-item><prefix-list-item><name>193.46.119.0/24</name></prefix-list-item><prefix-list-item><name>193.46.120.0/24</name></prefix-list-item><prefix-list-item><name>193.46.121.0/24</name></prefix-list-item><prefix-list-item><name>193.46.122.0/24</name></prefix-list-item><prefix-list-item><name>193.46.123.0/24</name></prefix-list-item><prefix-list-item><name>193.46.124.0/24</name></prefix-list-item><prefix-list-item><name>193.46.125.0/24</name></prefix-list-item><prefix-list-item><name>193.46.126.0/24</name></prefix-list-item><prefix-list-item><name>193.46.127.0/24</name></prefix-list-item><prefix-list-item><name>193.46.128.0/21</name></prefix-list-item><prefix-list-item><name>193.46.128.0/24</name></prefix-list-item><prefix-list-item><name>193.46.129.0/24</name></prefix-list-item><prefix-list-item><name>193.46.130.0/24</name></prefix-list-item><prefix-list-item><name>193.46.131.0/24</name></prefix-list-item><prefix-list-item><name>193.46.132.0/24</name></prefix-list-item><prefix-list-item><name>193.46.133.0/24</name></prefix-list-item><prefix-list-item><name>193.46.134.0/24</name></prefix-list-item><prefix-list-item><name>193.46.135.0/24</name></prefix-list-item><prefix-list-item><name>193.46.188.0/23</name></prefix-list-item><prefix-list-item><name>193.59.50.0/24</name></prefix-list-item><prefix-list-item><name>193.80.132.0/22</name></prefix-list-item><prefix-list-item><name>193.80.136.0/21</name></prefix-list-item><prefix-list-item><name>193.80.144.0/20</name></prefix-list-item><prefix-list-item><name>193.80.160.0/22</name></prefix-list-item><prefix-list-item><name>193.81.1.0/24</name></prefix-list-item><prefix-list-item><name>193.84.32.0/20</name></prefix-list-item><prefix-list-item><name>193.84.53.0/24</name></prefix-list-item><prefix-list-item><name>193.84.55.0/24</name></prefix-list-item><prefix-list-item><name>193.84.56.0/21</name></prefix-list-item><prefix-list-item><name>193.84.80.0/22</name></prefix-list-item><prefix-list-item><name>193.84.104.0/22</name></prefix-list-item><prefix-list-item><name>193.84.116.0/23</name></prefix-list-item><prefix-list-item><name>193.84.124.0/22</name></prefix-list-item><prefix-list-item><name>193.84.124.0/24</name></prefix-list-item><prefix-list-item><name>193.84.125.0/24</name></prefix-list-item><prefix-list-item><name>193.84.126.0/24</name></prefix-list-item><prefix-list-item><name>193.84.127.0/24</name></prefix-list-item><prefix-list-item><name>193.84.160.0/20</name></prefix-list-item><prefix-list-item><name>193.84.192.0/19</name></prefix-list-item><prefix-list-item><name>193.84.192.0/20</name></prefix-list-item><prefix-list-item><name>193.84.208.0/20</name></prefix-list-item><prefix-list-item><name>193.87.0.0/16</name></prefix-list-item><prefix-list-item><name>193.87.128.0/24</name></prefix-list-item><prefix-list-item><name>193.87.129.0/24</name></prefix-list-item><prefix-list-item><name>193.87.130.0/24</name></prefix-list-item><prefix-list-item><name>193.87.131.0/24</name></prefix-list-item><prefix-list-item><name>193.87.132.0/24</name></prefix-list-item><prefix-list-item><name>193.87.133.0/24</name></prefix-list-item><prefix-list-item><name>193.87.134.0/24</name></prefix-list-item><prefix-list-item><name>193.87.135.0/24</name></prefix-list-item><prefix-list-item><name>193.104.244.0/24</name></prefix-list-item><prefix-list-item><name>193.105.35.0/24</name></prefix-list-item><prefix-list-item><name>193.105.164.0/24</name></prefix-list-item><prefix-list-item><name>193.107.32.0/22</name></prefix-list-item><prefix-list-item><name>193.107.172.0/22</name></prefix-list-item><prefix-list-item><name>193.110.137.0/24</name></prefix-list-item><prefix-list-item><name>193.111.144.0/22</name></prefix-list-item><prefix-list-item><name>193.150.69.0/24</name></prefix-list-item><prefix-list-item><name>193.151.68.0/22</name></prefix-list-item><prefix-list-item><name>193.170.0.0/15</name></prefix-list-item><prefix-list-item><name>193.170.1.128/28</name></prefix-list-item><prefix-list-item><name>193.170.1.144/28</name></prefix-list-item><prefix-list-item><name>193.170.2.0/24</name></prefix-list-item><prefix-list-item><name>193.170.4.0/24</name></prefix-list-item><prefix-list-item><name>193.170.16.0/20</name></prefix-list-item><prefix-list-item><name>193.170.32.0/21</name></prefix-list-item><prefix-list-item><name>193.170.50.0/24</name></prefix-list-item><prefix-list-item><name>193.170.52.0/23</name></prefix-list-item><prefix-list-item><name>193.170.54.0/24</name></prefix-list-item><prefix-list-item><name>193.170.55.0/24</name></prefix-list-item><prefix-list-item><name>193.170.56.0/24</name></prefix-list-item><prefix-list-item><name>193.170.57.0/24</name></prefix-list-item><prefix-list-item><name>193.170.58.0/24</name></prefix-list-item><prefix-list-item><name>193.170.59.0/24</name></prefix-list-item><prefix-list-item><name>193.170.60.0/23</name></prefix-list-item><prefix-list-item><name>193.170.72.0/21</name></prefix-list-item><prefix-list-item><name>193.170.72.0/22</name></prefix-list-item><prefix-list-item><name>193.170.76.0/23</name></prefix-list-item><prefix-list-item><name>193.170.78.0/24</name></prefix-list-item><prefix-list-item><name>193.170.80.0/22</name></prefix-list-item><prefix-list-item><name>193.170.84.0/23</name></prefix-list-item><prefix-list-item><name>193.170.86.0/24</name></prefix-list-item><prefix-list-item><name>193.170.87.0/25</name></prefix-list-item><prefix-list-item><name>193.170.88.0/21</name></prefix-list-item><prefix-list-item><name>193.170.93.0/24</name></prefix-list-item><prefix-list-item><name>193.170.94.0/24</name></prefix-list-item><prefix-list-item><name>193.170.96.0/22</name></prefix-list-item><prefix-list-item><name>193.170.100.0/23</name></prefix-list-item><prefix-list-item><name>193.170.102.0/23</name></prefix-list-item><prefix-list-item><name>193.170.104.0/22</name></prefix-list-item><prefix-list-item><name>193.170.111.0/24</name></prefix-list-item><prefix-list-item><name>193.170.115.32/28</name></prefix-list-item><prefix-list-item><name>193.170.117.0/26</name></prefix-list-item><prefix-list-item><name>193.170.120.40/29</name></prefix-list-item><prefix-list-item><name>193.170.120.96/28</name></prefix-list-item><prefix-list-item><name>193.170.124.0/22</name></prefix-list-item><prefix-list-item><name>193.170.128.0/22</name></prefix-list-item><prefix-list-item><name>193.170.132.0/22</name></prefix-list-item><prefix-list-item><name>193.170.137.0/24</name></prefix-list-item><prefix-list-item><name>193.170.138.192/28</name></prefix-list-item><prefix-list-item><name>193.170.150.0/24</name></prefix-list-item><prefix-list-item><name>193.170.151.0/24</name></prefix-list-item><prefix-list-item><name>193.170.184.0/24</name></prefix-list-item><prefix-list-item><name>193.170.185.0/24</name></prefix-list-item><prefix-list-item><name>193.170.186.0/24</name></prefix-list-item><prefix-list-item><name>193.170.187.0/24</name></prefix-list-item><prefix-list-item><name>193.170.190.0/23</name></prefix-list-item><prefix-list-item><name>193.170.199.0/24</name></prefix-list-item><prefix-list-item><name>193.170.213.0/24</name></prefix-list-item><prefix-list-item><name>193.170.214.0/23</name></prefix-list-item><prefix-list-item><name>193.170.218.0/24</name></prefix-list-item><prefix-list-item><name>193.170.219.0/24</name></prefix-list-item><prefix-list-item><name>193.170.220.0/22</name></prefix-list-item><prefix-list-item><name>193.170.230.0/24</name></prefix-list-item><prefix-list-item><name>193.170.238.0/23</name></prefix-list-item><prefix-list-item><name>193.171.1.0/24</name></prefix-list-item><prefix-list-item><name>193.171.3.0/24</name></prefix-list-item><prefix-list-item><name>193.171.4.0/22</name></prefix-list-item><prefix-list-item><name>193.171.8.0/24</name></prefix-list-item><prefix-list-item><name>193.171.32.0/20</name></prefix-list-item><prefix-list-item><name>193.171.52.0/24</name></prefix-list-item><prefix-list-item><name>193.171.61.0/24</name></prefix-list-item><prefix-list-item><name>193.171.74.0/23</name></prefix-list-item><prefix-list-item><name>193.171.80.0/21</name></prefix-list-item><prefix-list-item><name>193.171.88.0/23</name></prefix-list-item><prefix-list-item><name>193.171.90.0/24</name></prefix-list-item><prefix-list-item><name>193.171.108.0/23</name></prefix-list-item><prefix-list-item><name>193.171.108.0/24</name></prefix-list-item><prefix-list-item><name>193.171.109.0/24</name></prefix-list-item><prefix-list-item><name>193.171.110.0/24</name></prefix-list-item><prefix-list-item><name>193.171.111.0/24</name></prefix-list-item><prefix-list-item><name>193.171.112.0/24</name></prefix-list-item><prefix-list-item><name>193.171.113.128/27</name></prefix-list-item><prefix-list-item><name>193.171.115.0/24</name></prefix-list-item><prefix-list-item><name>193.171.122.0/24</name></prefix-list-item><prefix-list-item><name>193.171.157.224/27</name></prefix-list-item><prefix-list-item><name>193.171.158.0/24</name></prefix-list-item><prefix-list-item><name>193.171.159.0/24</name></prefix-list-item><prefix-list-item><name>193.171.160.0/20</name></prefix-list-item><prefix-list-item><name>193.171.176.0/21</name></prefix-list-item><prefix-list-item><name>193.171.184.0/22</name></prefix-list-item><prefix-list-item><name>193.171.190.0/23</name></prefix-list-item><prefix-list-item><name>193.171.192.0/23</name></prefix-list-item><prefix-list-item><name>193.171.194.0/23</name></prefix-list-item><prefix-list-item><name>193.171.196.0/22</name></prefix-list-item><prefix-list-item><name>193.171.200.0/21</name></prefix-list-item><prefix-list-item><name>193.171.255.0/24</name></prefix-list-item><prefix-list-item><name>193.171.255.8/29</name></prefix-list-item><prefix-list-item><name>193.171.255.16/28</name></prefix-list-item><prefix-list-item><name>193.171.255.32/27</name></prefix-list-item><prefix-list-item><name>193.171.255.64/26</name></prefix-list-item><prefix-list-item><name>193.171.255.64/27</name></prefix-list-item><prefix-list-item><name>193.178.34.0/24</name></prefix-list-item><prefix-list-item><name>193.186.0.0/24</name></prefix-list-item><prefix-list-item><name>193.186.15.0/24</name></prefix-list-item><prefix-list-item><name>193.186.88.0/21</name></prefix-list-item><prefix-list-item><name>193.186.96.0/21</name></prefix-list-item><prefix-list-item><name>193.186.172.0/22</name></prefix-list-item><prefix-list-item><name>193.186.176.0/22</name></prefix-list-item><prefix-list-item><name>193.186.188.0/23</name></prefix-list-item><prefix-list-item><name>193.186.190.0/24</name></prefix-list-item><prefix-list-item><name>193.186.191.0/24</name></prefix-list-item><prefix-list-item><name>193.186.214.0/24</name></prefix-list-item><prefix-list-item><name>193.187.2.0/23</name></prefix-list-item><prefix-list-item><name>193.187.2.0/24</name></prefix-list-item><prefix-list-item><name>193.187.3.0/24</name></prefix-list-item><prefix-list-item><name>193.193.64.0/19</name></prefix-list-item><prefix-list-item><name>193.193.64.0/21</name></prefix-list-item><prefix-list-item><name>193.201.164.0/24</name></prefix-list-item><prefix-list-item><name>193.203.0.0/23</name></prefix-list-item><prefix-list-item><name>193.219.28.0/24</name></prefix-list-item><prefix-list-item><name>193.223.78.0/24</name></prefix-list-item><prefix-list-item><name>193.228.100.0/24</name></prefix-list-item><prefix-list-item><name>193.239.180.0/23</name></prefix-list-item><prefix-list-item><name>193.239.180.0/24</name></prefix-list-item><prefix-list-item><name>193.239.181.0/24</name></prefix-list-item><prefix-list-item><name>194.0.0.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.10.0/24</name></prefix-list-item><prefix-list-item><name>194.0.11.0/24</name></prefix-list-item><prefix-list-item><name>194.0.12.0/24</name></prefix-list-item><prefix-list-item><name>194.0.13.0/24</name></prefix-list-item><prefix-list-item><name>194.0.14.0/24</name></prefix-list-item><prefix-list-item><name>194.0.24.0/23</name></prefix-list-item><prefix-list-item><name>194.0.24.0/24</name></prefix-list-item><prefix-list-item><name>194.0.25.0/24</name></prefix-list-item><prefix-list-item><name>194.0.26.0/24</name></prefix-list-item><prefix-list-item><name>194.1.0.0/17</name></prefix-list-item><prefix-list-item><name>194.1.3.0/24</name></prefix-list-item><prefix-list-item><name>194.1.6.0/24</name></prefix-list-item><prefix-list-item><name>194.8.45.0/24</name></prefix-list-item><prefix-list-item><name>194.8.46.0/24</name></prefix-list-item><prefix-list-item><name>194.8.51.0/24</name></prefix-list-item><prefix-list-item><name>194.8.61.0/24</name></prefix-list-item><prefix-list-item><name>194.29.99.0/24</name></prefix-list-item><prefix-list-item><name>194.29.128.0/19</name></prefix-list-item><prefix-list-item><name>194.29.160.0/20</name></prefix-list-item><prefix-list-item><name>194.29.176.0/22</name></prefix-list-item><prefix-list-item><name>194.37.4.0/22</name></prefix-list-item><prefix-list-item><name>194.37.8.0/21</name></prefix-list-item><prefix-list-item><name>194.37.72.0/21</name></prefix-list-item><prefix-list-item><name>194.37.104.0/21</name></prefix-list-item><prefix-list-item><name>194.37.192.0/19</name></prefix-list-item><prefix-list-item><name>194.41.12.0/22</name></prefix-list-item><prefix-list-item><name>194.41.12.0/24</name></prefix-list-item><prefix-list-item><name>194.41.13.0/24</name></prefix-list-item><prefix-list-item><name>194.41.14.0/24</name></prefix-list-item><prefix-list-item><name>194.41.15.0/24</name></prefix-list-item><prefix-list-item><name>194.44.28.0/24</name></prefix-list-item><prefix-list-item><name>194.44.217.0/24</name></prefix-list-item><prefix-list-item><name>194.48.4.0/22</name></prefix-list-item><prefix-list-item><name>194.48.32.0/19</name></prefix-list-item><prefix-list-item><name>194.48.64.0/22</name></prefix-list-item><prefix-list-item><name>194.48.236.0/22</name></prefix-list-item><prefix-list-item><name>194.50.109.0/24</name></prefix-list-item><prefix-list-item><name>194.55.6.0/24</name></prefix-list-item><prefix-list-item><name>194.107.60.0/22</name></prefix-list-item><prefix-list-item><name>194.107.64.0/22</name></prefix-list-item><prefix-list-item><name>194.107.68.0/23</name></prefix-list-item><prefix-list-item><name>194.145.96.0/20</name></prefix-list-item><prefix-list-item><name>194.153.217.0/24</name></prefix-list-item><prefix-list-item><name>194.158.128.0/19</name></prefix-list-item><prefix-list-item><name>194.158.133.0/24</name></prefix-list-item><prefix-list-item><name>194.160.0.0/16</name></prefix-list-item><prefix-list-item><name>194.165.48.0/24</name></prefix-list-item><prefix-list-item><name>194.180.184.0/22</name></prefix-list-item><prefix-list-item><name>194.232.0.0/16</name></prefix-list-item><prefix-list-item><name>194.232.48.0/24</name></prefix-list-item><prefix-list-item><name>194.232.66.0/24</name></prefix-list-item><prefix-list-item><name>194.232.69.0/24</name></prefix-list-item><prefix-list-item><name>194.232.72.0/24</name></prefix-list-item><prefix-list-item><name>194.232.79.0/24</name></prefix-list-item><prefix-list-item><name>194.232.95.0/24</name></prefix-list-item><prefix-list-item><name>194.232.104.0/24</name></prefix-list-item><prefix-list-item><name>194.232.116.0/24</name></prefix-list-item><prefix-list-item><name>194.232.117.0/24</name></prefix-list-item><prefix-list-item><name>194.232.133.0/24</name></prefix-list-item><prefix-list-item><name>194.246.96.0/24</name></prefix-list-item><prefix-list-item><name>195.22.112.0/22</name></prefix-list-item><prefix-list-item><name>195.22.132.0/23</name></prefix-list-item><prefix-list-item><name>195.42.152.0/23</name></prefix-list-item><prefix-list-item><name>195.50.0.0/22</name></prefix-list-item><prefix-list-item><name>195.50.0.0/24</name></prefix-list-item><prefix-list-item><name>195.50.1.0/24</name></prefix-list-item><prefix-list-item><name>195.50.2.0/24</name></prefix-list-item><prefix-list-item><name>195.50.3.0/24</name></prefix-list-item><prefix-list-item><name>195.68.210.0/24</name></prefix-list-item><prefix-list-item><name>195.68.211.0/24</name></prefix-list-item><prefix-list-item><name>195.85.252.0/24</name></prefix-list-item><prefix-list-item><name>195.93.216.0/23</name></prefix-list-item><prefix-list-item><name>195.113.0.0/16</name></prefix-list-item><prefix-list-item><name>195.150.0.0/16</name></prefix-list-item><prefix-list-item><name>195.150.0.0/17</name></prefix-list-item><prefix-list-item><name>195.150.128.0/18</name></prefix-list-item><prefix-list-item><name>195.150.224.0/19</name></prefix-list-item><prefix-list-item><name>195.160.178.0/23</name></prefix-list-item><prefix-list-item><name>195.168.240.0/24</name></prefix-list-item><prefix-list-item><name>195.177.250.0/23</name></prefix-list-item><prefix-list-item><name>195.178.64.0/19</name></prefix-list-item><prefix-list-item><name>195.178.144.0/20</name></prefix-list-item><prefix-list-item><name>195.178.154.0/24</name></prefix-list-item><prefix-list-item><name>195.178.155.0/24</name></prefix-list-item><prefix-list-item><name>195.182.63.0/24</name></prefix-list-item><prefix-list-item><name>195.187.64.0/18</name></prefix-list-item><prefix-list-item><name>195.187.76.0/24</name></prefix-list-item><prefix-list-item><name>195.187.82.0/24</name></prefix-list-item><prefix-list-item><name>195.191.38.0/23</name></prefix-list-item><prefix-list-item><name>195.191.38.0/24</name></prefix-list-item><prefix-list-item><name>195.191.39.0/24</name></prefix-list-item><prefix-list-item><name>195.200.199.0/24</name></prefix-list-item><prefix-list-item><name>195.234.158.0/24</name></prefix-list-item><prefix-list-item><name>195.245.225.0/24</name></prefix-list-item><prefix-list-item><name>195.254.190.0/23</name></prefix-list-item><prefix-list-item><name>198.32.64.0/24</name></prefix-list-item><prefix-list-item><name>199.253.250.0/24</name></prefix-list-item><prefix-list-item><name>200.219.158.0/23</name></prefix-list-item><prefix-list-item><name>200.219.158.0/24</name></prefix-list-item><prefix-list-item><name>200.219.159.0/24</name></prefix-list-item><prefix-list-item><name>212.14.0.0/19</name></prefix-list-item><prefix-list-item><name>212.14.32.0/20</name></prefix-list-item><prefix-list-item><name>212.14.48.0/20</name></prefix-list-item><prefix-list-item><name>212.33.64.0/19</name></prefix-list-item><prefix-list-item><name>212.51.192.0/21</name></prefix-list-item><prefix-list-item><name>212.51.204.0/24</name></prefix-list-item><prefix-list-item><name>212.51.207.0/24</name></prefix-list-item><prefix-list-item><name>212.51.208.0/20</name></prefix-list-item><prefix-list-item><name>212.51.224.0/19</name></prefix-list-item><prefix-list-item><name>212.87.0.0/20</name></prefix-list-item><prefix-list-item><name>212.87.0.0/21</name></prefix-list-item><prefix-list-item><name>212.87.8.0/21</name></prefix-list-item><prefix-list-item><name>212.87.16.0/20</name></prefix-list-item><prefix-list-item><name>212.87.224.0/21</name></prefix-list-item><prefix-list-item><name>212.87.232.0/23</name></prefix-list-item><prefix-list-item><name>212.87.234.0/23</name></prefix-list-item><prefix-list-item><name>212.87.236.0/23</name></prefix-list-item><prefix-list-item><name>212.87.238.0/23</name></prefix-list-item><prefix-list-item><name>212.106.176.0/20</name></prefix-list-item><prefix-list-item><name>212.106.183.0/24</name></prefix-list-item><prefix-list-item><name>212.106.184.0/22</name></prefix-list-item><prefix-list-item><name>212.109.128.0/20</name></prefix-list-item><prefix-list-item><name>212.111.192.0/19</name></prefix-list-item><prefix-list-item><name>212.111.192.0/20</name></prefix-list-item><prefix-list-item><name>212.111.192.0/21</name></prefix-list-item><prefix-list-item><name>212.111.193.0/24</name></prefix-list-item><prefix-list-item><name>212.111.194.0/24</name></prefix-list-item><prefix-list-item><name>212.111.195.0/24</name></prefix-list-item><prefix-list-item><name>212.111.196.0/24</name></prefix-list-item><prefix-list-item><name>212.111.197.0/24</name></prefix-list-item><prefix-list-item><name>212.111.198.0/24</name></prefix-list-item><prefix-list-item><name>212.111.199.0/24</name></prefix-list-item><prefix-list-item><name>212.111.201.0/24</name></prefix-list-item><prefix-list-item><name>212.111.203.0/24</name></prefix-list-item><prefix-list-item><name>212.111.204.0/24</name></prefix-list-item><prefix-list-item><name>212.111.205.0/24</name></prefix-list-item><prefix-list-item><name>212.111.206.0/24</name></prefix-list-item><prefix-list-item><name>212.111.208.0/21</name></prefix-list-item><prefix-list-item><name>212.111.209.0/24</name></prefix-list-item><prefix-list-item><name>212.111.213.0/24</name></prefix-list-item><prefix-list-item><name>212.115.119.0/24</name></prefix-list-item><prefix-list-item><name>212.122.192.0/20</name></prefix-list-item><prefix-list-item><name>212.122.208.0/21</name></prefix-list-item><prefix-list-item><name>212.182.0.0/18</name></prefix-list-item><prefix-list-item><name>212.182.64.0/20</name></prefix-list-item><prefix-list-item><name>212.191.0.0/17</name></prefix-list-item><prefix-list-item><name>212.191.126.0/24</name></prefix-list-item><prefix-list-item><name>212.191.224.0/24</name></prefix-list-item><prefix-list-item><name>212.191.225.0/24</name></prefix-list-item><prefix-list-item><name>212.191.226.0/24</name></prefix-list-item><prefix-list-item><name>212.191.227.0/24</name></prefix-list-item><prefix-list-item><name>212.191.229.0/24</name></prefix-list-item><prefix-list-item><name>212.191.230.0/24</name></prefix-list-item><prefix-list-item><name>212.191.239.0/24</name></prefix-list-item><prefix-list-item><name>212.191.240.0/24</name></prefix-list-item><prefix-list-item><name>212.191.241.0/24</name></prefix-list-item><prefix-list-item><name>212.191.244.0/24</name></prefix-list-item><prefix-list-item><name>212.191.245.0/24</name></prefix-list-item><prefix-list-item><name>212.191.246.0/24</name></prefix-list-item><prefix-list-item><name>212.191.247.0/24</name></prefix-list-item><prefix-list-item><name>213.73.0.0/21</name></prefix-list-item><prefix-list-item><name>213.73.20.0/22</name></prefix-list-item><prefix-list-item><name>213.73.24.0/22</name></prefix-list-item><prefix-list-item><name>213.73.28.0/23</name></prefix-list-item><prefix-list-item><name>213.73.30.0/24</name></prefix-list-item><prefix-list-item><name>213.135.32.0/21</name></prefix-list-item><prefix-list-item><name>213.135.40.0/23</name></prefix-list-item><prefix-list-item><name>213.135.43.0/24</name></prefix-list-item><prefix-list-item><name>213.135.44.0/22</name></prefix-list-item><prefix-list-item><name>213.135.48.0/23</name></prefix-list-item><prefix-list-item><name>213.135.50.0/23</name></prefix-list-item><prefix-list-item><name>213.135.52.0/22</name></prefix-list-item><prefix-list-item><name>213.135.56.0/21</name></prefix-list-item><prefix-list-item><name>213.135.56.0/23</name></prefix-list-item><prefix-list-item><name>213.135.63.0/24</name></prefix-list-item><prefix-list-item><name>213.155.160.0/19</name></prefix-list-item><prefix-list-item><name>213.184.0.0/20</name></prefix-list-item><prefix-list-item><name>213.184.16.0/21</name></prefix-list-item><prefix-list-item><name>213.184.24.0/22</name></prefix-list-item><prefix-list-item><name>213.184.228.0/23</name></prefix-list-item><prefix-list-item><name>213.227.80.0/20</name></prefix-list-item><prefix-list-item><name>213.227.96.0/19</name></prefix-list-item><prefix-list-item><name>217.21.40.0/24</name></prefix-list-item><prefix-list-item><name>217.21.41.0/24</name></prefix-list-item><prefix-list-item><name>217.21.42.0/24</name></prefix-list-item><prefix-list-item><name>217.21.43.0/24</name></prefix-list-item><prefix-list-item><name>217.21.57.0/24</name></prefix-list-item><prefix-list-item><name>217.21.62.0/24</name></prefix-list-item><prefix-list-item><name>217.113.156.0/22</name></prefix-list-item><prefix-list-item><name>217.116.64.0/20</name></prefix-list-item><prefix-list-item><name>217.149.224.0/20</name></prefix-list-item><prefix-list-item><name>217.173.192.0/21</name></prefix-list-item><prefix-list-item><name>217.173.200.0/23</name></prefix-list-item><prefix-list-item><name>217.173.206.0/23</name></prefix-list-item></prefix-list><prefix-list><name>route-from-CESNET-v6</name><prefix-list-item><name>2001:628::/29</name></prefix-list-item><prefix-list-item><name>2001:628::/30</name></prefix-list-item><prefix-list-item><name>2001:628:404::/48</name></prefix-list-item><prefix-list-item><name>2001:628:404:a::10/128</name></prefix-list-item><prefix-list-item><name>2001:628:404:14::10/128</name></prefix-list-item><prefix-list-item><name>2001:628:404:250::10/128</name></prefix-list-item><prefix-list-item><name>2001:628:453::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2000::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2003::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2020::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2090::/48</name></prefix-list-item><prefix-list-item><name>2001:628:20d0::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2100::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2120::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2130::/48</name></prefix-list-item><prefix-list-item><name>2001:628:2280::/48</name></prefix-list-item><prefix-list-item><name>2001:629::/32</name></prefix-list-item><prefix-list-item><name>2001:62a::/31</name></prefix-list-item><prefix-list-item><name>2001:678:2::/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:d::/48</name></prefix-list-item><prefix-list-item><name>2001:678:e::/48</name></prefix-list-item><prefix-list-item><name>2001:678:f::/48</name></prefix-list-item><prefix-list-item><name>2001:678:11::/48</name></prefix-list-item><prefix-list-item><name>2001:678:1c::/48</name></prefix-list-item><prefix-list-item><name>2001:678:20::/48</name></prefix-list-item><prefix-list-item><name>2001:678:24::/48</name></prefix-list-item><prefix-list-item><name>2001:678:1c0::/48</name></prefix-list-item><prefix-list-item><name>2001:678:4b4::/48</name></prefix-list-item><prefix-list-item><name>2001:678:5c4::/48</name></prefix-list-item><prefix-list-item><name>2001:678:618::/48</name></prefix-list-item><prefix-list-item><name>2001:678:8d4::/48</name></prefix-list-item><prefix-list-item><name>2001:678:d28::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:64::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:148::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1bc::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:210::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:27c::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:468::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:10b8::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:10e0::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1220::/46</name></prefix-list-item><prefix-list-item><name>2001:67c:1280::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1324::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:133c::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:13b8::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:13f8::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1518::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1698::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1750::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1790::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1864::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1b70::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1b90::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:2260::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:23c0::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:23f4::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:24cc::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:256c::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:25ac::/48</name></prefix-list-item><prefix-list-item><name>2001:6a0::/32</name></prefix-list-item><prefix-list-item><name>2001:6a0::/34</name></prefix-list-item><prefix-list-item><name>2001:6a0:4000::/34</name></prefix-list-item><prefix-list-item><name>2001:6d8::/29</name></prefix-list-item><prefix-list-item><name>2001:6d8::/32</name></prefix-list-item><prefix-list-item><name>2001:6df::/32</name></prefix-list-item><prefix-list-item><name>2001:718::/32</name></prefix-list-item><prefix-list-item><name>2001:7f8:30::/48</name></prefix-list-item><prefix-list-item><name>2001:7f9:c::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fd02::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fd03::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fd04::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe00::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe01::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe02::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe03::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe04::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe05::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe06::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe07::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0a::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0b::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0c::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0d::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0e::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe0f::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe10::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe12::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe13::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe14::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe15::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe16::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:fe17::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff00::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff01::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff02::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff03::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff04::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff05::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff06::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff07::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0a::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0b::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0c::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0d::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0e::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff0f::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff10::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff12::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff13::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff14::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff15::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff16::/48</name></prefix-list-item><prefix-list-item><name>2001:7fb:ff17::/48</name></prefix-list-item><prefix-list-item><name>2001:808::/35</name></prefix-list-item><prefix-list-item><name>2001:908::/30</name></prefix-list-item><prefix-list-item><name>2001:a48:8000::/36</name></prefix-list-item><prefix-list-item><name>2001:b10::/35</name></prefix-list-item><prefix-list-item><name>2001:b10:bff0::/64</name></prefix-list-item><prefix-list-item><name>2001:b10:c000::/35</name></prefix-list-item><prefix-list-item><name>2001:12f8:c::/47</name></prefix-list-item><prefix-list-item><name>2001:12f8:c::/48</name></prefix-list-item><prefix-list-item><name>2001:12f8:d::/48</name></prefix-list-item><prefix-list-item><name>2001:1a68:a::/48</name></prefix-list-item><prefix-list-item><name>2001:4070::/32</name></prefix-list-item><prefix-list-item><name>2001:4070::/33</name></prefix-list-item><prefix-list-item><name>2001:40f8::/32</name></prefix-list-item><prefix-list-item><name>2001:4118::/32</name></prefix-list-item><prefix-list-item><name>2001:4c58::/30</name></prefix-list-item><prefix-list-item><name>2001:4c5c::/30</name></prefix-list-item><prefix-list-item><name>2001:4c70::/32</name></prefix-list-item><prefix-list-item><name>2604:3500::/32</name></prefix-list-item><prefix-list-item><name>2620:7d:e000::/48</name></prefix-list-item><prefix-list-item><name>2620:10a:80ba::/48</name></prefix-list-item><prefix-list-item><name>2620:130:1000::/48</name></prefix-list-item><prefix-list-item><name>2a00:1488::/32</name></prefix-list-item><prefix-list-item><name>2a00:1610::/29</name></prefix-list-item><prefix-list-item><name>2a00:1ba0:2::/48</name></prefix-list-item><prefix-list-item><name>2a00:40c0::/32</name></prefix-list-item><prefix-list-item><name>2a00:40c1::/32</name></prefix-list-item><prefix-list-item><name>2a00:4400::/32</name></prefix-list-item><prefix-list-item><name>2a00:6c40::/32</name></prefix-list-item><prefix-list-item><name>2a00:cd80::/33</name></prefix-list-item><prefix-list-item><name>2a00:fc00:e009::/48</name></prefix-list-item><prefix-list-item><name>2a01:190:15ed::/48</name></prefix-list-item><prefix-list-item><name>2a01:1d8::/30</name></prefix-list-item><prefix-list-item><name>2a01:1dc::/32</name></prefix-list-item><prefix-list-item><name>2a01:1dd::/32</name></prefix-list-item><prefix-list-item><name>2a01:1de::/32</name></prefix-list-item><prefix-list-item><name>2a01:468::/29</name></prefix-list-item><prefix-list-item><name>2a01:698::/32</name></prefix-list-item><prefix-list-item><name>2a01:5c40::/32</name></prefix-list-item><prefix-list-item><name>2a01:5c40:3::/48</name></prefix-list-item><prefix-list-item><name>2a01:6e40::/32</name></prefix-list-item><prefix-list-item><name>2a01:95a0::/32</name></prefix-list-item><prefix-list-item><name>2a01:95a0::/33</name></prefix-list-item><prefix-list-item><name>2a01:95a0:8000::/33</name></prefix-list-item><prefix-list-item><name>2a02:3e0::/32</name></prefix-list-item><prefix-list-item><name>2a02:568:fe00::/48</name></prefix-list-item><prefix-list-item><name>2a02:568:fe01::/48</name></prefix-list-item><prefix-list-item><name>2a02:568:fe02::/48</name></prefix-list-item><prefix-list-item><name>2a02:850::/32</name></prefix-list-item><prefix-list-item><name>2a02:850::/44</name></prefix-list-item><prefix-list-item><name>2a02:850:ffff::/48</name></prefix-list-item><prefix-list-item><name>2a02:db0::/32</name></prefix-list-item><prefix-list-item><name>2a02:db0::/48</name></prefix-list-item><prefix-list-item><name>2a02:db0:8000::/48</name></prefix-list-item><prefix-list-item><name>2a02:1770::/33</name></prefix-list-item><prefix-list-item><name>2a02:7a00:2::/48</name></prefix-list-item><prefix-list-item><name>2a02:c280::/29</name></prefix-list-item><prefix-list-item><name>2a03:2e0::/32</name></prefix-list-item><prefix-list-item><name>2a03:2e4::/30</name></prefix-list-item><prefix-list-item><name>2a03:1380::/32</name></prefix-list-item><prefix-list-item><name>2a03:2320::/32</name></prefix-list-item><prefix-list-item><name>2a03:5dc0:6::/48</name></prefix-list-item><prefix-list-item><name>2a03:8320::/32</name></prefix-list-item><prefix-list-item><name>2a03:f080::/32</name></prefix-list-item><prefix-list-item><name>2a03:f080:1000::/48</name></prefix-list-item><prefix-list-item><name>2a03:f080:1800::/48</name></prefix-list-item><prefix-list-item><name>2a04:440::/30</name></prefix-list-item><prefix-list-item><name>2a04:440::/32</name></prefix-list-item><prefix-list-item><name>2a04:4740::/29</name></prefix-list-item><prefix-list-item><name>2a04:4740:6293::/48</name></prefix-list-item><prefix-list-item><name>2a04:9440::/30</name></prefix-list-item><prefix-list-item><name>2a05:37c0::/29</name></prefix-list-item><prefix-list-item><name>2a05:7f00::/29</name></prefix-list-item><prefix-list-item><name>2a05:7f00:188::/48</name></prefix-list-item><prefix-list-item><name>2a05:7f00:189::/48</name></prefix-list-item><prefix-list-item><name>2a05:7f00:190::/48</name></prefix-list-item><prefix-list-item><name>2a05:7f00:191::/48</name></prefix-list-item><prefix-list-item><name>2a07:6bc0::/29</name></prefix-list-item><prefix-list-item><name>2a07:8d80::/29</name></prefix-list-item><prefix-list-item><name>2a07:8d80::/32</name></prefix-list-item><prefix-list-item><name>2a07:8d81::/32</name></prefix-list-item><prefix-list-item><name>2a07:8d82::/32</name></prefix-list-item><prefix-list-item><name>2a07:8d83::/32</name></prefix-list-item><prefix-list-item><name>2a07:8d84::/32</name></prefix-list-item><prefix-list-item><name>2a07:8d85::/32</name></prefix-list-item><prefix-list-item><name>2a07:8d86::/32</name></prefix-list-item><prefix-list-item><name>2a07:8d87::/32</name></prefix-list-item><prefix-list-item><name>2a07:dd40::/29</name></prefix-list-item><prefix-list-item><name>2a09:c400::/30</name></prefix-list-item><prefix-list-item><name>2a09:c404::/30</name></prefix-list-item><prefix-list-item><name>2a0a:8bc0::/29</name></prefix-list-item><prefix-list-item><name>2a0a:f500::/32</name></prefix-list-item><prefix-list-item><name>2a0b:2e80::/32</name></prefix-list-item><prefix-list-item><name>2a0b:2e81::/32</name></prefix-list-item><prefix-list-item><name>2a0b:2e82::/32</name></prefix-list-item><prefix-list-item><name>2a0b:2e83::/32</name></prefix-list-item><prefix-list-item><name>2a0b:6700::/32</name></prefix-list-item><prefix-list-item><name>2a0b:8e00::/48</name></prefix-list-item><prefix-list-item><name>2a0b:8e00:1::/48</name></prefix-list-item><prefix-list-item><name>2a0c:8080::/32</name></prefix-list-item><prefix-list-item><name>2a0e:2740::/29</name></prefix-list-item><prefix-list-item><name>2a0e:e280::/29</name></prefix-list-item><prefix-list-item><name>2a0f:b480::/29</name></prefix-list-item><prefix-list-item><name>2a10:9700:100::/48</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>nren-access</name><prefix-list-item><name>62.40.96.11/32</name></prefix-list-item><prefix-list-item><name>62.40.109.68/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.0/32</name></prefix-list-item><prefix-list-item><name>83.97.94.182/32</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:5::2/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>2002:3e28:69d2::3e28:69d2/128</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-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-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.114.170/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>geantnoc-address-space-v6</name></prefix-list><prefix-list><name>route-from-CE</name></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>camera-server</name><prefix-list-item><name>62.40.115.226/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-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-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-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_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>CERT_EENet</name><prefix-list-item><name>193.40.100.32/32</name></prefix-list-item><prefix-list-item><name>193.40.100.33/32</name></prefix-list-item><prefix-list-item><name>193.40.100.223/32</name></prefix-list-item><prefix-list-item><name>193.40.100.236/32</name></prefix-list-item></prefix-list><prefix-list><name>CERT_CERN</name><prefix-list-item><name>137.138.0.0/16</name></prefix-list-item></prefix-list><prefix-list><name>CERT_GARR</name><prefix-list-item><name>193.206.158.0/23</name></prefix-list-item></prefix-list><prefix-list><name>CERT_CERT.LV-SIGMAnet</name><prefix-list-item><name>85.254.248.0/24</name></prefix-list-item></prefix-list><prefix-list><name>CERT_LITnet</name><prefix-list-item><name>83.171.9.0/24</name></prefix-list-item></prefix-list><prefix-list><name>CERT_IUCC</name><prefix-list-item><name>128.139.18.241/32</name></prefix-list-item><prefix-list-item><name>128.139.197.70/32</name></prefix-list-item><prefix-list-item><name>128.139.197.119/32</name></prefix-list-item><prefix-list-item><name>128.139.202.2/32</name></prefix-list-item><prefix-list-item><name>128.139.202.59/32</name></prefix-list-item><prefix-list-item><name>128.139.202.78/32</name></prefix-list-item><prefix-list-item><name>128.139.229.249/32</name></prefix-list-item><prefix-list-item><name>128.139.229.250/32</name></prefix-list-item><prefix-list-item><name>128.139.229.253/32</name></prefix-list-item><prefix-list-item><name>132.64.4.46/32</name></prefix-list-item><prefix-list-item><name>132.64.12.244/32</name></prefix-list-item><prefix-list-item><name>132.64.254.2/32</name></prefix-list-item><prefix-list-item><name>132.64.254.5/32</name></prefix-list-item><prefix-list-item><name>132.64.254.6/32</name></prefix-list-item><prefix-list-item><name>132.66.10.135/32</name></prefix-list-item><prefix-list-item><name>132.66.32.21/32</name></prefix-list-item><prefix-list-item><name>132.66.32.25/32</name></prefix-list-item><prefix-list-item><name>132.66.222.13/32</name></prefix-list-item><prefix-list-item><name>132.68.2.150/32</name></prefix-list-item><prefix-list-item><name>132.68.48.185/32</name></prefix-list-item><prefix-list-item><name>192.114.0.26/32</name></prefix-list-item></prefix-list><prefix-list><name>CERT_GRNET</name><prefix-list-item><name>83.212.9.0/24</name></prefix-list-item></prefix-list><prefix-list><name>CERT_GRNET-V6</name><prefix-list-item><name>2001:648:2340::/48</name></prefix-list-item></prefix-list><prefix-list><name>CERT_FCCN</name><prefix-list-item><name>193.136.44.0/24</name></prefix-list-item><prefix-list-item><name>193.136.46.0/25</name></prefix-list-item></prefix-list><prefix-list><name>CERT_NIIF</name><prefix-list-item><name>193.6.222.0/24</name></prefix-list-item><prefix-list-item><name>195.111.98.18/32</name></prefix-list-item></prefix-list><prefix-list><name>CERT_NIIF-V6</name><prefix-list-item><name>2001:738:0:1::/64</name></prefix-list-item><prefix-list-item><name>2001:738:0:401::/64</name></prefix-list-item></prefix-list><prefix-list><name>CERT-SURFNET</name><prefix-list-item><name>145.0.7.128/28</name></prefix-list-item><prefix-list-item><name>195.169.126.0/23</name></prefix-list-item></prefix-list><prefix-list><name>CERT-RedIRIS</name><prefix-list-item><name>130.206.6.0/24</name></prefix-list-item></prefix-list><prefix-list><name>CERT_RESTENA</name><prefix-list-item><name>158.64.1.128/26</name></prefix-list-item><prefix-list-item><name>158.64.15.192/28</name></prefix-list-item></prefix-list><prefix-list><name>CERT_RESTENA-V6</name><prefix-list-item><name>2001:a18:1:8::/64</name></prefix-list-item><prefix-list-item><name>2001:a18:1:40::/64</name></prefix-list-item></prefix-list><prefix-list><name>WordPessList</name><prefix-list-item><name>145.0.2.23/32</name></prefix-list-item><prefix-list-item><name>145.0.2.26/32</name></prefix-list-item></prefix-list><prefix-list><name>WordPessList6</name><prefix-list-item><name>2001:610:188:444::23/128</name></prefix-list-item><prefix-list-item><name>2001:610:188:444::26/128</name></prefix-list-item></prefix-list><prefix-list><name>CERT_HEANET</name><prefix-list-item><name>193.1.228.0/24</name></prefix-list-item></prefix-list><prefix-list><name>CERT_CESnet</name><prefix-list-item><name>195.113.222.128/26</name></prefix-list-item><prefix-list-item><name>195.113.228.0/24</name></prefix-list-item></prefix-list><prefix-list><name>RE_BGP_inet</name><apply-path>protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>RE_BGP_inet6</name><apply-path>protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>IAS_BGP_inet</name><apply-path>routing-instances IAS protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>IAS_BGP_inet6</name><apply-path>routing-instances IAS protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>CLS_BGP_inet</name><apply-path>routing-instances CLS protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>CLS_BGP_inet6</name><apply-path>routing-instances CLS protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>IAS_DUMMY_BGP_inet</name><apply-path>routing-instances IAS_DUMMY protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>IAS_DUMMY_BGP_inet6</name><apply-path>routing-instances IAS_DUMMY protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>lhcone-l3vpn_BGP_inet</name><apply-path>routing-instances lhcone-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>lhcone-l3vpn_BGP_inet6</name><apply-path>routing-instances lhcone-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>taas-control_BGP_inet</name><apply-path>routing-instances taas-control protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>taas-control_BGP_inet6</name><apply-path>routing-instances taas-control protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>mgmt-l3vpn_BGP_inet</name><apply-path>routing-instances mgmt-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>mgmt-l3vpn_BGP_inet6</name><apply-path>routing-instances mgmt-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn_BGP_inet</name><apply-path>routing-instances mdvpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn_BGP_inet6</name><apply-path>routing-instances mdvpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn-nren-gn_BGP_inet</name><apply-path>routing-instances mdvpn-nren-gn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn-nren-gn_BGP_inet6</name><apply-path>routing-instances mdvpn-nren-gn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>confine-l3vpn_BGP_inet</name><apply-path>routing-instances confine-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>confine-l3vpn_BGP_inet6</name><apply-path>routing-instances confine-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>VPN-PROXY_BGP_inet</name><apply-path>logical-systems VPN-PROXY protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>VPN-PROXY_BGP_inet6</name><apply-path>logical-systems VPN-PROXY protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>VRR_BGP_inet</name><apply-path>logical-systems VRR protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>VRR_BGP_inet6</name><apply-path>logical-systems VRR protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</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>VPN-PROXY_RI_BGP_inet</name><apply-path>logical-systems VPN-PROXY routing-instances &lt;*&gt; protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>VPN-PROXY_RI_BGP_inet6</name><apply-path>logical-systems VPN-PROXY routing-instances &lt;*&gt; protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>route-from-CESNET</name><prefix-list-item><name>31.171.254.0/24</name></prefix-list-item><prefix-list-item><name>31.171.255.0/24</name></prefix-list-item><prefix-list-item><name>46.30.88.0/21</name></prefix-list-item><prefix-list-item><name>46.227.172.0/24</name></prefix-list-item><prefix-list-item><name>78.128.128.0/17</name></prefix-list-item><prefix-list-item><name>91.221.46.0/23</name></prefix-list-item><prefix-list-item><name>146.102.0.0/16</name></prefix-list-item><prefix-list-item><name>147.228.0.0/16</name></prefix-list-item><prefix-list-item><name>147.229.0.0/17</name></prefix-list-item><prefix-list-item><name>147.230.0.0/15</name></prefix-list-item><prefix-list-item><name>158.194.0.0/16</name></prefix-list-item><prefix-list-item><name>160.216.0.0/15</name></prefix-list-item><prefix-list-item><name>185.48.20.0/23</name></prefix-list-item><prefix-list-item><name>185.48.22.0/23</name></prefix-list-item><prefix-list-item><name>185.68.28.0/22</name></prefix-list-item><prefix-list-item><name>185.88.12.0/22</name></prefix-list-item><prefix-list-item><name>185.150.124.0/22</name></prefix-list-item><prefix-list-item><name>193.84.32.0/20</name></prefix-list-item><prefix-list-item><name>193.84.53.0/24</name></prefix-list-item><prefix-list-item><name>193.84.55.0/24</name></prefix-list-item><prefix-list-item><name>193.84.56.0/21</name></prefix-list-item><prefix-list-item><name>193.84.80.0/22</name></prefix-list-item><prefix-list-item><name>193.84.116.0/23</name></prefix-list-item><prefix-list-item><name>193.84.160.0/20</name></prefix-list-item><prefix-list-item><name>193.84.192.0/19</name></prefix-list-item><prefix-list-item><name>193.84.192.0/20</name></prefix-list-item><prefix-list-item><name>193.84.208.0/20</name></prefix-list-item><prefix-list-item><name>195.93.216.0/23</name></prefix-list-item><prefix-list-item><name>195.113.0.0/16</name></prefix-list-item><prefix-list-item><name>195.178.64.0/19</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>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>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-address-space</name><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.130/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>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>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>qfx-vme-interfaces</name><prefix-list-item><name>62.40.117.162/32</name></prefix-list-item><prefix-list-item><name>62.40.117.170/32</name></prefix-list-item></prefix-list><prefix-list><name>CERT_ACOnet-V6</name><prefix-list-item><name>2001:628:1:5::/64</name></prefix-list-item><prefix-list-item><name>2001:628:101:5::/64</name></prefix-list-item></prefix-list><prefix-list><name>CERT_ACOnet</name><prefix-list-item><name>192.153.174.0/24</name></prefix-list-item><prefix-list-item><name>193.170.140.0/27</name></prefix-list-item></prefix-list><prefix-list><name>CERT_BASnet</name><prefix-list-item><name>80.94.160.0/26</name></prefix-list-item></prefix-list><prefix-list><name>CERT_CYnet</name><prefix-list-item><name>82.116.200.192/26</name></prefix-list-item><prefix-list-item><name>194.42.9.192/26</name></prefix-list-item><prefix-list-item><name>212.50.126.87/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>CERT_CARnet</name><prefix-list-item><name>161.53.12.0/24</name></prefix-list-item></prefix-list><prefix-list><name>JRA2_MICHAL_ACCESS_SRCIPS</name><prefix-list-item><name>78.128.217.0/25</name></prefix-list-item><prefix-list-item><name>147.91.255.0/26</name></prefix-list-item><prefix-list-item><name>195.113.142.32/27</name></prefix-list-item><prefix-list-item><name>195.113.161.160/28</name></prefix-list-item><prefix-list-item><name>195.113.222.0/24</name></prefix-list-item><prefix-list-item><name>212.79.96.72/32</name></prefix-list-item></prefix-list><prefix-list><name>JRA2_MICHAL_ACCESS_DSTIPS</name><prefix-list-item><name>62.40.96.35/32</name></prefix-list-item><prefix-list-item><name>62.40.96.36/32</name></prefix-list-item><prefix-list-item><name>62.40.96.41/32</name></prefix-list-item><prefix-list-item><name>62.40.96.42/32</name></prefix-list-item><prefix-list-item><name>62.40.96.43/32</name></prefix-list-item><prefix-list-item><name>62.40.96.44/32</name></prefix-list-item><prefix-list-item><name>62.40.96.45/32</name></prefix-list-item><prefix-list-item><name>62.40.96.46/32</name></prefix-list-item><prefix-list-item><name>62.40.96.47/32</name></prefix-list-item><prefix-list-item><name>62.40.96.48/32</name></prefix-list-item><prefix-list-item><name>62.40.96.49/32</name></prefix-list-item><prefix-list-item><name>62.40.99.114/32</name></prefix-list-item><prefix-list-item><name>62.40.111.254/32</name></prefix-list-item><prefix-list-item><name>62.40.113.91/32</name></prefix-list-item><prefix-list-item><name>62.40.113.182/32</name></prefix-list-item><prefix-list-item><name>62.40.115.105/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.109/32</name></prefix-list-item><prefix-list-item><name>62.40.115.111/32</name></prefix-list-item><prefix-list-item><name>62.40.116.41/32</name></prefix-list-item><prefix-list-item><name>62.40.116.43/32</name></prefix-list-item><prefix-list-item><name>62.40.116.45/32</name></prefix-list-item><prefix-list-item><name>62.40.116.47/32</name></prefix-list-item><prefix-list-item><name>62.40.120.19/32</name></prefix-list-item></prefix-list><prefix-list><name>CERT_AMRES</name><prefix-list-item><name>147.91.255.0/25</name></prefix-list-item></prefix-list><prefix-list><name>CERT_Malta</name><prefix-list-item><name>193.188.32.208/30</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-MSDP</name><apply-path>protocols msdp group &lt;*&gt; peer &lt;*&gt;</apply-path></prefix-list><prefix-list><name>GEANT-SNMP</name><apply-path>snmp community &lt;*&gt; clients &lt;*&gt;</apply-path></prefix-list><prefix-list><name>GEANT-LDP</name><apply-path>protocols l2circuit neighbor &lt;*&gt;</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>JRA1_SDN_CORSA_ACCESS</name><prefix-list-item><name>62.40.120.82/32</name></prefix-list-item><prefix-list-item><name>147.83.206.64/27</name></prefix-list-item><prefix-list-item><name>147.91.255.0/25</name></prefix-list-item><prefix-list-item><name>193.49.159.128/26</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>CERT_ARNES</name><prefix-list-item><name>193.2.1.128/25</name></prefix-list-item><prefix-list-item><name>212.235.167.0/24</name></prefix-list-item><prefix-list-item><name>212.235.168.0/24</name></prefix-list-item></prefix-list><prefix-list><name>CERT_MARNET</name><prefix-list-item><name>194.149.128.0/19</name></prefix-list-item></prefix-list><prefix-list><name>CERT_RASH</name><prefix-list-item><name>37.139.112.0/24</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 &lt;*&gt; address &lt;*.*&gt;</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 &lt;*.*&gt;</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_NIX.CZ_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_NIX.CZ_TAIL</name><term><name>GENERAL_ACCEPT</name><then><local-preference><local-preference>90</local-preference></local-preference><community><add/><community-name>INFO_PUBLIC_PEER_NIX.CZ</community-name></community><community><add/><community-name>INFO_PUBLIC_PEER_PRA</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_AS112_OARC,_Inc.</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS13335_CLOUDFLARENET_-_CloudFlare,_Inc.,_US</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS16276_OVH</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,_US</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_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</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_AS24971_Master_Internet</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS26415_VeriSign</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS30134_ISC</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS32590_Valve_Corporation</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_AS33891_Core-Backbone_GmbH</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS36351_SoftLayer_Technologies</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS36692_OPENDNS_-_OpenDNS,_LLC,_US</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS46489_JUSTINTV_-_Twitch_Interactive_Inc.,</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS5400_BT_,_GB__</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS6461_Zayo_Group</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS6881_NIX.CZ</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS8075_MICROSOFT</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-FROM-PUBLIC-PEER_AS8218_NEO-ASN_legacy_Neotelecoms,_FR_</name><term><name>NEXT_POLICY</name><then><next>policy</next></then></term></policy-statement><policy-statement><name>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ</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_NIX.CZ_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_NIX.CZ</community><community>TE_BLOCK_AS10310_NIX.CZ_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_NIX.CZ</community><community>TE_ANNOUNCE_AS10310_NIX.CZ_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_AS112_OARC,_Inc.</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS112</community><community>TE_BLOCK_AS112_2</community><community>TE_BLOCK_AS112_NIX.CZ</community><community>TE_BLOCK_AS112_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS112_x1_4byte</community><community>TE_PREPEND_AS112_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_AS112_x2_4byte</community><community>TE_PREPEND_AS112_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_AS112_x3_4byte</community><community>TE_PREPEND_AS112_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_AS112_x6_4byte</community><community>TE_PREPEND_AS112_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_AS112</community><community>TE_ANNOUNCE_AS112_2</community><community>TE_ANNOUNCE_AS112_3</community><community>TE_ANNOUNCE_AS112_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_AS112_NIX.CZ</community><community>TE_ANNOUNCE_AS112_NIX.CZ_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_CLOUDFLARENET_-_CloudFlare,_Inc.,_US</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS13335</community><community>TE_BLOCK_AS13335_2</community><community>TE_BLOCK_AS13335_NIX.CZ</community><community>TE_BLOCK_AS13335_NIX.CZ_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></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></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></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></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_NIX.CZ</community><community>TE_ANNOUNCE_AS13335_NIX.CZ_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_AS16276_OVH</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS16276</community><community>TE_BLOCK_AS16276_2</community><community>TE_BLOCK_AS16276_NIX.CZ</community><community>TE_BLOCK_AS16276_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS16276_x1_4byte</community><community>TE_PREPEND_AS16276_x1_2byte</community><community>TE_PREPEND_AS16276_NIX.CZ_x1_4byte</community><community>TE_PREPEND_AS16276_NIX.CZ_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_AS16276_x2_4byte</community><community>TE_PREPEND_AS16276_x2_2byte</community><community>TE_PREPEND_AS16276_NIX.CZ_x2_4byte</community><community>TE_PREPEND_AS16276_NIX.CZ_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_AS16276_x3_4byte</community><community>TE_PREPEND_AS16276_x3_2byte</community><community>TE_PREPEND_AS16276_NIX.CZ_x3_4byte</community><community>TE_PREPEND_AS16276_NIX.CZ_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_AS16276_x6_4byte</community><community>TE_PREPEND_AS16276_x6_2byte</community><community>TE_PREPEND_AS16276_NIX.CZ_x6_4byte</community><community>TE_PREPEND_AS16276_NIX.CZ_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_AS16276</community><community>TE_ANNOUNCE_AS16276_2</community><community>TE_ANNOUNCE_AS16276_3</community><community>TE_ANNOUNCE_AS16276_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_AS16276_NIX.CZ</community><community>TE_ANNOUNCE_AS16276_NIX.CZ_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-02_-_Amazon.com,_Inc.,_US</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS16509</community><community>TE_BLOCK_AS16509_2</community><community>TE_BLOCK_AS16509_NIX.CZ</community><community>TE_BLOCK_AS16509_NIX.CZ_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></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></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></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></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_NIX.CZ</community><community>TE_ANNOUNCE_AS16509_NIX.CZ_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_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS199524_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></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></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></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_NIX.CZ_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_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS20940</community><community>TE_BLOCK_AS20940_2</community><community>TE_BLOCK_AS20940_NIX.CZ</community><community>TE_BLOCK_AS20940_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS20940_x1_4byte</community><community>TE_PREPEND_AS20940_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_AS20940_x2_4byte</community><community>TE_PREPEND_AS20940_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_AS20940_x3_4byte</community><community>TE_PREPEND_AS20940_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_AS20940_x6_4byte</community><community>TE_PREPEND_AS20940_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_AS20940</community><community>TE_ANNOUNCE_AS20940_2</community><community>TE_ANNOUNCE_AS20940_3</community><community>TE_ANNOUNCE_AS20940_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_AS20940_NIX.CZ</community><community>TE_ANNOUNCE_AS20940_NIX.CZ_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_NIX.CZ</community><community>TE_BLOCK_AS22822_NIX.CZ_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_NIX.CZ_x1_4byte</community><community>TE_PREPEND_AS22822_NIX.CZ_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_NIX.CZ_x2_4byte</community><community>TE_PREPEND_AS22822_NIX.CZ_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_NIX.CZ_x3_4byte</community><community>TE_PREPEND_AS22822_NIX.CZ_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_NIX.CZ_x6_4byte</community><community>TE_PREPEND_AS22822_NIX.CZ_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_NIX.CZ</community><community>TE_ANNOUNCE_AS22822_NIX.CZ_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_AS24971_Master_Internet</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS24971</community><community>TE_BLOCK_AS24971_2</community><community>TE_BLOCK_AS24971_NIX.CZ</community><community>TE_BLOCK_AS24971_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS24971_x1_4byte</community><community>TE_PREPEND_AS24971_x1_2byte</community><community>TE_PREPEND_AS24971_NIX.CZ_x1_4byte</community><community>TE_PREPEND_AS24971_NIX.CZ_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_AS24971_x2_4byte</community><community>TE_PREPEND_AS24971_x2_2byte</community><community>TE_PREPEND_AS24971_NIX.CZ_x2_4byte</community><community>TE_PREPEND_AS24971_NIX.CZ_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_AS24971_x3_4byte</community><community>TE_PREPEND_AS24971_x3_2byte</community><community>TE_PREPEND_AS24971_NIX.CZ_x3_4byte</community><community>TE_PREPEND_AS24971_NIX.CZ_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_AS24971_x6_4byte</community><community>TE_PREPEND_AS24971_x6_2byte</community><community>TE_PREPEND_AS24971_NIX.CZ_x6_4byte</community><community>TE_PREPEND_AS24971_NIX.CZ_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_AS24971</community><community>TE_ANNOUNCE_AS24971_2</community><community>TE_ANNOUNCE_AS24971_3</community><community>TE_ANNOUNCE_AS24971_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_AS24971_NIX.CZ</community><community>TE_ANNOUNCE_AS24971_NIX.CZ_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_AS26415_VeriSign</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS26415</community><community>TE_BLOCK_AS26415_2</community><community>TE_BLOCK_AS26415_NIX.CZ</community><community>TE_BLOCK_AS26415_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS26415_x1_4byte</community><community>TE_PREPEND_AS26415_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_AS26415_x2_4byte</community><community>TE_PREPEND_AS26415_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_AS26415_x3_4byte</community><community>TE_PREPEND_AS26415_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_AS26415_x6_4byte</community><community>TE_PREPEND_AS26415_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_AS26415</community><community>TE_ANNOUNCE_AS26415_2</community><community>TE_ANNOUNCE_AS26415_3</community><community>TE_ANNOUNCE_AS26415_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_AS26415_NIX.CZ</community><community>TE_ANNOUNCE_AS26415_NIX.CZ_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_AS30134_ISC</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS30134</community><community>TE_BLOCK_AS30134_2</community><community>TE_BLOCK_AS30134_NIX.CZ</community><community>TE_BLOCK_AS30134_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS30134_x1_4byte</community><community>TE_PREPEND_AS30134_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_AS30134_x2_4byte</community><community>TE_PREPEND_AS30134_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_AS30134_x3_4byte</community><community>TE_PREPEND_AS30134_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_AS30134_x6_4byte</community><community>TE_PREPEND_AS30134_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_AS30134</community><community>TE_ANNOUNCE_AS30134_2</community><community>TE_ANNOUNCE_AS30134_3</community><community>TE_ANNOUNCE_AS30134_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_AS30134_NIX.CZ</community><community>TE_ANNOUNCE_AS30134_NIX.CZ_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_AS32590_Valve_Corporation</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS32590</community><community>TE_BLOCK_AS32590_2</community><community>TE_BLOCK_AS32590_NIX.CZ</community><community>TE_BLOCK_AS32590_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS32590_x1_4byte</community><community>TE_PREPEND_AS32590_x1_2byte</community><community>TE_PREPEND_AS32590_NIX.CZ_x1_4byte</community><community>TE_PREPEND_AS32590_NIX.CZ_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_AS32590_x2_4byte</community><community>TE_PREPEND_AS32590_x2_2byte</community><community>TE_PREPEND_AS32590_NIX.CZ_x2_4byte</community><community>TE_PREPEND_AS32590_NIX.CZ_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_AS32590_x3_4byte</community><community>TE_PREPEND_AS32590_x3_2byte</community><community>TE_PREPEND_AS32590_NIX.CZ_x3_4byte</community><community>TE_PREPEND_AS32590_NIX.CZ_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_AS32590_x6_4byte</community><community>TE_PREPEND_AS32590_x6_2byte</community><community>TE_PREPEND_AS32590_NIX.CZ_x6_4byte</community><community>TE_PREPEND_AS32590_NIX.CZ_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_AS32590</community><community>TE_ANNOUNCE_AS32590_2</community><community>TE_ANNOUNCE_AS32590_3</community><community>TE_ANNOUNCE_AS32590_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_AS32590_NIX.CZ</community><community>TE_ANNOUNCE_AS32590_NIX.CZ_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_NIX.CZ</community><community>TE_BLOCK_AS32934_NIX.CZ_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></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></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></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></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_NIX.CZ</community><community>TE_ANNOUNCE_AS32934_NIX.CZ_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_AS33891_Core-Backbone_GmbH</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS33891</community><community>TE_BLOCK_AS33891_2</community><community>TE_BLOCK_AS33891_NIX.CZ</community><community>TE_BLOCK_AS33891_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS33891_x1_4byte</community><community>TE_PREPEND_AS33891_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_AS33891_x2_4byte</community><community>TE_PREPEND_AS33891_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_AS33891_x3_4byte</community><community>TE_PREPEND_AS33891_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_AS33891_x6_4byte</community><community>TE_PREPEND_AS33891_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_AS33891</community><community>TE_ANNOUNCE_AS33891_2</community><community>TE_ANNOUNCE_AS33891_3</community><community>TE_ANNOUNCE_AS33891_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_AS33891_NIX.CZ</community><community>TE_ANNOUNCE_AS33891_NIX.CZ_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_AS36351_SoftLayer_Technologies</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS36351</community><community>TE_BLOCK_AS36351_2</community><community>TE_BLOCK_AS36351_NIX.CZ</community><community>TE_BLOCK_AS36351_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS36351_x1_4byte</community><community>TE_PREPEND_AS36351_x1_2byte</community><community>TE_PREPEND_AS36351_NIX.CZ_x1_4byte</community><community>TE_PREPEND_AS36351_NIX.CZ_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_AS36351_x2_4byte</community><community>TE_PREPEND_AS36351_x2_2byte</community><community>TE_PREPEND_AS36351_NIX.CZ_x2_4byte</community><community>TE_PREPEND_AS36351_NIX.CZ_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_AS36351_x3_4byte</community><community>TE_PREPEND_AS36351_x3_2byte</community><community>TE_PREPEND_AS36351_NIX.CZ_x3_4byte</community><community>TE_PREPEND_AS36351_NIX.CZ_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_AS36351_x6_4byte</community><community>TE_PREPEND_AS36351_x6_2byte</community><community>TE_PREPEND_AS36351_NIX.CZ_x6_4byte</community><community>TE_PREPEND_AS36351_NIX.CZ_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_AS36351</community><community>TE_ANNOUNCE_AS36351_2</community><community>TE_ANNOUNCE_AS36351_3</community><community>TE_ANNOUNCE_AS36351_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_AS36351_NIX.CZ</community><community>TE_ANNOUNCE_AS36351_NIX.CZ_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_AS36692_OPENDNS_-_OpenDNS,_LLC,_US</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS36692</community><community>TE_BLOCK_AS36692_2</community><community>TE_BLOCK_AS36692_NIX.CZ</community><community>TE_BLOCK_AS36692_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS36692_x1_4byte</community><community>TE_PREPEND_AS36692_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_AS36692_x2_4byte</community><community>TE_PREPEND_AS36692_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_AS36692_x3_4byte</community><community>TE_PREPEND_AS36692_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_AS36692_x6_4byte</community><community>TE_PREPEND_AS36692_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_AS36692</community><community>TE_ANNOUNCE_AS36692_2</community><community>TE_ANNOUNCE_AS36692_3</community><community>TE_ANNOUNCE_AS36692_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_AS36692_NIX.CZ</community><community>TE_ANNOUNCE_AS36692_NIX.CZ_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_JUSTINTV_-_Twitch_Interactive_Inc.,</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS46489</community><community>TE_BLOCK_AS46489_2</community><community>TE_BLOCK_AS46489_NIX.CZ</community><community>TE_BLOCK_AS46489_NIX.CZ_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></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></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></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></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_NIX.CZ</community><community>TE_ANNOUNCE_AS46489_NIX.CZ_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_AS5400_BT_,_GB__</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS5400</community><community>TE_BLOCK_AS5400_2</community><community>TE_BLOCK_AS5400_NIX.CZ</community><community>TE_BLOCK_AS5400_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS5400_x1_4byte</community><community>TE_PREPEND_AS5400_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_AS5400_x2_4byte</community><community>TE_PREPEND_AS5400_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_AS5400_x3_4byte</community><community>TE_PREPEND_AS5400_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_AS5400_x6_4byte</community><community>TE_PREPEND_AS5400_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_AS5400</community><community>TE_ANNOUNCE_AS5400_2</community><community>TE_ANNOUNCE_AS5400_3</community><community>TE_ANNOUNCE_AS5400_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_AS5400_NIX.CZ</community><community>TE_ANNOUNCE_AS5400_NIX.CZ_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_AS6461_Zayo_Group</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS6461</community><community>TE_BLOCK_AS6461_2</community><community>TE_BLOCK_AS6461_NIX.CZ</community><community>TE_BLOCK_AS6461_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS6461_x1_4byte</community><community>TE_PREPEND_AS6461_x1_2byte</community><community>TE_PREPEND_AS6461_NIX.CZ_x1_4byte</community><community>TE_PREPEND_AS6461_NIX.CZ_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_AS6461_x2_4byte</community><community>TE_PREPEND_AS6461_x2_2byte</community><community>TE_PREPEND_AS6461_NIX.CZ_x2_4byte</community><community>TE_PREPEND_AS6461_NIX.CZ_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_AS6461_x3_4byte</community><community>TE_PREPEND_AS6461_x3_2byte</community><community>TE_PREPEND_AS6461_NIX.CZ_x3_4byte</community><community>TE_PREPEND_AS6461_NIX.CZ_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_AS6461_x6_4byte</community><community>TE_PREPEND_AS6461_x6_2byte</community><community>TE_PREPEND_AS6461_NIX.CZ_x6_4byte</community><community>TE_PREPEND_AS6461_NIX.CZ_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_AS6461</community><community>TE_ANNOUNCE_AS6461_2</community><community>TE_ANNOUNCE_AS6461_3</community><community>TE_ANNOUNCE_AS6461_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_AS6461_NIX.CZ</community><community>TE_ANNOUNCE_AS6461_NIX.CZ_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_AS6881_NIX.CZ</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS6881</community><community>TE_BLOCK_AS6881_2</community><community>TE_BLOCK_AS6881_NIX.CZ</community><community>TE_BLOCK_AS6881_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS6881_x1_4byte</community><community>TE_PREPEND_AS6881_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_AS6881_x2_4byte</community><community>TE_PREPEND_AS6881_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_AS6881_x3_4byte</community><community>TE_PREPEND_AS6881_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_AS6881_x6_4byte</community><community>TE_PREPEND_AS6881_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_AS6881</community><community>TE_ANNOUNCE_AS6881_2</community><community>TE_ANNOUNCE_AS6881_3</community><community>TE_ANNOUNCE_AS6881_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_AS6881_NIX.CZ</community><community>TE_ANNOUNCE_AS6881_NIX.CZ_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_-_Hurricane_Electric,_Inc.,</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS6939</community><community>TE_BLOCK_AS6939_2</community><community>TE_BLOCK_AS6939_NIX.CZ</community><community>TE_BLOCK_AS6939_NIX.CZ_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_NIX.CZ</community><community>TE_ANNOUNCE_AS6939_NIX.CZ_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</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS8075</community><community>TE_BLOCK_AS8075_2</community><community>TE_BLOCK_AS8075_NIX.CZ</community><community>TE_BLOCK_AS8075_NIX.CZ_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></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></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></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></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_NIX.CZ</community><community>TE_ANNOUNCE_AS8075_NIX.CZ_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_AS8218_NEO-ASN_legacy_Neotelecoms,_FR_</name><term><name>BLOCK_THIS_PEER</name><from><community>TE_BLOCK_AS8218</community><community>TE_BLOCK_AS8218_2</community><community>TE_BLOCK_AS8218_NIX.CZ</community><community>TE_BLOCK_AS8218_NIX.CZ_2</community></from><then><reject/></then></term><term><name>PREPEND_THIS_PEER_x1</name><from><community>TE_PREPEND_AS8218_x1_4byte</community><community>TE_PREPEND_AS8218_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_AS8218_x2_4byte</community><community>TE_PREPEND_AS8218_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_AS8218_x3_4byte</community><community>TE_PREPEND_AS8218_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_AS8218_x6_4byte</community><community>TE_PREPEND_AS8218_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_AS8218</community><community>TE_ANNOUNCE_AS8218_2</community><community>TE_ANNOUNCE_AS8218_3</community><community>TE_ANNOUNCE_AS8218_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_AS8218_NIX.CZ</community><community>TE_ANNOUNCE_AS8218_NIX.CZ_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><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</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><then><reject/></then></policy-statement><policy-statement><name>pim-import</name><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>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:35::/64</address><orlonger/></route-filter></from><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-from-CESNET-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-CESNET-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-CESNET-V6-nren</name><from><prefix-list><name>route-from-CESNET-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-CESNET-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-from-CESNET-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-CESNET</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-CESNET-nren</name><from><prefix-list><name>route-from-CESNET</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-CESNET-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-to-CESNET-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-cesnet-block</community></from><then><reject/></then></term><term><name>to-SWITCH-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-SWITCH-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-CLS-to-CESNET-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-cesnet-block</community></from><then><reject/></then></term><term><name>to-SWITCH1-nren-general</name><from><community>CLS_PROVIDER_ROUTES</community><community>CLS_AGGREGATE_ROUTES</community></from><then><accept/></then></term><term><name>to-switch-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-CESNET-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-CESnet</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-pra</community-name></community><accept/></then></term><term><name>ULTIMUM-IO</name><from><as-path>ULTIMUM-IO</as-path><community>CLS_PROVIDER_ROUTES</community><prefix-list><name>route-from-CESnet</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><community><add/><community-name>geant-nren-pra</community-name></community><accept/></then></term><term><name>from-CESNET-nren</name><from><prefix-list><name>route-from-CESnet</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-pra</community-name></community><accept/></then></term><term><name>from-CESNET-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-from-CESnet-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-CESNET-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-pra</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-CESnet-V6-nren</name><from><prefix-list><name>route-from-CESNET-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-pra</community-name></community><community><add/><community-name>geant-IAS-dws-nren</community-name></community><accept/></then></term><term><name>from-CESnet-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-CESNET-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-cesnet-block</community></from><then><reject/></then></term><term><name>to-CESNET-nren-general</name><from><community>geant-ixpeers</community><community>geant-peers</community><community>geant-google</community><community>geant-helix</community><community>IAS_AGGREGATE_ROUTES</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-CESNET-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-IAS-to-CESnet-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-cesnet-block</community></from><then><reject/></then></term><term><name>to-CESnet-V6-nren-general</name><from><community>geant-ixpeers</community><community>geant-peers</community><community>geant-google</community><community>geant-dws</community><community>IAS_AGGREGATE_ROUTES</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-CESnet-V6-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-CESNET-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-CESnet</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>ULTIMUM-IO</name><from><as-path>ULTIMUM-IO</as-path><community>CLS_NREN_ROUTES</community><prefix-list><name>route-from-CESnet</name></prefix-list></from><then><local-preference><local-preference>150</local-preference></local-preference><accept/></then></term><term><name>from-CESNET-nren</name><from><prefix-list><name>route-from-CESnet</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-CESNET-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-CESnet-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-CESNET-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-CESnet-V6-nren</name><from><prefix-list><name>route-from-CESNET-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-CESnet-V6-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-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-from-mgmt-vrf</name><term><name>mgmt-routes</name><from><protocol>direct</protocol><protocol>static</protocol></from><then><community><add/><community-name>mgmt-vpn</community-name></community><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-sdn-bod-vrf</name><term><name>EXPORT_CONNECTED</name><from><protocol>direct</protocol></from><then><community><add/><community-name>sdn-bod-vpn</community-name></community><accept/></then></term><term><name>BGP_ACCEPT</name><from><protocol>bgp</protocol></from><then><community><add/><community-name>sdn-bod-vpn</community-name></community><accept/></then></term><term><name>THEN_REJECT</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-into-mgmt-vrf</name><term><name>mgmt-routes</name><from><protocol>bgp</protocol><community>mgmt-vpn</community></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-into-sdn-bod-vrf</name><term><name>BGP_ACCEPT</name><from><protocol>bgp</protocol><community>sdn-bod-vpn</community></from><then><accept/></then></term><term><name>THEN_REJECT</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-CESNET-LHCONE-TE</name><term><name>BLOCK</name><from><community>LHCONE-BLOCK-CESNET-2852</community></from><then><reject/></then></term><term><name>PREPEND_x1</name><from><community>LHCONE-PREPEND-CESNET-2852-x1</community></from><then><as-path-prepend>20965</as-path-prepend></then></term><term><name>PREPEND_x2</name><from><community>LHCONE-PREPEND-CESNET-2852-x2</community></from><then><as-path-prepend>20965 20965</as-path-prepend></then></term><term><name>PREPEND_x3</name><from><community>LHCONE-PREPEND-CESNET-2852-x3</community></from><then><as-path-prepend>20965 20965 20965</as-path-prepend></then></term></policy-statement><policy-statement><name>ps-to-CESNET-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-cesnet-block</community></from><then><reject/></then></term><term><name>to-CESNET-nren-general</name><from><community>geant-nrn</community><community>geant-ixpeers</community><community>geant-peers</community><community>geant-google</community><community>geant-peer-RE</community><community>geant-helix</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-CESNET-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-CESnet-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-cesnet-block</community></from><then><reject/></then></term><term><name>to-CESnet-V6-nren-general</name><from><community>geant-nrn</community><community>geant-m6bone</community><community>geant-ixpeers</community><community>geant-peers</community><community>geant-google</community><community>geant-dws</community><community>geant-peer-RE</community></from><then><metric><metric>0</metric></metric><accept/></then></term><term><name>to-CESnet-V6-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><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_NIX.CZ</name><members>21320:64691</members></community><community><name>INFO_PUBLIC_PEER_PRA</name><members>21320:64637</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>LHCONE-BLOCK-CESNET-2852</name><members>65010:2852</members></community><community><name>LHCONE-PREPEND-CESNET-2852-x1</name><members>65001:2852</members></community><community><name>LHCONE-PREPEND-CESNET-2852-x2</name><members>65002:2852</members></community><community><name>LHCONE-PREPEND-CESNET-2852-x3</name><members>65003:2852</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_NIX.CZ</name><members>64791:10310</members></community><community><name>TE_ANNOUNCE_AS10310_NIX.CZ_2</name><members>origin:10310L:64791</members></community><community><name>TE_ANNOUNCE_AS112</name><members>64700:112</members></community><community><name>TE_ANNOUNCE_AS112_2</name><members>64712:112</members></community><community><name>TE_ANNOUNCE_AS112_3</name><members>origin:112L:64700</members></community><community><name>TE_ANNOUNCE_AS112_4</name><members>origin:112L:64712</members></community><community><name>TE_ANNOUNCE_AS112_NIX.CZ</name><members>64791:112</members></community><community><name>TE_ANNOUNCE_AS112_NIX.CZ_2</name><members>origin:112L:64791</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_NIX.CZ</name><members>64791:13335</members></community><community><name>TE_ANNOUNCE_AS13335_NIX.CZ_2</name><members>origin:13335L:64791</members></community><community><name>TE_ANNOUNCE_AS16276</name><members>64700:16276</members></community><community><name>TE_ANNOUNCE_AS16276_2</name><members>64712:16276</members></community><community><name>TE_ANNOUNCE_AS16276_3</name><members>origin:16276L:64700</members></community><community><name>TE_ANNOUNCE_AS16276_4</name><members>origin:16276L:64712</members></community><community><name>TE_ANNOUNCE_AS16276_NIX.CZ</name><members>64791:16276</members></community><community><name>TE_ANNOUNCE_AS16276_NIX.CZ_2</name><members>origin:16276L:64791</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_NIX.CZ</name><members>64791:16509</members></community><community><name>TE_ANNOUNCE_AS16509_NIX.CZ_2</name><members>origin:16509L:64791</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_NIX.CZ_2</name><members>origin:199524L:64791</members></community><community><name>TE_ANNOUNCE_AS20940</name><members>64700:20940</members></community><community><name>TE_ANNOUNCE_AS20940_2</name><members>64712:20940</members></community><community><name>TE_ANNOUNCE_AS20940_3</name><members>origin:20940L:64700</members></community><community><name>TE_ANNOUNCE_AS20940_4</name><members>origin:20940L:64712</members></community><community><name>TE_ANNOUNCE_AS20940_NIX.CZ</name><members>64791:20940</members></community><community><name>TE_ANNOUNCE_AS20940_NIX.CZ_2</name><members>origin:20940L:64791</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_NIX.CZ</name><members>64791:22822</members></community><community><name>TE_ANNOUNCE_AS22822_NIX.CZ_2</name><members>origin:22822L:64791</members></community><community><name>TE_ANNOUNCE_AS24971</name><members>64700:24971</members></community><community><name>TE_ANNOUNCE_AS24971_2</name><members>64712:24971</members></community><community><name>TE_ANNOUNCE_AS24971_3</name><members>origin:24971L:64700</members></community><community><name>TE_ANNOUNCE_AS24971_4</name><members>origin:24971L:64712</members></community><community><name>TE_ANNOUNCE_AS24971_NIX.CZ</name><members>64791:24971</members></community><community><name>TE_ANNOUNCE_AS24971_NIX.CZ_2</name><members>origin:24971L:64791</members></community><community><name>TE_ANNOUNCE_AS26415</name><members>64700:26415</members></community><community><name>TE_ANNOUNCE_AS26415_2</name><members>64712:26415</members></community><community><name>TE_ANNOUNCE_AS26415_3</name><members>origin:26415L:64700</members></community><community><name>TE_ANNOUNCE_AS26415_4</name><members>origin:26415L:64712</members></community><community><name>TE_ANNOUNCE_AS26415_NIX.CZ</name><members>64791:26415</members></community><community><name>TE_ANNOUNCE_AS26415_NIX.CZ_2</name><members>origin:26415L:64791</members></community><community><name>TE_ANNOUNCE_AS30134</name><members>64700:30134</members></community><community><name>TE_ANNOUNCE_AS30134_2</name><members>64712:30134</members></community><community><name>TE_ANNOUNCE_AS30134_3</name><members>origin:30134L:64700</members></community><community><name>TE_ANNOUNCE_AS30134_4</name><members>origin:30134L:64712</members></community><community><name>TE_ANNOUNCE_AS30134_NIX.CZ</name><members>64791:30134</members></community><community><name>TE_ANNOUNCE_AS30134_NIX.CZ_2</name><members>origin:30134L:64791</members></community><community><name>TE_ANNOUNCE_AS32590</name><members>64700:32590</members></community><community><name>TE_ANNOUNCE_AS32590_2</name><members>64712:32590</members></community><community><name>TE_ANNOUNCE_AS32590_3</name><members>origin:32590L:64700</members></community><community><name>TE_ANNOUNCE_AS32590_4</name><members>origin:32590L:64712</members></community><community><name>TE_ANNOUNCE_AS32590_NIX.CZ</name><members>64791:32590</members></community><community><name>TE_ANNOUNCE_AS32590_NIX.CZ_2</name><members>origin:32590L:64791</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_NIX.CZ</name><members>64791:32934</members></community><community><name>TE_ANNOUNCE_AS32934_NIX.CZ_2</name><members>origin:32934L:64791</members></community><community><name>TE_ANNOUNCE_AS33891</name><members>64700:33891</members></community><community><name>TE_ANNOUNCE_AS33891_2</name><members>64712:33891</members></community><community><name>TE_ANNOUNCE_AS33891_3</name><members>origin:33891L:64700</members></community><community><name>TE_ANNOUNCE_AS33891_4</name><members>origin:33891L:64712</members></community><community><name>TE_ANNOUNCE_AS33891_NIX.CZ</name><members>64791:33891</members></community><community><name>TE_ANNOUNCE_AS33891_NIX.CZ_2</name><members>origin:33891L:64791</members></community><community><name>TE_ANNOUNCE_AS36351</name><members>64700:36351</members></community><community><name>TE_ANNOUNCE_AS36351_2</name><members>64712:36351</members></community><community><name>TE_ANNOUNCE_AS36351_3</name><members>origin:36351L:64700</members></community><community><name>TE_ANNOUNCE_AS36351_4</name><members>origin:36351L:64712</members></community><community><name>TE_ANNOUNCE_AS36351_NIX.CZ</name><members>64791:36351</members></community><community><name>TE_ANNOUNCE_AS36351_NIX.CZ_2</name><members>origin:36351L:64791</members></community><community><name>TE_ANNOUNCE_AS36692</name><members>64700:36692</members></community><community><name>TE_ANNOUNCE_AS36692_2</name><members>64712:36692</members></community><community><name>TE_ANNOUNCE_AS36692_3</name><members>origin:36692L:64700</members></community><community><name>TE_ANNOUNCE_AS36692_4</name><members>origin:36692L:64712</members></community><community><name>TE_ANNOUNCE_AS36692_NIX.CZ</name><members>64791:36692</members></community><community><name>TE_ANNOUNCE_AS36692_NIX.CZ_2</name><members>origin:36692L:64791</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_NIX.CZ</name><members>64791:46489</members></community><community><name>TE_ANNOUNCE_AS46489_NIX.CZ_2</name><members>origin:46489L:64791</members></community><community><name>TE_ANNOUNCE_AS5400</name><members>64700:5400</members></community><community><name>TE_ANNOUNCE_AS5400_2</name><members>64712:5400</members></community><community><name>TE_ANNOUNCE_AS5400_3</name><members>origin:5400L:64700</members></community><community><name>TE_ANNOUNCE_AS5400_4</name><members>origin:5400L:64712</members></community><community><name>TE_ANNOUNCE_AS5400_NIX.CZ</name><members>64791:5400</members></community><community><name>TE_ANNOUNCE_AS5400_NIX.CZ_2</name><members>origin:5400L:64791</members></community><community><name>TE_ANNOUNCE_AS6461</name><members>64700:6461</members></community><community><name>TE_ANNOUNCE_AS6461_2</name><members>64712:6461</members></community><community><name>TE_ANNOUNCE_AS6461_3</name><members>origin:6461L:64700</members></community><community><name>TE_ANNOUNCE_AS6461_4</name><members>origin:6461L:64712</members></community><community><name>TE_ANNOUNCE_AS6461_NIX.CZ</name><members>64791:6461</members></community><community><name>TE_ANNOUNCE_AS6461_NIX.CZ_2</name><members>origin:6461L:64791</members></community><community><name>TE_ANNOUNCE_AS6881</name><members>64700:6881</members></community><community><name>TE_ANNOUNCE_AS6881_2</name><members>64712:6881</members></community><community><name>TE_ANNOUNCE_AS6881_3</name><members>origin:6881L:64700</members></community><community><name>TE_ANNOUNCE_AS6881_4</name><members>origin:6881L:64712</members></community><community><name>TE_ANNOUNCE_AS6881_NIX.CZ</name><members>64791:6881</members></community><community><name>TE_ANNOUNCE_AS6881_NIX.CZ_2</name><members>origin:6881L:64791</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_NIX.CZ</name><members>64791:6939</members></community><community><name>TE_ANNOUNCE_AS6939_NIX.CZ_2</name><members>origin:6939L:64791</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_NIX.CZ</name><members>64791:8075</members></community><community><name>TE_ANNOUNCE_AS8075_NIX.CZ_2</name><members>origin:8075L:64791</members></community><community><name>TE_ANNOUNCE_AS8218</name><members>64700:8218</members></community><community><name>TE_ANNOUNCE_AS8218_2</name><members>64712:8218</members></community><community><name>TE_ANNOUNCE_AS8218_3</name><members>origin:8218L:64700</members></community><community><name>TE_ANNOUNCE_AS8218_4</name><members>origin:8218L:64712</members></community><community><name>TE_ANNOUNCE_AS8218_NIX.CZ</name><members>64791:8218</members></community><community><name>TE_ANNOUNCE_AS8218_NIX.CZ_2</name><members>origin:8218L:64791</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_NIX.CZ</name><members>64591:10310</members></community><community><name>TE_BLOCK_AS10310_NIX.CZ_2</name><members>origin:10310L:64591</members></community><community><name>TE_BLOCK_AS112</name><members>64512:112</members></community><community><name>TE_BLOCK_AS112_2</name><members>origin:112L:64512</members></community><community><name>TE_BLOCK_AS112_NIX.CZ</name><members>64591:112</members></community><community><name>TE_BLOCK_AS112_NIX.CZ_2</name><members>origin:112L:64591</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_NIX.CZ</name><members>64591:13335</members></community><community><name>TE_BLOCK_AS13335_NIX.CZ_2</name><members>origin:13335L:64591</members></community><community><name>TE_BLOCK_AS16276</name><members>64512:16276</members></community><community><name>TE_BLOCK_AS16276_2</name><members>origin:16276L:64512</members></community><community><name>TE_BLOCK_AS16276_NIX.CZ</name><members>64591:16276</members></community><community><name>TE_BLOCK_AS16276_NIX.CZ_2</name><members>origin:16276L:64591</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_NIX.CZ</name><members>64591:16509</members></community><community><name>TE_BLOCK_AS16509_NIX.CZ_2</name><members>origin:16509L:64591</members></community><community><name>TE_BLOCK_AS199524_2</name><members>origin:199524L:64512</members></community><community><name>TE_BLOCK_AS199524_NIX.CZ_2</name><members>origin:199524L:64591</members></community><community><name>TE_BLOCK_AS20940</name><members>64512:20940</members></community><community><name>TE_BLOCK_AS20940_2</name><members>origin:20940L:64512</members></community><community><name>TE_BLOCK_AS20940_NIX.CZ</name><members>64591:20940</members></community><community><name>TE_BLOCK_AS20940_NIX.CZ_2</name><members>origin:20940L:64591</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_NIX.CZ</name><members>64591:22822</members></community><community><name>TE_BLOCK_AS22822_NIX.CZ_2</name><members>origin:22822L:64591</members></community><community><name>TE_BLOCK_AS24971</name><members>64512:24971</members></community><community><name>TE_BLOCK_AS24971_2</name><members>origin:24971L:64512</members></community><community><name>TE_BLOCK_AS24971_NIX.CZ</name><members>64591:24971</members></community><community><name>TE_BLOCK_AS24971_NIX.CZ_2</name><members>origin:24971L:64591</members></community><community><name>TE_BLOCK_AS26415</name><members>64512:26415</members></community><community><name>TE_BLOCK_AS26415_2</name><members>origin:26415L:64512</members></community><community><name>TE_BLOCK_AS26415_NIX.CZ</name><members>64591:26415</members></community><community><name>TE_BLOCK_AS26415_NIX.CZ_2</name><members>origin:26415L:64591</members></community><community><name>TE_BLOCK_AS30134</name><members>64512:30134</members></community><community><name>TE_BLOCK_AS30134_2</name><members>origin:30134L:64512</members></community><community><name>TE_BLOCK_AS30134_NIX.CZ</name><members>64591:30134</members></community><community><name>TE_BLOCK_AS30134_NIX.CZ_2</name><members>origin:30134L:64591</members></community><community><name>TE_BLOCK_AS32590</name><members>64512:32590</members></community><community><name>TE_BLOCK_AS32590_2</name><members>origin:32590L:64512</members></community><community><name>TE_BLOCK_AS32590_NIX.CZ</name><members>64591:32590</members></community><community><name>TE_BLOCK_AS32590_NIX.CZ_2</name><members>origin:32590L:64591</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_NIX.CZ</name><members>64591:32934</members></community><community><name>TE_BLOCK_AS32934_NIX.CZ_2</name><members>origin:32934L:64591</members></community><community><name>TE_BLOCK_AS33891</name><members>64512:33891</members></community><community><name>TE_BLOCK_AS33891_2</name><members>origin:33891L:64512</members></community><community><name>TE_BLOCK_AS33891_NIX.CZ</name><members>64591:33891</members></community><community><name>TE_BLOCK_AS33891_NIX.CZ_2</name><members>origin:33891L:64591</members></community><community><name>TE_BLOCK_AS36351</name><members>64512:36351</members></community><community><name>TE_BLOCK_AS36351_2</name><members>origin:36351L:64512</members></community><community><name>TE_BLOCK_AS36351_NIX.CZ</name><members>64591:36351</members></community><community><name>TE_BLOCK_AS36351_NIX.CZ_2</name><members>origin:36351L:64591</members></community><community><name>TE_BLOCK_AS36692</name><members>64512:36692</members></community><community><name>TE_BLOCK_AS36692_2</name><members>origin:36692L:64512</members></community><community><name>TE_BLOCK_AS36692_NIX.CZ</name><members>64591:36692</members></community><community><name>TE_BLOCK_AS36692_NIX.CZ_2</name><members>origin:36692L:64591</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_NIX.CZ</name><members>64591:46489</members></community><community><name>TE_BLOCK_AS46489_NIX.CZ_2</name><members>origin:46489L:64591</members></community><community><name>TE_BLOCK_AS5400</name><members>64512:5400</members></community><community><name>TE_BLOCK_AS5400_2</name><members>origin:5400L:64512</members></community><community><name>TE_BLOCK_AS5400_NIX.CZ</name><members>64591:5400</members></community><community><name>TE_BLOCK_AS5400_NIX.CZ_2</name><members>origin:5400L:64591</members></community><community><name>TE_BLOCK_AS6461</name><members>64512:6461</members></community><community><name>TE_BLOCK_AS6461_2</name><members>origin:6461L:64512</members></community><community><name>TE_BLOCK_AS6461_NIX.CZ</name><members>64591:6461</members></community><community><name>TE_BLOCK_AS6461_NIX.CZ_2</name><members>origin:6461L:64591</members></community><community><name>TE_BLOCK_AS6881</name><members>64512:6881</members></community><community><name>TE_BLOCK_AS6881_2</name><members>origin:6881L:64512</members></community><community><name>TE_BLOCK_AS6881_NIX.CZ</name><members>64591:6881</members></community><community><name>TE_BLOCK_AS6881_NIX.CZ_2</name><members>origin:6881L:64591</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_NIX.CZ</name><members>64591:6939</members></community><community><name>TE_BLOCK_AS6939_NIX.CZ_2</name><members>origin:6939L:64591</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_NIX.CZ</name><members>64591:8075</members></community><community><name>TE_BLOCK_AS8075_NIX.CZ_2</name><members>origin:8075L:64591</members></community><community><name>TE_BLOCK_AS8218</name><members>64512:8218</members></community><community><name>TE_BLOCK_AS8218_2</name><members>origin:8218L:64512</members></community><community><name>TE_BLOCK_AS8218_NIX.CZ</name><members>64591:8218</members></community><community><name>TE_BLOCK_AS8218_NIX.CZ_2</name><members>origin:8218L:64591</members></community><community><name>TE_BLOCK_LOCAL_IXES</name><members>64537:65532</members></community><community><name>TE_BLOCK_NIX.CZ</name><members>64591:65532</members></community><community><name>TE_BLOCK_PEERS_2</name><members>64512:65533</members></community><community><name>TE_PREPEND_ALL_PUBLIC_PEERS_NIX.CZ</name><members>64891:65532</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_AS112_x1_2byte</name><members>64801:112</members><members>64812:112</members></community><community><name>TE_PREPEND_AS112_x1_4byte</name><members>origin:112L:64801</members><members>origin:112L:64812</members></community><community><name>TE_PREPEND_AS112_x2_2byte</name><members>64802:112</members><members>64812:112</members></community><community><name>TE_PREPEND_AS112_x2_4byte</name><members>origin:112L:64802</members><members>origin:112L:64812</members></community><community><name>TE_PREPEND_AS112_x3_2byte</name><members>64803:112</members><members>64812:112</members></community><community><name>TE_PREPEND_AS112_x3_4byte</name><members>origin:112L:64803</members><members>origin:112L:64812</members></community><community><name>TE_PREPEND_AS112_x6_2byte</name><members>64806:112</members><members>64812:112</members></community><community><name>TE_PREPEND_AS112_x6_4byte</name><members>origin:112L:64806</members><members>origin:112L:64812</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_AS16276_NIX.CZ_x1_2byte</name><members>64801:16276</members><members>64891:16276</members></community><community><name>TE_PREPEND_AS16276_NIX.CZ_x1_4byte</name><members>origin:16276L:64801</members><members>origin:16276L:64891</members></community><community><name>TE_PREPEND_AS16276_NIX.CZ_x2_2byte</name><members>64802:16276</members><members>64891:16276</members></community><community><name>TE_PREPEND_AS16276_NIX.CZ_x2_4byte</name><members>origin:16276L:64802</members><members>origin:16276L:64891</members></community><community><name>TE_PREPEND_AS16276_NIX.CZ_x3_2byte</name><members>64803:16276</members><members>64891:16276</members></community><community><name>TE_PREPEND_AS16276_NIX.CZ_x3_4byte</name><members>origin:16276L:64803</members><members>origin:16276L:64891</members></community><community><name>TE_PREPEND_AS16276_NIX.CZ_x6_2byte</name><members>64806:16276</members><members>64891:16276</members></community><community><name>TE_PREPEND_AS16276_NIX.CZ_x6_4byte</name><members>origin:16276L:64806</members><members>origin:16276L:64891</members></community><community><name>TE_PREPEND_AS16276_x1_2byte</name><members>64801:16276</members><members>64812:16276</members></community><community><name>TE_PREPEND_AS16276_x1_4byte</name><members>origin:16276L:64801</members><members>origin:16276L:64812</members></community><community><name>TE_PREPEND_AS16276_x2_2byte</name><members>64802:16276</members><members>64812:16276</members></community><community><name>TE_PREPEND_AS16276_x2_4byte</name><members>origin:16276L:64802</members><members>origin:16276L:64812</members></community><community><name>TE_PREPEND_AS16276_x3_2byte</name><members>64803:16276</members><members>64812:16276</members></community><community><name>TE_PREPEND_AS16276_x3_4byte</name><members>origin:16276L:64803</members><members>origin:16276L:64812</members></community><community><name>TE_PREPEND_AS16276_x6_2byte</name><members>64806:16276</members><members>64812:16276</members></community><community><name>TE_PREPEND_AS16276_x6_4byte</name><members>origin:16276L:64806</members><members>origin:16276L:64812</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_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_AS20940_x1_2byte</name><members>64801:20940</members><members>64812:20940</members></community><community><name>TE_PREPEND_AS20940_x1_4byte</name><members>origin:20940L:64801</members><members>origin:20940L:64812</members></community><community><name>TE_PREPEND_AS20940_x2_2byte</name><members>64802:20940</members><members>64812:20940</members></community><community><name>TE_PREPEND_AS20940_x2_4byte</name><members>origin:20940L:64802</members><members>origin:20940L:64812</members></community><community><name>TE_PREPEND_AS20940_x3_2byte</name><members>64803:20940</members><members>64812:20940</members></community><community><name>TE_PREPEND_AS20940_x3_4byte</name><members>origin:20940L:64803</members><members>origin:20940L:64812</members></community><community><name>TE_PREPEND_AS20940_x6_2byte</name><members>64806:20940</members><members>64812:20940</members></community><community><name>TE_PREPEND_AS20940_x6_4byte</name><members>origin:20940L:64806</members><members>origin:20940L:64812</members></community><community><name>TE_PREPEND_AS22822_NIX.CZ_x1_2byte</name><members>64801:22822</members><members>64891:22822</members></community><community><name>TE_PREPEND_AS22822_NIX.CZ_x1_4byte</name><members>origin:22822L:64801</members><members>origin:22822L:64891</members></community><community><name>TE_PREPEND_AS22822_NIX.CZ_x2_2byte</name><members>64802:22822</members><members>64891:22822</members></community><community><name>TE_PREPEND_AS22822_NIX.CZ_x2_4byte</name><members>origin:22822L:64802</members><members>origin:22822L:64891</members></community><community><name>TE_PREPEND_AS22822_NIX.CZ_x3_2byte</name><members>64803:22822</members><members>64891:22822</members></community><community><name>TE_PREPEND_AS22822_NIX.CZ_x3_4byte</name><members>origin:22822L:64803</members><members>origin:22822L:64891</members></community><community><name>TE_PREPEND_AS22822_NIX.CZ_x6_2byte</name><members>64806:22822</members><members>64891:22822</members></community><community><name>TE_PREPEND_AS22822_NIX.CZ_x6_4byte</name><members>origin:22822L:64806</members><members>origin:22822L:64891</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_AS24971_NIX.CZ_x1_2byte</name><members>64801:24971</members><members>64891:24971</members></community><community><name>TE_PREPEND_AS24971_NIX.CZ_x1_4byte</name><members>origin:24971L:64801</members><members>origin:24971L:64891</members></community><community><name>TE_PREPEND_AS24971_NIX.CZ_x2_2byte</name><members>64802:24971</members><members>64891:24971</members></community><community><name>TE_PREPEND_AS24971_NIX.CZ_x2_4byte</name><members>origin:24971L:64802</members><members>origin:24971L:64891</members></community><community><name>TE_PREPEND_AS24971_NIX.CZ_x3_2byte</name><members>64803:24971</members><members>64891:24971</members></community><community><name>TE_PREPEND_AS24971_NIX.CZ_x3_4byte</name><members>origin:24971L:64803</members><members>origin:24971L:64891</members></community><community><name>TE_PREPEND_AS24971_NIX.CZ_x6_2byte</name><members>64806:24971</members><members>64891:24971</members></community><community><name>TE_PREPEND_AS24971_NIX.CZ_x6_4byte</name><members>origin:24971L:64806</members><members>origin:24971L:64891</members></community><community><name>TE_PREPEND_AS24971_x1_2byte</name><members>64801:24971</members><members>64812:24971</members></community><community><name>TE_PREPEND_AS24971_x1_4byte</name><members>origin:24971L:64801</members><members>origin:24971L:64812</members></community><community><name>TE_PREPEND_AS24971_x2_2byte</name><members>64802:24971</members><members>64812:24971</members></community><community><name>TE_PREPEND_AS24971_x2_4byte</name><members>origin:24971L:64802</members><members>origin:24971L:64812</members></community><community><name>TE_PREPEND_AS24971_x3_2byte</name><members>64803:24971</members><members>64812:24971</members></community><community><name>TE_PREPEND_AS24971_x3_4byte</name><members>origin:24971L:64803</members><members>origin:24971L:64812</members></community><community><name>TE_PREPEND_AS24971_x6_2byte</name><members>64806:24971</members><members>64812:24971</members></community><community><name>TE_PREPEND_AS24971_x6_4byte</name><members>origin:24971L:64806</members><members>origin:24971L:64812</members></community><community><name>TE_PREPEND_AS26415_x1_2byte</name><members>64801:26415</members><members>64812:26415</members></community><community><name>TE_PREPEND_AS26415_x1_4byte</name><members>origin:26415L:64801</members><members>origin:26415L:64812</members></community><community><name>TE_PREPEND_AS26415_x2_2byte</name><members>64802:26415</members><members>64812:26415</members></community><community><name>TE_PREPEND_AS26415_x2_4byte</name><members>origin:26415L:64802</members><members>origin:26415L:64812</members></community><community><name>TE_PREPEND_AS26415_x3_2byte</name><members>64803:26415</members><members>64812:26415</members></community><community><name>TE_PREPEND_AS26415_x3_4byte</name><members>origin:26415L:64803</members><members>origin:26415L:64812</members></community><community><name>TE_PREPEND_AS26415_x6_2byte</name><members>64806:26415</members><members>64812:26415</members></community><community><name>TE_PREPEND_AS26415_x6_4byte</name><members>origin:26415L:64806</members><members>origin:26415L:64812</members></community><community><name>TE_PREPEND_AS30134_x1_2byte</name><members>64801:30134</members><members>64812:30134</members></community><community><name>TE_PREPEND_AS30134_x1_4byte</name><members>origin:30134L:64801</members><members>origin:30134L:64812</members></community><community><name>TE_PREPEND_AS30134_x2_2byte</name><members>64802:30134</members><members>64812:30134</members></community><community><name>TE_PREPEND_AS30134_x2_4byte</name><members>origin:30134L:64802</members><members>origin:30134L:64812</members></community><community><name>TE_PREPEND_AS30134_x3_2byte</name><members>64803:30134</members><members>64812:30134</members></community><community><name>TE_PREPEND_AS30134_x3_4byte</name><members>origin:30134L:64803</members><members>origin:30134L:64812</members></community><community><name>TE_PREPEND_AS30134_x6_2byte</name><members>64806:30134</members><members>64812:30134</members></community><community><name>TE_PREPEND_AS30134_x6_4byte</name><members>origin:30134L:64806</members><members>origin:30134L:64812</members></community><community><name>TE_PREPEND_AS32590_NIX.CZ_x1_2byte</name><members>64801:32590</members><members>64891:32590</members></community><community><name>TE_PREPEND_AS32590_NIX.CZ_x1_4byte</name><members>origin:32590L:64801</members><members>origin:32590L:64891</members></community><community><name>TE_PREPEND_AS32590_NIX.CZ_x2_2byte</name><members>64802:32590</members><members>64891:32590</members></community><community><name>TE_PREPEND_AS32590_NIX.CZ_x2_4byte</name><members>origin:32590L:64802</members><members>origin:32590L:64891</members></community><community><name>TE_PREPEND_AS32590_NIX.CZ_x3_2byte</name><members>64803:32590</members><members>64891:32590</members></community><community><name>TE_PREPEND_AS32590_NIX.CZ_x3_4byte</name><members>origin:32590L:64803</members><members>origin:32590L:64891</members></community><community><name>TE_PREPEND_AS32590_NIX.CZ_x6_2byte</name><members>64806:32590</members><members>64891:32590</members></community><community><name>TE_PREPEND_AS32590_NIX.CZ_x6_4byte</name><members>origin:32590L:64806</members><members>origin:32590L:64891</members></community><community><name>TE_PREPEND_AS32590_x1_2byte</name><members>64801:32590</members><members>64812:32590</members></community><community><name>TE_PREPEND_AS32590_x1_4byte</name><members>origin:32590L:64801</members><members>origin:32590L:64812</members></community><community><name>TE_PREPEND_AS32590_x2_2byte</name><members>64802:32590</members><members>64812:32590</members></community><community><name>TE_PREPEND_AS32590_x2_4byte</name><members>origin:32590L:64802</members><members>origin:32590L:64812</members></community><community><name>TE_PREPEND_AS32590_x3_2byte</name><members>64803:32590</members><members>64812:32590</members></community><community><name>TE_PREPEND_AS32590_x3_4byte</name><members>origin:32590L:64803</members><members>origin:32590L:64812</members></community><community><name>TE_PREPEND_AS32590_x6_2byte</name><members>64806:32590</members><members>64812:32590</members></community><community><name>TE_PREPEND_AS32590_x6_4byte</name><members>origin:32590L:64806</members><members>origin:32590L:64812</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_AS33891_x1_2byte</name><members>64801:33891</members><members>64812:33891</members></community><community><name>TE_PREPEND_AS33891_x1_4byte</name><members>origin:33891L:64801</members><members>origin:33891L:64812</members></community><community><name>TE_PREPEND_AS33891_x2_2byte</name><members>64802:33891</members><members>64812:33891</members></community><community><name>TE_PREPEND_AS33891_x2_4byte</name><members>origin:33891L:64802</members><members>origin:33891L:64812</members></community><community><name>TE_PREPEND_AS33891_x3_2byte</name><members>64803:33891</members><members>64812:33891</members></community><community><name>TE_PREPEND_AS33891_x3_4byte</name><members>origin:33891L:64803</members><members>origin:33891L:64812</members></community><community><name>TE_PREPEND_AS33891_x6_2byte</name><members>64806:33891</members><members>64812:33891</members></community><community><name>TE_PREPEND_AS33891_x6_4byte</name><members>origin:33891L:64806</members><members>origin:33891L:64812</members></community><community><name>TE_PREPEND_AS36351_NIX.CZ_x1_2byte</name><members>64801:36351</members><members>64891:36351</members></community><community><name>TE_PREPEND_AS36351_NIX.CZ_x1_4byte</name><members>origin:36351L:64801</members><members>origin:36351L:64891</members></community><community><name>TE_PREPEND_AS36351_NIX.CZ_x2_2byte</name><members>64802:36351</members><members>64891:36351</members></community><community><name>TE_PREPEND_AS36351_NIX.CZ_x2_4byte</name><members>origin:36351L:64802</members><members>origin:36351L:64891</members></community><community><name>TE_PREPEND_AS36351_NIX.CZ_x3_2byte</name><members>64803:36351</members><members>64891:36351</members></community><community><name>TE_PREPEND_AS36351_NIX.CZ_x3_4byte</name><members>origin:36351L:64803</members><members>origin:36351L:64891</members></community><community><name>TE_PREPEND_AS36351_NIX.CZ_x6_2byte</name><members>64806:36351</members><members>64891:36351</members></community><community><name>TE_PREPEND_AS36351_NIX.CZ_x6_4byte</name><members>origin:36351L:64806</members><members>origin:36351L:64891</members></community><community><name>TE_PREPEND_AS36351_x1_2byte</name><members>64801:36351</members><members>64812:36351</members></community><community><name>TE_PREPEND_AS36351_x1_4byte</name><members>origin:36351L:64801</members><members>origin:36351L:64812</members></community><community><name>TE_PREPEND_AS36351_x2_2byte</name><members>64802:36351</members><members>64812:36351</members></community><community><name>TE_PREPEND_AS36351_x2_4byte</name><members>origin:36351L:64802</members><members>origin:36351L:64812</members></community><community><name>TE_PREPEND_AS36351_x3_2byte</name><members>64803:36351</members><members>64812:36351</members></community><community><name>TE_PREPEND_AS36351_x3_4byte</name><members>origin:36351L:64803</members><members>origin:36351L:64812</members></community><community><name>TE_PREPEND_AS36351_x6_2byte</name><members>64806:36351</members><members>64812:36351</members></community><community><name>TE_PREPEND_AS36351_x6_4byte</name><members>origin:36351L:64806</members><members>origin:36351L:64812</members></community><community><name>TE_PREPEND_AS36692_x1_2byte</name><members>64801:36692</members><members>64812:36692</members></community><community><name>TE_PREPEND_AS36692_x1_4byte</name><members>origin:36692L:64801</members><members>origin:36692L:64812</members></community><community><name>TE_PREPEND_AS36692_x2_2byte</name><members>64802:36692</members><members>64812:36692</members></community><community><name>TE_PREPEND_AS36692_x2_4byte</name><members>origin:36692L:64802</members><members>origin:36692L:64812</members></community><community><name>TE_PREPEND_AS36692_x3_2byte</name><members>64803:36692</members><members>64812:36692</members></community><community><name>TE_PREPEND_AS36692_x3_4byte</name><members>origin:36692L:64803</members><members>origin:36692L:64812</members></community><community><name>TE_PREPEND_AS36692_x6_2byte</name><members>64806:36692</members><members>64812:36692</members></community><community><name>TE_PREPEND_AS36692_x6_4byte</name><members>origin:36692L:64806</members><members>origin:36692L:64812</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_AS5400_x1_2byte</name><members>64801:5400</members><members>64812:5400</members></community><community><name>TE_PREPEND_AS5400_x1_4byte</name><members>origin:5400L:64801</members><members>origin:5400L:64812</members></community><community><name>TE_PREPEND_AS5400_x2_2byte</name><members>64802:5400</members><members>64812:5400</members></community><community><name>TE_PREPEND_AS5400_x2_4byte</name><members>origin:5400L:64802</members><members>origin:5400L:64812</members></community><community><name>TE_PREPEND_AS5400_x3_2byte</name><members>64803:5400</members><members>64812:5400</members></community><community><name>TE_PREPEND_AS5400_x3_4byte</name><members>origin:5400L:64803</members><members>origin:5400L:64812</members></community><community><name>TE_PREPEND_AS5400_x6_2byte</name><members>64806:5400</members><members>64812:5400</members></community><community><name>TE_PREPEND_AS5400_x6_4byte</name><members>origin:5400L:64806</members><members>origin:5400L:64812</members></community><community><name>TE_PREPEND_AS6461_NIX.CZ_x1_2byte</name><members>64801:6461</members><members>64891:6461</members></community><community><name>TE_PREPEND_AS6461_NIX.CZ_x1_4byte</name><members>origin:6461L:64801</members><members>origin:6461L:64891</members></community><community><name>TE_PREPEND_AS6461_NIX.CZ_x2_2byte</name><members>64802:6461</members><members>64891:6461</members></community><community><name>TE_PREPEND_AS6461_NIX.CZ_x2_4byte</name><members>origin:6461L:64802</members><members>origin:6461L:64891</members></community><community><name>TE_PREPEND_AS6461_NIX.CZ_x3_2byte</name><members>64803:6461</members><members>64891:6461</members></community><community><name>TE_PREPEND_AS6461_NIX.CZ_x3_4byte</name><members>origin:6461L:64803</members><members>origin:6461L:64891</members></community><community><name>TE_PREPEND_AS6461_NIX.CZ_x6_2byte</name><members>64806:6461</members><members>64891:6461</members></community><community><name>TE_PREPEND_AS6461_NIX.CZ_x6_4byte</name><members>origin:6461L:64806</members><members>origin:6461L:64891</members></community><community><name>TE_PREPEND_AS6461_x1_2byte</name><members>64801:6461</members><members>64812:6461</members></community><community><name>TE_PREPEND_AS6461_x1_4byte</name><members>origin:6461L:64801</members><members>origin:6461L:64812</members></community><community><name>TE_PREPEND_AS6461_x2_2byte</name><members>64802:6461</members><members>64812:6461</members></community><community><name>TE_PREPEND_AS6461_x2_4byte</name><members>origin:6461L:64802</members><members>origin:6461L:64812</members></community><community><name>TE_PREPEND_AS6461_x3_2byte</name><members>64803:6461</members><members>64812:6461</members></community><community><name>TE_PREPEND_AS6461_x3_4byte</name><members>origin:6461L:64803</members><members>origin:6461L:64812</members></community><community><name>TE_PREPEND_AS6461_x6_2byte</name><members>64806:6461</members><members>64812:6461</members></community><community><name>TE_PREPEND_AS6461_x6_4byte</name><members>origin:6461L:64806</members><members>origin:6461L:64812</members></community><community><name>TE_PREPEND_AS6881_x1_2byte</name><members>64801:6881</members><members>64812:6881</members></community><community><name>TE_PREPEND_AS6881_x1_4byte</name><members>origin:6881L:64801</members><members>origin:6881L:64812</members></community><community><name>TE_PREPEND_AS6881_x2_2byte</name><members>64802:6881</members><members>64812:6881</members></community><community><name>TE_PREPEND_AS6881_x2_4byte</name><members>origin:6881L:64802</members><members>origin:6881L:64812</members></community><community><name>TE_PREPEND_AS6881_x3_2byte</name><members>64803:6881</members><members>64812:6881</members></community><community><name>TE_PREPEND_AS6881_x3_4byte</name><members>origin:6881L:64803</members><members>origin:6881L:64812</members></community><community><name>TE_PREPEND_AS6881_x6_2byte</name><members>64806:6881</members><members>64812:6881</members></community><community><name>TE_PREPEND_AS6881_x6_4byte</name><members>origin:6881L:64806</members><members>origin:6881L: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_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_PREPEND_AS8218_x1_2byte</name><members>64801:8218</members><members>64812:8218</members></community><community><name>TE_PREPEND_AS8218_x1_4byte</name><members>origin:8218L:64801</members><members>origin:8218L:64812</members></community><community><name>TE_PREPEND_AS8218_x2_2byte</name><members>64802:8218</members><members>64812:8218</members></community><community><name>TE_PREPEND_AS8218_x2_4byte</name><members>origin:8218L:64802</members><members>origin:8218L:64812</members></community><community><name>TE_PREPEND_AS8218_x3_2byte</name><members>64803:8218</members><members>64812:8218</members></community><community><name>TE_PREPEND_AS8218_x3_4byte</name><members>origin:8218L:64803</members><members>origin:8218L:64812</members></community><community><name>TE_PREPEND_AS8218_x6_2byte</name><members>64806:8218</members><members>64812:8218</members></community><community><name>TE_PREPEND_AS8218_x6_4byte</name><members>origin:8218L:64806</members><members>origin:8218L: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-&lt;NREN&gt;</name><members>20965:2847</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-asren</name><members>20965:64599</members></community><community><name>geant-canarie</name><members>20965:6509</members></community><community><name>geant-caribnet</name><members>20965:54308</members></community><community><name>geant-cesnet-block</name><members>64512:2852</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-esnet</name><members>20965:293</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-prepend1</name><members>20965:0010</members></community><community><name>geant-interco-prepend2</name><members>20965:0020</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-internet2</name><members>20965:11537</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-pra</name><members>21320:64937</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-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>mgmt-vpn</name><members>target:20965:999</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>sdn-bod-vpn</name><members>target:20965:223</members></community><community><name>tein2-cernet</name><members>^4538:(4538|65155)$</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-commercial-reject</name><path>.* (1|174|286|701|1239|1273|1299|2119|2551|2828|2856|2914|3257|3561|4436|6453|9002|12989|15412|19080|19151|12200|14294|16509|16839|18541|19793|22556|33011|26769|46786|22822|20940|8075|16265|29748|16276|37958|38670|10310|30094|35415|20473|62715) .*</path></as-path><as-path><name>AS-commercial-low-pref</name><path>.* (702|703|3356|3549|5511|6762|6939|10026) .*</path></as-path><as-path><name>ULTIMUM-IO</name><path>2852 198725</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>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>urpf-filter-cesnet</name><apply-groups>urpf-template</apply-groups></filter><filter><name>CESNE-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><name>62.40.103.30/32</name></source-address><source-address><name>62.40.124.30/32</name></source-address><destination-address><name>62.40.103.29/32</name></destination-address><destination-address><name>62.40.124.29/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>195.113.144.2/32</name></source-address><source-address><name>195.113.156.26/32</name></source-address><source-address><name>62.40.124.30/32</name></source-address><destination-address><name>62.40.124.29/32</name></destination-address><destination-address><name>62.40.124.13/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.103.30/32</name></source-address><source-address><name>195.113.144.2/32</name></source-address><source-address><name>62.40.124.30/32</name></source-address><source-address><name>195.113.156.26/32</name></source-address><destination-address><name>62.40.103.29/32</name></destination-address><destination-address><name>62.40.124.29/32</name></destination-address><destination-address><name>62.40.97.2/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.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>195.113.144.201/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><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>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></then></term><term><name>JRA2_MICHAL_ACCESS</name><from><source-prefix-list><name>JRA2_MICHAL_ACCESS_SRCIPS</name></source-prefix-list><destination-prefix-list><name>JRA2_MICHAL_ACCESS_DSTIPS</name></destination-prefix-list><port inactive="inactive">22</port><port inactive="inactive">443</port><port inactive="inactive">80</port><port inactive="inactive">8080</port><port inactive="inactive">8443</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>CESNE-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>LAN-in</name><term><name>LAN-DWS-in</name><from><dscp>32</dscp></from><then><policer>pol-DWS-in</policer><count>dws-in</count><loss-priority>high</loss-priority><forwarding-class>best-effort</forwarding-class><accept/></then></term><term><name>LAN-LBE-in</name><from><dscp>8</dscp></from><then><count>lbe-in</count><accept/></then></term><term><name>Multicast-Tests</name><from><source-address><name>62.40.115.99/32</name></source-address><source-address><name>62.40.115.115/32</name></source-address><destination-address><name>62.40.122.195/32</name></destination-address><destination-address><name>62.40.115.67/32</name></destination-address><destination-address><name>62.40.122.26/32</name></destination-address><destination-address><name>62.40.115.147/32</name></destination-address><port>5001</port><port>14233</port></from><then><accept/></then></term><term><name>block-snmp</name><from><address><name>62.40.109.177/32</name></address><port>snmp</port><port>snmptrap</port></from><then><discard>
-                            </discard></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>LAN-out</name><term><name>Multicast-Tests</name><from><source-address><name>62.40.122.195/32</name></source-address><source-address><name>62.40.115.67/32</name></source-address><source-address><name>62.40.122.26/32</name></source-address><source-address><name>62.40.115.147/32</name></source-address><destination-address><name>62.40.115.99/32</name></destination-address><destination-address><name>62.40.115.115/32</name></destination-address></from><then><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>HADES-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>861</port><port>1024-65535</port></from><then><accept/></then></term><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>HADES-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><protocol>tcp</protocol><port>22</port><port>861</port><port>4823</port><port>8090</port><port>5000-5099</port><port>32768-61000</port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP</name><from><protocol>udp</protocol><port>123</port><port>5000-5099</port><port>32768-61000</port></from><then><accept/></then></term><term><name>VLAN-Access_Allow_UDP_from_MPs</name><from><address><name>62.40.106.128/25</name></address><protocol>udp</protocol><port>65000-65060</port></from><then><accept/></then></term><term><name>SSH_Access</name><from><source-address><name>131.188.81.0/24</name></source-address><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>VM-RANGE-VL112-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>8080</port><port>27017</port></from><then><accept/></then></term><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>VM-RANGE-VL112-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>8080</port><port>27017</port></from><then><accept/></then></term><term><name>GEANT-SRV-SSH_Access</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>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>default</name><then><discard>
-                            </discard></then></term></filter><filter><name>RTBH-count</name><term><name>count</name><then><count>RTBH-count</count></then></term></filter><filter><name>VM-RANGE-50-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>8140</port><port>10514</port><port>25</port><port>389</port><port>636</port><port>5587</port></from><then><accept/></then></term><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>SQL_Access_to_WordPress</name><from><destination-prefix-list><name>WordPessList</name></destination-prefix-list><port>3306</port></from><then><accept/></then></term><term><name>default</name><then><log/><discard>
-                            </discard></then></term></filter><filter><name>VM-RANGE-50-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><port>80</port><port>443</port><port>389</port><port>636</port><port>5587</port></from><then><accept/></then></term><term><name>GEANT-SRV-SSH_Access</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>RENATER_SSH_ACCESS</name><from><source-address><name>195.220.94.98/32</name></source-address><source-address><name>195.98.239.158/32</name></source-address><source-address><name>82.236.175.91/32</name></source-address><source-address><name>195.220.94.85/32</name></source-address><protocol>tcp</protocol><destination-port>22</destination-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>MAIL.GEANT.NET_ACCEPT</name><from><source-address><name>62.40.104.135/32</name></source-address><protocol>tcp</protocol><port>25</port></from><then><accept/></then></term><term><name>default</name><then><log/><discard>
-                            </discard></then></term></filter><filter><name>VM-RANGE-VL170-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_Outbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term inactive="inactive"><name>VLAN-Access_Allow</name><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><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>VM-RANGE-VL170-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_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><source-prefix-list><name>camera-server</name></source-prefix-list></from><then><accept/></then></term><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>VM-RANGE-VL120-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>8080</port><port>27017</port></from><then><accept/></then></term><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>VM-RANGE-VL120-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>8080</port><port>27017</port></from><then><accept/></then></term><term><name>GEANT-SRV-SSH_Access</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>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>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>8090</destination-port><destination-port>5000-5900</destination-port><destination-port>6001-6200</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>VL022_MIDDLE_IN</name><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_UDP</name><from><protocol>udp</protocol><destination-port>3000-65535</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>VL022_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>urpf-ubuntunet-filter</name><apply-groups>urpf-template</apply-groups></filter><filter><name>nren_IAS_CESNET_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>CESNET_blocking_service</name><from><destination-prefix-list><name>CESNET-blocking-list</name></destination-prefix-list></from><then><count>CESNET-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.42/32</name></source-address><destination-address><name>83.97.88.41/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.42/32</name></source-address><destination-address><name>83.97.88.41/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.42/32</name></source-address><destination-address><name>83.97.88.41/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.42/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_CESNET_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>VL118_MIDDLE_IN</name><term><name>GEANT_Ltd_Access</name><from><destination-prefix-list><name>corporate-address-space</name></destination-prefix-list></from><then><accept/></then></term><term><name>VLAN_Access_Allow</name><from><destination-port>https</destination-port><destination-port>43</destination-port><destination-port>10514</destination-port><destination-port>514</destination-port><destination-port>8140</destination-port><destination-port>22</destination-port></from><then><accept/></then></term><term><name>GEANT_Router_Injector_Access</name><from><destination-address><name>62.40.96.14/32</name></destination-address><destination-address><name>62.40.97.11/32</name></destination-address></from><then><accept/></then></term><term><name>mx3-lab</name><from><destination-address><name>62.40.111.173/32</name></destination-address></from><then><accept/></then></term><term><name>GEANT_SNMP_polling</name><from><destination-prefix-list><name>geant-routers</name></destination-prefix-list><destination-port>161</destination-port></from><then><accept/></then></term><term><name>UAT-FOD-Internet-access</name><from><source-address><name>62.40.122.110/32</name></source-address><port>80</port><port>443</port></from><then><accept/></then></term></filter><filter><name>VL118_MIDDLE_OUT</name><term><name>GEANT_Ltd_Access</name><from><source-prefix-list><name>corporate-address-space</name></source-prefix-list></from><then><accept/></then></term><term><name>JRA2T6</name><from><source-address><name>129.187.15.0/24</name></source-address><source-address><name>129.187.12.0/24</name></source-address><source-address><name>147.32.233.128/25</name></source-address><source-address><name>82.208.57.74/32</name></source-address><source-address><name>147.32.233.150/32</name></source-address><source-address><name>129.187.48.225/32</name></source-address><destination-address><name>62.40.122.106/32</name></destination-address><destination-address><name>62.40.122.110/32</name></destination-address><destination-address><name>62.40.122.108/32</name></destination-address><protocol>tcp</protocol><port>22</port><port>80</port><port>443</port></from><then><accept/></then></term><term><name>FoD_Access_Accept</name><from><destination-address><name>62.40.122.108/32</name></destination-address><source-prefix-list><name>CERT-SURFNET</name></source-prefix-list><source-prefix-list><name>CERT-RedIRIS</name></source-prefix-list><source-prefix-list><name>CERT_EENet</name></source-prefix-list><source-prefix-list><name>CERT_CERN</name></source-prefix-list><source-prefix-list><name>CERT_GARR</name></source-prefix-list><source-prefix-list><name>CERT_CERT.LV-SIGMAnet</name></source-prefix-list><source-prefix-list><name>CERT_LITnet</name></source-prefix-list><source-prefix-list><name>CERT_IUCC</name></source-prefix-list><source-prefix-list><name>CERT_GRNET</name></source-prefix-list><source-prefix-list><name>CERT_FCCN</name></source-prefix-list><source-prefix-list><name>CERT_NIIF</name></source-prefix-list><source-prefix-list><name>CERT_RESTENA</name></source-prefix-list><source-prefix-list><name>CERT_HEANET</name></source-prefix-list><source-prefix-list><name>CERT_CESnet</name></source-prefix-list><source-prefix-list><name>CERT_ACOnet</name></source-prefix-list><source-prefix-list><name>CERT_BASnet</name></source-prefix-list><source-prefix-list><name>CERT_CYnet</name></source-prefix-list><source-prefix-list><name>CERT_CARnet</name></source-prefix-list><source-prefix-list><name>CERT_AMRES</name></source-prefix-list><source-prefix-list><name>CERT_Malta</name></source-prefix-list><source-prefix-list><name>CERT_ARNES</name></source-prefix-list><source-prefix-list><name>CERT_MARNET</name></source-prefix-list><source-prefix-list><name>CERT_RASH</name></source-prefix-list><protocol>tcp</protocol><port>80</port><port>443</port></from><then><accept/></then></term><term><name>Lab_Access</name><from><source-address><name>62.40.111.254/32</name></source-address><destination-address><name>62.40.122.106/32</name></destination-address></from><then><accept/></then></term><term><name>GEANT_SNMP_accept</name><from><source-prefix-list><name>geant-routers</name></source-prefix-list><port>161</port></from><then><accept/></then></term><term><name>FoD_pilot_Access_Accept</name><from><destination-address><name>62.40.122.110/32</name></destination-address><source-prefix-list><name>CERT-RedIRIS</name></source-prefix-list><source-prefix-list><name>CERT_EENet</name></source-prefix-list><source-prefix-list><name>CERT_LITnet</name></source-prefix-list><protocol>tcp</protocol><port>443</port></from><then><accept/></then></term></filter><filter><name>nren_CLS_CESNET_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>pol-cesnet-traffic</name><then><policer>pol-cesnet-rate-limiting</policer><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.1/32</name></source-address><destination-address><name>62.40.100.0/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>62.40.100.1/32</name></source-address><destination-address><name>62.40.100.0/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>62.40.100.1/32</name></source-address><destination-address><name>62.40.100.0/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>62.40.100.1/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_CESNET_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>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>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>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></filter><filter><name>VL023_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><port>443</port></from><then><accept/></then></term></filter><filter><name>NIX.CZ-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>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-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>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>91.210.16.245/32</name></source-address><source-address><name>91.210.16.246/32</name></source-address><source-address><name>91.210.16.238/32</name></source-address><source-address><name>91.210.16.221/32</name></source-address><source-address><name>91.210.16.120/32</name></source-address><source-address><name>91.210.16.40/32</name></source-address><source-address><name>91.210.16.171/32</name></source-address><source-address><name>91.210.16.201/32</name></source-address><source-address><name>91.210.16.68/32</name></source-address><source-address><name>91.210.16.67/32</name></source-address><source-address><name>91.210.16.115/32</name></source-address><source-address><name>91.210.16.155/32</name></source-address><source-address><name>91.210.16.227/32</name></source-address><source-address><name>91.210.16.181/32</name></source-address><source-address><name>91.210.16.182/32</name></source-address><source-address><name>91.210.16.0/22</name></source-address><source-address><name>91.210.16.63/32</name></source-address><source-address><name>91.210.16.147/32</name></source-address><source-address><name>91.210.16.113/32</name></source-address><source-address><name>91.210.16.114/32</name></source-address><source-address><name>91.210.16.223/32</name></source-address><source-address><name>91.210.16.19/32</name></source-address><source-address><name>91.210.16.52/32</name></source-address><source-address><name>91.210.16.228/32</name></source-address><source-address><name>91.210.16.5/32</name></source-address><source-address><name>91.210.16.203/32</name></source-address><source-address><name>91.210.16.202/32</name></source-address><source-address><name>91.210.16.129/32</name></source-address><source-address><name>91.210.16.150/32</name></source-address><source-address><name>91.210.16.85/32</name></source-address><source-address><name>91.210.16.86/32</name></source-address><destination-address><name>91.210.16.189/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>91.210.16.189/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>WEB-server-accept</name><from><destination-address><name>62.40.122.147/32</name></destination-address><protocol>tcp</protocol><port>http</port><port>https</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><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><destination-prefix-list><name>qfx-vme-interfaces</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>NIX.CZ-out</name><term><name>DWS-out</name><from><dscp>32</dscp></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>GE0-2-3_MIDDLE_IN</name><term inactive="inactive"><name>VLAN_Access_Allow</name><then><accept/></then></term><term><name>SNMP_TRAPS</name><from><destination-address><name>62.40.123.180/32</name></destination-address><destination-address><name>83.97.92.87/32</name></destination-address><protocol>udp</protocol><destination-port>162</destination-port></from><then><accept/></then></term><term><name>SNMP_Allow</name><from><destination-address><name>62.40.123.180/32</name></destination-address><destination-address><name>83.97.92.87/32</name></destination-address></from></term></filter><filter><name>GE0-2-3_MIDDLE_OUT</name><term inactive="inactive"><name>VLAN_Access_Allow</name><from><port>22</port></from><then><accept/></then></term><term><name>GTS_allow</name><from><source-address><name>62.40.104.180/32</name></source-address><source-address><name>62.40.104.181/32</name></source-address><source-prefix-list><name>JRA2_MICHAL_ACCESS_SRCIPS</name></source-prefix-list></from><then><accept/></then></term><term><name>SNMP_Allow</name><from><source-address><name>62.40.123.180/32</name></source-address><source-address><name>83.97.92.87/32</name></source-address></from></term><term><name>JRA1_ACCESS</name><from><prefix-list><name>JRA1_SDN_CORSA_ACCESS</name></prefix-list><destination-port>22</destination-port></from><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><source-prefix-list><name>VPN-PROXY_RI_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>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>JRA4T2IDRAC_MIDDLE_IN</name><term><name>VLAN-Access_Allow_TCP</name><from><protocol>tcp</protocol><destination-port>22</destination-port><destination-port>443</destination-port><destination-port>5900-5901</destination-port></from><then><accept/></then></term></filter><filter><name>JRA4T2IDRAC_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_TCP</name><from><protocol>tcp</protocol><destination-port>22</destination-port><destination-port>443</destination-port><destination-port>5900-5901</destination-port></from><then><accept/></then></term></filter><filter><name>JRA4T2_MIDDLE_IN</name><term><name>VLAN-Access_Allow_TCP</name><from><protocol>tcp</protocol><destination-port>22</destination-port></from><then><accept/></then></term></filter><filter><name>JRA4T2_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_TCP</name><from><protocol>tcp</protocol><destination-port>22</destination-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>vc4_access_OUT</name><term><name>EXTERNAL_vc4_filter</name><from><prefix-list><name>GEANT-Superpop-v4</name></prefix-list></from><then><accept/></then></term></filter><filter><name>vc4_access_IN</name><term><name>EXTERNAL_vc4_filter</name><from><destination-prefix-list><name>GEANT-Superpop-v4</name></destination-prefix-list></from><then><accept/></then></term></filter><filter><name>MGEN-IN</name><term><name>MGEN-IN</name><from><source-address><name>83.97.93.37/32</name></source-address><destination-address><name>192.168.8.1/32</name></destination-address></from><then><count>MGEN-IN</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>MGEN-OUT</name><term><name>MGEN-OUT</name><from><source-address><name>83.97.93.37/32</name></source-address><destination-address><name>192.168.8.1/32</name></destination-address></from><then><count>MGEN-OUT</count><accept/></then></term><term><name>default</name><then><accept/></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>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>urpfv6-filter-cesnet</name><term><name>permit-multicast</name><from><destination-address><name>ff00::/8</name></destination-address></from><then><accept/></then></term><term><name>cesnetv6-sourcing</name><from><prefix-list><name>route-from-CESNET-v6</name></prefix-list></from><then><count>from-cesnetv6-uRPF-prefix-list-accepts</count><accept/></then></term><term><name>discard</name><then><count>urpfv6-fail</count><accept/></then></term></filter><filter><name>CESne6-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:2013:10aa::2/126</name></source-address><source-address><name>2001:798:13:10aa::2/126</name></source-address><destination-address><name>2001:798:2013:10aa::1/126</name></destination-address><destination-address><name>2001:798:13:10aa::1/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:13:20ff::1/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><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>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></filter><filter><name>CESne6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>LHCONE6-in</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>count-ipv6</name><then><count>ipv6-counter</count><next>term</next></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>VM-RANGE-50-V6-IN</name><term><name>PROTECTED</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><term><name>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>8140</port><port>10514</port><port>25</port><port>5432</port><port>389</port><port>636</port><port>5587</port></from><then><accept/></then></term><term><name>VLAN_SPECIAL_ACCESS</name><from><destination-address><name>2001:610::/32</name></destination-address><destination-address><name>2a00:1a48::/32</name></destination-address><payload-protocol>tcp</payload-protocol><port>5432</port><port>389</port></from><then><accept/></then></term><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>SQL_Access_to_WordPress</name><from><destination-prefix-list><name>WordPessList6</name></destination-prefix-list><port>3306</port></from><then><accept/></then></term><term><name>default</name><then><log/><discard/></then></term></filter><filter><name>VM-RANGE-50-V6-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>ICMP-accept</name><from><payload-protocol>icmp6</payload-protocol></from><then><policer>ICMP-flood</policer><accept/></then></term><term><name>UDP_Traceroute</name><from><payload-protocol>udp</payload-protocol><destination-port>33434-33690</destination-port></from><then><policer>ICMPv6-flood</policer><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>AMSTERDAM_OFFICE_ACCESS</name><from><source-address><name>2001:610:148::/48</name></source-address><source-address><name>2001:610:188:444::/64</name></source-address><payload-protocol>tcp</payload-protocol><port>22</port></from><then><accept/></then></term><term><name>VLAN-Access_Allow</name><from><payload-protocol>tcp</payload-protocol><port>80</port><port>443</port><port>5432</port><port>389</port><port>636</port><port>5587</port></from><then><accept/></then></term><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>MAIL.GEANT.NET_ACCEPT</name><from><source-address><name>2001:798:ff9e:10::2/128</name></source-address><next-header>tcp</next-header><port>25</port></from><then><accept/></then></term><term><name>default</name><then><log/><discard/></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><destination-port>5001-5900</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>VL022_V6_MIDDLE_IN</name><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><term><name>VLAN-Access_Allow_UDP</name><from><payload-protocol>udp</payload-protocol><destination-port>3000-65535</destination-port></from><then><accept/></then></term></filter><filter><name>VL022_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>urpfv6-filter-ubuntunet</name><apply-groups>urpf-template</apply-groups></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_CESNET_V6_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term inactive="inactive"><name>CESNET_blocking_service</name><from><destination-prefix-list><name>CESNET6-blocking-list</name></destination-prefix-list></from><then><count>CESNET-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::2e/128</name></source-address><destination-address><name>2001:798:1::2d/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::2e/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_CESNET_V6_OUT</name><term><name>default</name><then><accept/></then></term></filter><filter><name>VL118_V6_MIDDLE_IN</name><term><name>GEANT_Ltd_Access</name><from><destination-prefix-list><name>corporate-address-space6</name></destination-prefix-list></from><then><accept/></then></term><term><name>GEANT_Router_Injector_Access</name><from><destination-address><name>2001:798:22:20ff::3/128</name></destination-address></from><then><accept/></then></term><term><name>OKEANOS_HOST_Michael</name><from><destination-address><name>2001:648:2ffc:1225:a800:bff:fe90:7b7a/128</name></destination-address></from><then><accept/></then></term><term><name>FOD-UAT-internet-acess</name><from><source-address><name>2001:798:bb:c::3/128</name></source-address><next-header>tcp</next-header><port>80</port><port>443</port></from><then><accept/></then></term></filter><filter><name>VL118_V6_MIDDLE_OUT</name><term><name>GEANT_Ltd_Access</name><from><source-prefix-list><name>corporate-address-space6</name></source-prefix-list></from><then><accept/></then></term><term><name>FoD_Access_Accept</name><from><destination-address><name>2001:798:bb:c::4/128</name></destination-address><source-prefix-list><name>CERT_RESTENA-V6</name></source-prefix-list><source-prefix-list><name>CERT_ACOnet-V6</name></source-prefix-list><source-prefix-list><name>CERT_GRNET-V6</name></source-prefix-list><source-prefix-list><name>CERT_NIIF-V6</name></source-prefix-list><next-header>tcp</next-header><port>80</port><port>443</port></from><then><accept/></then></term><term><name>test</name><from><source-address><name>2001:799:7::/64</name></source-address></from><then><accept/></then></term><term><name>FOD-UAT-internet-acess</name><from><destination-address><name>2001:798:bb:c::3/128</name></destination-address><next-header>tcp</next-header><port>80</port><port>443</port></from><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><source-prefix-list><name>VPN-PROXY_RI_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>nren_CLS_CESNET_V6_OUT</name><term><name>default</name><then><accept/></then></term></filter><filter><name>nren_CLS_CESNET_V6_IN</name><interface-specific/><term><name>sample</name><then><sample/><next>term</next></then></term><term><name>pol-cesnet-traffic</name><then><policer>pol-cesnet-rate-limiting</policer><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::e/128</name></source-address><destination-address><name>2001:798::d/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::e/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>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>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>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></filter><filter><name>VL023_V6_MIDDLE_OUT</name><term><name>VLAN_Access_Allow</name><from><port>443</port></from><then><accept/></then></term></filter><filter><name>urpf-filter-NIX.CZ-v6</name><apply-groups>urpf-template</apply-groups></filter><filter><name>NIX.CZ-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:14::2/128</name></source-address><source-address><name>2001:7f8:14::4/128</name></source-address><source-address><name>2001:7f8:14::238/128</name></source-address><source-address><name>2001:7f8:14::2f:1/128</name></source-address><source-address><name>2001:7f8:14::67:1/128</name></source-address><source-address><name>2001:7f8:14::4b:1/128</name></source-address><source-address><name>2001:7f8:14::81:1/128</name></source-address><source-address><name>2001:7f8:14::6e:1/128</name></source-address><source-address><name>2001:7f8:14::f:2/128</name></source-address><source-address><name>2001:7f8:14::6b:1/128</name></source-address><source-address><name>2001:7f8:14::17:1/128</name></source-address><source-address><name>2001:7f8:14::6f:1/128</name></source-address><source-address><name>2001:7f8:14::f:1/128</name></source-address><source-address><name>2001:7f8:14::65:1/128</name></source-address><source-address><name>2001:7f8:14::7e:1/128</name></source-address><source-address><name>2001:7f8:14::7e:2/128</name></source-address><source-address><name>2001:7f8:14::60:1/128</name></source-address><source-address><name>2001:7f8:14::6a:1/128</name></source-address><source-address><name>2001:7f8:14::6a:2/128</name></source-address><source-address><name>2001:7f8:14::97:1/128</name></source-address><source-address><name>2001:7f8:14::7f:1/128</name></source-address><source-address><name>2001:7f8:14::7f:2/128</name></source-address><source-address><name>2001:7f8:14::a5:1/128</name></source-address><source-address><name>2001:7f8:14::9f:1/128</name></source-address><source-address><name>2001:7f8:14::84:1/128</name></source-address><source-address><name>2001:7f8:14::84:2/128</name></source-address><source-address><name>2001:7f8:14::25:1/128</name></source-address><source-address><name>2001:7f8:14::80:1/128</name></source-address><source-address><name>2001:7f8:14::11:1/128</name></source-address><source-address><name>2001:7f8:14::11:2/128</name></source-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><destination-address><name>2001:798:28:20ff::1/128</name></destination-address><destination-address><name>2001:7f8:14::95:1/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:14::95: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><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-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>NIX.CZ-V6-out</name><term><name>count-ipv6</name><then><count>ipv6-counter</count><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>Established_accept</name><from><next-header>tcp</next-header><tcp-established/></from><then><accept/></then></term><term><name>GEANT_DC_INFRASTRUCTURE_accept</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_TAIL_IN</name><term><name>GEANT_SSH_accept</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>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>Established_accept</name><from><next-header>tcp</next-header><tcp-established/></from><then><accept/></then></term><term><name>GOC_GEANT_accept</name><from><source-prefix-list><name>corporate-address-space6</name></source-prefix-list></from><then><accept/></then></term><term><name>GEANT_DC_INFRASTRUCTURE_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></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_OUT</name><term><name>GEANT_SRV_SSH_accept</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>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>JRA4T2IDRAC_V6_MIDDLE_IN</name><term><name>VLAN-Access_Allow_TCP</name><from><payload-protocol>tcp</payload-protocol><destination-port>22</destination-port><destination-port>443</destination-port><destination-port>5900-5901</destination-port></from><then><accept/></then></term></filter><filter><name>JRA4T2IDRAC_V6_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_TCP</name><from><payload-protocol>tcp</payload-protocol><destination-port>22</destination-port><destination-port>443</destination-port><destination-port>5900-5901</destination-port></from><then><accept/></then></term></filter><filter><name>JRA4T2_V6_MIDDLE_IN</name><term><name>VLAN-Access_Allow_TCP</name><from><payload-protocol>tcp</payload-protocol><destination-port>22</destination-port></from><then><accept/></then></term></filter><filter><name>JRA4T2_V6_MIDDLE_OUT</name><term><name>VLAN-Access_Allow_TCP</name><from><payload-protocol>tcp</payload-protocol><destination-port>22</destination-port></from><then><accept/></then></term></filter><filter><name>LHCONE6-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></inet6><vpls><filter><name>BUM_FLOOD_PROTECTION</name><term><name>BROADCAST</name><from><traffic-type>broadcast</traffic-type></from><then><policer>POL_BUM</policer><accept/></then></term><term><name>UNKNOWN_UNICAST</name><from><traffic-type>unknown-unicast</traffic-type></from><then><policer>POL_BUM</policer><accept/></then></term><term><name>MULTICAST</name><from><traffic-type>multicast</traffic-type></from><then><policer>POL_BUM</policer><accept/></then></term><term><name>UNICAST</name><from><traffic-type>known-unicast</traffic-type></from><then><accept/></then></term></filter></vpls></family><policer><name>GEANT_PLUS_NAME_1G</name><if-exceeding><bandwidth-limit>1g</bandwidth-limit><burst-size-limit>6250000</burst-size-limit></if-exceeding><then><discard/></then></policer><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-BW-tests</name><if-exceeding><bandwidth-limit>300m</bandwidth-limit><burst-size-limit>500k</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-cesnet-rate-limiting</name><if-exceeding><bandwidth-limit>10g</bandwidth-limit><burst-size-limit>625k</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_BUM</name><if-exceeding><bandwidth-limit>5m</bandwidth-limit><burst-size-limit>2m</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>ae11.667</name></interface><route-distinguisher><rd-type>62.40.97.2: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::e</name><description>-- IPv6 Peering with CESNET --</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-CESNET-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-CESNET-V6-nren</export><peer-as>2852</peer-as></neighbor></group><group><name>CLS-NRENS</name><description>NRENS</description><neighbor><name>62.40.100.1</name><description>-- Peering with CESNET --</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-CESNET-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-CESNET-nren</export><peer-as>2852</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>GTS_VPLS-Neutron</name><instance-type>vpls</instance-type><vlan-id>all</vlan-id><interface><name>ge-0/2/5.0</name></interface><interface><name>ge-0/3/6.0</name></interface><route-distinguisher><rd-type>20965:889</rd-type></route-distinguisher><vrf-target><community>target:20965:889</community></vrf-target><forwarding-options><family><vpls><flood><input>BUM_FLOOD_PROTECTION</input></flood></vpls></family></forwarding-options><protocols><vpls><mac-table-size><limit>32768</limit></mac-table-size><interface-mac-limit><limit>1024</limit></interface-mac-limit><no-tunnel-services/><site><name>PRA</name><site-identifier>37</site-identifier></site><vpls-id>889</vpls-id></vpls></protocols></instance><instance><name>IAS</name><description>GEANT IAS Internet VRF</description><instance-type>vrf</instance-type><interface><name>lt-1/3/0.61</name></interface><interface><name>ae11.333</name></interface><interface><name>ae12.0</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.42</name><description>-- Peering with CESNET --</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-CESNET-nren</import><family><inet><unicast><prefix-limit><maximum>125000</maximum></prefix-limit></unicast></inet></family><export>ps-BOGONS</export><export>ps-IAS-to-CESNET-nren</export><peer-as>2852</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::2e</name><description>-- IPv6 Peering with CESNET --</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-CESnet-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-CESnet-V6-nren</export><peer-as>2852</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>GEANT-IX-NIX.CZ</name><type>external</type><description>NIX.CZ - 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>91.210.16.238</name><description>OARC AS112</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS112_OARC,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS112_OARC,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>112</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.245</name><description>NIX.CZ AS6881</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6881_NIX.CZ</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet><any><prefix-limit><maximum>30</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6881_NIX.CZ</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>6881</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.246</name><description>NIX.CZ AS6881</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6881_NIX.CZ</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet><any><prefix-limit><maximum>30</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6881_NIX.CZ</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>6881</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.221</name><description>Akamai AS20940</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet><unicast><prefix-limit><maximum>75</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></unicast><any><prefix-limit><maximum>9750</maximum></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>20940</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.120</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,_US</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,_US</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>16509</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.40</name><description>BT AS5400</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS5400_BT_,_GB__</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet><any><prefix-limit><maximum>7350</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS5400_BT_,_GB__</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>5400</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.171</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS13335_CLOUDFLARENET_-_CloudFlare,_Inc.,_US</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS13335_CLOUDFLARENET_-_CloudFlare,_Inc.,_US</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>13335</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.201</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>6939</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.68</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_JUSTINTV_-_Twitch_Interactive_Inc.,</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_JUSTINTV_-_Twitch_Interactive_Inc.,</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>46489</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.67</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_JUSTINTV_-_Twitch_Interactive_Inc.,</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_JUSTINTV_-_Twitch_Interactive_Inc.,</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>46489</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor inactive="inactive"><name>91.210.16.115</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8075_MICROSOFT</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family inactive="inactive"><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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8075_MICROSOFT</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>8075</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.155</name><description>OpenDNS AS36692</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS36692_OPENDNS_-_OpenDNS,_LLC,_US</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet><any><prefix-limit><maximum>105</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS36692_OPENDNS_-_OpenDNS,_LLC,_US</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>36692</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.227</name><description>Zayo AS8218</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8218_NEO-ASN_legacy_Neotelecoms,_FR_</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8218_NEO-ASN_legacy_Neotelecoms,_FR_</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>8218</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.181</name><description>Internet_Systems_Consortium AS30134</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS30134_ISC</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS30134_ISC</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>30134</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.182</name><description>Internet_Systems_Consortium AS30134</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS30134_ISC</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS30134_ISC</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>30134</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.63</name><description>VeriSign AS26415</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS26415_VeriSign</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet><any><prefix-limit><maximum>450</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS26415_VeriSign</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>26415</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.147</name><description>Core-Backbone AS33891</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS33891_Core-Backbone_GmbH</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS33891_Core-Backbone_GmbH</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>33891</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.113</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>10310</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.114</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>10310</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.223</name><description>G-Core_Labs 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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>199524</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.19</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_Facebook</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_Facebook</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>32934</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.52</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_Facebook</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_Facebook</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>32934</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.228</name><description>Zayo_Group AS6461</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6461_Zayo_Group</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet><any><prefix-limit><maximum>172500</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6461_Zayo_Group</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>6461</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.5</name><description>Valve AS32590</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32590_Valve_Corporation</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32590_Valve_Corporation</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>32590</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.203</name><description>SoftLayer AS36351</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS36351_SoftLayer_Technologies</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet><any><prefix-limit><maximum>2250</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS36351_SoftLayer_Technologies</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>36351</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.202</name><description>SoftLayer AS36351</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS36351_SoftLayer_Technologies</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet><any><prefix-limit><maximum>2250</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS36351_SoftLayer_Technologies</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>36351</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.129</name><description>OVH AS16276</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16276_OVH</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16276_OVH</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>16276</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.150</name><description>Limelight AS22822</description><passive/><import>ps-deny-all</import><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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS22822_Limelight_Networks</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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-deny-all</export><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS22822_Limelight_Networks</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>22822</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.85</name><description>Master_Internet AS24971</description><passive/><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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS24971_Master_Internet</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS24971_Master_Internet</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>24971</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>91.210.16.86</name><description>Master_Internet AS24971</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS24971_Master_Internet</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS24971_Master_Internet</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>24971</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group><group><name>GEANT-IXv6-NIX.CZ</name><type>external</type><description>NIX.CZ - 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><any>
-                                </any></inet6></family><export>ps-deny-all</export><neighbor><name>2001:7f8:14::238</name><description>OARC AS112</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS112_OARC,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS112_OARC,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>112</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::2</name><description>NIX.CZ AS6881</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6881_NIX.CZ</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>30</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6881_NIX.CZ</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>6881</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::4</name><description>NIX.CZ AS6881</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6881_NIX.CZ</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>30</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6881_NIX.CZ</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>6881</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::2f:1</name><description>Akamai AS20940</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><unicast><prefix-limit><maximum>75</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></unicast><any><prefix-limit><maximum>2250</maximum></prefix-limit></any></inet6></family><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS20940_AKAMAI-ASN1_Akamai_International_B.V.,US_</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>20940</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::67: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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,_US</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16509_AMAZON-02_-_Amazon.com,_Inc.,_US</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::4b:1</name><description>BT AS5400</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS5400_BT_,_GB__</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>367</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS5400_BT_,_GB__</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>5400</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::81: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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS13335_CLOUDFLARENET_-_CloudFlare,_Inc.,_US</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS13335_CLOUDFLARENET_-_CloudFlare,_Inc.,_US</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::6e: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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6939_HURRICANE_-_Hurricane_Electric,_Inc.,</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::6b: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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8075_MICROSOFT</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8075_MICROSOFT</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::17:1</name><description>OpenDNS AS36692</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS36692_OPENDNS_-_OpenDNS,_LLC,_US</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>30</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS36692_OPENDNS_-_OpenDNS,_LLC,_US</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>36692</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::6f:1</name><description>Zayo AS8218</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS8218_NEO-ASN_legacy_Neotelecoms,_FR_</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS8218_NEO-ASN_legacy_Neotelecoms,_FR_</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>8218</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::f:1</name><description>Internet_Systems_Consortium AS30134</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS30134_ISC</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS30134_ISC</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>30134</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::f:2</name><description>Internet_Systems_Consortium AS30134</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS30134_ISC</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS30134_ISC</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>30134</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::65:1</name><description>VeriSign AS26415</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS26415_VeriSign</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>75</maximum><teardown><limit-threshold>80</limit-threshold><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS26415_VeriSign</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>26415</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::7e: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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_JUSTINTV_-_Twitch_Interactive_Inc.,</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_JUSTINTV_-_Twitch_Interactive_Inc.,</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::7e: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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS46489_JUSTINTV_-_Twitch_Interactive_Inc.,</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS46489_JUSTINTV_-_Twitch_Interactive_Inc.,</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::60:1</name><description>Core-Backbone AS33891</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS33891_Core-Backbone_GmbH</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS33891_Core-Backbone_GmbH</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>33891</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::6a: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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::6a: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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS10310_Oath,_Inc.</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS10310_Oath,_Inc.</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::97:1</name><description>G-Core_Labs 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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>75</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS199524_G-Core_Labs_S.A.</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>199524</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::7f: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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_Facebook</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_Facebook</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::7f: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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32934_Facebook</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32934_Facebook</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::a5:1</name><description>Zayo_Group AS6461</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS6461_Zayo_Group</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>12000</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS6461_Zayo_Group</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>6461</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::9f:1</name><description>Valve AS32590</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS32590_Valve_Corporation</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>75</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS32590_Valve_Corporation</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>32590</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::84:1</name><description>SoftLayer AS36351</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS36351_SoftLayer_Technologies</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>525</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS36351_SoftLayer_Technologies</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>36351</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::84:2</name><description>SoftLayer AS36351</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS36351_SoftLayer_Technologies</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>525</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS36351_SoftLayer_Technologies</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>36351</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::25:1</name><description>OVH AS16276</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS16276_OVH</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>300</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS16276_OVH</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>16276</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::80:1</name><description>Limelight AS22822</description><passive/><import>ps-deny-all</import><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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS22822_Limelight_Networks</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_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-deny-all</export><export>ps-BOGONS-V6</export><export>ps-PRIVATE-AS-BLOCK</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS22822_Limelight_Networks</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_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:14::11:1</name><description>Master_Internet AS24971</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS24971_Master_Internet</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>105</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS24971_Master_Internet</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>24971</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor><neighbor><name>2001:7f8:14::11:2</name><description>Master_Internet AS24971</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_NIX.CZ_HEAD</import><import>IAS_PS-FROM-PUBLIC-PEER_AS24971_Master_Internet</import><import>IAS_PS-FROM-PUBLIC-PEERS_NIX.CZ_TAIL</import><family><inet6><any><prefix-limit><maximum>105</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_NIX.CZ_HEAD</export><export>IAS_PS-TO-PUBLIC-PEER_AS24971_Master_Internet</export><export>IAS_PS-TO-PUBLIC-PEERS_NIX.CZ_TAIL</export><peer-as>24971</peer-as><local-as><as-number>21320</as-number><private/><no-prepend-global-as/></local-as></neighbor></group></bgp><pim><interface><name>all</name><comment>/* Disabled due to PIM messages being sent to NIX - [TT#2017050334000382] [XTAC#25019548233] */</comment><disable/></interface></pim></protocols></instance><instance><name>JRA1-SDN-BOD-CONTROL</name><description>JRA1 SDN BOD PILOT OPENFLOW CONTROL VPN</description><instance-type>vrf</instance-type><interface><name>xe-2/0/3.1003</name></interface><route-distinguisher><rd-type>20965:223</rd-type></route-distinguisher><vrf-import>ps-into-sdn-bod-vrf</vrf-import><vrf-export>ps-from-sdn-bod-vrf</vrf-export><vrf-target><community>target:20965:223</community></vrf-target><vrf-table-label>
-            </vrf-table-label><routing-options><rib><name>JRA1-SDN-BOD-CONTROL.inet.0</name><martians><address>10.0.0.0/8</address><orlonger/><allow/></martians></rib><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options></instance><instance><name>coriant-mgmt</name><description>L3VPN for Coriant Groove Management</description><instance-type>vrf</instance-type><interface><name>ge-0/3/9.301</name></interface><interface><name>ge-0/3/9.401</name></interface><interface><name>ge-0/3/9.991</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><description>L3 BGP/MPLS VPN for LHCONE</description><instance-type>vrf</instance-type><interface><name>ae11.111</name></interface><route-distinguisher><rd-type>62.40.97.2: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><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-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>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><neighbor><name>62.40.126.255</name><description>CESNET LHCONE PRAGUE IP VPN</description><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-PRIVATE-AS-BLOCK</import><import>ps-from-lhcone-nren</import><family><inet><any><prefix-limit><maximum>100</maximum><teardown><idle-timeout><timeout>30</timeout></idle-timeout></teardown></prefix-limit></any></inet></family><export>ps-BOGONS</export><export>ps-PRIVATE-AS-BLOCK</export><export>ps-to-CESNET-LHCONE-TE</export><export>ps-to-lhcone-nren</export><peer-as>2852</peer-as></neighbor></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><neighbor><name>2001:798:111:1::46</name><description>CESNET LHCONE IPv6 VPN</description><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-PRIVATE-AS-BLOCK</import><import>ps-from-lhcone-nren</import><family><inet6><any><prefix-limit><maximum>100</maximum><teardown><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>ps-to-CESNET-LHCONE-TE</export><export>ps-to-lhcone-nren-v6</export><peer-as>2852</peer-as></neighbor></group></bgp></protocols></instance><instance><name>mdvpn-nren-gn</name><instance-type>vrf</instance-type><interface><name>lt-2/2/0.12</name></interface><route-distinguisher><rd-type>62.40.98.26: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.21</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>50</limit-threshold></teardown></prefix-limit></labeled-unicast></inet></family><peer-as>20965</peer-as></neighbor></group></bgp></protocols></instance><instance><name>mgmt-l3vpn</name><description>L3 BGP/MPLS VPN for management</description><instance-type>vrf</instance-type><interface><name>irb.999</name></interface><route-distinguisher><rd-type>62.40.97.2:999</rd-type></route-distinguisher><vrf-import>ps-into-mgmt-vrf</vrf-import><vrf-export>ps-from-mgmt-vrf</vrf-export><vrf-target><community>target:20965:999</community></vrf-target><vrf-table-label>
-            </vrf-table-label><routing-options><rib><name>mgmt-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><static><route><name>10.0.2.1/32</name><next-hop>10.0.2.1</next-hop></route></static><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options></instance><instance><name>taas-control</name><description>Control network for TaaS</description><instance-type>vrf</instance-type><interface><name>ge-0/2/1.250</name></interface><interface><name>ge-0/2/1.251</name></interface><route-distinguisher><rd-type>62.40.97.9:888</rd-type></route-distinguisher><vrf-target><community>target:20965:888</community></vrf-target><vrf-table-label>
-            </vrf-table-label><routing-options><rib><name>taas-control.inet.0</name><martians><address>10.0.0.0/8</address><orlonger/><allow/></martians></rib><static><route><name>0.0.0.0/0</name><next-hop>10.0.152.2</next-hop></route></static><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options></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::15e</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.13.254</next-hop><retain/><no-readvertise/></route><route><name>0.0.0.0/0</name><next-hop>83.97.89.47</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.97.2</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.97.2</local-address></session></group><group><name>routinator</name><session><name>83.97.94.109</name><port>8282</port><local-address>62.40.97.2</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.97.2</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.96.8</name></peer><peer><name>62.40.96.10</name></peer><peer><name>62.40.96.16</name></peer><peer><name>62.40.96.17</name></peer><peer><name>62.40.96.20</name></peer><peer><name>62.40.97.1</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.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><group><name>external_msdp</name><export>Bogon-Sources</export><export>ASM-Allow</export><import>Bogon-Sources</import><import>ASM-Allow</import><comment>/* MSDP Peering with CESnet AP */</comment><peer><name>62.40.124.30</name><local-address>62.40.124.29</local-address></peer></group></msdp><ldp><preference>16</preference><track-igp-metric/><deaggregate/><interface><name>ae2.0</name></interface><interface><name>ae8.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.97.2</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.1</name><description>mx1.bud.hu.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.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.16</name><description>mx1.lis.pt.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.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>iGEANT6</name><type>internal</type><local-address>2001:798:13: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: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: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:33:20ff::2</name><description>mx2.bra.sk.geant.net</description></neighbor><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:2b:20ff::2</name><description>mx2.bru.be.geant.net</description></neighbor><neighbor><name>2001:798:2f:20ff::1</name><description>mx1.lis.pt.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: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>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.30</name><description>-- Peering with CESNet GN2 --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-RE-NREN</import><import>ps-from-CESNET-nren</import><export>ps-BOGONS</export><export>ps-to-CESNET-nren</export><peer-as>2852</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:13:10aa::2</name><description>-- IPv6 Peering with CESnet GN2 --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-RPKI-RE-NREN</import><import>ps-from-CESnet-V6-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-to-CESnet-V6-nren</export><peer-as>2852</peer-as></neighbor></group><group><name>IBGP-VPN-Proxy</name><type>internal</type><local-address>62.40.98.26</local-address><advertise-inactive/><family><inet><unicast>
-                        </unicast></inet></family><export>nhs</export><cluster>1.1.1.25</cluster><peer-as>20965</peer-as><neighbor><name>62.40.98.27</name><description>Peering with VPN-Proxy for joining VPN-RR</description></neighbor></group><group><name>TOOLS</name><type>internal</type><description>PEERING WITH TOOLS</description><local-address>62.40.97.2</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.97.2</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.97.2</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.97.2</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:13:20ff::1</local-address><family><inet6><unicast>
-                        </unicast><multicast>
-                        </multicast></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.97.2</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:13: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.97.2</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>4702</ipv4-index><ipv6-index>6702</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>ge-0/2/1.0</name><disable/></interface><interface><name>ae2.0</name><point-to-point/><level><name>2</name><post-convergence-lfa><node-protection>
-                        </node-protection></post-convergence-lfa><metric>50</metric></level></interface><interface><name>ae8.0</name><point-to-point/><level><name>2</name><post-convergence-lfa><node-protection>
-                        </node-protection></post-convergence-lfa><metric>60</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><interface><name>ge-0/3/9.71</name></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><connections><interface-switch><name>NSI-PR-e1b2e32559</name><interface><name>xe-3/2/2.19</name></interface><interface><name>xe-3/2/2.20</name></interface></interface-switch></connections><l2circuit><neighbor><name>62.40.97.12</name></neighbor><neighbor><name>62.40.97.10</name></neighbor><neighbor><name>62.40.97.11</name><interface><name>xe-3/2/1.12</name><virtual-circuit-id>4000010001</virtual-circuit-id><description>GTS_link|PR-af859a090e</description><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.9</name></neighbor><neighbor><name>62.40.97.15</name></neighbor><neighbor><name>62.40.97.14</name></neighbor><neighbor><name>62.40.97.5</name></neighbor><neighbor><name>62.40.96.20</name></neighbor><neighbor><name>62.40.96.8</name></neighbor><neighbor><name>62.40.96.26</name><interface><name>xe-3/2/2.21</name><virtual-circuit-id>4000010001</virtual-circuit-id><description>GTS_link|PR-0961c3acc2</description><no-control-word/><ignore-mtu-mismatch/></interface><interface><name>xe-3/2/2.22</name><virtual-circuit-id>4000010002</virtual-circuit-id><description>GTS_link|PR-370f033602</description><no-control-word/><ignore-mtu-mismatch/></interface><interface><name>xe-3/2/3.16</name><virtual-circuit-id>210101</virtual-circuit-id><no-control-word/><mtu>9192</mtu><ignore-mtu-mismatch/></interface><interface><name>xe-3/2/1.13</name><virtual-circuit-id>4000010003</virtual-circuit-id><description>GTS_link|PR-2faca91395</description><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.96.3</name></neighbor><neighbor><name>62.40.96.15</name><interface><name>xe-3/2/1.11</name><virtual-circuit-id>4000010001</virtual-circuit-id><description>GTS_link|PR-5ff1b72a0d</description><no-control-word/><ignore-mtu-mismatch/></interface><interface><name>xe-3/2/3.12</name><virtual-circuit-id>120064</virtual-circuit-id><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.4</name></neighbor><neighbor><name>62.40.97.16</name></neighbor><neighbor><name>62.40.97.13</name></neighbor><local-switching><interface><name>ge-0/3/9.1022</name><end-interface><interface>xe-2/0/2.1022</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/9.1023</name><end-interface><interface>xe-2/0/2.1023</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/9.1024</name><end-interface><interface>xe-2/0/2.1024</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface><interface><name>ge-0/3/9.1025</name><end-interface><interface>xe-2/0/2.1025</interface></end-interface><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface></local-switching></l2circuit><lldp><port-id-subtype>interface-name</port-id-subtype><interface><name>all</name><disable/></interface><interface><name>fxp0</name></interface><interface><name>et-5/0/2</name></interface><interface><name>et-5/0/5</name></interface><interface><name>et-5/1/2</name></interface><interface><name>et-7/0/2</name></interface><interface><name>et-7/0/5</name></interface><interface><name>et-7/1/2</name></interface><interface><name>ge-0/3/9</name></interface><interface><name>ge-0/2/5</name></interface><interface><name>ge-0/2/6</name></interface><interface><name>ge-0/3/6</name></interface><interface><name>ge-0/3/7</name></interface><interface><name>et-1/3/0</name></interface></lldp></protocols><bridge-domains><domain><name>mgmt-bridge</name><domain-type>bridge</domain-type><vlan-id>999</vlan-id><routing-interface>irb.999</routing-interface></domain></bridge-domains></configuration>
\ No newline at end of file
diff --git a/test/data/mx2.bru.be.geant.net-netconf.xml b/test/data/mx2.bru.be.geant.net-netconf.xml
deleted file mode 100644
index a0c578ca3925b526af7665c86152e76b6f1710de..0000000000000000000000000000000000000000
--- a/test/data/mx2.bru.be.geant.net-netconf.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-<configuration changed-seconds="1617276273" changed-localtime="2021-04-01 11:24:33 UTC"><version>18.4R3-S4.2</version><groups><name>re0</name><system><host-name>mx2.bru.be.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.42.102/24</name></address></inet></family></unit></interface></interfaces></groups><groups><name>re1</name><system><host-name>mx2.bru.be.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.42.103/24</name></address></inet></family></unit></interface></interfaces></groups><groups><name>urpf-template</name><firewall><family><inet><filter><name>&lt;*&gt;</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>&lt;*&gt;</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>&lt;ae*&gt;</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><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>2021</uid><class>DANTE-Class</class></user><user><name>Frankfurt</name><uid>2001</uid><class>dante</class></user><user><name>Monit0r</name><full-name>Monitor</full-name><uid>2002</uid><class>dante</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>NOC</name><uid>2022</uid><class>NOC-Class</class></user><user><name>aconet</name><uid>2017</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>amres</name><uid>2018</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ansible</name><uid>2010</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>2019</uid><class>nrn</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>basnet</name><uid>2020</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>belnet</name><uid>2023</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>bren</name><uid>2024</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>carnet</name><uid>2025</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ccssupport</name><uid>2059</uid><class>readonly-permissions</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>cnis</name><uid>2003</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>2004</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>cnis-prod</name><uid>2005</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>dfn</name><uid>2006</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>garr</name><uid>2026</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-cesnet</name><uid>2027</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-cynet</name><uid>2007</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-eenet</name><uid>2028</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-fccn</name><uid>2029</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-garr</name><uid>2030</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-hungar</name><uid>2031</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-malta</name><uid>2032</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>geant-ne-salt-robot</name><uid>2063</uid><class>super-user</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>geant-switch</name><uid>2033</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>grnet</name><uid>2034</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>heanet</name><uid>2035</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>hungarnet</name><uid>2036</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>iucc</name><uid>2008</uid><class>nrn</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>janet</name><uid>2037</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>2066</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>lat</name><uid>2048</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>litnet</name><uid>2038</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>marnet</name><uid>2039</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>mdvpn-si</name><uid>2064</uid><class>mdvpn-si</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>mren</name><uid>2040</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>2009</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>2041</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>nren</name><uid>2060</uid><class>nren</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>opennsa</name><uid>2053</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>2016</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>2042</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>2043</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>renater</name><uid>2044</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>reporting</name><uid>2054</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>2045</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>restricted-mon</name><uid>2011</uid><class>restricted-mon</class><authentication><undocumented><ssh-dsa><name>/* SECRET-DATA */</name></ssh-dsa></undocumented></authentication></user><user><name>roedunet</name><uid>2046</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>2012</uid><class>level1</class><authentication><ssh-rsa><name>/* SECRET-DATA */</name></ssh-rsa></authentication></user><user><name>sa3-amps</name><uid>2013</uid><class>nrn</class></user><user><name>sanet</name><uid>2047</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>2014</uid><class>geantnms</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>space15.2R2.4-paris</name><uid>2058</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>space17.1R1.7-london</name><uid>2015</uid><class>super-user</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>srv-space-ssh</name><uid>2056</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>2062</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>2061</uid><class>restricted-mon</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>surfnet</name><uid>2049</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>ulakbim</name><uid>2050</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>uran</name><uid>2051</uid><class>nrn</class><authentication><encrypted-password>/* SECRET-DATA */</encrypted-password></authentication></user><user><name>xantaro</name><uid>2057</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 mx2.bru.be.geant.net, a GEANT Router in Brussels, Belgium \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.42.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>be</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.20</source-address></radius-server><radius-server><name>83.97.94.130</name><timeout>2</timeout><source-address>62.40.96.20</source-address></radius-server><static-host-mapping><name>ts1.bru.be</name><inet>172.16.42.254</inet></static-host-mapping><static-host-mapping><name>lo0</name><inet>62.40.96.20</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.20</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.20</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></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_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_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_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_AS2611_62.40.124.162</name><test><name>icmp-test</name><probe-type>icmp-ping</probe-type><target><address>62.40.124.162</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-bru-be-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.56/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::171/126</name></address></inet6></family></unit><unit><name>61</name><description>SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #BRU-IAS-RE-Peering | BGP Peering - IAS Side</description><encapsulation>ethernet</encapsulation><peer-unit>16</peer-unit><family><inet><address><name>83.97.89.57/31</name></address></inet><inet6><address><name>2001:798:1::172/126</name></address></inet6></family></unit></interface><interface><name>xe-0/0/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | ams-bru</description><framing><lan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae1</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-0/0/1</name><description>PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |</description><framing><lan-phy/></framing><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_AE0 SRF0000001 | bru-lon</description><framing><lan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae0</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-0/1/1</name><description>PHY CUSTOMER BELNET SRF9924365 P_AE12 | BELNET 1</description><gigether-options><ieee-802.3ad><bundle>ae12</bundle></ieee-802.3ad></gigether-options></interface><interface><name>ge-0/2/0</name><description>PHY INFRASTRUCTURE ACCESS INFINERA SRF9919793 | BRU01-DTNX10-1 XCM 1</description><unit><name>0</name><family><bridge><interface-mode>access</interface-mode><vlan-id>999</vlan-id></bridge></family></unit></interface><interface><name>ge-0/2/1</name><description>PHY CUSTOMER BELNET SRF9924431 | BELNET IMINDS_IC_GEANT_1</description><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><unit><name>300</name><description>SRV_L2CIRCUIT CUSTOMER BELNET INTERNET2 #ams-bru_GENI_BELNET-I2_13012 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id-range>300-349</vlan-id-range><family><ccc>
-                    </ccc></family></unit><unit><name>1025</name><description>SRV_L2CIRCUIT CUSTOMER BELNET NETHERLIGHT #ams-bru_iMinds_iMinds-Netherlight_15012 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id-range>1025-1074</vlan-id-range><input-vlan-map><push/><vlan-id>1025</vlan-id></input-vlan-map><output-vlan-map><pop/></output-vlan-map></unit><unit><name>1125</name><description>SRV_L2CIRCUIT CUSTOMER BELNET GTS #bru-par_iMINDS_iMINDS-GTS_15008 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id-range>1125-1174</vlan-id-range><family><ccc>
-                    </ccc></family></unit><unit><name>1175</name><description>SRV_L2CIRCUIT CUSTOMER BELNET GTS #ams-bru_FED4FIRE_GTS_9928774 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1175</vlan-id><family><ccc>
-                    </ccc></family></unit><unit><name>1176</name><description>SRV_L2CIRCUIT CUSTOMER BELNET GTS #ams-bru_FED4FIRE_GTS_9951467 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1176</vlan-id><family><ccc>
-                    </ccc></family></unit></interface><interface><name>ge-0/2/2</name><description>PHY CUSTOMER BELNET SRF9927423 | BELNET IMINDS_IC_GEANT_2</description><flexible-vlan-tagging/><mtu>9192</mtu><encapsulation>flexible-ethernet-services</encapsulation><unit><name>197</name><description>SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_OFELIA_Belnet-RedIRIS_14001 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>197</vlan-id><family><ccc>
-                    </ccc></family></unit><unit><name>705</name><description>SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-ath_Fed4FIRE_BELNET-GRNET_14016 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>705</vlan-id><family><ccc>
-                    </ccc></family></unit><unit><name>1001</name><description>SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_Fed4FIRE_BELNET-RedIRIS_14010 |</description><encapsulation>vlan-ccc</encapsulation><vlan-tags><outer>1001</outer></vlan-tags><input-vlan-map><swap/><vlan-id>186</vlan-id></input-vlan-map></unit><unit><name>1002</name><description>SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_Fed4FIRE_BELNET-RedIRIS_14011 |</description><encapsulation>vlan-ccc</encapsulation><vlan-tags><outer>1002</outer></vlan-tags><input-vlan-map><swap/><vlan-id>187</vlan-id></input-vlan-map></unit><unit><name>1003</name><description>SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_Fed4FIRE_BELNET-RedIRIS_14012 |</description><encapsulation>vlan-ccc</encapsulation><vlan-tags><outer>1003</outer></vlan-tags><input-vlan-map><swap/><vlan-id>188</vlan-id></input-vlan-map></unit><unit><name>1004</name><description>SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_Fed4FIRE_BELNET-RedIRIS_14013 |</description><encapsulation>vlan-ccc</encapsulation><vlan-tags><outer>1004</outer></vlan-tags><input-vlan-map><swap/><vlan-id>189</vlan-id></input-vlan-map></unit><unit><name>1005</name><description>SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mar_Fed4FIRE_BELNET-RedIRIS_14014 |</description><encapsulation>vlan-ccc</encapsulation><vlan-tags><outer>1005</outer></vlan-tags><input-vlan-map><swap/><vlan-id>190</vlan-id></input-vlan-map></unit><unit><name>1006</name><description>SRV_L2CIRCUIT CUSTOMER BELNET GRNET #bru-ath_Fed4FIRE_BELNET-GRnet_14015 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1006</vlan-id><family><ccc>
-                    </ccc></family></unit><unit><name>1007</name><description>SRV_L2CIRCUIT CUSTOMER BELNET JANET #bru-lon_Fed4FIRE_BELNET-JANET_14023 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1007</vlan-id><family><ccc>
-                    </ccc></family></unit><unit><name>1008</name><description>SRV_L2CIRCUIT CUSTOMER BELNET RNP #bru-par_IMINDS_Belnet-RNP_1505 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id>1008</vlan-id><family><ccc>
-                    </ccc></family></unit><unit><name>1290</name><description>SRV_L2CIRCUIT CUSTOMER BELNET RENATER #bru-gen_IMINDS_IMINDS-RENATER_16023 |</description><encapsulation>vlan-ccc</encapsulation><vlan-id-range>1290-1294</vlan-id-range></unit></interface><interface><name>ge-0/2/3</name><description>PHY RESERVED|Reserved for GCS Testing</description><no-traps/><flexible-vlan-tagging/><encapsulation>flexible-ethernet-services</encapsulation></interface><interface><name>ge-0/2/4</name><description>PHY SPARE</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 | was  Facebook Voyager Brussels Management int. - removed after 21/04/2017</description><disable/><unit><name>0</name><family><inet><filter><input-list>INTERNAL_HEAD_IN</input-list><input-list>INTERNAL_TAIL_IN</input-list><output-list>INTERNAL_HEAD_OUT</output-list><output-list>GE0-2-8_MIDDLE_OUT</output-list><output-list>INTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.108.9/30</name></address></inet><iso>
-                    </iso></family></unit></interface><interface><name>ge-0/2/9</name><description>PHY SPARE</description><disable/><unit inactive="inactive"><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS VLAN0 |#TEMP_INTERNET_ACCESS-mx2.bru.be</description><family inactive="inactive"><inet><filter><input-list>PROTECTED_EXTERNAL_HEAD_IN</input-list><input-list>GE0-2-9_MIDDLE_IN</input-list><input-list>PROTECTED_EXTERNAL_TAIL_IN</input-list><output-list>PROTECTED_EXTERNAL_HEAD_OUT</output-list><output-list>GE0-2-9_MIDDLE_OUT</output-list><output-list>PROTECTED_EXTERNAL_TAIL_OUT</output-list></filter><address><name>62.40.114.225/29</name></address></inet><iso>
-                    </iso></family></unit></interface><interface><name>ge-0/3/0</name><description>PHY INFRASTRUCTURE ACCESS INFINERA SRF9919795 | BRU01-DTNX10-1 XCM2</description><unit><name>0</name><family><bridge><interface-mode>access</interface-mode><vlan-id>999</vlan-id></bridge></family></unit></interface><interface><name>ge-0/3/1</name><description>PHY INFRASTRUCTURE ACCESS IPCAMERA SRF0000001 | cam01 - RACK-BE-10</description><unit><name>0</name><family><bridge><interface-mode>access</interface-mode><vlan-id>170</vlan-id></bridge></family></unit></interface><interface inactive="inactive"><name>ge-0/3/2</name><description>PHY INFRASTRUCTURE ACCESS IPCAMERA SRF0000001 | cam02 - RACK-BE-11</description><unit><name>0</name><family><bridge><interface-mode>access</interface-mode><vlan-id>170</vlan-id></bridge></family></unit></interface><interface inactive="inactive"><name>ge-0/3/3</name><description>PHY INFRASTRUCTURE ACCESS IPCAMERA SRF0000001 | cam03 - RACK-BE-12</description><unit><name>0</name><family><bridge><interface-mode>access</interface-mode><vlan-id>170</vlan-id></bridge></family></unit></interface><interface inactive="inactive"><name>ge-0/3/4</name><description>PHY INFRASTRUCTURE ACCESS IPCAMERA SRF0000001 | cam04 - RACK-BE-13</description><unit><name>0</name><family><bridge><interface-mode>access</interface-mode><vlan-id>170</vlan-id></bridge></family></unit></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>xe-1/0/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | ams-bru</description><framing><lan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae1</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/0/1</name><description>PHY CUSTOMER BELNET SRF9924351 | bru-lon_IX_BELNET-LON_13019</description><mtu>9192</mtu><encapsulation>ethernet-ccc</encapsulation><unit><name>0</name><description>SRV_L2CIRCUIT CUSTOMER BELNET BELNET #bru-lon_IX_BELNET-LON_13019 |</description><family><ccc>
-                    </ccc></family></unit></interface><interface><name>xe-1/1/0</name><description>PHY INFRASTRUCTURE BACKBONE P_AE1 SRF0000001 | ams-bru</description><framing><lan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae1</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-1/1/1</name><description>PHY INFRASTRUCTURE BACKBONE P_AE0 SRF0000001 |</description><framing><lan-phy/></framing><gigether-options><ieee-802.3ad><bundle>ae0</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 CUSTOMER BELNET SRF9924365 P_AE12 | BELNET 2</description><gigether-options><ieee-802.3ad><bundle>ae12</bundle></ieee-802.3ad></gigether-options></interface><interface><name>xe-2/0/1</name><description>PHY SPARE</description><disable/></interface><interface><name>xe-2/1/0</name><description>PHY RESERVED |to RT1 xe-0/1/0</description><undocumented><enable/></undocumented></interface><interface><name>xe-2/1/1</name><description>PHY RESERVED |to RT2 xe-0/1/0</description><undocumented><enable/></undocumented></interface><interface><name>ae0</name><description>LAG INFRASTRUCTURE BACKBONE SRF0000001 | bru-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.20</local-address></bfd-liveness-detection><minimum-links>2</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRU_LON_IPTRUNK | BRU-LON |  </description><family><inet><accounting><source-class-usage><input/></source-class-usage></accounting><mtu>9100</mtu><filter><input><filter-name>bone-in</filter-name></input><output><filter-name>bone-out</filter-name></output></filter><address><name>62.40.98.168/31</name></address></inet><iso>
-                    </iso><inet6><mtu>9100</mtu><filter><input><filter-name>bone6-in</filter-name></input><output><filter-name>bone6-out</filter-name></output></filter><address><name>2001:798:cc:2a01:1e01::a/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae1</name><description>LAG INFRASTRUCTURE BACKBONE SRF0000001 | ams-bru</description><mtu>9192</mtu><aggregated-ether-options><bfd-liveness-detection><minimum-interval>3000</minimum-interval><neighbor>62.40.97.11</neighbor><local-address>62.40.96.20</local-address></bfd-liveness-detection><minimum-links>2</minimum-links><lacp><active/><periodic>fast</periodic></lacp></aggregated-ether-options><unit><name>0</name><description>SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS_BRU_IPTRUNK | AMS-BRU |  </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.138/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:2b01:2201::1/126</name></address></inet6><mpls><maximum-labels>5</maximum-labels></mpls></family></unit></interface><interface><name>ae12</name><description>LAG CUSTOMER BELNET SRF9924365 | BELNET</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>2</name><description>SRV_GLOBAL CUSTOMER BELNET #BELNET_AP1 | ASN2611 | </description><vlan-id>2</vlan-id><family><inet><accounting><destination-class-usage/></accounting><filter><input><filter-name>BELNE-in</filter-name></input><output><filter-name>BELNE-out</filter-name></output></filter><address><name>62.40.124.161/30</name></address></inet><iso>
-                    </iso><inet6><filter><input><filter-name>BELNE6-in</filter-name></input><output><filter-name>BELNE6-out</filter-name></output></filter><address><name>2001:798:22:10aa::5/126</name></address></inet6></family></unit><unit inactive="inactive"><name>3</name><description>SRV_MDVPN CUSTOMER BELNET #belnet-ap1-mdvpn-coc | MD VPN CoC - NREN</description><vlan-id>3</vlan-id><family inactive="inactive"><inet><mtu>9000</mtu><address><name>62.40.102.28/31</name></address></inet><mpls>
-                    </mpls></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.121/32</name></address></inet></family></unit></interface><interface><name>irb</name><unit><name>170</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS #ipcamera-bru-be |</description><family><inet><address><name>62.40.115.73/29</name></address><address><name>62.40.117.33/29</name></address></inet><inet6><address><name>2001:798:ee:b::1/64</name></address></inet6></family></unit><unit><name>999</name><description>SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-bru-be-mgmt-vrf-vlan999</description><family><inet><address><name>10.0.13.100/24</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.20/32</name></address></inet><iso><address><name>49.51e5.0001.0620.4009.6020.00</name></address></iso><inet6><filter><input><filter-name>ROUTER_access_V6</filter-name></input></filter><address><name>2001:798:2b:20ff::2/128</name></address></inet6></family></unit></interface></interfaces><snmp><location>Brussels, BE ##LOC  50 51 25.21 N 4 24 41.65 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>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.20</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.20</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.20</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>route-from-BELNET</name><prefix-list-item><name>77.72.224.0/21</name></prefix-list-item><prefix-list-item><name>85.91.160.0/19</name></prefix-list-item><prefix-list-item><name>91.199.15.0/24</name></prefix-list-item><prefix-list-item><name>91.209.236.0/24</name></prefix-list-item><prefix-list-item><name>91.220.191.0/24</name></prefix-list-item><prefix-list-item><name>91.223.21.0/24</name></prefix-list-item><prefix-list-item><name>91.241.30.0/24</name></prefix-list-item><prefix-list-item><name>95.130.40.0/21</name></prefix-list-item><prefix-list-item><name>130.104.0.0/16</name></prefix-list-item><prefix-list-item><name>134.58.0.0/16</name></prefix-list-item><prefix-list-item><name>134.184.0.0/16</name></prefix-list-item><prefix-list-item><name>138.48.0.0/16</name></prefix-list-item><prefix-list-item><name>139.165.0.0/16</name></prefix-list-item><prefix-list-item><name>139.191.0.0/16</name></prefix-list-item><prefix-list-item><name>139.191.96.0/20</name></prefix-list-item><prefix-list-item><name>139.191.112.0/20</name></prefix-list-item><prefix-list-item><name>139.191.192.0/20</name></prefix-list-item><prefix-list-item><name>143.129.0.0/16</name></prefix-list-item><prefix-list-item><name>143.169.0.0/16</name></prefix-list-item><prefix-list-item><name>144.248.0.0/16</name></prefix-list-item><prefix-list-item><name>146.103.0.0/16</name></prefix-list-item><prefix-list-item><name>146.175.0.0/16</name></prefix-list-item><prefix-list-item><name>149.126.56.0/21</name></prefix-list-item><prefix-list-item><name>157.193.0.0/16</name></prefix-list-item><prefix-list-item><name>164.15.0.0/16</name></prefix-list-item><prefix-list-item><name>185.30.252.0/22</name></prefix-list-item><prefix-list-item><name>185.36.4.0/24</name></prefix-list-item><prefix-list-item><name>185.36.5.0/24</name></prefix-list-item><prefix-list-item><name>185.36.6.0/24</name></prefix-list-item><prefix-list-item><name>185.36.7.0/24</name></prefix-list-item><prefix-list-item><name>185.42.136.0/22</name></prefix-list-item><prefix-list-item><name>185.42.136.0/23</name></prefix-list-item><prefix-list-item><name>185.119.156.0/22</name></prefix-list-item><prefix-list-item><name>185.122.248.0/22</name></prefix-list-item><prefix-list-item><name>185.122.248.0/23</name></prefix-list-item><prefix-list-item><name>185.134.4.0/22</name></prefix-list-item><prefix-list-item><name>185.134.24.0/22</name></prefix-list-item><prefix-list-item><name>185.134.24.0/24</name></prefix-list-item><prefix-list-item><name>185.138.96.0/23</name></prefix-list-item><prefix-list-item><name>185.138.98.0/23</name></prefix-list-item><prefix-list-item><name>185.153.40.0/22</name></prefix-list-item><prefix-list-item><name>185.153.68.0/22</name></prefix-list-item><prefix-list-item><name>192.36.106.0/24</name></prefix-list-item><prefix-list-item><name>192.36.108.0/24</name></prefix-list-item><prefix-list-item><name>192.36.144.0/24</name></prefix-list-item><prefix-list-item><name>192.36.148.0/23</name></prefix-list-item><prefix-list-item><name>192.36.148.0/24</name></prefix-list-item><prefix-list-item><name>192.36.149.0/24</name></prefix-list-item><prefix-list-item><name>192.41.140.0/24</name></prefix-list-item><prefix-list-item><name>192.71.53.0/24</name></prefix-list-item><prefix-list-item><name>192.71.80.0/24</name></prefix-list-item><prefix-list-item><name>192.124.39.0/24</name></prefix-list-item><prefix-list-item><name>192.135.167.0/24</name></prefix-list-item><prefix-list-item><name>192.135.168.0/24</name></prefix-list-item><prefix-list-item><name>192.156.132.0/24</name></prefix-list-item><prefix-list-item><name>193.9.8.0/22</name></prefix-list-item><prefix-list-item><name>193.53.3.0/24</name></prefix-list-item><prefix-list-item><name>193.53.34.0/24</name></prefix-list-item><prefix-list-item><name>193.53.113.0/24</name></prefix-list-item><prefix-list-item><name>193.53.114.0/23</name></prefix-list-item><prefix-list-item><name>193.53.116.0/22</name></prefix-list-item><prefix-list-item><name>193.53.120.0/22</name></prefix-list-item><prefix-list-item><name>193.53.124.0/24</name></prefix-list-item><prefix-list-item><name>193.56.76.0/24</name></prefix-list-item><prefix-list-item><name>193.58.148.0/23</name></prefix-list-item><prefix-list-item><name>193.58.158.0/24</name></prefix-list-item><prefix-list-item><name>193.58.159.0/24</name></prefix-list-item><prefix-list-item><name>193.58.172.0/24</name></prefix-list-item><prefix-list-item><name>193.84.84.0/24</name></prefix-list-item><prefix-list-item><name>193.109.126.0/24</name></prefix-list-item><prefix-list-item><name>193.168.148.0/22</name></prefix-list-item><prefix-list-item><name>193.190.0.0/15</name></prefix-list-item><prefix-list-item><name>193.190.0.0/16</name></prefix-list-item><prefix-list-item><name>193.190.197.0/24</name></prefix-list-item><prefix-list-item><name>193.191.0.0/16</name></prefix-list-item><prefix-list-item><name>193.191.171.0/24</name></prefix-list-item><prefix-list-item><name>193.191.192.0/19</name></prefix-list-item><prefix-list-item><name>193.191.240.0/20</name></prefix-list-item><prefix-list-item><name>194.0.6.0/24</name></prefix-list-item><prefix-list-item><name>194.0.37.0/24</name></prefix-list-item><prefix-list-item><name>194.0.43.0/24</name></prefix-list-item><prefix-list-item><name>194.0.44.0/24</name></prefix-list-item><prefix-list-item><name>194.8.52.0/24</name></prefix-list-item><prefix-list-item><name>194.58.192.0/22</name></prefix-list-item><prefix-list-item><name>194.58.192.0/24</name></prefix-list-item><prefix-list-item><name>194.58.193.0/24</name></prefix-list-item><prefix-list-item><name>194.58.194.0/23</name></prefix-list-item><prefix-list-item><name>194.58.194.0/24</name></prefix-list-item><prefix-list-item><name>194.58.195.0/24</name></prefix-list-item><prefix-list-item><name>194.58.196.0/24</name></prefix-list-item><prefix-list-item><name>194.58.197.0/24</name></prefix-list-item><prefix-list-item><name>194.68.128.0/24</name></prefix-list-item><prefix-list-item><name>194.68.132.0/24</name></prefix-list-item><prefix-list-item><name>194.110.151.0/24</name></prefix-list-item><prefix-list-item><name>194.146.105.0/24</name></prefix-list-item><prefix-list-item><name>194.146.106.0/23</name></prefix-list-item><prefix-list-item><name>194.146.106.0/24</name></prefix-list-item><prefix-list-item><name>194.146.107.0/24</name></prefix-list-item><prefix-list-item><name>194.146.108.0/24</name></prefix-list-item><prefix-list-item><name>195.22.138.0/24</name></prefix-list-item><prefix-list-item><name>195.62.68.0/23</name></prefix-list-item><prefix-list-item><name>195.177.246.0/23</name></prefix-list-item><prefix-list-item><name>195.234.53.0/24</name></prefix-list-item><prefix-list-item><name>195.234.186.0/24</name></prefix-list-item><prefix-list-item><name>195.244.160.0/19</name></prefix-list-item><prefix-list-item><name>213.32.232.0/21</name></prefix-list-item></prefix-list><prefix-list><name>route-from-BELNET-v6</name><prefix-list-item><name>2001:678:9::/48</name></prefix-list-item><prefix-list-item><name>2001:678:64::/48</name></prefix-list-item><prefix-list-item><name>2001:678:68::/48</name></prefix-list-item><prefix-list-item><name>2001:678:6c::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:40::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:9c::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1010::/47</name></prefix-list-item><prefix-list-item><name>2001:67c:1010::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1011::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a00::/42</name></prefix-list-item><prefix-list-item><name>2001:67c:1a00::/45</name></prefix-list-item><prefix-list-item><name>2001:67c:1a00::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a01::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a02::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a03::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a04::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a05::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a06::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a07::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a08::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a09::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a0a::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a0b::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a0c::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a0d::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a0e::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a0f::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a10::/45</name></prefix-list-item><prefix-list-item><name>2001:67c:1a10::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a11::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a12::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a13::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a14::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a15::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a16::/48</name></prefix-list-item><prefix-list-item><name>2001:67c:1a17::/48</name></prefix-list-item><prefix-list-item><name>2001:6a8::/32</name></prefix-list-item><prefix-list-item><name>2001:6a8:8a00::/48</name></prefix-list-item><prefix-list-item><name>2001:6a8:9200::/48</name></prefix-list-item><prefix-list-item><name>2001:6a8:a001::/48</name></prefix-list-item><prefix-list-item><name>2001:6a8:be00::/48</name></prefix-list-item><prefix-list-item><name>2001:7fe::/32</name></prefix-list-item><prefix-list-item><name>2001:7fe::/33</name></prefix-list-item><prefix-list-item><name>2a01:3f0::/29</name></prefix-list-item><prefix-list-item><name>2a01:3f0::/32</name></prefix-list-item><prefix-list-item><name>2a01:3f1::/38</name></prefix-list-item><prefix-list-item><name>2a01:3f1:400::/38</name></prefix-list-item><prefix-list-item><name>2a01:3f1:800::/38</name></prefix-list-item><prefix-list-item><name>2a01:3f1:5000::/38</name></prefix-list-item><prefix-list-item><name>2a01:3f1:8000::/38</name></prefix-list-item><prefix-list-item><name>2a01:3f1:a000::/38</name></prefix-list-item><prefix-list-item><name>2a01:3f1:c000::/38</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f077::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f078::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f079::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f080::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f081::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f082::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f083::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f084::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f085::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f086::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f087::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f088::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f089::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f090::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f091::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f092::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f093::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f094::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f095::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f096::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f097::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f098::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f099::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f100::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f101::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f102::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f103::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f104::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f105::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f106::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f107::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f108::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f109::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f110::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f111::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f112::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f113::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f114::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f115::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f116::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f117::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f118::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f119::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f120::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f121::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f122::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f123::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f124::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f125::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f126::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f127::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f128::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f129::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f130::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f131::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f132::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f133::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f134::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f135::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f136::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f137::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f138::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f139::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f140::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f141::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f142::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f143::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f144::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f145::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f146::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f147::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f148::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f149::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f150::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f151::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f152::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f153::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f154::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f155::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:f220::/48</name></prefix-list-item><prefix-list-item><name>2a01:3f1:ffff::/48</name></prefix-list-item><prefix-list-item><name>2a01:690::/29</name></prefix-list-item><prefix-list-item><name>2a01:690::/32</name></prefix-list-item><prefix-list-item><name>2a02:c8::/32</name></prefix-list-item><prefix-list-item><name>2a02:6e0::/48</name></prefix-list-item><prefix-list-item><name>2a02:2c40::/32</name></prefix-list-item><prefix-list-item><name>2a04:4720::/30</name></prefix-list-item><prefix-list-item><name>2a04:b5c0::/29</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><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><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>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>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>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>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>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>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-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>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-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>RE_BGP_inet</name><apply-path>protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>RE_BGP_inet6</name><apply-path>protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>IAS_BGP_inet</name><apply-path>routing-instances IAS protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>IAS_BGP_inet6</name><apply-path>routing-instances IAS protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>CLS_BGP_inet</name><apply-path>routing-instances CLS protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>CLS_BGP_inet6</name><apply-path>routing-instances CLS protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>IAS_DUMMY_BGP_inet</name><apply-path>routing-instances IAS_DUMMY protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>IAS_DUMMY_BGP_inet6</name><apply-path>routing-instances IAS_DUMMY protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>lhcone-l3vpn_BGP_inet</name><apply-path>routing-instances lhcone-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>lhcone-l3vpn_BGP_inet6</name><apply-path>routing-instances lhcone-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>taas-control_BGP_inet</name><apply-path>routing-instances taas-control protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>taas-control_BGP_inet6</name><apply-path>routing-instances taas-control protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>mgmt-l3vpn_BGP_inet</name><apply-path>routing-instances mgmt-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>mgmt-l3vpn_BGP_inet6</name><apply-path>routing-instances mgmt-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn_BGP_inet</name><apply-path>routing-instances mdvpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn_BGP_inet6</name><apply-path>routing-instances mdvpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn-nren-gn_BGP_inet</name><apply-path>routing-instances mdvpn-nren-gn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>mdvpn-nren-gn_BGP_inet6</name><apply-path>routing-instances mdvpn-nren-gn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>confine-l3vpn_BGP_inet</name><apply-path>routing-instances confine-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>confine-l3vpn_BGP_inet6</name><apply-path>routing-instances confine-l3vpn protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>VPN-PROXY_BGP_inet</name><apply-path>logical-systems VPN-PROXY protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>VPN-PROXY_BGP_inet6</name><apply-path>logical-systems VPN-PROXY protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</apply-path></prefix-list><prefix-list><name>VRR_BGP_inet</name><apply-path>logical-systems VRR protocols bgp group &lt;*&gt; neighbor &lt;*.*&gt;</apply-path></prefix-list><prefix-list><name>VRR_BGP_inet6</name><apply-path>logical-systems VRR protocols bgp group &lt;*&gt; neighbor &lt;*:*&gt;</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>space-local</name><prefix-list-item><name>127.0.0.1/32</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-VPN</name><prefix-list-item><name>62.40.104.2/32</name></prefix-list-item><prefix-list-item><name>193.63.211.189/32</name></prefix-list-item></prefix-list><prefix-list><name>GEANT-MSDP</name><apply-path>protocols msdp group &lt;*&gt; peer &lt;*&gt;</apply-path></prefix-list><prefix-list><name>GEANT-SNMP</name><apply-path>snmp community &lt;*&gt; clients &lt;*&gt;</apply-path></prefix-list><prefix-list><name>GEANT-LDP</name><apply-path>protocols l2circuit neighbor &lt;*&gt;</apply-path></prefix-list><prefix-list><name>DANTE-address-space</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>193.63.90.0/25</name></prefix-list-item><prefix-list-item><name>193.63.90.128/25</name></prefix-list-item><prefix-list-item><name>193.63.211.0/25</name></prefix-list-item><prefix-list-item><name>193.63.211.136/32</name></prefix-list-item></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 &lt;*&gt; address &lt;*.*&gt;</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 &lt;*.*&gt;</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>load-balance</name><then><load-balance><per-packet/></load-balance></then></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>ae12.2</interface></from><then><reject/></then></policy-statement><policy-statement><name>pim-import</name><from><interface>ae12.2</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-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-BELNET-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-BELNET-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-block</community-name></community><accept/></then></term><term><name>from-BELNET-V6-nren</name><from><prefix-list><name>route-from-BELNET-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-block</community-name></community><accept/></then></term><term><name>from-BELNET-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-from-BELNET-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-BELNET</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-BELNET-nren</name><from><prefix-list><name>route-from-BELNET</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-BELNET-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-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-from-mgmt-vrf</name><term><name>mgmt-routes</name><from><protocol>direct</protocol><protocol>static</protocol></from><then><community><add/><community-name>mgmt-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-into-mgmt-vrf</name><term><name>mgmt-routes</name><from><protocol>bgp</protocol><community>mgmt-vpn</community></from><then><accept/></then></term><term><name>default</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-BELNET-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-belnet-block</community></from><then><reject/></then></term><term><name>to-BELNET-V6-nren-general</name><from><family>inet6</family><community>geant-nrn</community><community>geant-peer-RE</community></from><then><accept/></then></term><term><name>to-BELNET-V6-nren-drop</name><then><reject/></then></term></policy-statement><policy-statement><name>ps-to-BELNET-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-belnet-block</community></from><then><reject/></then></term><term><name>to-BELNET-nren-general</name><from><community>geant-nrn</community><community>geant-peer-RE</community><community>geant-helix</community></from><then><accept/></then></term><term><name>to-BELNET-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><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>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-anycast</name><members>20965:0002</members></community><community><name>geant-belnet-block</name><members>64512:2611</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-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-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>mgmt-vpn</name><members>target:20965:999</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-FCCN</name><path>20965* 1930 .*</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-BELNET</name><path>20965* 2611 .*</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-BELNET</name><apply-groups>urpf-template</apply-groups></filter><filter><name>BELNE-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><name>62.40.124.162/32</name></source-address><source-address><name>193.191.0.11/32</name></source-address><source-address><name>193.191.0.173/32</name></source-address><destination-address><name>62.40.124.161/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.162/32</name></source-address><source-address><name>193.191.0.253/32</name></source-address><source-address><name>193.191.0.252/32</name></source-address><destination-address><name>62.40.114.33/32</name></destination-address><destination-address><name>62.40.124.161/32</name></destination-address><destination-address><name>62.40.114.41/32</name></destination-address><destination-address><name>62.40.124.201/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.162/32</name></source-address><source-address><name>193.191.0.253/32</name></source-address><destination-address><name>62.40.124.161/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.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>authorised-persons-accept</name><from><source-prefix-list><name>pref-list-router-access</name></source-prefix-list></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>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>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>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>RSVP-allow</name><from><protocol>rsvp</protocol></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><syslog/><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>BELNE-out</name><interface-specific/><term><name>DWS-out</name><from><dscp>32</dscp></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>default</name><then><accept/></then></term></filter><filter><name>urpf-filter-belnet</name><apply-groups>urpf-template</apply-groups></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>LAN-in</name><term><name>LAN-DWS-in</name><from><dscp>32</dscp></from><then><policer>pol-DWS-in</policer><count>dws-in</count><loss-priority>high</loss-priority><forwarding-class>best-effort</forwarding-class><accept/></then></term><term><name>LAN-LBE-in</name><from><dscp>8</dscp></from><then><count>lbe-in</count><accept/></then></term><term><name>default</name><then><accept/></then></term></filter><filter><name>LAN-out</name><term><name>default</name><then><accept/></then></term></filter><filter><name>laptop-in</name><term><name>laptop</name><from><source-address><name>62.40.126.58/32</name></source-address></from><then><accept/></then></term><term><name>default</name><then><discard>
-                            </discard></then></term></filter><filter><name>laptop-out</name><term><name>laptop</name><from><destination-address><name>62.40.126.58/32</name></destination-address></from><then><accept/></then></term><term><name>default</name><then><discard>
-                            </discard></then></term></filter><filter><name>VM-RANGE-VL112-IN</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><destination-prefix-list><name>INTERNAL-address-space</name></destination-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Outbound_Established</name><from><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><term><name>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>8080</port><port>27017</port></from><then><accept/></then></term><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>VM-RANGE-VL112-OUT</name><term><name>PROTECTED_EXTERNAL_TO_INTERNAL</name><from><source-prefix-list><name>EXTERNAL-address-space</name></source-prefix-list></from><then><policer>pol-rate-limiting</policer><next>term</next></then></term><term><name>Allow_Inbound_Established</name><from><tcp-established/></from><then><accept/></then></term><term><name>NOC-DANTE-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>VLAN-Access_Allow</name><from><port>22</port><port>80</port><port>443</port><port>8080</port><port>27017</port></from><then><accept/></then></term><term><name>GEANT-SRV-SSH_Access</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>VM-DRAC</name><term><name>block-snmp</name><from><port>snmp</port><port>snmptrap</port></from><then><discard>
-                            </discard></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>GE0-2-9_MIDDLE_IN</name><term><name>VLAN-Access_Allow</name><from><port>80</port><port>443</port><port>22</port></from><then><accept/></then></term><term><name>VPN-accept</name><from><destination-prefix-list><name>GEANT-VPN</name></destination-prefix-list></from><then><accept/></then></term></filter><filter><name>GE0-2-9_MIDDLE_OUT</name><term><name>VPN-accept</name><from><source-prefix-list><name>GEANT-VPN</name></source-prefix-list></from><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-address><name>116.89.161.11/32</name></source-address><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-address><name>116.89.161.11/32</name></source-address><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>4784</port><port>3784</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>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_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_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>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>GE0-2-8_MIDDLE_OUT</name><term><name>CH_accept</name><from><source-prefix-list><name>DANTE-address-space</name></source-prefix-list><port>8080</port></from><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>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></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>BELNE6-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:22:10aa::6/128</name></source-address><destination-address><name>2001:798:22:10aa::5/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><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><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>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></filter><filter><name>BELNE6-out</name><interface-specific/><term><name>count-ipv6</name><then><count>ipv6-counter</count><accept/></then></term></filter><filter><name>urpfv6-filter-BELNET</name><apply-groups>urpf-template</apply-groups></filter><filter><name>urpfv6-filter-belnet</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>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-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>lo0-flood</name><if-exceeding><bandwidth-limit>12m</bandwidth-limit><burst-size-limit>900k</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.20: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><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></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></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></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.20: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><route-distinguisher><rd-type>62.40.96.20: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></group></bgp></protocols></instance><instance><name>mgmt-l3vpn</name><description>L3 BGP/MPLS VPN for management</description><instance-type>vrf</instance-type><interface><name>irb.999</name></interface><route-distinguisher><rd-type>62.40.96.20:999</rd-type></route-distinguisher><vrf-import>ps-into-mgmt-vrf</vrf-import><vrf-export>ps-from-mgmt-vrf</vrf-export><vrf-target><community>target:20965:999</community></vrf-target><vrf-table-label>
-            </vrf-table-label><routing-options><rib><name>mgmt-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><static><route><name>10.0.13.1/32</name><next-hop>10.0.13.1</next-hop></route></static><autonomous-system><as-number>20965</as-number></autonomous-system></routing-options></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::172</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.42.254</next-hop><retain/><no-readvertise/></route><route><name>0.0.0.0/0</name><next-hop>83.97.89.57</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.20</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.20</local-address></session></group><group><name>routinator</name><session><name>83.97.94.109</name><port>8282</port><local-address>62.40.96.20</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.20</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>193.191.0.253</name><local-address>62.40.124.161</local-address></peer><peer><name>193.191.0.252</name><local-address>62.40.124.161</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.16</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.16</name></peer><peer><name>62.40.97.14</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>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>iGEANT</name><type>internal</type><local-address>62.40.96.20</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.16</name><description>mx1.lis.pt.geant.net</description></neighbor><neighbor><name>62.40.96.17</name><description>mx2.lis.pt.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.162</name><description>-- Peering with BELNET --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS</import><import>ps-RPKI-RE-NREN</import><import>ps-from-BELNET-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS</export><export>ps-to-BELNET-nren</export><peer-as>2611</peer-as></neighbor></group><group><name>iGEANT6</name><type>internal</type><local-address>2001:798:2b:20ff::2</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:2f:20ff::1</name><description>mx1.lis.pt.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: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:33:20ff::2</name><description>mx2.bra.sk.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:798:22:10aa::6</name><description>-- IPv6 Peering with BELNET --</description><accept-remote-nexthop/><out-delay>10</out-delay><import>ps-BOGONS-V6</import><import>ps-RPKI-RE-NREN</import><import>ps-from-BELNET-V6-nren</import><authentication-key>/* SECRET-DATA */</authentication-key><export>ps-BOGONS-V6</export><export>ps-to-BELNET-V6-nren</export><peer-as>2611</peer-as></neighbor></group><group><name>TOOLS</name><type>internal</type><description>PEERING WITH TOOLS</description><local-address>62.40.96.20</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.20</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.20</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.20</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:2b:20ff::2</local-address><family><inet6><unicast>
-                        </unicast><multicast>
-                        </multicast></inet6></family><authentication-key>/* SECRET-DATA */</authentication-key><cluster>62.40.96.20</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:2b:20ff::2</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.20</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>4620</ipv4-index><ipv6-index>6620</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>500</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>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>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.97.9</name></neighbor><neighbor><name>62.40.97.12</name></neighbor><neighbor><name>62.40.97.5</name><interface><name>xe-1/0/1.0</name><virtual-circuit-id>1586187</virtual-circuit-id><no-control-word/><mtu>9000</mtu><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/2.1007</name><virtual-circuit-id>14023</virtual-circuit-id><no-control-word/><mtu>9000</mtu><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/2.1100</name><virtual-circuit-id>160231</virtual-circuit-id><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.10</name></neighbor><neighbor><name>62.40.97.3</name></neighbor><neighbor><name>62.40.97.11</name><interface><name>ge-0/2/1.1175</name><virtual-circuit-id>99287741</virtual-circuit-id><no-control-word/><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/1.1025</name><virtual-circuit-id>15012</virtual-circuit-id><no-control-word/><encapsulation-type>ethernet</encapsulation-type><ignore-encapsulation-mismatch/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.13</name><interface><name>ge-0/2/1.1125</name><virtual-circuit-id>15008</virtual-circuit-id><no-control-word/><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/1.300</name><virtual-circuit-id>13012</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/2.1008</name><virtual-circuit-id>1505</virtual-circuit-id><description>bru-par_IMINDS_Belnet-RNP_1505</description><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/1.1176</name><virtual-circuit-id>99514671</virtual-circuit-id><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.97.14</name><interface><name>ge-0/2/2.1290</name><virtual-circuit-id>160231</virtual-circuit-id><no-control-word/><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.96.8</name></neighbor><neighbor><name>62.40.97.2</name></neighbor><neighbor><name>62.40.96.10</name></neighbor><neighbor><name>62.40.96.3</name></neighbor><neighbor><name>62.40.96.26</name></neighbor><neighbor><name>62.40.97.16</name></neighbor><neighbor><name>62.40.96.12</name><interface><name>ge-0/2/2.197</name><virtual-circuit-id>14001</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/2.1001</name><virtual-circuit-id>14010</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/2.1002</name><virtual-circuit-id>14011</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/2.1003</name><virtual-circuit-id>14012</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/2.1005</name><virtual-circuit-id>14014</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/2.1004</name><virtual-circuit-id>14013</virtual-circuit-id><ignore-mtu-mismatch/></interface></neighbor><neighbor><name>62.40.96.11</name><interface><name>ge-0/2/2.705</name><virtual-circuit-id>14016</virtual-circuit-id><ignore-mtu-mismatch/></interface><interface><name>ge-0/2/2.1006</name><virtual-circuit-id>13015</virtual-circuit-id><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>xe-0/0/1</name></interface><interface><name>xe-0/1/0</name></interface><interface><name>xe-1/1/1</name></interface><interface><name>xe-0/0/0</name></interface><interface><name>xe-1/0/0</name></interface><interface><name>xe-1/1/0</name></interface><interface><name>xe-0/1/1</name></interface><interface><name>ge-0/2/1</name></interface><interface><name>ge-0/2/2</name></interface><interface><name>xe-2/0/0</name></interface></lldp></protocols><bridge-domains><domain><name>IP_cameras</name><domain-type>bridge</domain-type><vlan-id>170</vlan-id><routing-interface>irb.170</routing-interface></domain><domain><name>mgmt-bridge</name><domain-type>bridge</domain-type><vlan-id>999</vlan-id><routing-interface>irb.999</routing-interface></domain><domain><name>vm-server-trunk</name><domain-type>bridge</domain-type><vlan-id>10</vlan-id><routing-interface>irb.10</routing-interface></domain></bridge-domains></configuration>
\ No newline at end of file
diff --git a/test/data/router-info.json b/test/data/router-info.json
index cb5ddc3b55b0e47a07d09dc100afbea0e6caba11..b022aaeac9509d17e9e3a0fede0f46c6c1b9fe73 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 2c85b248ab2f1f8b6d2f3c5c927e6f4df3bfc85e..03366d6b4f0154d1e591e790560fe98e9ced67c7 100644
--- a/test/test_general_poller_routes.py
+++ b/test/test_general_poller_routes.py
@@ -219,7 +219,6 @@ def test_services_snmp(client, service_type):
     ('geant_lambda', 'GEANT LAMBDA'),
     # ('gts', 'GTS'),  # these are non-monitored (TODO: make a flag?)
     ('md_vpn_native', 'MD-VPN (NATIVE)'),
-    ('md_vpn_proxy', 'MD-VPN (PROXY)'),
     ('l3_vpn', 'L3-VPN')
 ])
 def test_all_services_by_type(client, uri_type, expected_type):
diff --git a/test/test_mic_routes.py b/test/test_mic_routes.py
index e29b64702419cfdcc60d832e6d8fd91d234d0f10..a3b498f71d1ba922950fa2ebc9cbb17b61cbf83f 100644
--- a/test/test_mic_routes.py
+++ b/test/test_mic_routes.py
@@ -1,10 +1,8 @@
 import json
 
 import jsonschema
-import pytest
 
-from inventory_provider.routes.mic import SITES_LIST_SCHEMA, \
-    NODES_LIST_SCHEMA, INTERFACES_LIST_SCHEMA, IMPACT_SCHEMA
+from inventory_provider.routes.mic import ALL_DATA_SCHEMA
 
 DEFAULT_REQUEST_HEADERS = {
     "Content-type": "application/json",
@@ -12,43 +10,11 @@ DEFAULT_REQUEST_HEADERS = {
 }
 
 
-def test_get_sites(client, mocked_redis):
+def test_get_all_data(client, mocked_redis):
     rv = client.get(
-        '/mic/sites',
+        '/mic/all-data',
         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)
+    jsonschema.validate(response_data, ALL_DATA_SCHEMA)
diff --git a/test/test_msr_routes.py b/test/test_msr_routes.py
index 157dfd28fed90345d5cc5083c08bc016bcfae24c..7fd78dfb966443c3775436999ec441dbbc27e487 100644
--- a/test/test_msr_routes.py
+++ b/test/test_msr_routes.py
@@ -7,7 +7,7 @@ import pytest
 from inventory_provider.routes.msr import PEERING_LIST_SCHEMA, \
     PEERING_GROUP_LIST_SCHEMA, PEERING_ADDRESS_SERVICES_LIST, \
     SYSTEM_CORRELATION_SERVICES_LIST_SCHEMA, _get_services_for_address, \
-    MDVPN_LIST_SCHEMA, VPN_PROXY_LIST_SCHEMA, ASN_PEER_LIST_SCHEMA, \
+    MDVPN_LIST_SCHEMA, ASN_PEER_LIST_SCHEMA, \
     IP_SERVICES_LIST_SCHEMA, _dedupe
 from inventory_provider.routes.poller import SERVICES_LIST_SCHEMA
 from inventory_provider.tasks.common import _get_redis
@@ -41,7 +41,7 @@ def test_logical_system_peerings_all(client):
     assert all('logical-system' in p for p in response_data)
 
 
-@pytest.mark.parametrize('name', ['VRR', 'VPN-PROXY'])
+@pytest.mark.parametrize('name', ['VRR'])
 def test_logical_system_peerings_specific(client, name):
     rv = client.get(
         f'/msr/bgp/logical-system-peerings/{name}',
@@ -103,7 +103,7 @@ def test_group_peerings_404(client, name):
     assert rv.status_code == 404
 
 
-@pytest.mark.parametrize('name', ['PRACE-VPN', 'mdvpn'])
+@pytest.mark.parametrize('name', ['mdvpn'])
 def test_routing_instance_peerings_specific(client, name):
     rv = client.get(
         f'/msr/bgp/routing-instance-peerings/{name}',
@@ -338,18 +338,6 @@ def test_get_mdvpn_peerings(client, mocked_redis):
     assert response_data  # test data is non-empty
 
 
-def test_get_vpn_proxy_peerings(client, mocked_redis):
-    rv = client.get(
-        '/msr/vpn-proxy',
-        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, VPN_PROXY_LIST_SCHEMA)
-    assert response_data  # test data is non-empty
-
-
 @pytest.mark.parametrize('endpoint_variant', [
     "",  # default, no filter
     "/1853",
diff --git a/test/test_worker.py b/test/test_worker.py
index 0623bce630295a6b107c53268df56045d6b83627..b48432250be7e638eec052b010264fe6d96b1fad 100644
--- a/test/test_worker.py
+++ b/test/test_worker.py
@@ -500,7 +500,20 @@ def test_persist_ims_data(mocker, data_config, mocked_redis):
                     "id": "id1",
                     "name": "name1",
                     "service_type": "type1",
-                    "status": "operational"
+                    "status": "operational",
+                    "pop_name": "LOC A",
+                    "pop_abbreviation": "aaa",
+                    "related-services": [
+                        {
+                            "id": "sub_circuit_1",
+                            "name": "sub_circuit_1",
+                            "status": "operational",
+                            "sid": "SID-01",
+                            "service_type": "type a",
+                            "contacts": ["c1", "c2"],
+                            "planned_work_contacts": ["c1"]
+                        }
+                    ],
                 },
                 {
                     "equipment": "eq1",