diff --git a/Changelog.md b/Changelog.md index 43d7ee17ca70248c1309044be71ae8cc88e2a044..0f0fb1319c7dbec3f3bc9222a556a45df0f5c710 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. +## [0.5] - 2021-10-11 +- POL1-463: EUMETSAT multicast dashboards + ## [0.4] - 2021-08-24 - bugfix (POL1-492) diff --git a/brian_polling_manager/configuration.py b/brian_polling_manager/configuration.py index a200bb881182fd2d521b7474ca318054b207f18a..92a3ef1bd0928c67ba5d4012f866400e5b370476 100644 --- a/brian_polling_manager/configuration.py +++ b/brian_polling_manager/configuration.py @@ -36,12 +36,19 @@ _DEFAULT_CONFIG = { 'gws-direct-interface-check': { 'script': '/var/lib/sensu/bin/poll-gws-direct.sh', 'measurement': 'gwsd_counters', - 'command': '{script} {measurement} {nren} {isp} {hostname} {tag}' + 'command': '{script} --inventory http://localhost:18080' + ' {measurement} {nren} {isp} {hostname} {tag}' }, 'dscp32-service-check': { 'script': '/var/lib/sensu/bin/poll-gws-indirect.sh', 'measurement': 'dscp32_counters', 'command': '{script} {measurement} {service}' + }, + 'eumetsat-multicast-check': { + 'script': '/home/brian_checks/venv/eumetsat-multicast', + 'measurement': 'multicast', + 'command': '{script} --inventory http://localhost:18080' + ' --measurement {measurement} --hostname {hostname}' } }, 'statedir': '/tmp/', @@ -75,16 +82,21 @@ CONFIG_SCHEMA = { 'minItems': 1 }, 'api-key': {'type': 'string'}, - 'interface-check': {'$ref': '#/definitions/influx-check'}, + 'interface-check': + {'$ref': '#/definitions/influx-check'}, 'gws-direct-interface-check': {'$ref': '#/definitions/influx-check'}, - 'dscp32-service-check': {'$ref': '#/definitions/influx-check'}, + 'dscp32-service-check': + {'$ref': '#/definitions/influx-check'}, + 'eumetsat-multicast-check': + {'$ref': '#/definitions/influx-check'}, }, 'required': [ 'api-base', 'api-key', 'interface-check', 'gws-direct-interface-check', - 'dscp32-service-check'], + 'dscp32-service-check', + 'eumetsat-multicast-check'], 'additionalProperties': False }, 'statsd': { @@ -121,6 +133,7 @@ class State(object): GWS_INDIRECT = 'gws-indirect.json' INTERFACES = 'interfaces.json' STATE = 'state.json' + EUMET_MC = 'eumetsat-multicast.json' STATE_SCHEMA = { '$schema': 'http://json-schema.org/draft-07/schema#', @@ -138,7 +151,8 @@ class State(object): 'state': os.path.join(state_dir, State.STATE), 'interfaces': os.path.join(state_dir, State.INTERFACES), 'gws-direct': os.path.join(state_dir, State.GWS_DIRECT), - 'gws-indirect': os.path.join(state_dir, State.GWS_INDIRECT) + 'gws-indirect': os.path.join(state_dir, State.GWS_INDIRECT), + 'eumetsat-multicast': os.path.join(state_dir, State.EUMET_MC) } @staticmethod @@ -219,6 +233,19 @@ class State(object): new_services, inventory.GWS_INDIRECT_SCHEMA) + @property + def eumetsat_multicast(self) -> list: + return State._load_json( + self.cache_filenames['eumetsat-multicast'], + inventory.MULTICAST_SUBSCRIPTION_LIST_SCHEMA) + + @eumetsat_multicast.setter + def eumetsat_multicast(self, new_subscriptions): + State._save_json( + self.cache_filenames['eumetsat-multicast'], + new_subscriptions, + inventory.MULTICAST_SUBSCRIPTION_LIST_SCHEMA) + def _setup_logging(filename=None): """ diff --git a/brian_polling_manager/eumetsat_multicast.py b/brian_polling_manager/eumetsat_multicast.py new file mode 100644 index 0000000000000000000000000000000000000000..4bfdf497f747c0167b69ba81622ea2d6cd4c9ea8 --- /dev/null +++ b/brian_polling_manager/eumetsat_multicast.py @@ -0,0 +1,50 @@ +from brian_polling_manager import sensu + +_CHECK_PREFIX = 'eumetmc' + + +def load_eumetsat_multicast_checks(sensu_params): + def _is_eumetsat_multicast_check(check): + name = check['metadata']['name'] + return name.startswith(_CHECK_PREFIX) + ifc_checks = filter( + _is_eumetsat_multicast_check, sensu.load_all_checks(sensu_params)) + return {c['metadata']['name']: c for c in ifc_checks} + + +class EUMETSATMulticastHostCheck(sensu.AbstractCheck): + + def __init__(self, check_config, hostname): + super().__init__() + self.check_config = check_config + self.hostname = hostname + + @sensu.AbstractCheck.name.getter + def name(self): + return f'{_CHECK_PREFIX}-{self.hostname}' + + @sensu.AbstractCheck.command.getter + def command(self): + return self.check_config['command'].format( + script=self.check_config['script'], + measurement=self.check_config['measurement'], + hostname=self.hostname) + + @sensu.AbstractCheck.proxy_entity_name.getter + def proxy_entity_name(self): + return self.hostname + + +def refresh(sensu_params, subscriptions): + + # one check per unique host + all_routers = {x['router'] for x in subscriptions} + required_checks = [ + EUMETSATMulticastHostCheck( + sensu_params['eumetsat-multicast-check'], hostname) + for hostname in all_routers] + + return sensu.refresh( + sensu_params, + required_checks, + load_eumetsat_multicast_checks(sensu_params)) diff --git a/brian_polling_manager/gws_direct.py b/brian_polling_manager/gws_direct.py index 12a4f92350ccff5ec1b2f29e736388df2fa1e62f..63c4e064fd10e42e168cbe5c5b8267e77d34feca 100644 --- a/brian_polling_manager/gws_direct.py +++ b/brian_polling_manager/gws_direct.py @@ -1,10 +1,12 @@ from brian_polling_manager import sensu +_CHECK_PREFIX = 'gwsd' + def load_gws_direct_checks(sensu_params): def _is_gws_direct_check(check): name = check['metadata']['name'] - return name.startswith('gwsd') + return name.startswith(_CHECK_PREFIX) ifc_checks = filter( _is_gws_direct_check, sensu.load_all_checks(sensu_params)) return {c['metadata']['name']: c for c in ifc_checks} @@ -23,7 +25,7 @@ class GwSDirectInterfaceCheck(sensu.AbstractCheck): isp = isp.replace(' ', '_') tag = self.interface['tag'] tag = tag.replace(' ', '_') - return f'gwsd-{self.interface["nren"]}-{isp}-{tag}' + return f'{_CHECK_PREFIX}-{self.interface["nren"]}-{isp}-{tag}' @sensu.AbstractCheck.command.getter def command(self): diff --git a/brian_polling_manager/gws_indirect.py b/brian_polling_manager/gws_indirect.py index 64d2a57e25aef29505532fe32671e37ad6f7c101..540dc6e7966ee5d290b0febe9fd8403807c9d4b4 100644 --- a/brian_polling_manager/gws_indirect.py +++ b/brian_polling_manager/gws_indirect.py @@ -1,11 +1,13 @@ import re from brian_polling_manager import sensu +_CHECK_PREFIX = 'dscp32' + def load_dscp32_checks(sensu_params): def _is_dscp32_check(check): name = check['metadata']['name'] - return name.startswith('dscp32') + return name.startswith(_CHECK_PREFIX) ifc_checks = filter( _is_dscp32_check, sensu.load_all_checks(sensu_params)) return {c['metadata']['name']: c for c in ifc_checks} @@ -21,7 +23,7 @@ class DSCP32CountersCheck(sensu.AbstractCheck): @sensu.AbstractCheck.name.getter def name(self): name = re.sub(r'[\s_-]+', '_', self.service['name']) - return f'dscp32-{name}' + return f'{_CHECK_PREFIX}-{name}' @sensu.AbstractCheck.command.getter def command(self): diff --git a/brian_polling_manager/inventory.py b/brian_polling_manager/inventory.py index 5d118036f2002699866d11427d5036795f802df2..4b4594d22ce9556793c55a9b18be992c70b1495e 100644 --- a/brian_polling_manager/inventory.py +++ b/brian_polling_manager/inventory.py @@ -97,6 +97,27 @@ GWS_INDIRECT_SCHEMA = { } +# much less strict version of the actual schema +MULTICAST_SUBSCRIPTION_LIST_SCHEMA = { + '$schema': 'http://json-schema.org/draft-07/schema#', + + 'definitions': { + 'subscription': { + 'type': 'object', + 'properties': { + # we really only use this field + # don't depend strictly on unused data + 'router': {'type': 'string'} + }, + 'required': ['router'] + } + }, + + 'type': 'array', + 'items': {'$ref': '#/definitions/subscription'} +} + + def _pick_one(haystack): if not isinstance(haystack, (list, tuple, set)): haystack = [haystack] @@ -159,6 +180,19 @@ def load_gws_indirect_services(base_urls): 'poller/gws/indirect', base_urls, GWS_INDIRECT_SCHEMA) +def load_eumetsat_multicast_subscriptions(base_urls): + """ + Load /poller/eumetsat-multicast from inventory provider + + :param base_urls: inventory provider base api url, or a list of them + :return: a list of dicts, each with a 'router' key + """ + return _load_inventory_json( + 'poller/eumetsat-multicast', + base_urls, + MULTICAST_SUBSCRIPTION_LIST_SCHEMA) + + def last_update_timestamp(base_urls) -> float: try: r = requests.get( diff --git a/brian_polling_manager/main.py b/brian_polling_manager/main.py index a753961cd9aa60da479c218461dde27b6de08dda..90ba9f94c8841906efaa2f50bab5a7f4c518781e 100644 --- a/brian_polling_manager/main.py +++ b/brian_polling_manager/main.py @@ -30,7 +30,7 @@ import jsonschema from statsd import StatsClient from brian_polling_manager import inventory, configuration, \ - interfaces, gws_direct, gws_indirect, sensu + interfaces, gws_direct, gws_indirect, eumetsat_multicast, sensu logger = logging.getLogger(__name__) @@ -54,7 +54,8 @@ REFRESH_RESULT_SCHEMA = { 'properties': { 'interfaces': {'$ref': '#/definitions/refresh-result'}, 'gws_direct': {'$ref': '#/definitions/refresh-result'}, - 'gws_indirect': {'$ref': '#/definitions/refresh-result'} + 'gws_indirect': {'$ref': '#/definitions/refresh-result'}, + 'eumetsat_multicast': {'$ref': '#/definitions/refresh-result'}, }, 'required': ['interfaces'], 'additionalProperties': False @@ -85,11 +86,17 @@ def refresh(config, force=False): config['inventory']) state.gws_indirect = inventory.load_gws_indirect_services( config['inventory']) + state.eumetsat_multicast \ + = inventory.load_eumetsat_multicast_subscriptions( + config['inventory']) result = { 'interfaces': interfaces.refresh(config['sensu'], state.interfaces), 'gws_direct': gws_direct.refresh(config['sensu'], state.gws_direct), 'gws_indirect': gws_indirect.refresh( config['sensu'], state.gws_indirect), + 'eumetsat_multicast': eumetsat_multicast.refresh( + config['sensu'], state.eumetsat_multicast), + } jsonschema.validate(result, REFRESH_RESULT_SCHEMA) # sanity diff --git a/setup.py b/setup.py index 770234eac602ce417fe7afa2a3adb0ae35d815a7..bb76539a9652ce13ed2105f76e8a58349bba8985 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='brian-polling-manager', - version="0.4", + version="0.5", author='GEANT', author_email='swd@geant.org', description='service for managing BRIAN polling checks', diff --git a/test/conftest.py b/test/conftest.py index a2e99401dcc03df611c1d555c74562ffb496191b..529e19ac6ed0491320d3e91ab9b91f625794148f 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -36,20 +36,28 @@ def config(): 'interface-check': { 'script': '/var/lib/sensu/bin/counter2influx.sh', 'measurement': 'counters', - 'command': ('{script} {measurement} ' - '{community} {hostname} ' - '{interface} {ifIndex}'), + 'command': '{script} {measurement}' + ' {community} {hostname}' + ' {interface} {ifIndex}', }, 'gws-direct-interface-check': { 'script': '/var/lib/sensu/bin/poll-gws-direct.sh', 'measurement': 'gwsd_counters', - 'command': ('{script} {measurement} ' - '{nren} {isp} {hostname} {tag}') + 'command': '{script} {measurement}' + ' {nren} {isp} {hostname} {tag}' }, 'dscp32-service-check': { 'script': '/var/lib/sensu/bin/poll-gws-indirect.sh', 'measurement': 'dscp32_counters', 'command': '{script} {measurement} {service}' + }, + 'eumetsat-multicast-check': { + 'script': '/home/brian_checks/venv/eumetsat-multicast', + 'measurement': 'multicast', + 'command': '{script}' + ' --inventory http://localhost:18080' + ' --measurement {measurement}' + ' --hostname {hostname}' } }, 'statedir': state_dir_name, @@ -184,6 +192,11 @@ def mocked_inventory(): url=re.compile(r'.*inventory.+/poller/gws/indirect.*'), body=_load_test_data('gws-indirect.json')) + responses.add( + method=responses.GET, + url=re.compile(r'.*inventory.+/poller/eumetsat-multicast'), + body=_load_test_data('eumetsat-multicast.json')) + bogus_version = {'latch': {'timestamp': 10000 * random.random()}} # mocked api for returning all checks responses.add( diff --git a/test/data/eumetsat-multicast.json b/test/data/eumetsat-multicast.json new file mode 100644 index 0000000000000000000000000000000000000000..404cf6966902a5452eb3dc01cd03697a4903f233 --- /dev/null +++ b/test/data/eumetsat-multicast.json @@ -0,0 +1 @@ +[{"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx2.zag.hr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.ams.nl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.mad.es.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.sof.bg.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx2.lju.si.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.dub2.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx2.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.par.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx2.bru.be.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx2.ath.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.gen.ch.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.lis.pt.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.pra.cz.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.fra.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.bud.hu.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.dub.ie.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.mar.fr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx2.bra.sk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.ath2.gr.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.vie.at.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.buc.ro.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.lon2.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.mil2.it.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.ham.de.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.poz.pl.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.1.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.1", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.2.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.2", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.3.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.3", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.4.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.4", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.5.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.5", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.6.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.6", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.7.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.7", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.8.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.8", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.9.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.9", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.10.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.10", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.11.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.11", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.12.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.12", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.13.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.13", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.14.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.14", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.15.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.15", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.16.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.16", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.17.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.17", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.18.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.18", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.19.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.19", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.20.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.20", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.21.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.21", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.22.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.22", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.23.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.23", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.24.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.24", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.25.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.25", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.26.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.26", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.27.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.27", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.28.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.28", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.29.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.29", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.30.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.30", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.31.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.31", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.32.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.32", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.33.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.33", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.34.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.34", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.35.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.35", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.36.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.36", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.37.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.37", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.38.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.38", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.39.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.39", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.40.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.40", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.41.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.41", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.42.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.42", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.43.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.43", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.44.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.44", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.45.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.45", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.46.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.46", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.47.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.47", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.48.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.48", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.49.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.49", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.50.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.50", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.51.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.51", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.52.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.52", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.53.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.53", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.54.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.54", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.55.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.55", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.56.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.56", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.57.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.57", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.58.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.58", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.59.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.59", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.60.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.60", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.61.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.61", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.62.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.62", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.63.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.63", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.64.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.64", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.65.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.65", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.66.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.66", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.67.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.67", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.68.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.68", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.69.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.69", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.70.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.70", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.71.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.71", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.222.72.193.17.9.3.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.222.72", "endpoint": "193.17.9.3"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.1.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.1", "endpoint": "193.17.9.7"}, {"router": "mx1.lon.uk.geant.net", "oid": "1.3.6.1.2.1.83.1.1.2.1.16.232.223.223.22.193.17.9.7.255.255.255.255", "community": "0pBiFbD", "subscription": "232.223.223.22", "endpoint": "193.17.9.7"}] \ No newline at end of file