diff --git a/mapping_provider/api/map.py b/mapping_provider/api/map.py index 5e2ee9b5ab5bc21c2438af7c9a6d92bcfb868572..59f4ede7df4fe0809014dc8ffe225ae8ac46b3aa 100644 --- a/mapping_provider/api/map.py +++ b/mapping_provider/api/map.py @@ -76,44 +76,6 @@ INPROV_EQUIPMENT_LIST_SCHEMA = { 'items': {'$ref': '#/definitions/router'} } -# INPROV_SERVICE_LIST_SCHEMA = { -# '$schema': 'https://json-schema.org/draft/2020-12/schema', - -# 'definitions': { -# 'endpoint': { -# 'type': 'object', -# 'properties': { -# 'hostname': {'type': 'string'}, -# 'interface': {'type': 'string'}, -# }, -# }, -# 'service': { -# 'type': 'object', -# 'properties': { -# 'sid': {'type': 'string'}, -# 'name': {'type': 'string'}, -# 'type': {'type': 'string'}, -# 'endpoints': { -# 'type': 'array', -# 'items': {'$ref': '#/definitions/endpoint'}, -# 'minItems': 1, -# }, -# 'overlays': { -# 'type': 'object', 'properties': { -# 'speed': {'type': 'number'}, -# }, -# 'required': ['speed'], -# }, -# }, -# 'required': ['sid', 'name', 'type', 'endpoints', 'overlays'], -# }, -# }, - -# 'type': 'array', -# 'items': {'$ref': '#/definitions/service'} -# } - -INPROV_API_URL_TODO = 'https://test-inprov01.geant.org' @router.get("/pops") def get_pops() -> PopList: diff --git a/mapping_provider/backends/inventory.py b/mapping_provider/backends/inventory.py index 459af846cda2dae7a49812db120cb9136c4a59ae..cb90ebe0c6f8d2ec081b4aed1de9dc097084004b 100644 --- a/mapping_provider/backends/inventory.py +++ b/mapping_provider/backends/inventory.py @@ -11,9 +11,7 @@ from . import cache logger = logging.getLogger(__name__) -# INPROV_POLLER_INTERFACES_CACHE_FILENAME = 'inprov-poller-interfaces.json' REPORTING_SCID_CURRENT_CACHE_FILENAME = 'reporting-scid-current.json' -# INPROV_MAP_SERVICES_CACHE_FILENAME = 'inprov-map-services.json' INPROV_EQUIPMENT_CACHE_FILENAME = 'inprov-equipment.json' @@ -141,11 +139,6 @@ def _load_all_inventory(inventory_base_uri: str, reporting_base_uri: str) -> dic with concurrent.futures.ThreadPoolExecutor(max_workers=1) as executor: futures = [ - # executor.submit( - # _load_and_cache_json, - # key='poller-interfaces', - # url=f'{inventory_base_uri}/poller/interfaces', - # cache_filename=INPROV_POLLER_INTERFACES_CACHE_FILENAME), executor.submit( _load_and_cache_json, key='map-services', diff --git a/mapping_provider/backends/services.py b/mapping_provider/backends/services.py index b8f2cefb90b794535da04abbe5af1596d1dbf7cf..7e7f2a3cfae9156db094e8306d3beb51cf3439be 100644 --- a/mapping_provider/backends/services.py +++ b/mapping_provider/backends/services.py @@ -70,11 +70,8 @@ def _services(service_type: str | None = None) -> Generator[Service]: only return operational services that match the service type, if provided """ - # TOOD: maybe remove loading of inventory/poller/interfaces & /map/services try: - # inprov_map_services = cache.get(inventory.INPROV_MAP_SERVICES_CACHE_FILENAME) scid_current = cache.get(inventory.REPORTING_SCID_CURRENT_CACHE_FILENAME) - # poller_interfaces = cache.get(inventory.INPROV_POLLER_INTERFACES_CACHE_FILENAME) correlator_state = cache.get(correlator.CACHED_CORRELATOR_STATE_FILENAME) brian_rates = cache.get(brian.CACHED_BRIAN_SCID_RATES_FILENAME) equipment_list = cache.get(inventory.INPROV_EQUIPMENT_CACHE_FILENAME) diff --git a/test/conftest.py b/test/conftest.py index 6e7892ae85a98d26af90f34f5bf9ae9ec80a1ef2..eaf9eabf82bc5c059266e9239ef3141cc1e4cc59 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -58,10 +58,8 @@ def client(dummy_config_filename): # there's no rmq in the test config data, so cache won't be initialized cache.init(tmp_dir) - # cache.set(inventory.INPROV_MAP_SERVICES_CACHE_FILENAME, load_test_data('inprov-services.json')) cache.set(inventory.REPORTING_SCID_CURRENT_CACHE_FILENAME, load_test_data('scid-current.json')) cache.set(inventory.INPROV_EQUIPMENT_CACHE_FILENAME, load_test_data('inprov-equipment.json')) - # cache.set(inventory.INPROV_POLLER_INTERFACES_CACHE_FILENAME, load_test_data('poller-interfaces.json')) cache.set(correlator.CACHED_CORRELATOR_STATE_FILENAME, load_test_data('correlator-state.json')) cache.set(brian.CACHED_BRIAN_SCID_RATES_FILENAME, load_test_data('brian-scid-rates.json')) diff --git a/test/data/inprov-services.json b/test/data/inprov-services.json deleted file mode 100644 index b5d732248e1412c8515634f1ba5e554ea820a804..0000000000000000000000000000000000000000 --- a/test/data/inprov-services.json +++ /dev/null @@ -1,16278 +0,0 @@ -[ - { - "name": "SRX1-AMS-FXP0", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE", - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GS-01534", - "type": "CORPORATE" - }, - { - "name": "SRX1-AMS-TO-SURFNET-PRIMARY", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE", - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GS-00001", - "type": "CORPORATE" - }, - { - "name": "SRX-2 TO SWITCH CLUSTER GE-2/0/0", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GA-00707", - "type": "ETHERNET" - }, - { - "name": "FRA-PAR-SUPERPOP-QFX-2-GEANT", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT", - "PARIS", - "FRANKFURT", - "PARIS" - ], - "sid": "GS-00079", - "type": "GEANT - GBS" - }, - { - "name": "FRA-PAR-SUPERPOP-QFX-GEANT", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT", - "PARIS", - "FRANKFURT", - "PARIS" - ], - "sid": "GS-00078", - "type": "GEANT - GBS" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-027(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01207", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-034(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01213", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-006(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01214", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-018(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01215", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-001(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01216", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-010(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01217", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-041(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00076", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-050(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01220", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-029(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01221", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-011(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01222", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-022(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01223", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-003(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01224", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-042(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01225", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-025(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01226", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-033(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01227", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-044(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01228", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-063(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01229", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-057(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01230", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-006(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01231", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-020(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01232", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-040(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00077", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-039(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01234", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-008(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01235", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-005(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01236", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-036(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01237", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-024(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01238", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-004(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01240", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-019(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01241", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-052(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01242", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-030(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01243", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-043(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01244", - "type": "ETHERNET" - }, - { - "name": "PHY INFRASTRUCTURE | SURFNET SECONDARY", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01245", - "type": "ETHERNET" - }, - { - "name": "SRX2-AMS-TO-SURFNET-SECONDARY", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE", - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GS-00002", - "type": "CORPORATE" - }, - { - "name": "SRX2-AMS-FXP0", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE", - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GS-01749", - "type": "CORPORATE" - }, - { - "name": "SRX-2 TO SWITCH CLUSTER", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01246", - "type": "ETHERNET" - }, - { - "name": "PHY INFASTRUCTURE | CONNECTION TO SRX1", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01247", - "type": "ETHERNET" - }, - { - "name": "SRX2-SRX1-AMS-OFFICE", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE", - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GS-01750", - "type": "CORPORATE" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-014(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01251", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-019(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01252", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-004(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01253", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-017(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01254", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-006(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01255", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-013(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01256", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-024(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01257", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-016(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01258", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-023(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01259", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-020(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01260", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-027(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01261", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-026(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01262", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-010(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01264", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-030(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01265", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-012(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01266", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-025(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01267", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-029(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01268", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-022(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01269", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-005(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01270", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-009(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01271", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-015(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01272", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-008(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01273", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-021(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01274", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-007(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01275", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-018(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01276", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-1GBE-028(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01277", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-10GBE-001(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01278", - "type": "ETHERNET" - }, - { - "name": "AMSTERDAM GEANT OFFICE-AMSTERDAM GEANT OFFICE-10GBE-003(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GA-01279", - "type": "ETHERNET" - }, - { - "name": "PHY TO VIRGIN MEDIA NTU", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GA-01280", - "type": "ETHERNET" - }, - { - "name": "PHY CONNECTION TO SWITCH CLUSTER VME.0 - SWITCH CHASSIS 0 MGMT - PRIMARY", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GA-01281", - "type": "ETHERNET" - }, - { - "name": "SRX1-CAM-TO-SWITCHCLUSTER-VME0", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE", - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-01748", - "type": "CORPORATE" - }, - { - "name": "PHY TO SWITCH CLUSTER (GE-0/0/4)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GA-01282", - "type": "ETHERNET" - }, - { - "name": "PHY CONNECTION TO SRX2", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GA-01283", - "type": "ETHERNET" - }, - { - "name": "LON2-LON2-WP7T2SF-BMS7-JRA2T4-21089", - "overlays": { - "speed": 0 - }, - "pops": [ - "LONDON 2", - "LONDON 2", - "LONDON 2", - "LONDON 2" - ], - "sid": "GS-00739", - "type": "GEANT PLUS" - }, - { - "name": "LON2-LON2-WP7T2SF-BMS8-JRA2T4-21089", - "overlays": { - "speed": 0 - }, - "pops": [ - "LONDON 2", - "LONDON 2", - "LONDON 2", - "LONDON 2" - ], - "sid": "GS-00740", - "type": "GEANT PLUS" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-001(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01313", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-065(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01315", - "type": "ETHERNET" - }, - { - "name": "MX1.LON2-EX1.LON2-10GBE-001(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01317", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-060(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01318", - "type": "ETHERNET" - }, - { - "name": "LON2-PAR-SUPERPOP-GBS-LL2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01321", - "type": "ETHERNET" - }, - { - "name": "PAR-LON2-SUPERPOP-QFX-2-GEANT", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2", - "PARIS", - "LONDON 2", - "PARIS" - ], - "sid": "GS-00081", - "type": "GEANT - GBS" - }, - { - "name": "SINGAREN-GEO-UK-1-LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2", - "LONDON 2" - ], - "sid": "GA-02230", - "type": "CBL1" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-028(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01325", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-061(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01326", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-027(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01327", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-026(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01328", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-049(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-02284", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-030(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01330", - "type": "ETHERNET" - }, - { - "name": "FRA-LON2-SUPERPOP-QFX-GEANT", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2", - "LONDON 2", - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00076|GS00076", - "type": "GEANT - GBS" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-029(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01332", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-022(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01333", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-016(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01464", - "type": "ETHERNET" - }, - { - "name": "LON-LON2-GEANT2-SINGAREN-SINGAREN-17085", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON 2", - "LONDON 2", - "LONDON" - ], - "sid": "GS-00724", - "type": "GEANT PLUS" - }, - { - "name": "SINGAREN-02647", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON 2", - "LONDON 2", - "AMSTERDAM" - ], - "sid": "GS-02647", - "type": "GEANT PLUS" - }, - { - "name": "VIRGIN-MEDIA-EX1-LON2-TO-CAM-SRX-VLAN18", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00005", - "type": "CORPORATE" - }, - { - "name": "CORSA-MANAGEMENT-LON2-UK", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00110", - "type": "SERVER LINK" - }, - { - "name": "INFOBLOX-LON2-REPORTING-SERVER", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00202", - "type": "SERVER LINK" - }, - { - "name": "VIRGIN-MEDIA-EX1-LON2-TO-CAM-SRX-VLAN17", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00004", - "type": "CORPORATE" - }, - { - "name": "DRACS-LON2-UK", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00141", - "type": "SERVER LINK" - }, - { - "name": "FLOWMON-LON2-UK-MANAGEMENT", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00166", - "type": "SERVER LINK" - }, - { - "name": "ES-MICROSOFT-EXPRESSROUTE-LL2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-01347", - "type": "ETHERNET" - }, - { - "name": "RIGA-RIGA-1GBE-003(LAT)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "?" - ], - "sid": "GA-01367", - "type": "ETHERNET" - }, - { - "name": "BASNET-AP-LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-01370", - "type": "ETHERNET" - }, - { - "name": "POZNAN-POZNAN-10GBE-001(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-01372", - "type": "ETHERNET" - }, - { - "name": "POZNAN-POZNAN-10GBE-003(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-01373", - "type": "ETHERNET" - }, - { - "name": "POZNAN-POZNAN-10GBE-009(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-02137", - "type": "ETHERNET" - }, - { - "name": "POZNAN-POZNAN-10GBE-004(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-02139", - "type": "ETHERNET" - }, - { - "name": "POZNAN-POZNAN-10GBE-005(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-02138", - "type": "ETHERNET" - }, - { - "name": "BASNET-AP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GS-00434", - "type": "GEANT IP" - }, - { - "name": "PARIS-DTN-10G-1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01377", - "type": "ETHERNET" - }, - { - "name": "PARIS-DTN-100G-1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01379", - "type": "ETHERNET" - }, - { - "name": "PARIS-BMS-SRV4-10GBE-001", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01381", - "type": "ETHERNET" - }, - { - "name": "PARIS 007B-PARIS 007B-10GBE-006(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02193", - "type": "ETHERNET" - }, - { - "name": "RENATER GN2PLUS LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01385", - "type": "ETHERNET" - }, - { - "name": "PARIS 007B-PARIS 007B-10GBE-005(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02191", - "type": "ETHERNET" - }, - { - "name": "PARIS 007B-PARIS 007B-10GBE-012(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01391", - "type": "ETHERNET" - }, - { - "name": "PARIS 007B-PARIS 007B-10GBE-004(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02194", - "type": "ETHERNET" - }, - { - "name": "PARIS 007B-PARIS 007B-10GBE-011(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01393", - "type": "ETHERNET" - }, - { - "name": "PARIS 007B-PARIS 007B-10GBE-014(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01394", - "type": "ETHERNET" - }, - { - "name": "PARIS 007B-PARIS 007B-10GBE-003(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02192", - "type": "ETHERNET" - }, - { - "name": "PARIS-PSMP-MGMT (GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01397", - "type": "ETHERNET" - }, - { - "name": "HBKU COLT", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01398", - "type": "ETHERNET" - }, - { - "name": "PARIS 007B-PARIS 007B-10GBE-013(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01399", - "type": "ETHERNET" - }, - { - "name": "PARIS-GTS-BMS-1GBE-007(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01401", - "type": "ETHERNET" - }, - { - "name": "PARIS-GTS-VPLS-1GBE-006(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01411", - "type": "ETHERNET" - }, - { - "name": "FR-HBKU", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00879", - "type": "IP PEERING - R&E" - }, - { - "name": "AMS-PAR-INFINICORTEX-ESNET-RENATER-15030", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "PARIS", - "AMSTERDAM" - ], - "sid": "GS-00653", - "type": "GEANT PLUS" - }, - { - "name": "LON-PAR-GEANTOPEN-INTERNET2-HBKU-190092", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "PARIS", - "LONDON" - ], - "sid": "GS-00985", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "NORDUNET-GEO-LL", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GA-01447", - "type": "CBL1" - }, - { - "name": "100G TESTING FROM JODRELL BANK DTN SERVERS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01448", - "type": "ETHERNET" - }, - { - "name": "DTN-LON-100G-JBO-DATA", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00144", - "type": "SERVER LINK" - }, - { - "name": "LONDON-LONDON-100GBE-013(ETH)", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "LONDON", - "LONDON" - ], - "sid": "GA-01449", - "type": "ETHERNET" - }, - { - "name": "LONDON-LONDON-10GBE-019(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01451", - "type": "ETHERNET" - }, - { - "name": "PS-LON-UK-PSMP-BWCTL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON", - "LONDON", - "LONDON" - ], - "sid": "GS-00319", - "type": "SERVER LINK" - }, - { - "name": "UBUNTUNET LON GN+ LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01452", - "type": "ETHERNET" - }, - { - "name": "LONDON-LONDON-10GBE-038(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01454", - "type": "ETHERNET" - }, - { - "name": "LONDON-LONDON-10GBE-001(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01456", - "type": "ETHERNET" - }, - { - "name": "JISC GN+ 10GE LL 1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01457", - "type": "ETHERNET" - }, - { - "name": "HBKU-GEO-UK-1-LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GA-01458", - "type": "CBL1" - }, - { - "name": "LONDON-LONDON-10GBE-014(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01532", - "type": "ETHERNET" - }, - { - "name": "LONDON-LONDON-10GBE-007(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01460", - "type": "ETHERNET" - }, - { - "name": "PS-LON-UK-PSMP-BWCTL-LHCONE", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON", - "LONDON", - "LONDON" - ], - "sid": "GS-00320", - "type": "SERVER LINK" - }, - { - "name": "UK-PS-LHCONE-MGMT", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01462", - "type": "ETHERNET" - }, - { - "name": "PSMP-LHC-MANAGEMENT-LON-UK-VLAN0", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00359", - "type": "SERVER LINK" - }, - { - "name": "UBUNTUNET LON IP LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01463", - "type": "ETHERNET" - }, - { - "name": "LONDON-LONDON-1GBE-002(GEANT)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01468", - "type": "ETHERNET" - }, - { - "name": "LONDON-LONDON-1GBE-002(GEANT)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01470", - "type": "ETHERNET" - }, - { - "name": "SURF-AP2-LL2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "LONDON", - "PARIS" - ], - "sid": "GA-01477", - "type": "ETHERNET" - }, - { - "name": "WACREN-GEO-UK-1-LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON", - "LONDON", - "LONDON" - ], - "sid": "GA-01838", - "type": "CBL1" - }, - { - "name": "LONDON-LONDON-10GBE-022(ETH)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01478", - "type": "ETHERNET" - }, - { - "name": "LON-AMS-DTN-GENERATOR", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON", - "LONDON", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-00722", - "type": "GEANT PLUS" - }, - { - "name": "LON-BEIJING-LEASEDSPAN", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GA-01479", - "type": "ETHERNET" - }, - { - "name": "AARNET_GEO_UK_1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GA-01480", - "type": "ETHERNET" - }, - { - "name": "LON-DTN-100G-LL", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01465", - "type": "ETHERNET" - }, - { - "name": "NETHERLIGHT-GEO-UK-1-LL", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GA-01481", - "type": "CBL1" - }, - { - "name": "SURF-AP2-LL1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GA-01482", - "type": "ETHERNET" - }, - { - "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-2", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00964", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-LON-MISC-UBUNTUNET-CANARIE-170351", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00727", - "type": "GEANT PLUS" - }, - { - "name": "LON-PAR-GEANTOPEN-HBKU-INTERNET2-190091", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "LONDON", - "PARIS" - ], - "sid": "GS-00967", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-PAR-GEANTOPEN-NETHERLIGHT-QNREN-15032", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "PARIS" - ], - "sid": "GS-00972", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-LON-MISC-GEANT-INTERNET2-9940197", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "LONDON", - "LONDON" - ], - "sid": "GS-00726", - "type": "GEANT PLUS" - }, - { - "name": "DTN-LON-10G-DATA", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00146", - "type": "SERVER LINK" - }, - { - "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-1", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00963", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-LON-MISC-UBUNTUNET-INTERNET2-170341", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00729", - "type": "GEANT PLUS" - }, - { - "name": "AMS-LON-EXPRES-NETHERLIGHT-JISC-18009", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-00644", - "type": "GEANT PLUS" - }, - { - "name": "LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3151", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00976", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3140", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00975", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-PAR-CANARIE-CERN-15014", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "PARIS" - ], - "sid": "GS-00720", - "type": "GEANT PLUS" - }, - { - "name": "NORDUNET-LON-IPV6-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00842", - "type": "L3-VPN" - }, - { - "name": "NORDUNET-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00492", - "type": "GEANT IP" - }, - { - "name": "AMS-LON-JIVE-NETHERLIGHT-UBUNTUNET-12008", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-00645", - "type": "GEANT PLUS" - }, - { - "name": "UK-HBKU", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00907", - "type": "IP PEERING - R&E" - }, - { - "name": "LON-LON-SURF-AARNET-19097", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00721", - "type": "GEANT PLUS" - }, - { - "name": "NORDU-TO-WIX-2021", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "PARIS" - ], - "sid": "GS-00743", - "type": "GEANT PLUS" - }, - { - "name": "LON-LON-GEANTOPEN-NORDUNET-TENET-18075", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00978", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "NORDUNET-AP1-IPV4-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00841", - "type": "L3-VPN" - }, - { - "name": "LON-PAR-ESNET-UBUNTUNET-14020", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "PARIS" - ], - "sid": "GS-00737", - "type": "GEANT PLUS" - }, - { - "name": "LON-PAR-GEANTOPEN-INTERNET2-NETHERLIGHT-15034", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "PARIS" - ], - "sid": "GS-00968", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-LON-GEANTOPEN-NETHERLIGHT-WIX", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00973", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "UK-NORDUNET-IX-2603", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00944", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-3", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00965", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-LON-GEANTOPEN-NORDUNET-TEIN-17026", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00977", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-LON-GEANTOPEN-NORDUNET-INTERNET2-17022", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00974", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "UK-UBUNTUNET", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00909", - "type": "IP PEERING - R&E" - }, - { - "name": "PS-VIE-AT-MANAGEMENT", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "VIENNA", - "VIENNA", - "VIENNA" - ], - "sid": "GS-00357", - "type": "SERVER LINK" - }, - { - "name": "VIENNA-VIENNA-1GBE-001(GEANT)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01483", - "type": "ETHERNET" - }, - { - "name": "VIENNA-VIENNA-1GBE-006(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01485", - "type": "ETHERNET" - }, - { - "name": "VIENNA-VIENNA-1GBE-002(GEANT)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01486", - "type": "ETHERNET" - }, - { - "name": "VIENNA-VIENNA-10GBE-023(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-02147", - "type": "ETHERNET" - }, - { - "name": "GWS COLT LL1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01488", - "type": "ETHERNET" - }, - { - "name": "OWAMP-VIE-AT", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00271", - "type": "SERVER LINK" - }, - { - "name": "KVMOIP-VIE-AT", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00224", - "type": "SERVER LINK" - }, - { - "name": "HADES-VIE-AT-DRAC", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00198", - "type": "SERVER LINK" - }, - { - "name": "VIE-GROOVE-2-MANAGEMENT", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00383", - "type": "SERVER LINK" - }, - { - "name": "VIE-GROOVE-1-MANAGEMENT", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00381", - "type": "SERVER LINK" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-020(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01502", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-007(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01505", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-1GBE-022(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01506", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-1GBE-009(GEANT)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01508", - "type": "ETHERNET" - }, - { - "name": "LONDON 2-LONDON 2-1GBE-008(GEANT)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01512", - "type": "ETHERNET" - }, - { - "name": "RIGA-RIGA-10GBE-001(LAT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "?" - ], - "sid": "GA-01531", - "type": "ETHERNET" - }, - { - "name": "LON-MIL2-ASI-BSC-TO-FUCINO-UBUNTUNET-GARR-20007", - "overlays": { - "speed": 332859965440 - }, - "pops": [ - "LONDON", - "MILAN 2 CALDERA" - ], - "sid": "GS-00735", - "type": "GEANT PLUS" - }, - { - "name": "DTN-LON2-10G-DATA", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-02355", - "type": "SERVER LINK" - }, - { - "name": "FRA-PAR-RARE-RARE-21101", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PARIS", - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00705", - "type": "GEANT PLUS" - }, - { - "name": "AMS-PAR-RARE-RARE-21101", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PARIS", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-00656", - "type": "GEANT PLUS" - }, - { - "name": "SWITCH GN+ LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01541", - "type": "ETHERNET" - }, - { - "name": "GENEVA-GENEVA-10GBE-016(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-02134", - "type": "ETHERNET" - }, - { - "name": "GENEVA-GENEVA-1GBE-006(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "GENEVA", - "GENEVA" - ], - "sid": "GA-01543", - "type": "ETHERNET" - }, - { - "name": "GENEVA-GENEVA-1GBE-007(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01546", - "type": "ETHERNET" - }, - { - "name": "RENATER 100GB-LL4", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "GENEVA", - "GENEVA" - ], - "sid": "GA-01549", - "type": "ETHERNET" - }, - { - "name": "ARELION-RENAM-GWS-LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-02111", - "type": "ETHERNET" - }, - { - "name": "RARE EDGECORE WEDGE100BF-32X XE-1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-02127", - "type": "ETHERNET" - }, - { - "name": "BUDAPEST-BUDAPEST-10GBE-010(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-02128", - "type": "ETHERNET" - }, - { - "name": "BUDAPEST-BUDAPEST-10GBE-009(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-02126", - "type": "ETHERNET" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-079(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01652", - "type": "ETHERNET" - }, - { - "name": "PSMP-MANAGEMENT-LON2-UK", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2", - "LONDON 2", - "LONDON 2" - ], - "sid": "GS-00361", - "type": "SERVER LINK" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-078(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01653", - "type": "ETHERNET" - }, - { - "name": "UAT-PS-LON2-UK-BWCTL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2", - "LONDON 2", - "LONDON 2" - ], - "sid": "GS-00377", - "type": "SERVER LINK" - }, - { - "name": "LONDON 2 (SLOUGH)-LONDON 2 (SLOUGH)-10GBE-080(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01654", - "type": "ETHERNET" - }, - { - "name": "SRX1-CITY-HOUSE-WAN-GATEWAY", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-01744", - "type": "CORPORATE" - }, - { - "name": "SRX2-AMS-TO-FW-WAN", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GS-01746", - "type": "CORPORATE" - }, - { - "name": "CAM-CH-WAN-GATEWAY-2", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-01195", - "type": "CORPORATE" - }, - { - "name": "SRX1-AMS-TO-FW-WAN", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GS-01194", - "type": "CORPORATE" - }, - { - "name": "SRX1-CITY-HOUSE-NETWORK-INFRASTRUCTURE", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-01663", - "type": "CORPORATE" - }, - { - "name": "VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN18-CH", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-00003", - "type": "CORPORATE" - }, - { - "name": "VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN17-CH", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-01745", - "type": "CORPORATE" - }, - { - "name": "SRX1-SRX2-CH-OFFICE", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-01646", - "type": "CORPORATE" - }, - { - "name": "SRX2-AMS-INFRASTRUCTURE-MANAGEMENT", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GS-01747", - "type": "CORPORATE" - }, - { - "name": "SRX2-SRX1-CH-OFFICE", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-00448", - "type": "CORPORATE" - }, - { - "name": "CITY-HOUSE-NETWORK-INFRASTRUCTURE", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-00447", - "type": "CORPORATE" - }, - { - "name": "CITY-HOUSE-LAB-INFINERA-MGMT-NETWORK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-01212", - "type": "CORPORATE" - }, - { - "name": "SRX1-AMS-INFRASTRUCTURE-MANAGEMENT", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "AMSTERDAM GEANT OFFICE" - ], - "sid": "GS-00380", - "type": "CORPORATE" - }, - { - "name": "LON-LON2-GEANTOPEN-ASREN-ASREN-190491", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00984", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON2 EUNET OOB IP LINK (S00242664)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00405", - "type": "OOB IP LINK" - }, - { - "name": "LON-LON2-MISC-GEANT-INTERNET2-9940525", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON 2", - "LONDON 2", - "LONDON" - ], - "sid": "GS-00732", - "type": "GEANT PLUS" - }, - { - "name": "LISBON-LISBON-1GBE-004(ETH)", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LISBON" - ], - "sid": "GA-01656", - "type": "ETHERNET" - }, - { - "name": "PS-LIS-PT-IDRAC", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LISBON", - "LISBON", - "LISBON" - ], - "sid": "GS-00316", - "type": "SERVER LINK" - }, - { - "name": "BRA OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GS-00392", - "type": "OOB IP LINK" - }, - { - "name": "BUC OOB LINK", - "overlays": { - "speed": 10485760 - }, - "pops": [ - "BUCHAREST" - ], - "sid": "GS-00394", - "type": "OOB IP LINK" - }, - { - "name": "BUD OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "BUDAPEST", - "BUDAPEST" - ], - "sid": "GS-00396", - "type": "OOB IP LINK" - }, - { - "name": "DUB OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "DUBLIN CITY WEST" - ], - "sid": "GS-00397", - "type": "OOB IP LINK" - }, - { - "name": "GENEVA OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00400", - "type": "OOB IP LINK" - }, - { - "name": "KAU OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "KAUNAS" - ], - "sid": "GS-00402", - "type": "OOB IP LINK" - }, - { - "name": "LJU OOB IP LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LJUBLJANA 2" - ], - "sid": "GS-00404", - "type": "OOB IP LINK" - }, - { - "name": "MAD OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00407", - "type": "OOB IP LINK" - }, - { - "name": "RIG OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "RIGA" - ], - "sid": "GS-00415", - "type": "OOB IP LINK" - }, - { - "name": "ZAG OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00420", - "type": "OOB IP LINK" - }, - { - "name": "PS-LON2-UK-OWAMP-FPC2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00327", - "type": "SERVER LINK" - }, - { - "name": "LON-LON-GEANTOPEN-NORDUNET-WACREN-20041", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00979", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "PAR-FRA-DTN-GENERATOR", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PARIS", - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00745", - "type": "GEANT PLUS" - }, - { - "name": "DTN-PAR-10G-DATA", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-02375", - "type": "SERVER LINK" - }, - { - "name": "LON-LON-GEANTOPEN-AARNET-SINGAREN-CAE1-20044-VL3104", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00960", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LONDON-LONDON-10GBE-005(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01657", - "type": "ETHERNET" - }, - { - "name": "LON-LON-MISC-GEANT-INTERNET2-9940169", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00725", - "type": "GEANT PLUS" - }, - { - "name": "LONDON-LONDON-10GBE-026(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01658", - "type": "ETHERNET" - }, - { - "name": "PSMP-GN-MANAGEMENT-LON-UK-VLAN0", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00358", - "type": "SERVER LINK" - }, - { - "name": "LONDON-LONDON-10GBE-032(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01659", - "type": "ETHERNET" - }, - { - "name": "PSMP-LHC-OWD-LON-UK-VLAN0", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00360", - "type": "SERVER LINK" - }, - { - "name": "PSMP-GN-OWD-LON-UK.GEANT.ORG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00365", - "type": "SERVER LINK" - }, - { - "name": "GEN-GEN-GARR-CERNLIGHT-CERN-GARR-16034", - "overlays": { - "speed": 332859965440 - }, - "pops": [ - "GENEVA", - "GENEVA" - ], - "sid": "GS-00709", - "type": "GEANT PLUS" - }, - { - "name": "GEN-GEN-GARR-CERNLIGHT-CERN-GARR-16011", - "overlays": { - "speed": 332859965440 - }, - "pops": [ - "GENEVA", - "GENEVA" - ], - "sid": "GS-00708", - "type": "GEANT PLUS" - }, - { - "name": "BIL-GEN-REDIRIS-RARE", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "GENEVA", - "BILBAO" - ], - "sid": "GS-02288", - "type": "GEANT PLUS" - }, - { - "name": "AMS-GEN-CERN-RARE-123010", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "AMSTERDAM", - "GENEVA", - "AMSTERDAM" - ], - "sid": "GS-02262", - "type": "GEANT PLUS" - }, - { - "name": "SURF-GEO-FR-1-LL", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS", - "PARIS", - "PARIS" - ], - "sid": "GA-01819", - "type": "ETHERNET" - }, - { - "name": "LON-LON-UBUNTUNET-WACREN-20103", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00731", - "type": "GEANT PLUS" - }, - { - "name": "INFOBLOX-TRINZIC805-LON2-VLAN3007", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00204", - "type": "SERVER LINK" - }, - { - "name": "NORDUNET-JYV-EXPRESSROUTE-VLAN3902", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-01157", - "type": "EXPRESS ROUTE" - }, - { - "name": "NORDUNET-AALTO-EXPRESSROUTE-VLAN3906", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-01155", - "type": "EXPRESS ROUTE" - }, - { - "name": "NORDUNET-LTU-EXPRESSROUTE-VLAN3909", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-01153", - "type": "EXPRESS ROUTE" - }, - { - "name": "NORDUNET-HHU-EXPRESSROUTE-VLAN3910", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-01156", - "type": "EXPRESS ROUTE" - }, - { - "name": "NORDUNET-TUNI-EXPRESSROUTE-VLAN3912", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-01162", - "type": "EXPRESS ROUTE" - }, - { - "name": "BUD-BUD-KIFU-RARE-200100", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "BUDAPEST", - "BUDAPEST", - "BUDAPEST" - ], - "sid": "GS-00683", - "type": "GEANT PLUS" - }, - { - "name": "MAD-MAD-MGMT-LINK-2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-01660", - "type": "ETHERNET" - }, - { - "name": "MAD-MAD-MGMT-LINK-1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-01661", - "type": "ETHERNET" - }, - { - "name": "LON-LON-GEANTOPEN-AARNET-NETHERLIGHT-21003", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00284", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LIS-POR-IP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LISBON", - "LISBON", - "PORTO", - "PORTO" - ], - "sid": "GS-00800", - "type": "ETHERNET" - }, - { - "name": "AMS-LON-AARNET-SINGAREN-23049", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-02342", - "type": "GEANT PLUS" - }, - { - "name": "VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN19-CH", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "CAMBRIDGE CITY HOUSE" - ], - "sid": "GS-00516", - "type": "CORPORATE" - }, - { - "name": "AMS-POZ-RARE-P4-9951379", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "POZNAN 1", - "POZNAN 1", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-00661", - "type": "GEANT PLUS" - }, - { - "name": "BUD-POZ-RARE-P4-9951383", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "POZNAN 1", - "BUDAPEST", - "POZNAN 1", - "BUDAPEST" - ], - "sid": "GS-00685", - "type": "GEANT PLUS" - }, - { - "name": "AMS-PAR-LOFAR-RENATER-NETHERLIGHT-10001", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PARIS", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-00784", - "type": "GEANT - GBS" - }, - { - "name": "DASHBOARD-TEST-SERVICE-LON2-VIRGIN(DO-NOT-OPEN-TICKET)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00006", - "type": "CORPORATE" - }, - { - "name": "BUD-FRA-RARE-P4-9951387", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BUDAPEST", - "FRANKFURT", - "BUDAPEST", - "FRANKFURT" - ], - "sid": "GS-00684", - "type": "GEANT PLUS" - }, - { - "name": "DCN-MANAGEMENT-VIE-AT", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00379", - "type": "SERVER LINK" - }, - { - "name": "GEN2-MIL2-LHC-CERN-GARR-18105", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA", - "GENEVA 2" - ], - "sid": "GS-00798", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "UK-SINGAREN-AER-VLAN2160", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00908", - "type": "IP PEERING - R&E" - }, - { - "name": "VIE OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00419", - "type": "OOB IP LINK" - }, - { - "name": "AMS-LON-LOFAR-NETHERLIGHT-JISC-10007", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-00783", - "type": "GEANT - GBS" - }, - { - "name": "GARR-GEN1-MIL1 SPECTRUM SERVICE 1", - "overlays": { - "speed": 0 - }, - "pops": [ - "MILAN 1 LANCETTI", - "MILAN 1 LANCETTI", - "MILAN 1 LANCETTI", - "MILAN 1 LANCETTI" - ], - "sid": "GS-02603", - "type": "GEANT SPECTRUM SERVICE" - }, - { - "name": "LIS OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "LISBON" - ], - "sid": "GS-00403", - "type": "OOB IP LINK" - }, - { - "name": "PORTO OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "PORTO" - ], - "sid": "GS-00412", - "type": "OOB IP LINK" - }, - { - "name": "AARNET-LON-LHCONE-AER", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00806", - "type": "L3-VPN" - }, - { - "name": "UK-AARNET-AER", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00905", - "type": "IP PEERING - R&E" - }, - { - "name": "SWITCH EUMETCAST AP1", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-01120", - "type": "EUMETSAT TERRESTRIAL" - }, - { - "name": "LON-LON-SURF-AARNET-23009", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-02249", - "type": "GEANT PLUS" - }, - { - "name": "NORDUNET-SUNET-EXPRESSROUTE-VLAN3914", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-01160", - "type": "EXPRESS ROUTE" - }, - { - "name": "NORDUNET-FUNET-EXPRESSROUTE-VLAN3917", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-02327", - "type": "EXPRESS ROUTE" - }, - { - "name": "NORDUNET-MSER-EXPRESSROUTE-VLAN3918", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-02411", - "type": "EXPRESS ROUTE" - }, - { - "name": "LON-LON-GEANTOPEN-HARNET-NORDUNET", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-02606", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "FRA-GEN-LHCOPN-CERN-DFN-20107", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT", - "GENEVA" - ], - "sid": "GS-00792", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "MAR01 OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "MARSEILLE", - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-00409", - "type": "OOB IP LINK" - }, - { - "name": "DCN-MANAGEMENT-LON2-UK", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00120", - "type": "SERVER LINK" - }, - { - "name": "DUB-LON-NORDUNET-23005", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02244", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "GEN-LON-LHC-CERN-JISC-20040", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "GENEVA" - ], - "sid": "GS-00794", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "AMS-FRA-NORDUNET-24054-1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM", - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-02529", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "LONDON 2-LONDON 2-10GBE-005(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01665", - "type": "ETHERNET" - }, - { - "name": "LON-LON-NEA3R-SURF-22015", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00707", - "type": "GEANT PLUS" - }, - { - "name": "DCN-MANAGEMENT-COP-DK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00129", - "type": "SERVER LINK" - }, - { - "name": "DCN-MANAGEMENT-HEL-FI", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00130", - "type": "SERVER LINK" - }, - { - "name": "HAM-LON-00719", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-00719", - "type": "GEANT PLUS" - }, - { - "name": "PS-THROUGHTPUT-TESTER-INTERFACE-10GBE-2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01667", - "type": "POP LAN LINK" - }, - { - "name": "PARIS 007B-PARIS 007B-10GBE-010(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01668", - "type": "ETHERNET" - }, - { - "name": "AMS-GEN1-SURF-24056-1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "GENEVA", - "AMSTERDAM" - ], - "sid": "GS-02533", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "PS-POZ-PL-BWCTL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "POZNAN 1", - "POZNAN 1", - "POZNAN 1" - ], - "sid": "GS-00343", - "type": "SERVER LINK" - }, - { - "name": "RARE-PAR-FR", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00369", - "type": "SERVER LINK" - }, - { - "name": "PRA-POZ-RARE-BMS9", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "POZNAN 1", - "POZNAN 1", - "PRAGUE", - "PRAGUE" - ], - "sid": "GS-00751", - "type": "GEANT PLUS" - }, - { - "name": "AMS-PAR-RARE-INTERNET2-RNP-20061", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM", - "PARIS" - ], - "sid": "GS-00655", - "type": "GEANT PLUS" - }, - { - "name": "AMS-BIL-REDIRIS-RARE", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM", - "BILBAO" - ], - "sid": "GS-02287", - "type": "GEANT PLUS" - }, - { - "name": "AMS-AMS-RARE-CANARIE-21013", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-00627", - "type": "GEANT PLUS" - }, - { - "name": "AMS-PAR-RENATER-RARE-20070", - "overlays": { - "speed": 332859965440 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM", - "PARIS" - ], - "sid": "GS-00657", - "type": "GEANT PLUS" - }, - { - "name": "AMS-AMS-KREONET-RARE-22097", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-02218", - "type": "GEANT PLUS" - }, - { - "name": "AMS-AMS-NETHERLIGHT-RARE-9952733", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-00626", - "type": "GEANT PLUS" - }, - { - "name": "AMS-LON-SINGAREN-RARE-123034", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM", - "LONDON" - ], - "sid": "GS-02315", - "type": "GEANT PLUS" - }, - { - "name": "AMS-FRA-RARE-P4-9951375", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT", - "FRANKFURT", - "AMSTERDAM" - ], - "sid": "GS-00635", - "type": "GEANT PLUS" - }, - { - "name": "FRA-GEN-SWITCH-RARE-21035", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT", - "GENEVA" - ], - "sid": "GS-00700", - "type": "GEANT PLUS" - }, - { - "name": "FRA-MAD-RARE-REDIRIS-23017-VL201", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT", - "MADRID" - ], - "sid": "GS-02274", - "type": "GEANT PLUS" - }, - { - "name": "UK-CNGI-6IX-CERNET", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00925", - "type": "IP PEERING - R&E" - }, - { - "name": "UK-CNGI-6IX-CERNET-LHCONE", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00815", - "type": "L3-VPN" - }, - { - "name": "DDOS-DET1-VIE-AT-IDRAC", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-01284", - "type": "SERVER LINK" - }, - { - "name": "DDOS-DET2-VIE-AT-IDRAC", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-01175", - "type": "SERVER LINK" - }, - { - "name": "SCION1ILO.GEN.CH-INTERNAL-LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-02188", - "type": "ETHERNET" - }, - { - "name": "SCION1ILO.GEN.CH-EXTERNAL-LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-02187", - "type": "ETHERNET" - }, - { - "name": "GENEVA-GENEVA-10GBE-009(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-02190", - "type": "ETHERNET" - }, - { - "name": "GENEVA-GENEVA-10GBE-012(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-02189", - "type": "ETHERNET" - }, - { - "name": "VIE-VIE-EAP-GRENA-COGENT-22035", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "VIENNA", - "VIENNA" - ], - "sid": "GS-00695", - "type": "GEANT PLUS" - }, - { - "name": "PAR-PAR-SCION-INTERNET2-SCION-2", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "PARIS", - "PARIS" - ], - "sid": "GS-02309", - "type": "GEANT PLUS" - }, - { - "name": "PAR-PAR-SCION-SWITCH", - "overlays": { - "speed": 225485783040 - }, - "pops": [ - "PARIS", - "PARIS" - ], - "sid": "GS-02209", - "type": "GEANT PLUS" - }, - { - "name": "AMS-PAR-SCION-SURF-SCION-23013", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "PARIS", - "AMSTERDAM" - ], - "sid": "GS-02264", - "type": "GEANT PLUS" - }, - { - "name": "LON-PAR-SCION-KREONET-SWITCH", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "PARIS", - "LONDON" - ], - "sid": "GS-02293", - "type": "GEANT PLUS" - }, - { - "name": "AMS-PAR-SCION-KREONET-SWITCH", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "PARIS", - "AMSTERDAM" - ], - "sid": "GS-02291", - "type": "GEANT PLUS" - }, - { - "name": "LIS-PAR-SCION-REDCLARA", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "PARIS", - "LISBON" - ], - "sid": "GS-02435", - "type": "GEANT PLUS" - }, - { - "name": "PAR-PAR-SCION-INTERNET2-SCION-1", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "PARIS", - "PARIS" - ], - "sid": "GS-02295", - "type": "GEANT PLUS" - }, - { - "name": "LON-PAR-SCION-WACREN", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PARIS", - "LONDON" - ], - "sid": "GS-02495", - "type": "GEANT PLUS" - }, - { - "name": "GEN-GEN-SCION-SWITCH", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "GENEVA", - "GENEVA" - ], - "sid": "GS-02199", - "type": "GEANT PLUS" - }, - { - "name": "AMS-GEN-SCION-SURF-SCION-23012", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "GENEVA", - "AMSTERDAM" - ], - "sid": "GS-02263", - "type": "GEANT PLUS" - }, - { - "name": "AMS-GEN-KAUST-SCION", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "GENEVA", - "AMSTERDAM" - ], - "sid": "GS-02418", - "type": "GEANT PLUS" - }, - { - "name": "GEN-LIS-SCION-REDCLARA", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "GENEVA", - "LISBON" - ], - "sid": "GS-02436", - "type": "GEANT PLUS" - }, - { - "name": "GEN-PAR-SCION-SCION-INTERNET2-1", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "GENEVA", - "PARIS" - ], - "sid": "GS-02297", - "type": "GEANT PLUS" - }, - { - "name": "GEN-PAR-SCION-SCION-INTERNET2-2", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "GENEVA", - "PARIS" - ], - "sid": "GS-02311", - "type": "GEANT PLUS" - }, - { - "name": "GEN-MIL1-LHC-CERN-GARR-18061", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 1 LANCETTI", - "GENEVA" - ], - "sid": "GS-00795", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "AMS-PAR-MISC-GEANT-INTERNET2-9940543", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "PARIS", - "PARIS", - "AMSTERDAM" - ], - "sid": "GS-00654", - "type": "GEANT PLUS" - }, - { - "name": "PAR-PAR-MISC-GEANT-INTERNET2-9940539", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "PARIS", - "PARIS", - "PARIS" - ], - "sid": "GS-00747", - "type": "GEANT PLUS" - }, - { - "name": "FRA-LON-SCION-SWITCH-KREONET", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "FRANKFURT", - "LONDON" - ], - "sid": "GS-02294", - "type": "GEANT PLUS" - }, - { - "name": "AMS-FRA-SCION-KREONET-SWITCH", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "FRANKFURT", - "AMSTERDAM" - ], - "sid": "GS-02292", - "type": "GEANT PLUS" - }, - { - "name": "FRA-PAR-SCION-SCION-INTERNET2-1", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "FRANKFURT", - "PARIS" - ], - "sid": "GS-02296", - "type": "GEANT PLUS" - }, - { - "name": "FRA-LON-SCION-WACREN", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT", - "LONDON" - ], - "sid": "GS-02496", - "type": "GEANT PLUS" - }, - { - "name": "FRA-PAR-SCION-SCION-INTERNET2-2", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "FRANKFURT", - "PARIS" - ], - "sid": "GS-02310", - "type": "GEANT PLUS" - }, - { - "name": "CHI-KIE-EAP-RENAM-URAN-22087", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "KIEV", - "CHISINAU", - "KIEV" - ], - "sid": "GS-02212", - "type": "GEANT - GBS" - }, - { - "name": "SCION-SCION-PAR-INTERNAL-VPN-VL370", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PARIS", - "PARIS", - "PARIS" - ], - "sid": "GS-02215", - "type": "L3-VPN" - }, - { - "name": "SCION-SCION-GEN-INTERNAL-VPN-VL370", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "GENEVA", - "GENEVA", - "GENEVA" - ], - "sid": "GS-02214", - "type": "L3-VPN" - }, - { - "name": "GEN1-MAD-LHC-CERN-REDIRIS-22044", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "GENEVA", - "MADRID" - ], - "sid": "GS-02120", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "GEN1-LON1-LHC-CERN-JISC-22109", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "GENEVA", - "LONDON" - ], - "sid": "GS-02238", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "DTN-PAR-100G-DATA", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00277", - "type": "SERVER LINK" - }, - { - "name": "PRAGUE 2-PRAGUE 2-10GBE-007(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GA-02285", - "type": "ETHERNET" - }, - { - "name": "DTN-PRA-10G-DATA", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PRAGUE", - "PRAGUE" - ], - "sid": "GS-02354", - "type": "SERVER LINK" - }, - { - "name": "AMS-PRA-IX-CESNET-AMS-18088", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PRAGUE", - "PRAGUE", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-00787", - "type": "GEANT - GBS" - }, - { - "name": "AMS-PRA-IX-CESNET-AMS-12016", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PRAGUE", - "PRAGUE", - "AMSTERDAM", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-00786", - "type": "GEANT - GBS" - }, - { - "name": "PAR-LON2-SUPERPOP-QFX-GEANT", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PARIS", - "LONDON 2", - "LONDON 2", - "PARIS" - ], - "sid": "GS-00080", - "type": "GEANT - GBS" - }, - { - "name": "FRA-LON2-SUPERPOP-QFX-2-GEANT", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2", - "LONDON 2", - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00077|GS00077", - "type": "GEANT - GBS" - }, - { - "name": "BRUSSELS OOB LINK", - "overlays": { - "speed": 1073741824 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GA-02281", - "type": "ETHERNET" - }, - { - "name": "AZSCIENCENET-FRA-LL-1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GA-01599", - "type": "ETHERNET" - }, - { - "name": "BENOCS-FRA", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-02434", - "type": "SERVER LINK" - }, - { - "name": "GOOGLE-2-FRA-IP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-02226", - "type": "ETHERNET" - }, - { - "name": "GOOGLE-FRA-IP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00934", - "type": "ETHERNET" - }, - { - "name": "FACEBOOK-FRA-100G-LL1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-20365", - "type": "ETHERNET" - }, - { - "name": "ASNET-AM-GWS-COLT-LL1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01600", - "type": "ETHERNET" - }, - { - "name": "AZSCIENCENET-EAP-FRA-LL-1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01651", - "type": "ETHERNET" - }, - { - "name": "UK-SINGAREN", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00923", - "type": "IP PEERING - R&E" - }, - { - "name": "GEN1-POZ-PSNC-24052-3", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "GENEVA", - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-02551", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "SINGAREN-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-02359", - "type": "GWS - INDIRECT" - }, - { - "name": "BOD-PAR-INTERNET2-23089", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-02398", - "type": "ETHERNET" - }, - { - "name": "EUMET-SVALBARD-LON-MONITORINGVLAN", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02156", - "type": "GEANT IP" - }, - { - "name": "AMS-LON1-EEX-ESNET-2373-1-400G", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON", - "AMSTERDAM", - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-02334", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "LON1-LON2-ESNET-23092-400G", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02338", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "GEN2-LON1-EEX-ESNET-2373-2-400G", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON", - "GENEVA 2" - ], - "sid": "GS-02335", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "BOD-GEN1-ESNET-23093-400G", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MADRID", - "MADRID", - "GENEVA", - "BORDEAUX (BX1)" - ], - "sid": "GS-02337", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "AMS-GEN1-EEX-ESNET-2373-3-400G", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM", - "GENEVA", - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-02336", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "COLT-GWS-ARNES", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LJUBLJANA 2", - "ZAGREB 1" - ], - "sid": "GS-02098", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "FRA-FRA-EAP-AZSCIENCENET-CL-190961", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00694", - "type": "GEANT PLUS" - }, - { - "name": "FRA-FRA-EAP-ASNET-AM-CL-190891", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00696", - "type": "GEANT PLUS" - }, - { - "name": "MICROSOFT-EXPRESSROUTE-FRA-LL4", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "UNKNOWN" - ], - "sid": "DE133662-1", - "type": "ETHERNET" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-10GBE-052(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02197", - "type": "ETHERNET" - }, - { - "name": "SCION1ILO.FRA.DE-EXTERNAL-LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02196", - "type": "ETHERNET" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-10GBE-049(GEANT)", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02198", - "type": "ETHERNET" - }, - { - "name": "SCION1ILO.FRA.DE-INTERNAL-LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02195", - "type": "ETHERNET" - }, - { - "name": "SCION-SCION-FRA-INTERNAL-VPN-VL370", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-02216", - "type": "L3-VPN" - }, - { - "name": "NL-ESNET-400G-LL-1", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GA-01594", - "type": "ETHERNET" - }, - { - "name": "NL-ASNET-TW-LL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01635", - "type": "ETHERNET" - }, - { - "name": "NL-NETHERLIGHT-100G-IP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GA-01593", - "type": "ETHERNET" - }, - { - "name": "GEN1-MIL2-ECMWF-SWITCH-GARR-23109-2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA", - "GENEVA" - ], - "sid": "GS-02420", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "GEN1-MIL1-ECMWF-SWITCH-GARR-23109-1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 1 LANCETTI", - "GENEVA" - ], - "sid": "GS-02419", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "AMS-GEN1-SURF-24056-2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "GENEVA", - "AMSTERDAM" - ], - "sid": "GS-02534", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "NL-INTERNET2-VLAN510", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00894", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-INTERNET2-MONTREAL", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00893", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-OMREN", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00900", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-NETHERLIGHT-CSTNET-KAUST-1", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02392", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-MAEEN", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00898", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-NORDUNET-IX-2603", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00939", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "NL-NKN", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00899", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-ENSTINET-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00579", - "type": "GEANT PEERING" - }, - { - "name": "NL-NETHERLIGHT-CSTNET-KAUST-2", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02393", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-KAUST", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00895", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-ENSTINET-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00892", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-SINGAREN", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02202", - "type": "IP PEERING - R&E" - }, - { - "name": "AMS-LON-5GUK-JISC-NKN-22048", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "AMSTERDAM", - "LONDON" - ], - "sid": "GS-02162", - "type": "GEANT PLUS" - }, - { - "name": "AMS-PAR-GEANTOPEN-NORDUNET-INTERNET2-17008", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "AMSTERDAM", - "PARIS" - ], - "sid": "GS-00959", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT", - "overlays": { - "speed": 150323855360 - }, - "pops": [ - "AMSTERDAM", - "LONDON 2", - "LONDON 2", - "AMSTERDAM" - ], - "sid": "GS-00652", - "type": "GEANT PLUS" - }, - { - "name": "AMS-LON-GEANTOPEN-JISC-NEA3R", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "AMSTERDAM", - "LONDON" - ], - "sid": "GS-02400", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "AMS-GEN-IHEP-CERN-CSTNET", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "AMSTERDAM", - "GENEVA" - ], - "sid": "GS-02415", - "type": "GEANT PLUS" - }, - { - "name": "AMS-COR-00633", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "CORK", - "CORK" - ], - "sid": "GS-00633", - "type": "GEANT PLUS" - }, - { - "name": "AMS-HAM-02430", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02430", - "type": "GEANT PLUS" - }, - { - "name": "DTN-LON-100G-DATA", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00143", - "type": "SERVER LINK" - }, - { - "name": "BUD-CHI-EAP-RENAM-ARELION-24033", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "BUDAPEST", - "CHISINAU" - ], - "sid": "GS-02110", - "type": "GEANT PLUS" - }, - { - "name": "LON-LON-GEANTOPEN-MAEEN-ESNET-22004", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00464", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-LON-GEANTOPEN-ESNET-ESNET-170391", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00962", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-PAR-NCSA-LAAS-ESNET-RENATER-15057", - "overlays": { - "speed": 751619276800 - }, - "pops": [ - "LONDON", - "PARIS" - ], - "sid": "GS-00738", - "type": "GEANT PLUS" - }, - { - "name": "LON-LON-GEANTOPEN-ESNET-NEA3R", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-02250", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-LON-GEANTOPEN-ESNET-TENET-180871", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00966", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "LON-POZ-PIONIER-ESNET-QUANTUM-DEMO-VL2710", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "POZNAN 1" - ], - "sid": "GS-02557", - "type": "GEANT PLUS" - }, - { - "name": "CSTNET-AMS-LHCONE", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02537", - "type": "L3-VPN" - }, - { - "name": "HAM-DTN-IP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GA-02286", - "type": "ETHERNET" - }, - { - "name": "AMS-FRA-NORDUNET-24054-2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM", - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-02530", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "AMS-POZ-PSNC-24052-1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT", - "FRANKFURT", - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-02549", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "FRA-GEN-NORDUNET-24055-2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT", - "GENEVA", - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-02532", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "FRA-POZ-PSNC-24052-2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-02550", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "FRA-GEN-NORDUNET-24055-1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT", - "GENEVA", - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-02531", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "GEN2-LON1-ESNET-24015-2-400G", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA 2" - ], - "sid": "GS-02453", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "AMS-LON1-ESNET-24015-1-400G", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM", - "LONDON", - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-02452", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "AMS-GEN1-ESNET-24015-3-400G", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM", - "UNKNOWN", - "UNKNOWN" - ], - "sid": "GS-02454", - "type": "GEANT MANAGED WAVELENGTH SERVICE" - }, - { - "name": "NL-HARNET", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02539", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-ASNET-TW", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00888", - "type": "IP PEERING - R&E" - }, - { - "name": "BUC-CHI-RENAM-ROEDUNET-240752", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BUCHAREST 2", - "CHISINAU", - "CHISINAU", - "BUCHAREST 2" - ], - "sid": "GS-02576", - "type": "GEANT - GBS" - }, - { - "name": "DFN-AP2-400G-1", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-00453", - "type": "ETHERNET" - }, - { - "name": "NL-CANARIE-VLAN3928", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02646", - "type": "IP PEERING - R&E" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-057(GEANT)", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01672", - "type": "ETHERNET" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-050(GEANT)", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01673", - "type": "POP LAN LINK" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-056(GEANT)", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01674", - "type": "POP LAN LINK" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-063(GEANT)", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01675", - "type": "POP LAN LINK" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-054(GEANT)", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01678", - "type": "POP LAN LINK" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-064(GEANT)", - "overlays": { - "speed": 32212254720 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01681", - "type": "POP LAN LINK" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-060(GEANT)", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01682", - "type": "ETHERNET" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-052(GEANT)", - "overlays": { - "speed": 32212254720 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01683", - "type": "POP LAN LINK" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-061(GEANT)", - "overlays": { - "speed": 32212254720 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01684", - "type": "POP LAN LINK" - }, - { - "name": "FRA-PAR-BRIDGE-LAG", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01685", - "type": "ETHERNET" - }, - { - "name": "FRA-SUPERPOP-LAG", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01686", - "type": "ETHERNET" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-053(GEANT)", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01687", - "type": "POP LAN LINK" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-051(GEANT)", - "overlays": { - "speed": 32212254720 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01689", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX01-ESXI-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01690", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX03-ESXI-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01691", - "type": "POP LAN LINK" - }, - { - "name": "LON2-SEC-ESX20-ESXI-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01692", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX10-ESXI-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01693", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX11-ESXI-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01694", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX12-VM-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01695", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX02-ESXI-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01696", - "type": "POP LAN LINK" - }, - { - "name": "LON2-SEC-ESX21-ESXI-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01697", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX12-ESXI-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01698", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX01-VM-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01699", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX02-VM-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01700", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX03-VM-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01701", - "type": "POP LAN LINK" - }, - { - "name": "LON2-SEC-ESX20-VM-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01702", - "type": "POP LAN LINK" - }, - { - "name": "LON2-SEC-ESX21-VM-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01703", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX10-VM-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01704", - "type": "POP LAN LINK" - }, - { - "name": "LON2-PRD-ESX11-VM-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01705", - "type": "POP LAN LINK" - }, - { - "name": "LAG-MX1.LON2.UK_AE16", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01710", - "type": "ETHERNET" - }, - { - "name": "LAG-QFX.PAR.FR_AE0", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01714", - "type": "ETHERNET" - }, - { - "name": "LAG-QFX.PAR.FR_AE3", - "overlays": { - "speed": 0 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01716", - "type": "ETHERNET" - }, - { - "name": "LAG-QFX.PAR.FR_AE4", - "overlays": { - "speed": 0 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01717", - "type": "ETHERNET" - }, - { - "name": "LAG-QFX.PAR.FR_AE2", - "overlays": { - "speed": 0 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01720", - "type": "ETHERNET" - }, - { - "name": "PARIS 007B-PARIS 007B-LAG-005(GEANT)", - "overlays": { - "speed": 0 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01727", - "type": "ETHERNET" - }, - { - "name": "LAG-QFX.PAR.FR_AE17", - "overlays": { - "speed": 0 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01730", - "type": "ETHERNET" - }, - { - "name": "CORIANT-LIBRENMS-ACCESS-PAR-FR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS", - "PARIS", - "PARIS" - ], - "sid": "GS-00109", - "type": "SERVER LINK" - }, - { - "name": "ESXI-MANAGEMENT-PAR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS", - "PARIS" - ], - "sid": "GS-00075", - "type": "POP LAN LINK" - }, - { - "name": "VM-DATANETWORK-PAR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS", - "PARIS" - ], - "sid": "GS-00085", - "type": "POP LAN LINK" - }, - { - "name": "PS-LATENCY-NETWORK-PAR-FR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS", - "PARIS", - "PARIS" - ], - "sid": "GS-00313", - "type": "SERVER LINK" - }, - { - "name": "PS-THROUGHPUT-NETWORK-PAR-FR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS", - "PARIS", - "PARIS" - ], - "sid": "GS-00354", - "type": "SERVER LINK" - }, - { - "name": "TAAS-CONTROL-RANCID-LOGICAL-INTERFACE-PAR-FR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS", - "PARIS", - "PARIS" - ], - "sid": "GS-00865", - "type": "L3-VPN" - }, - { - "name": "TAAS-CONTROL-IMS-MEDIATION-LOGICAL-INTERFACE-PAR-FR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS", - "PARIS", - "PARIS" - ], - "sid": "GS-00863", - "type": "L3-VPN" - }, - { - "name": "INFOBLOX-VPAR-PAR-FR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS", - "PARIS", - "PARIS", - "PARIS" - ], - "sid": "GS-00205", - "type": "SERVER LINK" - }, - { - "name": "INFOBLOX-TEST-PAR-FR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS", - "PARIS" - ], - "sid": "GS-00203", - "type": "SERVER LINK" - }, - { - "name": "TAAS-CONTROL-NAGIOS-PAR-FR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS", - "PARIS", - "PARIS" - ], - "sid": "GS-00864", - "type": "L3-VPN" - }, - { - "name": "TAAS-CONTROL-FRANKFURT-VRF-VLAN3001", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00861", - "type": "L3-VPN" - }, - { - "name": "VM-DATANETWORK-FRA", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00084", - "type": "POP LAN LINK" - }, - { - "name": "INFOBLOX-DNS-FRA-DE", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00200", - "type": "SERVER LINK" - }, - { - "name": "TAAS-CONTROL-FRANKFURT-VRF-VLAN3004", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00862", - "type": "L3-VPN" - }, - { - "name": "TAAS-GTS-IMS-MEDIATION-FRANKFURT", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00866", - "type": "L3-VPN" - }, - { - "name": "ESXI-MANAGEMENT-FRA", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-00073", - "type": "POP LAN LINK" - }, - { - "name": "GEANT-SLOUGH-ACCESS", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "LONDON 2", - "LONDON 2" - ], - "sid": "GS-00469", - "type": "CORPORATE" - }, - { - "name": "ESXI-MANAGEMENT-LON2", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "LONDON 2", - "LONDON 2" - ], - "sid": "GS-00074", - "type": "POP LAN LINK" - }, - { - "name": "LONDON2-CORPORATE-NETWORK-SERVICES", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "LONDON 2", - "LONDON 2" - ], - "sid": "GS-00824", - "type": "CORPORATE" - }, - { - "name": "UK-ASREN-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01758", - "type": "ETHERNET" - }, - { - "name": "LAG-MX1.LON2.UK_AE16", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01759", - "type": "ETHERNET" - }, - { - "name": "MAD-DE-CIX-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-01779", - "type": "ETHERNET" - }, - { - "name": "FCCN-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LISBON" - ], - "sid": "GA-01786", - "type": "ETHERNET" - }, - { - "name": "LIS-POR-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LISBON" - ], - "sid": "GA-01787", - "type": "ETHERNET" - }, - { - "name": "LAG-SW1.LIS.PT_AE2", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LISBON" - ], - "sid": "GA-01788", - "type": "ETHERNET" - }, - { - "name": "PIONIER-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-01811", - "type": "ETHERNET" - }, - { - "name": "LAG-QFX.PAR.FR_AE0", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01815", - "type": "ETHERNET" - }, - { - "name": "SWITCH-AP2-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01817", - "type": "ETHERNET" - }, - { - "name": "NYC-PAR LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01821", - "type": "ETHERNET" - }, - { - "name": "RENATER-AP1-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01816", - "type": "ETHERNET" - }, - { - "name": "LAG-SW2.PAR.FR_AE1", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01826", - "type": "ETHERNET" - }, - { - "name": "AMS2-LON-AMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01834", - "type": "ETHERNET" - }, - { - "name": "UK-ORACLE-IAS-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-02082", - "type": "ETHERNET" - }, - { - "name": "LINX-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01839", - "type": "ETHERNET" - }, - { - "name": "FACEBOOK-FC26603-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01840", - "type": "ETHERNET" - }, - { - "name": "FACEBOOK-LON-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01841", - "type": "ETHERNET" - }, - { - "name": "CAE1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01843", - "type": "ETHERNET" - }, - { - "name": "SURF-AP2-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01844", - "type": "ETHERNET" - }, - { - "name": "JISC-AP1-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01845", - "type": "ETHERNET" - }, - { - "name": "LAG-MX1.VIE.AT_AE29", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01849", - "type": "ETHERNET" - }, - { - "name": "ROEDUNET-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01850", - "type": "ETHERNET" - }, - { - "name": "VIE-FACEBOOK-LAG-1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01852", - "type": "ETHERNET" - }, - { - "name": "VIENNA-VIENNA-LAG-001(GEANT)", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01859", - "type": "ETHERNET" - }, - { - "name": "GRENA-AP1-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01860", - "type": "ETHERNET" - }, - { - "name": "VIE-FACEBOOK-LAG-2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01863", - "type": "ETHERNET" - }, - { - "name": "ACONET-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01864", - "type": "ETHERNET" - }, - { - "name": "VIX-AT-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01867", - "type": "ETHERNET" - }, - { - "name": "AKAMAI-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01872", - "type": "ETHERNET" - }, - { - "name": "UK-ASREN-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00547", - "type": "GWS - INDIRECT" - }, - { - "name": "UK-ASREN", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00911", - "type": "IP PEERING - R&E" - }, - { - "name": "IX-PEERINGS-IN-DE-CIX-MAD", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00949", - "type": "IP PEERING - NON R&E (PUBLIC)" - }, - { - "name": "FCCN-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LISBON" - ], - "sid": "GS-00459", - "type": "GEANT IP" - }, - { - "name": "FCCN-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LISBON" - ], - "sid": "GS-00527", - "type": "GWS - INDIRECT" - }, - { - "name": "PIONIER-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GS-00495", - "type": "GEANT IP" - }, - { - "name": "PIONIER-AP1-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GS-00844", - "type": "L3-VPN" - }, - { - "name": "LON-POZ-GEANTOPEN-SINGAREN-CAE1-19113-VL3220-PIONIER", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "POZNAN 1", - "LONDON" - ], - "sid": "GS-00986", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "PIONIER-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GS-00539", - "type": "GWS - INDIRECT" - }, - { - "name": "RENATER-AP1", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00505", - "type": "GEANT IP" - }, - { - "name": "RENATER-AP-RTBH", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00503", - "type": "GEANT IP" - }, - { - "name": "RENATER-AP1-IAS", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00583", - "type": "GEANT PEERING" - }, - { - "name": "LON-PAR-CNES-NISN-RENATER", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "PARIS", - "LONDON" - ], - "sid": "GS-00736", - "type": "GEANT PLUS" - }, - { - "name": "SWITCH-AP2", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00515", - "type": "GEANT IP" - }, - { - "name": "SWITCH-AP2-IAS", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00590", - "type": "GEANT PEERING" - }, - { - "name": "FR-INTERNET2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00884", - "type": "IP PEERING - R&E" - }, - { - "name": "IMINDS-00681", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "PARIS", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-00681", - "type": "GEANT PLUS" - }, - { - "name": "INTERNET2-PAR-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00831", - "type": "L3-VPN" - }, - { - "name": "ESNET-PAR-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00823", - "type": "L3-VPN" - }, - { - "name": "REDCLARA-PAR-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00847", - "type": "L3-VPN" - }, - { - "name": "FR-CANARIE-VLAN204", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00881", - "type": "IP PEERING - R&E" - }, - { - "name": "FR-SINET", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00885", - "type": "IP PEERING - R&E" - }, - { - "name": "FR-ESNET", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00878", - "type": "IP PEERING - R&E" - }, - { - "name": "CANARIE-PAR-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00809", - "type": "L3-VPN" - }, - { - "name": "FR-TWAREN-221", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00886", - "type": "IP PEERING - R&E" - }, - { - "name": "SINET-PAR-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00859", - "type": "L3-VPN" - }, - { - "name": "GENI-00628", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "PARIS", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-00628", - "type": "GEANT PLUS" - }, - { - "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17091", - "overlays": { - "speed": 150323855360 - }, - "pops": [ - "PARIS", - "AMSTERDAM" - ], - "sid": "GS-00660", - "type": "GEANT PLUS" - }, - { - "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17090", - "overlays": { - "speed": 150323855360 - }, - "pops": [ - "PARIS", - "AMSTERDAM" - ], - "sid": "GS-00659", - "type": "GEANT PLUS" - }, - { - "name": "AMS-GEN-GRID5000-RENATER-SINET-07201", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "PARIS", - "GENEVA" - ], - "sid": "GS-00636", - "type": "GEANT PLUS" - }, - { - "name": "FRA-PAR-JAXA-DFN-SINET-14005", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "PARIS", - "FRANKFURT" - ], - "sid": "GS-00703", - "type": "GEANT PLUS" - }, - { - "name": "PAR-PAR-GEANTOPEN-SINET-SINET-19033", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PARIS", - "PARIS" - ], - "sid": "GS-00987", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "FR-CLARA", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00883", - "type": "IP PEERING - R&E" - }, - { - "name": "JISC-AP1", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00479", - "type": "GEANT IP" - }, - { - "name": "JISC-AP1-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00832", - "type": "L3-VPN" - }, - { - "name": "JISC-AP1-IAS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00574", - "type": "GEANT PEERING" - }, - { - "name": "LON-PAR-SYNGENTA-JISC-INTERNET2-17052", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "LONDON", - "PARIS" - ], - "sid": "GS-00730", - "type": "GEANT PLUS" - }, - { - "name": "LON-MAD-GOTO-REDIRIS-JISC-16018", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "LONDON", - "MADRID" - ], - "sid": "GS-00734", - "type": "GEANT PLUS" - }, - { - "name": "SURF-AP2", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00513", - "type": "GEANT IP" - }, - { - "name": "SURF-AP2-IAS", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00588", - "type": "GEANT PEERING" - }, - { - "name": "AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19103-VL2260", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-00957", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "UK-AARNET", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00904", - "type": "IP PEERING - R&E" - }, - { - "name": "AARNET-LON-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00805", - "type": "L3-VPN" - }, - { - "name": "UK-CAE1-SINGAREN", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00912", - "type": "IP PEERING - R&E" - }, - { - "name": "TEIN-LON-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00867", - "type": "L3-VPN" - }, - { - "name": "UK-TEIN", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00924", - "type": "IP PEERING - R&E" - }, - { - "name": "UK-WACREN", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00910", - "type": "IP PEERING - R&E" - }, - { - "name": "LON-LON-GEANTOPEN-NEA3R-WACREN-190131", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00982", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "ACONET-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00422", - "type": "GEANT IP" - }, - { - "name": "ACONET-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00550", - "type": "GEANT PEERING" - }, - { - "name": "CERN-LHCONE-LAG#1", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01876", - "type": "ETHERNET" - }, - { - "name": "RENATER-AP2-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01877", - "type": "ETHERNET" - }, - { - "name": "SWITCH-AP1-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01880", - "type": "ETHERNET" - }, - { - "name": "CERN-AP1-EXT2-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-02089", - "type": "ETHERNET" - }, - { - "name": "CH-NKN LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-02088", - "type": "ETHERNET" - }, - { - "name": "CIXP-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01881", - "type": "ETHERNET" - }, - { - "name": "CERN-AP1-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01882", - "type": "ETHERNET" - }, - { - "name": "GARR-AP2-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01883", - "type": "ETHERNET" - }, - { - "name": "CERN-LHCONE-LAG#2", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01885", - "type": "ETHERNET" - }, - { - "name": "LAG-MX1.BUD.HU_AE19", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-01898", - "type": "ETHERNET" - }, - { - "name": "BIX-HU-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-01900", - "type": "ETHERNET" - }, - { - "name": "KIFU-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-01905", - "type": "ETHERNET" - }, - { - "name": "BUD-VIE-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-01907", - "type": "ETHERNET" - }, - { - "name": "CERN-GEN-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00811", - "type": "L3-VPN" - }, - { - "name": "FRA-GEN-ORACLE-CERN-20150", - "overlays": { - "speed": 450971566080 - }, - "pops": [ - "GENEVA", - "FRANKFURT" - ], - "sid": "GS-00699", - "type": "GEANT PLUS" - }, - { - "name": "GARR-AP2", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00463", - "type": "GEANT IP" - }, - { - "name": "GARR-AP2-LHCONE", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00826", - "type": "L3-VPN" - }, - { - "name": "GARR-AP2-IAS", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00571", - "type": "GEANT PEERING" - }, - { - "name": "IMINDS-00670", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "GENEVA", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-00670", - "type": "GEANT PLUS" - }, - { - "name": "RENATER-AP2", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00506", - "type": "GEANT IP" - }, - { - "name": "RENATER-RTBH-GENEVA", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00504", - "type": "GEANT IP" - }, - { - "name": "LON-GEN-CNES-NISN-RENATER-09201", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "GENEVA", - "LONDON" - ], - "sid": "GS-00723", - "type": "GEANT PLUS" - }, - { - "name": "CERN-AP1-IAS", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00562", - "type": "GEANT PEERING" - }, - { - "name": "IX-PEERINGS-IN-CIXP", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00946", - "type": "IP PEERING - NON R&E (PUBLIC)" - }, - { - "name": "CERN-AP1", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00442", - "type": "GEANT IP" - }, - { - "name": "KIFU-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GS-00481", - "type": "GEANT IP" - }, - { - "name": "KIFU-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GS-00575", - "type": "GEANT PEERING" - }, - { - "name": "IX-PEERINGS-IN-BIX-BUD", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GS-00956", - "type": "IP PEERING - NON R&E (PUBLIC)" - }, - { - "name": "GEN-PAR-SCION-RENATER-SWITCH-20026", - "overlays": { - "speed": 751619276800 - }, - "pops": [ - "PARIS", - "GENEVA" - ], - "sid": "GS-00717", - "type": "GEANT PLUS" - }, - { - "name": "PAR-PAR-GRID5000-RENATER-SWITCH-20026", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "PARIS", - "PARIS" - ], - "sid": "GS-00750", - "type": "GEANT PLUS" - }, - { - "name": "FRA-PAR-MISC-RESTENA-RENATER-20030", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "PARIS", - "FRANKFURT" - ], - "sid": "GS-00704", - "type": "GEANT PLUS" - }, - { - "name": "INTERNET2-TESTVLAN-RTT", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00475", - "type": "GEANT IP" - }, - { - "name": "RENATER-AP2-IAS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00584", - "type": "GEANT PEERING" - }, - { - "name": "CH-NKN", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00874", - "type": "IP PEERING - R&E" - }, - { - "name": "NKN-GEN-LHCONE", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00833", - "type": "L3-VPN" - }, - { - "name": "PAR-PAR-CANARIE-SURF-20058", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PARIS", - "PARIS" - ], - "sid": "GS-00749", - "type": "GEANT PLUS" - }, - { - "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1945", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LISBON", - "AMSTERDAM" - ], - "sid": "GS-01142", - "type": "EXPRESS ROUTE" - }, - { - "name": "DCN-MANAGEMENT-LIS-PT", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LISBON" - ], - "sid": "GS-00118", - "type": "SERVER LINK" - }, - { - "name": "EX3400-MANAGEMENT-LIS-PT", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LISBON" - ], - "sid": "GS-00153", - "type": "SERVER LINK" - }, - { - "name": "ROEDUNET-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00510", - "type": "GEANT IP" - }, - { - "name": "ROEDUNET-AP2-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00858", - "type": "L3-VPN" - }, - { - "name": "ROEDUNET-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00545", - "type": "GWS - INDIRECT" - }, - { - "name": "FCCN-IPP-EXPRESSROUTE-VLAN1947", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LISBON", - "AMSTERDAM" - ], - "sid": "GS-01141", - "type": "EXPRESS ROUTE" - }, - { - "name": "FRA-GEN-ORACLE-CERN-20094", - "overlays": { - "speed": 450971566080 - }, - "pops": [ - "GENEVA", - "FRANKFURT" - ], - "sid": "GS-00698", - "type": "GEANT PLUS" - }, - { - "name": "CERN-AP1-EXT2", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00443", - "type": "GEANT IP" - }, - { - "name": "CERN-AP1-EXT2-IAS", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00561", - "type": "GEANT PEERING" - }, - { - "name": "CERN-GEN-LHCONE-2", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00812", - "type": "L3-VPN" - }, - { - "name": "RARE-PAR-RENATER", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00776", - "type": "L2SERVICES" - }, - { - "name": "SWITCH-AP1", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00514", - "type": "GEANT IP" - }, - { - "name": "SWITCH-AP1-IAS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00589", - "type": "GEANT PEERING" - }, - { - "name": "AMS-GEN-NREN-IX-AMSIX-SWITCH-18008", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "GENEVA", - "AMSTERDAM" - ], - "sid": "GS-00638", - "type": "GEANT PLUS" - }, - { - "name": "DCN-MANAGEMENT-PAR-FR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00124", - "type": "SERVER LINK" - }, - { - "name": "EX3400-MANAGEMENT-PAR-FR", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00157", - "type": "SERVER LINK" - }, - { - "name": "DCN-MANAGEMENT-MAD-ES", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00121", - "type": "SERVER LINK" - }, - { - "name": "EX3400-MANAGEMENT-MAD-ES", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00154", - "type": "SERVER LINK" - }, - { - "name": "BUD-VIE-IPTRUNK", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUDAPEST", - "VIENNA" - ], - "sid": "GS-00026", - "type": "IP TRUNK" - }, - { - "name": "COGENT-GWS-BUD", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GS-00065", - "type": "GWS - UPSTREAM" - }, - { - "name": "IX-PEERINGS-IN-LINX", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00951", - "type": "IP PEERING - NON R&E (PUBLIC)" - }, - { - "name": "FACEBOOK-32934-LON-FA-1026202", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00928", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "AMS2-LON-AMT-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-00012", - "type": "IP TRUNK" - }, - { - "name": "UK-ORACLE-31898", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00624", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "FACEBOOK-32934-LON-FC-26603", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00931", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "FACEBOOK-32934-VIE-FC-203126783", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00930", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "COGENT-GWS-VIE", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00067", - "type": "GWS - UPSTREAM" - }, - { - "name": "AKAMAI-20940-AT", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00926", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "IX-PEERINGS-IN-VIX", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00954", - "type": "IP PEERING - NON R&E (PUBLIC)" - }, - { - "name": "FACEBOOK-32934-VIE-FC-203126784", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00929", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "GARR-ROMA-EXPRESSROUTE-VLAN4089", - "overlays": { - "speed": 332859965440 - }, - "pops": [ - "GENEVA", - "AMSTERDAM" - ], - "sid": "GS-01145", - "type": "EXPRESS ROUTE" - }, - { - "name": "LIS-POR-IPTRUNK", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LISBON", - "PORTO" - ], - "sid": "GS-00050", - "type": "IP TRUNK" - }, - { - "name": "GARR-UDMILANO-EXPRESSROUTE-VLAN4087", - "overlays": { - "speed": 332859965440 - }, - "pops": [ - "GENEVA", - "AMSTERDAM" - ], - "sid": "GS-01146", - "type": "EXPRESS ROUTE" - }, - { - "name": "FR-MANLAN", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00461", - "type": "IP PEERING - R&E" - }, - { - "name": "AMS2-LON-AMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02036", - "type": "ETHERNET" - }, - { - "name": "LAG-RT2.AMS.NL_AE10", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02034", - "type": "ETHERNET" - }, - { - "name": "BELNET-ICT-EXPRESSROUTE-VLAN4091", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-01125", - "type": "EXPRESS ROUTE" - }, - { - "name": "RT1.AMS-RT2.AMS-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02033", - "type": "ETHERNET" - }, - { - "name": "BELNET-ZWEV-EXPRESSROUTE-VLAN4082", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-01129", - "type": "EXPRESS ROUTE" - }, - { - "name": "BELNET-ARPGAN-EXPRESSROUTE-VLAN4080", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-01122", - "type": "EXPRESS ROUTE" - }, - { - "name": "REDIRIS-UCLM-EXPRESSROUTE-VLAN412", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "AMSTERDAM", - "MADRID" - ], - "sid": "GS-01164", - "type": "EXPRESS ROUTE" - }, - { - "name": "BELNET-NCCN-EXPRESSROUTE-VLAN4092", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-01126", - "type": "EXPRESS ROUTE" - }, - { - "name": "BELNET-ARTEV-EXPRESSROUTE-VLAN4081", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-01123", - "type": "EXPRESS ROUTE" - }, - { - "name": "BELNET-IMEC-EXPRESSROUTE-VLAN4085", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02091", - "type": "EXPRESS ROUTE" - }, - { - "name": "BELNET-PREMIER-EXPRESSROUTE-VLAN4093", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-01127", - "type": "EXPRESS ROUTE" - }, - { - "name": "BELNET-FGOV-EXPRESSROUTE-VLAN4090", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-01124", - "type": "EXPRESS ROUTE" - }, - { - "name": "REDIRIS-USC-EXPRESSROUTE-VLAN408", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "AMSTERDAM", - "BILBAO" - ], - "sid": "GS-01165", - "type": "EXPRESS ROUTE" - }, - { - "name": "LIS-POR-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PORTO" - ], - "sid": "GA-02029", - "type": "ETHERNET" - }, - { - "name": "BIL-POR-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PORTO" - ], - "sid": "GA-02028", - "type": "ETHERNET" - }, - { - "name": "RT1.MIL2-SW2.MIL2-LAG-001(GEANT)", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-02062", - "type": "ETHERNET" - }, - { - "name": "LAG-SW1.POR.PT_AE1", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PORTO" - ], - "sid": "GA-02060", - "type": "ETHERNET" - }, - { - "name": "LAG-SW1.BIL.ES_AE1", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BILBAO" - ], - "sid": "GA-02056", - "type": "ETHERNET" - }, - { - "name": "AMS-AMS-IPTRUNK-2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-00007", - "type": "IP TRUNK" - }, - { - "name": "BELNET-STADKORTRIJK-EXPRESSROUTE-VLAN-4083", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-01128", - "type": "EXPRESS ROUTE" - }, - { - "name": "LAG-SW1.POR.PT_AE1", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PORTO" - ], - "sid": "GA-02027", - "type": "ETHERNET" - }, - { - "name": "BIL-POR-IPTRUNK", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PORTO", - "BILBAO" - ], - "sid": "GS-00017", - "type": "IP TRUNK" - }, - { - "name": "DCN-MANAGEMENT-POR-PT", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PORTO" - ], - "sid": "GS-00125", - "type": "SERVER LINK" - }, - { - "name": "EX3400-MANAGEMENT-POR-PT", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "PORTO" - ], - "sid": "GS-00158", - "type": "SERVER LINK" - }, - { - "name": "NEA3R-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GA-01970", - "type": "ETHERNET" - }, - { - "name": "INTERNET2-LON-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00830", - "type": "L3-VPN" - }, - { - "name": "LON-LON-GEANTOPEN-NEA3R-TENET-18097", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-00971", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "UK-NISN-NEA3R-204", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00922", - "type": "IP PEERING - R&E" - }, - { - "name": "UK-INTERNET2-NEA3R-202", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00919", - "type": "IP PEERING - R&E" - }, - { - "name": "ESNET-NEA3R-LON-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00822", - "type": "L3-VPN" - }, - { - "name": "AMS-LON-MISC-UBUNTUNET-INTERNET2-170342", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-00647", - "type": "GEANT PLUS" - }, - { - "name": "AMS-LON-MISC-UBUNTUNET-CANARIE-170352", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-00646", - "type": "GEANT PLUS" - }, - { - "name": "UK-CLARA-NEA3R", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00914", - "type": "IP PEERING - R&E" - }, - { - "name": "UK-ESNET-NEA3R-203", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00918", - "type": "IP PEERING - R&E" - }, - { - "name": "MAR01-MAR01-LAG-004(GEANT)", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02061", - "type": "ETHERNET" - }, - { - "name": "LAG-SW1.BIL.ES_AE1", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BILBAO" - ], - "sid": "GA-02070", - "type": "ETHERNET" - }, - { - "name": "BIL-POR-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BILBAO" - ], - "sid": "GA-02077", - "type": "ETHERNET" - }, - { - "name": "DCN-MANAGEMENT-BIL-ES", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BILBAO" - ], - "sid": "GS-00116", - "type": "SERVER LINK" - }, - { - "name": "EX3400-MANAGEMENT-BIL-ES", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BILBAO" - ], - "sid": "GS-00148", - "type": "SERVER LINK" - }, - { - "name": "BIL-PAR-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "BILBAO" - ], - "sid": "GA-02087", - "type": "ETHERNET" - }, - { - "name": "RARE-PAR-SWITCH", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PARIS", - "POZNAN 1", - "PARIS" - ], - "sid": "GS-00774", - "type": "L2SERVICES" - }, - { - "name": "BIL-PAR-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "BILBAO", - "PARIS" - ], - "sid": "GS-00016", - "type": "IP TRUNK" - }, - { - "name": "LAG-SW1.LIS.PT_AE2", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LISBON" - ], - "sid": "GA-02059", - "type": "ETHERNET" - }, - { - "name": "FCCN-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PORTO" - ], - "sid": "GA-02072", - "type": "ETHERNET" - }, - { - "name": "FCCN-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PORTO" - ], - "sid": "GS-00528", - "type": "GWS - INDIRECT" - }, - { - "name": "FCCN-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PORTO" - ], - "sid": "GS-00460", - "type": "GEANT IP" - }, - { - "name": "LAG-MX1.MAD.ES_AE3", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-02085", - "type": "ETHERNET" - }, - { - "name": "LIS-MAD-LAG-200G", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-02001", - "type": "ETHERNET" - }, - { - "name": "LIS-MAD-IPTRUNK", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "MADRID", - "LISBON" - ], - "sid": "GS-00048", - "type": "IP TRUNK" - }, - { - "name": "LIS-MAD-LAG-200G", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LISBON" - ], - "sid": "GA-02002", - "type": "ETHERNET" - }, - { - "name": "CHI-CHI-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GA-02015", - "type": "ETHERNET" - }, - { - "name": "LAG-RT1.CHI.MD_AE2-SW1.CHI.MD_AE2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GA-02017", - "type": "ETHERNET" - }, - { - "name": "DCN-MANAGEMENT-CHI1-MD", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GS-00127", - "type": "SERVER LINK" - }, - { - "name": "EX3400-MANAGEMENT-CHI-MD", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GS-00150", - "type": "SERVER LINK" - }, - { - "name": "CHI-CHI-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CHISINAU", - "CHISINAU" - ], - "sid": "GS-00028", - "type": "IP TRUNK" - }, - { - "name": "KIE-KIE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KIEV" - ], - "sid": "GA-02023", - "type": "ETHERNET" - }, - { - "name": "KIE-POZ-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KIEV" - ], - "sid": "GA-02026", - "type": "ETHERNET" - }, - { - "name": "LAG-RT1.KIE.UA_AE2-SW1.KIE.UA_AE2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "KIEV" - ], - "sid": "GA-02025", - "type": "ETHERNET" - }, - { - "name": "KIE-POZ-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KIEV", - "POZNAN 1" - ], - "sid": "GS-00046", - "type": "IP TRUNK" - }, - { - "name": "EX3400-MANAGEMENT-KIE-UA", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "KIEV" - ], - "sid": "GS-00152", - "type": "SERVER LINK" - }, - { - "name": "KIE-KIE-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KIEV", - "KIEV" - ], - "sid": "GS-00045", - "type": "IP TRUNK" - }, - { - "name": "DCN-MANAGEMENT-KIE1-UA", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "KIEV" - ], - "sid": "GS-00131", - "type": "SERVER LINK" - }, - { - "name": "CHI-KIE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GA-02040", - "type": "ETHERNET" - }, - { - "name": "CHI-CHI-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GA-02037", - "type": "ETHERNET" - }, - { - "name": "CHI-KIE-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CHISINAU", - "KIEV" - ], - "sid": "GS-00029", - "type": "IP TRUNK" - }, - { - "name": "CHI-KIE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KIEV" - ], - "sid": "GA-02048", - "type": "ETHERNET" - }, - { - "name": "LAG-RT2.KIE.UA_AE2-SW1.KIE.UA_AE3", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "KIEV" - ], - "sid": "GA-02047", - "type": "ETHERNET" - }, - { - "name": "KIE-KIE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KIEV" - ], - "sid": "GA-02045", - "type": "ETHERNET" - }, - { - "name": "RARE-POZ-PIONIER", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GS-00777", - "type": "L2SERVICES" - }, - { - "name": "LAG-RT1.KIE.UA_AE2-SW1.KIE.UA_AE2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "KIEV" - ], - "sid": "GA-02057", - "type": "ETHERNET" - }, - { - "name": "LAG-RT2.KIE.UA_AE2-SW1.KIE.UA_AE3", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "KIEV" - ], - "sid": "GA-02058", - "type": "ETHERNET" - }, - { - "name": "LAG-RT1.CHI.MD_AE2-SW1.CHI.MD_AE2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GA-02079", - "type": "ETHERNET" - }, - { - "name": "LAG-RT2.CHI.MD_AE2-SW1.CHI.MD_AE3", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GA-02039", - "type": "ETHERNET" - }, - { - "name": "LAG-RT2.CHI.MD_AE2-SW1.CHI.MD_AE3", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GA-02084", - "type": "ETHERNET" - }, - { - "name": "PT-REDCLARA-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LISBON" - ], - "sid": "GA-02075", - "type": "ETHERNET" - }, - { - "name": "REDCLARA-LIS-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LISBON" - ], - "sid": "GS-00848", - "type": "L3-VPN" - }, - { - "name": "PT-REDCLARA", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LISBON" - ], - "sid": "GS-00903", - "type": "IP PEERING - R&E" - }, - { - "name": "REDCLARA-MAD-COPERNICUS-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-02004", - "type": "ETHERNET" - }, - { - "name": "REDCLARA-MAD-COPERNICUS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00850", - "type": "L3-VPN" - }, - { - "name": "MAEEN-UK-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GA-02005", - "type": "ETHERNET" - }, - { - "name": "UK-MAEEN", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00921", - "type": "IP PEERING - R&E" - }, - { - "name": "URAN-AP1-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "KIEV" - ], - "sid": "GA-02024", - "type": "ETHERNET" - }, - { - "name": "URAN-AP2-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "KIEV" - ], - "sid": "GA-02046", - "type": "ETHERNET" - }, - { - "name": "URAN-AP2-LHCONE", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "KIEV" - ], - "sid": "GS-00871", - "type": "L3-VPN" - }, - { - "name": "URAN-AP2-IAS", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "KIEV" - ], - "sid": "GS-00594", - "type": "GEANT PEERING" - }, - { - "name": "URAN-AP2", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "KIEV" - ], - "sid": "GS-00521", - "type": "GEANT IP" - }, - { - "name": "URAN-AP1-LHCONE", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "KIEV" - ], - "sid": "GS-00870", - "type": "L3-VPN" - }, - { - "name": "URAN-AP1-IAS", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "KIEV" - ], - "sid": "GS-00593", - "type": "GEANT PEERING" - }, - { - "name": "URAN-AP1", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "KIEV" - ], - "sid": "GS-00520", - "type": "GEANT IP" - }, - { - "name": "RENAM-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GA-02016", - "type": "ETHERNET" - }, - { - "name": "RENAM-AP2-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GA-02038", - "type": "ETHERNET" - }, - { - "name": "RENAM-AP2-IAS", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GS-00542", - "type": "GWS - INDIRECT" - }, - { - "name": "RENAM-AP2", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GS-00501", - "type": "GEANT IP" - }, - { - "name": "RENAM-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GS-00541", - "type": "GWS - INDIRECT" - }, - { - "name": "RENAM-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GS-00500", - "type": "GEANT IP" - }, - { - "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "PORTO", - "AMSTERDAM" - ], - "sid": "GS-01144", - "type": "EXPRESS ROUTE" - }, - { - "name": "FCCN-IPP-EXPRESSROUTE-VLAN1946", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "PORTO", - "AMSTERDAM" - ], - "sid": "GS-01143", - "type": "EXPRESS ROUTE" - }, - { - "name": "AMS-GEN-SCION-NETHERLIGHT-SWITCH-20018", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "GENEVA", - "AMSTERDAM" - ], - "sid": "GS-00639", - "type": "GEANT PLUS" - }, - { - "name": "AMS-PAR-SCION-SWITCH-NETHERLIGHT-20019", - "overlays": { - "speed": 644245094400 - }, - "pops": [ - "PARIS", - "AMSTERDAM" - ], - "sid": "GS-00658", - "type": "GEANT PLUS" - }, - { - "name": "DCN-MANAGEMENT-KIE2-UA", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "KIEV" - ], - "sid": "GS-00132", - "type": "SERVER LINK" - }, - { - "name": "DCN-MANAGEMENT-CHI2-MD", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GS-00128", - "type": "SERVER LINK" - }, - { - "name": "LON-PAR-GEANTOPEN-MAEEN-INTERNET2-21086", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "LONDON", - "PARIS" - ], - "sid": "GS-00728", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "MAD-MAR01-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-02010", - "type": "ETHERNET" - }, - { - "name": "MAD-MAR-IPTRUNK", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MADRID", - "MARSEILLE" - ], - "sid": "GS-00054", - "type": "IP TRUNK" - }, - { - "name": "NL-ORACLEFC-LAG-2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02035", - "type": "ETHERNET" - }, - { - "name": "CH-EXOSCALE-IAS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00601", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "UK-TENET-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-02014", - "type": "ETHERNET" - }, - { - "name": "UK-TENET", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-01192", - "type": "IP PEERING - R&E" - }, - { - "name": "FORTIGATE-TUNNEL-TO-CH-LON-UK", - "overlays": { - "speed": 0 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02125", - "type": "L3-VPN" - }, - { - "name": "GRENA-AP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-01178", - "type": "GEANT IP" - }, - { - "name": "LON-PAR-GEANTOPEN-INTERNET2-TENET-19004", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "PARIS" - ], - "sid": "GS-00970", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "REDIRIS-AP2-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "BILBAO" - ], - "sid": "GA-01780", - "type": "ETHERNET" - }, - { - "name": "REDIRIS-AP2-IAS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "BILBAO" - ], - "sid": "GS-00582", - "type": "GEANT PEERING" - }, - { - "name": "REDIRIS-AP2", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "BILBAO" - ], - "sid": "GS-00499", - "type": "GEANT IP" - }, - { - "name": "MAR-MIL2-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02164", - "type": "ETHERNET" - }, - { - "name": "MAD-MAR01-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02171", - "type": "ETHERNET" - }, - { - "name": "MAR-MIL2-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MARSEILLE", - "MILAN 2 CALDERA" - ], - "sid": "GS-01185", - "type": "IP TRUNK" - }, - { - "name": "FR-ORANGE-LAG-4", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02145", - "type": "ETHERNET" - }, - { - "name": "FR-ORANGE-2280-2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-01179", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "SANET-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GA-02157", - "type": "ETHERNET" - }, - { - "name": "SANET-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GS-00546", - "type": "GEANT PEERING" - }, - { - "name": "REDIRIS-AP1-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-01800", - "type": "ETHERNET" - }, - { - "name": "REDIRIS-AP1-IAS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00581", - "type": "GEANT PEERING" - }, - { - "name": "REDIRIS-AP1", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00498", - "type": "GEANT IP" - }, - { - "name": "SANET-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GS-00511", - "type": "GEANT IP" - }, - { - "name": "REDIRIS-UCLM-EXPRESSROUTE-VLAN411", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "BILBAO", - "AMSTERDAM" - ], - "sid": "GS-01166", - "type": "EXPRESS ROUTE" - }, - { - "name": "REDIRIS-AP1-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00852", - "type": "L3-VPN" - }, - { - "name": "EUMET-BUCC-MAD-17042", - "overlays": { - "speed": 430570471424 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00457", - "type": "GEANT IP" - }, - { - "name": "FRA-MAD-ORACLE-REDIRIS-22010-VL415", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "MADRID", - "FRANKFURT" - ], - "sid": "GS-02096", - "type": "GEANT PLUS" - }, - { - "name": "FRA-MAD-DFN-REDIRIS-21028", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "MADRID", - "FRANKFURT" - ], - "sid": "GS-00692", - "type": "GEANT PLUS" - }, - { - "name": "REDIRIS-USC-EXPRESSROUTE-VLAN409", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "MADRID", - "AMSTERDAM" - ], - "sid": "GS-01167", - "type": "EXPRESS ROUTE" - }, - { - "name": "HAM-MAD-02183", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "MADRID", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02183", - "type": "GEANT PLUS" - }, - { - "name": "GEN-MAR-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02207", - "type": "ETHERNET" - }, - { - "name": "BIL-MAD-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-02204", - "type": "ETHERNET" - }, - { - "name": "BIL-MAD-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BILBAO" - ], - "sid": "GA-02144", - "type": "ETHERNET" - }, - { - "name": "BIL-MAD-IPTRUNK", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BILBAO", - "MADRID" - ], - "sid": "GS-02203", - "type": "IP TRUNK" - }, - { - "name": "GEN-MAR-IPTRUNK", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MARSEILLE", - "GENEVA" - ], - "sid": "GS-00038", - "type": "IP TRUNK" - }, - { - "name": "BELNET-UCLOUVAIN-EXPRESSROUTE-VLAN4088", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02161", - "type": "EXPRESS ROUTE" - }, - { - "name": "UK-REDCLARA", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02166", - "type": "IP PEERING - R&E" - }, - { - "name": "BELNET-MOBILIT-EXPRESSROUTE-VLAN4089", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02170", - "type": "EXPRESS ROUTE" - }, - { - "name": "REDCLARA-TENET-LON-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02167", - "type": "L3-VPN" - }, - { - "name": "REDCLARA-TENET-LON-COPERNICUS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02168", - "type": "L3-VPN" - }, - { - "name": "FR-ORANGE-LAG-3", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02179", - "type": "ETHERNET" - }, - { - "name": "GEN-LIS-CERN-REDCLARA-22059", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LISBON", - "GENEVA" - ], - "sid": "GS-02176", - "type": "GEANT PLUS" - }, - { - "name": "FR-ORANGE-2280", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-02180", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "UOM-AP2-100G-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02163", - "type": "ETHERNET" - }, - { - "name": "LAG-MX1.VIE.AT_AE28", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-02114", - "type": "ETHERNET" - }, - { - "name": "UOM-AP2-100G", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-02164", - "type": "GEANT IP" - }, - { - "name": "UOM-AP2-100G-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-02165", - "type": "GWS - INDIRECT" - }, - { - "name": "COLT-GWS-VIE", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00070", - "type": "GWS - UPSTREAM" - }, - { - "name": "LON2-AMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-02301", - "type": "ETHERNET" - }, - { - "name": "LON2-LON2-AMT-RELAYLINK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON 2", - "LONDON 2" - ], - "sid": "GS-02304", - "type": "SERVER LINK" - }, - { - "name": "EUMET-BUCC-BIL-20117", - "overlays": { - "speed": 430570471424 - }, - "pops": [ - "BILBAO" - ], - "sid": "GS-00458", - "type": "GEANT IP" - }, - { - "name": "AMS-LON-SINET-SINET-22074", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "LONDON", - "AMSTERDAM" - ], - "sid": "GS-02207", - "type": "GEANT PLUS" - }, - { - "name": "UOM-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-01344", - "type": "ETHERNET" - }, - { - "name": "UOM-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-00519", - "type": "GEANT IP" - }, - { - "name": "UOM-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-00548", - "type": "GWS - INDIRECT" - }, - { - "name": "CESNET-NACIT-EXPRESSROUTE-VLAN401", - "overlays": { - "speed": 225485783040 - }, - "pops": [ - "AMSTERDAM", - "VIENNA" - ], - "sid": "GS-02175", - "type": "EXPRESS ROUTE" - }, - { - "name": "ES-ARN-AP1-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-02206", - "type": "ETHERNET" - }, - { - "name": "LON2-AMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-02298", - "type": "ETHERNET" - }, - { - "name": "ES-ARN-AP1-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00529", - "type": "GWS - INDIRECT" - }, - { - "name": "ES-ARN-AP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MADRID" - ], - "sid": "GS-00880", - "type": "IP PEERING - R&E" - }, - { - "name": "AMS-AMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02299", - "type": "ETHERNET" - }, - { - "name": "FRA-AMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02300", - "type": "ETHERNET" - }, - { - "name": "FRA-FRA-AMT-RELAYLINK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-02306", - "type": "SERVER LINK" - }, - { - "name": "PRA-NIX-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GA-01828", - "type": "ETHERNET" - }, - { - "name": "IX-PEERINGS-IN-NIX", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GS-00953", - "type": "IP PEERING - NON R&E (PUBLIC)" - }, - { - "name": "CESNET-AP1-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GA-01829", - "type": "ETHERNET" - }, - { - "name": "CESNET-AP1-IAS", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GS-00563", - "type": "GEANT PEERING" - }, - { - "name": "CESNET-AP1-LHCONE", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GS-00813", - "type": "L3-VPN" - }, - { - "name": "CESNET-AP1", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GS-00444", - "type": "GEANT IP" - }, - { - "name": "CESNET-NACIT-EXPRESSROUTE-VLAN400", - "overlays": { - "speed": 225485783040 - }, - "pops": [ - "PRAGUE", - "AMSTERDAM" - ], - "sid": "GS-02174", - "type": "EXPRESS ROUTE" - }, - { - "name": "CESNET-NSI-GCS", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GS-00446", - "type": "GEANT IP" - }, - { - "name": "BELNET-STAD-EXPRESSROUTE-VLAN4060", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02246", - "type": "EXPRESS ROUTE" - }, - { - "name": "GRID5K-02234", - "overlays": { - "speed": 343597383680 - }, - "pops": [ - "PARIS", - "BRUSSELS" - ], - "sid": "GS-02234", - "type": "GEANT PLUS" - }, - { - "name": "FRA-GEN-DFN-NKN-22079", - "overlays": { - "speed": 450971566080 - }, - "pops": [ - "GENEVA", - "FRANKFURT" - ], - "sid": "GS-02210", - "type": "GEANT PLUS" - }, - { - "name": "NTP5.GEANT.NET", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-00261", - "type": "SERVER LINK" - }, - { - "name": "MIL-MIX-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-01772", - "type": "ETHERNET" - }, - { - "name": "MIL2-MIL2-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-02546", - "type": "ETHERNET" - }, - { - "name": "IX-PEERINGS-IN-MIX", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-00952", - "type": "IP PEERING - NON R&E (PUBLIC)" - }, - { - "name": "MIL2-MIL2-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA", - "MILAN 2 CALDERA" - ], - "sid": "GS-02548", - "type": "IP TRUNK" - }, - { - "name": "GARR-AP1-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-01773", - "type": "ETHERNET" - }, - { - "name": "GARR-AP1", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-00462", - "type": "GEANT IP" - }, - { - "name": "GARR-AP1-IAS", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-00570", - "type": "GEANT PEERING" - }, - { - "name": "GARR-AP1-LHCONE", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-00825", - "type": "L3-VPN" - }, - { - "name": "GARR-UDMILANO_EXPRESSROUTE_VLAN4086", - "overlays": { - "speed": 332859965440 - }, - "pops": [ - "MILAN 2 CALDERA", - "AMSTERDAM" - ], - "sid": "GS-01148", - "type": "EXPRESS ROUTE" - }, - { - "name": "GARR-ROMA_EXPRESSROUTE_VLAN4088", - "overlays": { - "speed": 332859965440 - }, - "pops": [ - "MILAN 2 CALDERA", - "AMSTERDAM" - ], - "sid": "GS-01147", - "type": "EXPRESS ROUTE" - }, - { - "name": "FRA-POZ-ORACLE-PIONIER-23002-VL416", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "POZNAN 1", - "FRANKFURT" - ], - "sid": "GS-02243", - "type": "GEANT PLUS" - }, - { - "name": "GOOGLE-15169-IT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-01771", - "type": "ETHERNET" - }, - { - "name": "GOOGLE-15169-IT", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-00935", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "ACONET-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-01770", - "type": "ETHERNET" - }, - { - "name": "ACONET-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-00551", - "type": "GEANT PEERING" - }, - { - "name": "ACONET-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-00423", - "type": "GEANT IP" - }, - { - "name": "BUD-ZAG-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-01738", - "type": "ETHERNET" - }, - { - "name": "BUD-ZAG-IPTRUNK", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUDAPEST", - "ZAGREB 1" - ], - "sid": "GS-00027", - "type": "IP TRUNK" - }, - { - "name": "KIFU-AP1-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GS-02282", - "type": "L3-VPN" - }, - { - "name": "BELNET-KULEUVEN-EXPRESSROUTE-4084", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-01135", - "type": "EXPRESS ROUTE" - }, - { - "name": "FRA-AMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02303", - "type": "ETHERNET" - }, - { - "name": "FR-IC1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02233", - "type": "ETHERNET" - }, - { - "name": "FR-IC1-SINGAREN", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-02320", - "type": "IP PEERING - R&E" - }, - { - "name": "BELNET-JUST-EXPRESSROUTE-VLAN4063", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02319", - "type": "EXPRESS ROUTE" - }, - { - "name": "AMS-HAM-MSE-02328", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02328", - "type": "GEANT PLUS" - }, - { - "name": "RASH-AP1-100G-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-02324", - "type": "ETHERNET" - }, - { - "name": "RASH-AP1-100G", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-02325", - "type": "GEANT IP" - }, - { - "name": "RASH-AP1-100G-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-02326", - "type": "GWS - INDIRECT" - }, - { - "name": "T-SYSTEMS FRA 100G LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02272", - "type": "ETHERNET" - }, - { - "name": "DE-T-SYSTEMS-COPERNICUS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02332", - "type": "L3-VPN" - }, - { - "name": "DE-T-SYSTEMS-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02273", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "DFN-AP1-LAG-400G", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01957", - "type": "ETHERNET" - }, - { - "name": "DFN-AP1-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00816", - "type": "L3-VPN" - }, - { - "name": "DFN-AP1-IAS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00566", - "type": "GEANT PEERING" - }, - { - "name": "DFN-AP1", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00452", - "type": "GEANT IP" - }, - { - "name": "COLT-GWS-BUD-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-02112", - "type": "ETHERNET" - }, - { - "name": "COLT-GWS-BUD", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GS-00068", - "type": "GWS - UPSTREAM" - }, - { - "name": "PRA-VIE-CESNET-AP1-CESNET-AP2", - "overlays": { - "speed": 225485783040 - }, - "pops": [ - "PRAGUE", - "VIENNA" - ], - "sid": "GS-02344", - "type": "GEANT PLUS" - }, - { - "name": "BRA-VIE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GA-01755", - "type": "ETHERNET" - }, - { - "name": "BRA-VIE-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRATISLAVA", - "VIENNA" - ], - "sid": "GS-00019", - "type": "IP TRUNK" - }, - { - "name": "DE-T-SYSTEMS-R&E", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02330", - "type": "IP PEERING - R&E" - }, - { - "name": "HAM-MAD-02343", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "MADRID", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02343", - "type": "GEANT PLUS" - }, - { - "name": "PRA-EUMETSAT-SERVER-DATA-TRAFFIC", - "overlays": { - "speed": 0 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GS-02361", - "type": "IP PEERING - R&E" - }, - { - "name": "FR-IC1-CSTNET-QUINARY", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-02362", - "type": "IP PEERING - R&E" - }, - { - "name": "FR-IC1-CSTNET-PRIMARY", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-02358", - "type": "IP PEERING - R&E" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-005(GEANT)", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02067", - "type": "ETHERNET" - }, - { - "name": "EX3400-MANAGEMENT-FRA-DE", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT", - "LONDON 2" - ], - "sid": "GS-00151", - "type": "SERVER LINK" - }, - { - "name": "INFOBLOX-GRID-FRA-DE", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00201", - "type": "SERVER LINK" - }, - { - "name": "DCN-MANAGEMENT-FRA-DE", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00117", - "type": "SERVER LINK" - }, - { - "name": "BRA-BRA-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GA-02148", - "type": "ETHERNET" - }, - { - "name": "BRA-BUD LAG 100G", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-01910", - "type": "ETHERNET" - }, - { - "name": "BRA-BRA-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRATISLAVA", - "BRATISLAVA" - ], - "sid": "GS-01205", - "type": "IP TRUNK" - }, - { - "name": "BRA-BUD-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST", - "BRATISLAVA" - ], - "sid": "GS-00018", - "type": "IP TRUNK" - }, - { - "name": "BRA-BUD LAG 100G", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GA-01756", - "type": "ETHERNET" - }, - { - "name": "BRA-BRA-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GA-02146", - "type": "ETHERNET" - }, - { - "name": "CSTNET-MAR-LHCONE-PRIMARY", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-00814", - "type": "L3-VPN" - }, - { - "name": "BELNET-MSER-NCCN-EXPRESSROUTE-VLAN4065", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02371", - "type": "EXPRESS ROUTE" - }, - { - "name": "SWITCH-UNIBE-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-02378", - "type": "L3-VPN" - }, - { - "name": "BRA-VIE-ACONET-SANET", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BRATISLAVA", - "VIENNA" - ], - "sid": "GS-02379", - "type": "GEANT PLUS" - }, - { - "name": "BELNET-MSER-ULB-EXPRESSROUTE-VLAN4064", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02364", - "type": "EXPRESS ROUTE" - }, - { - "name": "IUCC-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01940", - "type": "ETHERNET" - }, - { - "name": "IUCC-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00533", - "type": "GWS - INDIRECT" - }, - { - "name": "IUCC-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00478", - "type": "GEANT IP" - }, - { - "name": "BELNET-ONDD-EXPRESSROUTE-VLAN4066", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02390", - "type": "EXPRESS ROUTE" - }, - { - "name": "CSTNET-LON-LHCONE-SECONDARY", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02380", - "type": "L3-VPN" - }, - { - "name": "CARNET AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-01739", - "type": "ETHERNET" - }, - { - "name": "CARNET-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GS-00560", - "type": "GEANT PEERING" - }, - { - "name": "CH-ESNET-IPV4", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00872", - "type": "IP PEERING - R&E" - }, - { - "name": "ESNET-GEN-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00820", - "type": "L3-VPN" - }, - { - "name": "CARNET-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GS-00441", - "type": "GEANT IP" - }, - { - "name": "CH-ESNET-IPV6", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00873", - "type": "IP PEERING - R&E" - }, - { - "name": "UK-ESNET-IPV6", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00916", - "type": "IP PEERING - R&E" - }, - { - "name": "UK-ESNET-IPV4", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00915", - "type": "IP PEERING - R&E" - }, - { - "name": "ESNET-LON-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00821", - "type": "L3-VPN" - }, - { - "name": "DE-APPLE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02394", - "type": "ETHERNET" - }, - { - "name": "FR-APPLE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02396", - "type": "ETHERNET" - }, - { - "name": "FR-APPLE-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-02397", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "DE-APPLE-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02395", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "BUC-BUD-LAG-(200G)", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-01906", - "type": "ETHERNET" - }, - { - "name": "BUC-BUD-IPTRUNK", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUDAPEST", - "BUCHAREST 2" - ], - "sid": "GS-00021", - "type": "IP TRUNK" - }, - { - "name": "BUC-BUD-LAG-(200G)", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUCHAREST 2" - ], - "sid": "GA-01932", - "type": "ETHERNET" - }, - { - "name": "BUC-SOF-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUCHAREST 2" - ], - "sid": "GA-01935", - "type": "ETHERNET" - }, - { - "name": "BUC-SOF-IPTRUNK", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUCHAREST 2", - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00024", - "type": "IP TRUNK" - }, - { - "name": "RARE-BIL-REDIRIS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "BILBAO" - ], - "sid": "GS-02290", - "type": "L2SERVICES" - }, - { - "name": "IUCC-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-01831", - "type": "ETHERNET" - }, - { - "name": "IUCC-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-00477", - "type": "GEANT IP" - }, - { - "name": "IUCC-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-00532", - "type": "GWS - INDIRECT" - }, - { - "name": "FCCN-AP1-LIS-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LISBON" - ], - "sid": "GS-02401", - "type": "L3-VPN" - }, - { - "name": "FCCN-AP2-POR-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PORTO" - ], - "sid": "GS-02402", - "type": "L3-VPN" - }, - { - "name": "LON-LON-GEANTOPEN-JISC-NEA3R", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-02399", - "type": "GEANT OPEN CROSS CONNECT" - }, - { - "name": "FRA-DE-CIX-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01956", - "type": "ETHERNET" - }, - { - "name": "IX-PEERINGS-IN-DE-CIX-FRA", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00947", - "type": "IP PEERING - NON R&E (PUBLIC)" - }, - { - "name": "GOOGLE-FRA15-LAG", - "overlays": { - "speed": 32212254720 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "TE-01943", - "type": "ETHERNET" - }, - { - "name": "GOOGLE-FRA15-15169-DE-TO-BE-DELETED", - "overlays": { - "speed": 32212254720 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "TS-00934", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "RENATER-AP1-IPV4-LHCONE", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00853", - "type": "L3-VPN" - }, - { - "name": "RENATER-AP1-IPV6-LHCONE", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00854", - "type": "L3-VPN" - }, - { - "name": "GOOGLE-FRA15-LAG2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02225", - "type": "ETHERNET" - }, - { - "name": "DCN-MANAGEMENT-BRA1-SK", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GS-00114", - "type": "SERVER LINK" - }, - { - "name": "EX3400-MANAGEMENT-BRA-SK", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GS-00149", - "type": "SERVER LINK" - }, - { - "name": "CESNET-AP2-VIE-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01899", - "type": "ETHERNET" - }, - { - "name": "CESNET-AP2-IAS", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00564", - "type": "GEANT PEERING" - }, - { - "name": "CESNET-AP2", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00445", - "type": "GEANT IP" - }, - { - "name": "CLOUDFERRO-FRA-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01966", - "type": "ETHERNET" - }, - { - "name": "COGENT-FRA-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01939", - "type": "ETHERNET" - }, - { - "name": "DE-CLOUDFERRO-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00603", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "COGENT-GWS-FRA", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00066", - "type": "GWS - UPSTREAM" - }, - { - "name": "DE-EXOSCALE-IAS-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01948", - "type": "ETHERNET" - }, - { - "name": "ORACLE FASTCONNECT NREN-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02011", - "type": "ETHERNET" - }, - { - "name": "ORACLE FASTCONNECT LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01941", - "type": "ETHERNET" - }, - { - "name": "DE-EXOSCALE-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00604", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "POZ-EUMETSAT-SERVER-DATA-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GS-02360", - "type": "IP PEERING - R&E" - }, - { - "name": "RESTENA-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01952", - "type": "ETHERNET" - }, - { - "name": "T-SYSTEM FRA 10G LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01947", - "type": "ETHERNET" - }, - { - "name": "COLT-GWS-FRA-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02113", - "type": "ETHERNET" - }, - { - "name": "ASNET-AM-FRA-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01953", - "type": "ETHERNET" - }, - { - "name": "RESTENA-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00585", - "type": "GEANT PEERING" - }, - { - "name": "DE-TSYSTEMS-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00927", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "ASNET-AM-AP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00430", - "type": "GEANT IP" - }, - { - "name": "ASNET-AM-AP1-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00555", - "type": "GEANT PEERING" - }, - { - "name": "RESTENA-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00507", - "type": "GEANT IP" - }, - { - "name": "COLT-GWS-FRA", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00069", - "type": "GWS - UPSTREAM" - }, - { - "name": "MICROSOFT-EXPRESSROUTE-NORDUNET-FRA-LAG3", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01946", - "type": "ETHERNET" - }, - { - "name": "MICROSOFT-EXPRESSROUTE-FRA-LAG2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01963", - "type": "ETHERNET" - }, - { - "name": "MICROSOFT-EXPRESSROUTE-FRA-LAG1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01958", - "type": "ETHERNET" - }, - { - "name": "MICROSOFT-EXPRESSROUTE-NORDUNET-FRA-LAG4", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01965", - "type": "ETHERNET" - }, - { - "name": "UK-CAE-1-CSTNET-SECONDARY", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02391", - "type": "IP PEERING - R&E" - }, - { - "name": "GRE-MULTICAST-TUNNEL-CAAREN", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02376", - "type": "IP PEERING - R&E" - }, - { - "name": "GRE-MULTICAST-TUNNEL-IMPA", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01079", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-ECMWF", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01076", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-ECMWF2", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01077", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-NCI-CSIRO", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01084", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-JPL", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01081", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-KMA2", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00790", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-NOAA", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01086", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-CBG-LAB", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00791", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-KANREN", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02377", - "type": "IP PEERING - R&E" - }, - { - "name": "GRE-MULTICAST-TUNNEL-NMO", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01085", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-DMI", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02172", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-UWSSEC", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01090", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-UKMO", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01089", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-NOAA2", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01087", - "type": "EUMETSAT GRE" - }, - { - "name": "DE-IRANET", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01169", - "type": "IP PEERING - R&E" - }, - { - "name": "GRE-MULTICAST-TUNNEL-KNMI", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01083", - "type": "EUMETSAT GRE" - }, - { - "name": "GRE-MULTICAST-TUNNEL-INPE", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-01080", - "type": "EUMETSAT GRE" - }, - { - "name": "SURF-AP2-LHCONE", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02413", - "type": "L3-VPN" - }, - { - "name": "GEN-MAR-IHEP-CERN-CSTNET", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "MARSEILLE", - "GENEVA" - ], - "sid": "GS-02414", - "type": "GEANT PLUS" - }, - { - "name": "FRANKFURT 15-FRANKFURT 15-LAG-057(GEANT)", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01938", - "type": "ETHERNET" - }, - { - "name": "RARE-P4-B1-FRA", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT", - "POZNAN 1" - ], - "sid": "GS-02640", - "type": "L2SERVICES" - }, - { - "name": "BELNET-RVA-ONEM-EXPRESSROUTE-VLAN4067", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02432", - "type": "EXPRESS ROUTE" - }, - { - "name": "AMS-AMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02302", - "type": "ETHERNET" - }, - { - "name": "NL-TENET-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02142", - "type": "ETHERNET" - }, - { - "name": "NL-TENET", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-01182", - "type": "IP PEERING - R&E" - }, - { - "name": "GOOGLE-2-15169-IT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-02247", - "type": "ETHERNET" - }, - { - "name": "GOOGLE-2-15169-IT", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GS-02248", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "SANET-AP2", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GS-02438", - "type": "GEANT IP" - }, - { - "name": "SANET-AP2-IAS", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GS-02439", - "type": "GEANT PEERING" - }, - { - "name": "RENATER-AP2-IPV4-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00855", - "type": "L3-VPN" - }, - { - "name": "RENATER-AP2-IPV6-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00856", - "type": "L3-VPN" - }, - { - "name": "GOOGLE-AMS-PNI-1-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02450", - "type": "ETHERNET" - }, - { - "name": "UK-MARWAN-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-02449", - "type": "ETHERNET" - }, - { - "name": "UK-MARWAN", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-02406", - "type": "IP PEERING - R&E" - }, - { - "name": "GOOGLE-15169-NL", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02451", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "CYNET-AP1-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02440", - "type": "ETHERNET" - }, - { - "name": "CYNET-AP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-02441", - "type": "GEANT IP" - }, - { - "name": "CYNET-AP1-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-02442", - "type": "GWS - INDIRECT" - }, - { - "name": "FR-ITER-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02416", - "type": "ETHERNET" - }, - { - "name": "GRE-MULTICAST-TUNNEL-UNI-OF-CHILE", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02447", - "type": "EUMETSAT GRE" - }, - { - "name": "CESNET-AP2-LHCONE", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-02455", - "type": "L3-VPN" - }, - { - "name": "LAG-SW2.PAR.FR_AE1", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02063", - "type": "ETHERNET" - }, - { - "name": "NL-ESNET-IPV4", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00889", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-ESNET-IPV6", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00890", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-ESNET-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00835", - "type": "L3-VPN" - }, - { - "name": "NL-SWITCH-AMS-IX-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01912", - "type": "ETHERNET" - }, - { - "name": "NL-KIAE-LAG", - "overlays": { - "speed": 32212254720 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01918", - "type": "ETHERNET" - }, - { - "name": "NL-KIAE", - "overlays": { - "speed": 32212254720 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00896", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-KIAE-LHCONE", - "overlays": { - "speed": 32212254720 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00836", - "type": "L3-VPN" - }, - { - "name": "NL-SURF-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01919", - "type": "ETHERNET" - }, - { - "name": "NL-KREONET", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00897", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-KREONET-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00837", - "type": "L3-VPN" - }, - { - "name": "SURF-AP1-IAS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00587", - "type": "GEANT PEERING" - }, - { - "name": "SURF-AP1", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00512", - "type": "GEANT IP" - }, - { - "name": "SURF-AP1-LHCONE-2", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00793", - "type": "L3-VPN" - }, - { - "name": "EVLBI-JIVE-00662", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "AMSTERDAM", - "RIGA", - "RIGA" - ], - "sid": "GS-00662", - "type": "GEANT PLUS" - }, - { - "name": "LOFAR-00663", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "AMSTERDAM", - "RIGA", - "RIGA" - ], - "sid": "GS-00663", - "type": "GEANT PLUS" - }, - { - "name": "NL-SINET-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01916", - "type": "ETHERNET" - }, - { - "name": "NL-T-SYSTEM-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02270", - "type": "ETHERNET" - }, - { - "name": "NL-ORACLEFC-LAG-1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02009", - "type": "ETHERNET" - }, - { - "name": "KIFU-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01861", - "type": "ETHERNET" - }, - { - "name": "KIFU-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00576", - "type": "GEANT PEERING" - }, - { - "name": "NL-T-SYSTEMS-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02271", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "NL-T-SYSTEMS-COPERNICUS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02331", - "type": "L3-VPN" - }, - { - "name": "KIFU-AP2-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-02283", - "type": "L3-VPN" - }, - { - "name": "NL-SINET", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00901", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-SINET-LHCONE", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00840", - "type": "L3-VPN" - }, - { - "name": "KIFU-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GS-00482", - "type": "GEANT IP" - }, - { - "name": "NL-T-SYSTEMS-R&E", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02329", - "type": "IP PEERING - R&E" - }, - { - "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17084", - "overlays": { - "speed": 236223201280 - }, - "pops": [ - "AMSTERDAM", - "LONDON" - ], - "sid": "GS-00648", - "type": "GEANT PLUS" - }, - { - "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17088", - "overlays": { - "speed": 236223201280 - }, - "pops": [ - "AMSTERDAM", - "LONDON" - ], - "sid": "GS-00649", - "type": "GEANT PLUS" - }, - { - "name": "AMS-MAR-ITER-IFERC-SINET-RENATER-24039", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "AMSTERDAM", - "MARSEILLE" - ], - "sid": "GS-00637", - "type": "GEANT PLUS" - }, - { - "name": "GOOGLE-AMS-PNI-2-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01921", - "type": "ETHERNET" - }, - { - "name": "NL-GOOGLE-2-15169", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00938", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "NL-AMS-IX-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01920", - "type": "ETHERNET" - }, - { - "name": "NL-NIKS-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02143", - "type": "ETHERNET" - }, - { - "name": "NL-NIKS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-01183", - "type": "IP PEERING - R&E" - }, - { - "name": "IX-PEERINGS-IN-AMS-IX", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00955", - "type": "IP PEERING - NON R&E (PUBLIC)" - }, - { - "name": "AMS-AMS-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02456", - "type": "ETHERNET" - }, - { - "name": "AMS-AMS-IPTRUNK", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-02458", - "type": "IP TRUNK" - }, - { - "name": "NL-UBUNTUNET-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01917", - "type": "ETHERNET" - }, - { - "name": "NL-UBUNTUNET", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00902", - "type": "IP PEERING - R&E" - }, - { - "name": "NL-MICROSOFT-EXPRESSROUTE-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01911", - "type": "ETHERNET" - }, - { - "name": "MSEICT-01133", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-01133", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEULB-02363", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02363", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSENCCN-01136", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-01136", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSERVAONEM-02431", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02431", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEFGOV-01132", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-01132", - "type": "EXPRESS ROUTE" - }, - { - "name": "BELNET-ARPGAN-01130", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-01130", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEIMEC-02092", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02092", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEMOBILIT-02169", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02169", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEARTEV-01131", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-01131", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSESTADKORTRIJK-01138", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-01138", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSESTAD-02245", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02245", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEPREMIER-01137", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-01137", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEKULEUVEN-01134", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-01134", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEONDD-02389", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02389", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSENCCN-02370", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02370", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEUCLOUVAIN-02152", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02152", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEZWEV-01139", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-01139", - "type": "EXPRESS ROUTE" - }, - { - "name": "NL-IRANET", - "overlays": { - "speed": 0 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-01168", - "type": "IP PEERING - R&E" - }, - { - "name": "LON-LON-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-02465", - "type": "ETHERNET" - }, - { - "name": "LON2-LON2-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-02468", - "type": "ETHERNET" - }, - { - "name": "LON2-LON2-IPTRUNK", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "LONDON 2", - "LONDON 2" - ], - "sid": "GS-02470", - "type": "IP TRUNK" - }, - { - "name": "AMS-AMS-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02457", - "type": "ETHERNET" - }, - { - "name": "LON-LON-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-02466", - "type": "ETHERNET" - }, - { - "name": "GEN-MAR-ESNET-RENATER-24038", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "MARSEILLE", - "GENEVA" - ], - "sid": "GS-02504", - "type": "GEANT PLUS" - }, - { - "name": "LON-LON-IPTRUNK", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "LONDON", - "LONDON" - ], - "sid": "GS-02467", - "type": "IP TRUNK" - }, - { - "name": "LON2-LON2-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-02469", - "type": "ETHERNET" - }, - { - "name": "RT1.AMS-SW3.AMS-LAG", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02076", - "type": "ETHERNET" - }, - { - "name": "TUNNEL-FORTIGATE-AMSTERDAM", - "overlays": { - "speed": 0 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-01113", - "type": "L3-VPN" - }, - { - "name": "RT1.AMS-RT2.AMS-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02013", - "type": "ETHERNET" - }, - { - "name": "AMS-EUMETSAT-SERVER-DATA-TRAFFIC", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02312", - "type": "IP PEERING - R&E" - }, - { - "name": "EX3400-MANAGEMENT-AMS-NL", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00147", - "type": "SERVER LINK" - }, - { - "name": "DCN-MANAGEMENT-AMS-NL", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00115", - "type": "SERVER LINK" - }, - { - "name": "RARE-P4-MANAGEMENT-VLAN26", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM", - "POZNAN 1" - ], - "sid": "GS-02639", - "type": "L2SERVICES" - }, - { - "name": "RT1.AMS-SW3.AMS-LAG", - "overlays": { - "speed": 42949672960 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02081", - "type": "ETHERNET" - }, - { - "name": "REDCLARA-PAR-COPERNICUS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00849", - "type": "L3-VPN" - }, - { - "name": "BELNET-THOMASMORE-EXPRESSROUTE-VLAN4086", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02476", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSETHOMASMORE-02475", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02475", - "type": "EXPRESS ROUTE" - }, - { - "name": "FR-CANARIE-2", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00913", - "type": "IP PEERING - R&E" - }, - { - "name": "CANARIE-PAR-LHCONE-2", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00810", - "type": "L3-VPN" - }, - { - "name": "REDCLARA-PAR-LHCONE-2", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "PARIS" - ], - "sid": "GS-00846", - "type": "L3-VPN" - }, - { - "name": "GRE-MULTICAST-TUNNEL-UTWENTE", - "overlays": { - "speed": 0 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02448", - "type": "EUMETSAT GRE" - }, - { - "name": "FRA-FRA-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02459", - "type": "ETHERNET" - }, - { - "name": "FRA-FRA-IPTRUNK", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "FRANKFURT", - "FRANKFURT" - ], - "sid": "GS-02461", - "type": "IP TRUNK" - }, - { - "name": "FRA-FRA-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02460", - "type": "ETHERNET" - }, - { - "name": "PAR-PAR-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02471", - "type": "ETHERNET" - }, - { - "name": "PAR-PAR-IPTRUNK", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "PARIS", - "PARIS" - ], - "sid": "GS-02473", - "type": "IP TRUNK" - }, - { - "name": "PAR-PAR-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02472", - "type": "ETHERNET" - }, - { - "name": "GEN-GEN-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-02462", - "type": "ETHERNET" - }, - { - "name": "GEN-GEN-IPTRUNK", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "GENEVA", - "GENEVA" - ], - "sid": "GS-02464", - "type": "IP TRUNK" - }, - { - "name": "GEN-GEN-800G-LAG", - "overlays": { - "speed": 858993459200 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-02463", - "type": "ETHERNET" - }, - { - "name": "FRA-PAR-SLICES-RESTENA-RENATER-VL551", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "FRANKFURT", - "PARIS" - ], - "sid": "GS-02485", - "type": "GEANT PLUS" - }, - { - "name": "FACEBOOK-FRA-LAG-2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02482", - "type": "ETHERNET" - }, - { - "name": "FACEBOOK-FRA-LAG-1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-02481", - "type": "ETHERNET" - }, - { - "name": "FACEBOOK-32934-FRA-PCDE-90606624", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02483", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "FACEBOOK-32934-FRA-PCDE-90606625", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-02484", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "AMS-FRA-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01915", - "type": "ETHERNET" - }, - { - "name": "AMS-FRA-IPTRUNK", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-00009", - "type": "IP TRUNK" - }, - { - "name": "AMS-BRU-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01922", - "type": "ETHERNET" - }, - { - "name": "AMS-HAM-LAG-300G", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-01923", - "type": "ETHERNET" - }, - { - "name": "AMS-HAM-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "AMSTERDAM", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-00010", - "type": "IP TRUNK" - }, - { - "name": "AMS-BRU-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS" - ], - "sid": "GS-00008", - "type": "IP TRUNK" - }, - { - "name": "A10-DDOS-SCRUBBING-FRA-CLEAN-TRAFFIC", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00087", - "type": "SERVER LINK" - }, - { - "name": "A10-DDOS-SCRUBBING-FRA-DIRTY-TRAFFIC", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00088", - "type": "SERVER LINK" - }, - { - "name": "SLCUTH-02497", - "overlays": { - "speed": 171798691840 - }, - "pops": [ - "BUDAPEST", - "ATHENS 2", - "ATHENS 2" - ], - "sid": "GS-02497", - "type": "GEANT PLUS" - }, - { - "name": "PSNC-KIFU-SLICES-SZTAKI", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUDAPEST", - "POZNAN 1" - ], - "sid": "GS-02491", - "type": "GEANT PLUS" - }, - { - "name": "SLCUTH-02490", - "overlays": { - "speed": 171798691840 - }, - "pops": [ - "POZNAN 1", - "ATHENS 2", - "ATHENS 2" - ], - "sid": "GS-02490", - "type": "GEANT PLUS" - }, - { - "name": "HAM-POZ-02494", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "POZNAN 1", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02494", - "type": "GEANT PLUS" - }, - { - "name": "PSNC-REDIRIS-SLICES-UC3M", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "POZNAN 1", - "MADRID" - ], - "sid": "GS-02492", - "type": "GEANT PLUS" - }, - { - "name": "PSNC-REDIRIS-SLICES-UPV/EHU", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "POZNAN 1", - "BILBAO" - ], - "sid": "GS-02493", - "type": "GEANT PLUS" - }, - { - "name": "SLCUTH-02498", - "overlays": { - "speed": 493921239040 - }, - "pops": [ - "MADRID", - "ATHENS 2", - "ATHENS 2" - ], - "sid": "GS-02498", - "type": "GEANT PLUS" - }, - { - "name": "BUD-HAM-02513", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "BUDAPEST", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02513", - "type": "GEANT PLUS" - }, - { - "name": "UPV/EHU-REDIRIS-KIFU-SLICES-SZTAKI", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "BUDAPEST", - "BILBAO", - "BRUSSELS", - "ATHENS 2" - ], - "sid": "GS-02518", - "type": "GEANT PLUS" - }, - { - "name": "SZTAKI-KIFU-REDIRIS-SLICES-UC3M", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "BUDAPEST", - "MADRID" - ], - "sid": "GS-02512", - "type": "GEANT PLUS" - }, - { - "name": "HAM-MAD-02516", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "MADRID", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02516", - "type": "GEANT PLUS" - }, - { - "name": "AMS-LON-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-02268", - "type": "ETHERNET" - }, - { - "name": "AMS-LON-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02267", - "type": "ETHERNET" - }, - { - "name": "AMS-LON-IPTRUNK", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "AMSTERDAM", - "LONDON" - ], - "sid": "GS-02269", - "type": "IP TRUNK" - }, - { - "name": "LON-LON2-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-01846", - "type": "ETHERNET" - }, - { - "name": "DUB-LON-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-02006", - "type": "ETHERNET" - }, - { - "name": "DUB-LON-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON", - "DUBLIN CITY WEST" - ], - "sid": "GS-00031", - "type": "IP TRUNK" - }, - { - "name": "LON-LON2-IPTRUNK", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "LONDON", - "LONDON 2" - ], - "sid": "GS-00052", - "type": "IP TRUNK" - }, - { - "name": "BELNET-RIZIV-INAMI-EXPRESSROUTE-VLAN4069", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02521", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSERIZIV-02520", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02520", - "type": "EXPRESS ROUTE" - }, - { - "name": "BELNET-FEDPOL-EXPRESSROUTE-VLAN4071", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02525", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEFEDPOL-02524", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02524", - "type": "EXPRESS ROUTE" - }, - { - "name": "BELNET-SCIENSAN0-EXPRESSROUTE-VLAN4073", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02536", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSESCIENSAN-02535", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02535", - "type": "EXPRESS ROUTE" - }, - { - "name": "POZ-POZ-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-02527", - "type": "ETHERNET" - }, - { - "name": "POZ-POZ-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "POZNAN 1", - "POZNAN 1" - ], - "sid": "GS-02528", - "type": "IP TRUNK" - }, - { - "name": "LON-LON2-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01761", - "type": "ETHERNET" - }, - { - "name": "ES-MICROSOFT-EXPRESSROUTE-LAG#2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-02523", - "type": "ETHERNET" - }, - { - "name": "ES-MICROSOFT-EXPRESSROUTE-LAG#1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-02522", - "type": "ETHERNET" - }, - { - "name": "LON2-PAR-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01762", - "type": "ETHERNET" - }, - { - "name": "COR-LON2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-02388", - "type": "ETHERNET" - }, - { - "name": "LON2-PAR-IPTRUNK", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "LONDON 2", - "PARIS" - ], - "sid": "GS-00053", - "type": "IP TRUNK" - }, - { - "name": "COR-LON2-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LONDON 2", - "CORK" - ], - "sid": "GS-02386", - "type": "IP TRUNK" - }, - { - "name": "POZ-POZ-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-02526", - "type": "ETHERNET" - }, - { - "name": "AMS-FRA-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01945", - "type": "ETHERNET" - }, - { - "name": "FRA-GEN-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01961", - "type": "ETHERNET" - }, - { - "name": "FRA-PRA-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01944", - "type": "ETHERNET" - }, - { - "name": "FRA-PRA-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "FRANKFURT", - "PRAGUE" - ], - "sid": "GS-00033", - "type": "IP TRUNK" - }, - { - "name": "FRA-GEN-IPTRUNK", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "FRANKFURT", - "GENEVA" - ], - "sid": "GS-00034", - "type": "IP TRUNK" - }, - { - "name": "PRA-PRA-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GA-02543", - "type": "ETHERNET" - }, - { - "name": "PRA-PRA-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PRAGUE", - "PRAGUE" - ], - "sid": "GS-02545", - "type": "IP TRUNK" - }, - { - "name": "BUD-UTIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GS-02232", - "type": "IP PEERING - R&E" - }, - { - "name": "RARE-P4-MANAGEMENT-VLAN3005", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GS-02641", - "type": "L2SERVICES" - }, - { - "name": "PRA-PRA-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GA-02544", - "type": "ETHERNET" - }, - { - "name": "BIL-HAM-02517", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "BILBAO", - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02517", - "type": "GEANT PLUS" - }, - { - "name": "MIL2-MIL2-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-02547", - "type": "ETHERNET" - }, - { - "name": "LON2-PAR-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01824", - "type": "ETHERNET" - }, - { - "name": "COR-PAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02479", - "type": "ETHERNET" - }, - { - "name": "BRU-PAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02279", - "type": "ETHERNET" - }, - { - "name": "GEN-PAR-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01823", - "type": "ETHERNET" - }, - { - "name": "BIL-PAR-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-01969", - "type": "ETHERNET" - }, - { - "name": "COR-PAR-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS", - "CORK" - ], - "sid": "GS-02477", - "type": "IP TRUNK" - }, - { - "name": "GEN-PAR-IPTRUNK", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "PARIS", - "GENEVA" - ], - "sid": "GS-00040", - "type": "IP TRUNK" - }, - { - "name": "BRU-PAR-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS", - "BRUSSELS" - ], - "sid": "GS-02280", - "type": "IP TRUNK" - }, - { - "name": "NORDUNET-AP3-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GA-02480", - "type": "ETHERNET" - }, - { - "name": "NORDUNET-AP3", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-02552", - "type": "GEANT IP" - }, - { - "name": "BELNET-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01842", - "type": "ETHERNET" - }, - { - "name": "BELNET-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00523", - "type": "GEANT PEERING" - }, - { - "name": "BELNET-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00436", - "type": "GEANT IP" - }, - { - "name": "GEN-PAR-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01887", - "type": "ETHERNET" - }, - { - "name": "FRA-GEN-1.6T-LAG", - "overlays": { - "speed": 1717986918400 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01888", - "type": "ETHERNET" - }, - { - "name": "GEN-MIL2-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01886", - "type": "ETHERNET" - }, - { - "name": "GEN-MAR-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "GENEVA" - ], - "sid": "GA-01878", - "type": "ETHERNET" - }, - { - "name": "GEN-MIL2-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "GENEVA", - "MILAN 2 CALDERA" - ], - "sid": "GS-00039", - "type": "IP TRUNK" - }, - { - "name": "AMS-HAM-LAG-300G", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GA-01896", - "type": "ETHERNET" - }, - { - "name": "HAM-TAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GA-02349", - "type": "ETHERNET" - }, - { - "name": "HAM-POZ-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GA-02340", - "type": "ETHERNET" - }, - { - "name": "HAM-POZ-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)", - "POZNAN 1" - ], - "sid": "GS-02339", - "type": "IP TRUNK" - }, - { - "name": "HAM-TAR-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)", - "TARTU" - ], - "sid": "GS-02348", - "type": "IP TRUNK" - }, - { - "name": "ESNET-GEN-773-OOB", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "GENEVA" - ], - "sid": "GS-00877", - "type": "IP PEERING - R&E" - }, - { - "name": "VIE-VIE-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-02561", - "type": "ETHERNET" - }, - { - "name": "VIE-VIE-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "VIENNA", - "VIENNA" - ], - "sid": "GS-02563", - "type": "IP TRUNK" - }, - { - "name": "VIE-VIE-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-02562", - "type": "ETHERNET" - }, - { - "name": "HAM-POZ-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-02341", - "type": "ETHERNET" - }, - { - "name": "KIE-POZ-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-01996", - "type": "ETHERNET" - }, - { - "name": "KAU-POZ-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-01812", - "type": "ETHERNET" - }, - { - "name": "POZ-PRA-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-02408", - "type": "ETHERNET" - }, - { - "name": "KAU-POZ-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1", - "KAUNAS" - ], - "sid": "GS-00043", - "type": "IP TRUNK" - }, - { - "name": "POZ-PRA-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "POZNAN 1", - "PRAGUE" - ], - "sid": "GS-02407", - "type": "IP TRUNK" - }, - { - "name": "FRA-PRA-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GA-01827", - "type": "ETHERNET" - }, - { - "name": "POZ-PRA-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GA-02409", - "type": "ETHERNET" - }, - { - "name": "PRA-VIE-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PRAGUE" - ], - "sid": "GA-01830", - "type": "ETHERNET" - }, - { - "name": "PRA-VIE-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "PRAGUE", - "VIENNA" - ], - "sid": "GS-00059", - "type": "IP TRUNK" - }, - { - "name": "LON-MX-SW-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON" - ], - "sid": "GA-", - "type": "ETHERNET" - }, - { - "name": "DTN-PROJECT-VLAN310", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-00142", - "type": "SERVER LINK" - }, - { - "name": "LON-EUMETSAT-SERVER-DATA-TRAFFIC", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "LONDON" - ], - "sid": "GS-02313", - "type": "IP PEERING - R&E" - }, - { - "name": "BELNET-AZDELTA-EXPRESSROUTE-VLAN4068", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02565", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEAZDELTA-02564", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02564", - "type": "EXPRESS ROUTE" - }, - { - "name": "PRA-VIE-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01858", - "type": "ETHERNET" - }, - { - "name": "NL-NORDUNET-LHCONE-IPV6", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00839", - "type": "L3-VPN" - }, - { - "name": "NL-NORDUNET-LHCONE-IPV4", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM" - ], - "sid": "GS-00838", - "type": "L3-VPN" - }, - { - "name": "REDIRIS-ICN2-EXPRESSROUTE-VLAN692", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "AMSTERDAM", - "BILBAO" - ], - "sid": "GS-02560", - "type": "EXPRESS ROUTE" - }, - { - "name": "REDIRIS-ICN2-EXPRESSROUTE-VLAN691", - "overlays": { - "speed": 440234147840 - }, - "pops": [ - "AMSTERDAM", - "MADRID" - ], - "sid": "GS-02559", - "type": "EXPRESS ROUTE" - }, - { - "name": "BUD-VIE-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01853", - "type": "ETHERNET" - }, - { - "name": "BRA-VIE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01868", - "type": "ETHERNET" - }, - { - "name": "MIL2-VIE-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "VIENNA" - ], - "sid": "GA-01854", - "type": "ETHERNET" - }, - { - "name": "MIL2-VIE-IPTRUNK", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "VIENNA", - "MILAN 2 CALDERA" - ], - "sid": "GS-00057", - "type": "IP TRUNK" - }, - { - "name": "DE-CIX-MAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02205", - "type": "ETHERNET" - }, - { - "name": "IX-PEERINGS-IN-DE-CIX-MAR", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-00948", - "type": "IP PEERING - NON R&E (PUBLIC)" - }, - { - "name": "GEN-MIL2-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-01774", - "type": "ETHERNET" - }, - { - "name": "MIL2-VIE-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-01769", - "type": "ETHERNET" - }, - { - "name": "MAR-MIL2-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-01776", - "type": "ETHERNET" - }, - { - "name": "LJU-MIL2-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-01775", - "type": "ETHERNET" - }, - { - "name": "ATH2-MIL2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-01777", - "type": "ETHERNET" - }, - { - "name": "BELNET-HOGENT-EXPRESSROUTE-VLAN4070", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02574", - "type": "EXPRESS ROUTE" - }, - { - "name": "MSEHOGENT-02573", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02573", - "type": "EXPRESS ROUTE" - }, - { - "name": "FR-HARNET", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GS-02538", - "type": "IP PEERING - R&E" - }, - { - "name": "MAR-MAR-MGMT-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02588", - "type": "ETHERNET" - }, - { - "name": "MAR-MAR-IPTRUNK", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MARSEILLE", - "MARSEILLE" - ], - "sid": "GS-02590", - "type": "IP TRUNK" - }, - { - "name": "MAR-MAR-MGMT-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MARSEILLE" - ], - "sid": "GA-02589", - "type": "ETHERNET" - }, - { - "name": "MAD-MAD-MGMT-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-02592", - "type": "ETHERNET" - }, - { - "name": "MAD-MAD-IPTRUNK", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MADRID", - "MADRID" - ], - "sid": "GS-02593", - "type": "IP TRUNK" - }, - { - "name": "MAD-MAD-MGMT-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "MADRID" - ], - "sid": "GA-02591", - "type": "ETHERNET" - }, - { - "name": "MIL2-THE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA" - ], - "sid": "GA-02607", - "type": "ETHERNET" - }, - { - "name": "POR-POR-MGMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PORTO" - ], - "sid": "GA-02585", - "type": "ETHERNET" - }, - { - "name": "POR-POR-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PORTO", - "PORTO" - ], - "sid": "GS-02587", - "type": "IP TRUNK" - }, - { - "name": "POR-POR-MGMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PORTO" - ], - "sid": "GA-02586", - "type": "ETHERNET" - }, - { - "name": "BRA-BRA-MGMT-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GA-02600", - "type": "ETHERNET" - }, - { - "name": "BRA-BRA-MGMT-IPTRUNK", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BRATISLAVA", - "BRATISLAVA" - ], - "sid": "GS-02602", - "type": "IP TRUNK" - }, - { - "name": "BUD-BUD-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-02594", - "type": "ETHERNET" - }, - { - "name": "BUD-BUD-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST", - "BUDAPEST" - ], - "sid": "GS-02596", - "type": "IP TRUNK" - }, - { - "name": "BUD-BUD-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUDAPEST" - ], - "sid": "GA-02595", - "type": "ETHERNET" - }, - { - "name": "BRA-BRA-MGMT-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BRATISLAVA" - ], - "sid": "GA-02601", - "type": "ETHERNET" - }, - { - "name": "AZSCIENCENET-AP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GS-00433", - "type": "GEANT IP" - }, - { - "name": "JISC-AP2-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-01760", - "type": "ETHERNET" - }, - { - "name": "JISC-AP2", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-00480", - "type": "GEANT IP" - }, - { - "name": "JISC-AP2-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GS-02474", - "type": "L3-VPN" - }, - { - "name": "LOFAR-02584", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "AMSTERDAM", - "RIGA", - "RIGA" - ], - "sid": "GS-02584", - "type": "GEANT PLUS" - }, - { - "name": "RESTENA-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GA-01818", - "type": "ETHERNET" - }, - { - "name": "IMINDS-IC-GEANT-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GA-02314", - "type": "ETHERNET" - }, - { - "name": "BRU-PAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GA-02278", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_111505", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-00680", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_114016", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS", - "ATHENS 2", - "ATHENS 2" - ], - "sid": "GS-00668", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_124049", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02511", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_124050", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS", - "MADRID" - ], - "sid": "GS-02514", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_224050", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS", - "BILBAO" - ], - "sid": "GS-02515", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_724045", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS", - "POZNAN 1" - ], - "sid": "GS-02486", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_824045", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS", - "POZNAN 1" - ], - "sid": "GS-02487", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_924045", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS", - "POZNAN 1" - ], - "sid": "GS-02488", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_99287741", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS", - "GENEVA" - ], - "sid": "GS-00671", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_99514671", - "overlays": { - "speed": 0 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS", - "PARIS" - ], - "sid": "GS-00682", - "type": "ETHERNET" - }, - { - "name": "FED4FIRE-00669", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BRUSSELS", - "ATHENS 2", - "BRUSSELS", - "ATHENS 2" - ], - "sid": "GS-00669", - "type": "GEANT PLUS" - }, - { - "name": "RESTENA-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GS-00508", - "type": "GEANT IP" - }, - { - "name": "RESTENA-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GS-00586", - "type": "GEANT PEERING" - }, - { - "name": "AMS-BRU-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GA-01792", - "type": "ETHERNET" - }, - { - "name": "BELNET-GRID5K-LAG", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GA-01791", - "type": "ETHERNET" - }, - { - "name": "BELNET-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GA-01913", - "type": "ETHERNET" - }, - { - "name": "BELNET-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GS-00437", - "type": "GEANT IP" - }, - { - "name": "BELNET-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BRUSSELS" - ], - "sid": "GS-00524", - "type": "GEANT PEERING" - }, - { - "name": "OFCFODMOB-02631", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "AMSTERDAM", - "FRANKFURT" - ], - "sid": "GS-02631", - "type": "GEANT PLUS" - }, - { - "name": "OFCFODMOB-02630", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS", - "AMSTERDAM" - ], - "sid": "GS-02630", - "type": "GEANT PLUS" - }, - { - "name": "AMS-AMS-AMT-RELAYLINK-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-02636", - "type": "SERVER LINK" - }, - { - "name": "AMS-AMS-AMT-RELAYLINK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-02305", - "type": "SERVER LINK" - }, - { - "name": "BUC2-CHI-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUCHAREST 2" - ], - "sid": "GA-02003", - "type": "ETHERNET" - }, - { - "name": "BUC2-CHI-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CHISINAU" - ], - "sid": "GA-02018", - "type": "ETHERNET" - }, - { - "name": "BUC-CHI-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CHISINAU", - "BUCHAREST 2" - ], - "sid": "GS-00022", - "type": "IP TRUNK" - }, - { - "name": "MARNET-AP1-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GA-01732", - "type": "ETHERNET" - }, - { - "name": "BREN-AP1-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GA-01291", - "type": "ETHERNET" - }, - { - "name": "AMRES-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GA-02239", - "type": "ETHERNET" - }, - { - "name": "SOF-ZAG-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GA-02368", - "type": "ETHERNET" - }, - { - "name": "SOF-ZAG-IPTRUNK", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)", - "ZAGREB 1" - ], - "sid": "GS-02367", - "type": "IP TRUNK" - }, - { - "name": "BREN-AP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00438", - "type": "GEANT IP" - }, - { - "name": "BREN-AP2", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00439", - "type": "GEANT IP" - }, - { - "name": "MARNET-AP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00489", - "type": "GEANT IP" - }, - { - "name": "AMRES-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-02240", - "type": "GEANT IP" - }, - { - "name": "BREN-AP1-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00557", - "type": "GEANT PEERING" - }, - { - "name": "AMRES-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-02241", - "type": "GWS - INDIRECT" - }, - { - "name": "MARNET-AP1-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00536", - "type": "GWS - INDIRECT" - }, - { - "name": "BREN-AP2-IAS", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00558", - "type": "GEANT PEERING" - }, - { - "name": "ULAKBIM-AP2-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GA-01962", - "type": "ETHERNET" - }, - { - "name": "SOF-THE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GA-02425", - "type": "ETHERNET" - }, - { - "name": "BUC-SOF-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GA-01733", - "type": "ETHERNET" - }, - { - "name": "RASH-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GA-01768", - "type": "ETHERNET" - }, - { - "name": "LIS-PAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-02635", - "type": "ETHERNET" - }, - { - "name": "LIS-PAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LISBON" - ], - "sid": "GA-02634", - "type": "ETHERNET" - }, - { - "name": "BREN-AP2-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GA-01997", - "type": "ETHERNET" - }, - { - "name": "LIS-PAR-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "LISBON", - "PARIS" - ], - "sid": "GS-02633", - "type": "IP TRUNK" - }, - { - "name": "ULAKBIM-AP2-LHCONE", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00869", - "type": "L3-VPN" - }, - { - "name": "ULAKBIM-AP2", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00518", - "type": "GEANT IP" - }, - { - "name": "RASH-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00497", - "type": "GEANT IP" - }, - { - "name": "ULAKBIM-AP2-IAS", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00592", - "type": "GEANT PEERING" - }, - { - "name": "RASH-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-00540", - "type": "GWS - INDIRECT" - }, - { - "name": "DFN-AP2-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GA-01894", - "type": "ETHERNET" - }, - { - "name": "MIL2-THE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "THESSALONIKI" - ], - "sid": "GA-02608", - "type": "ETHERNET" - }, - { - "name": "SOF-THE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "THESSALONIKI" - ], - "sid": "GA-02426", - "type": "ETHERNET" - }, - { - "name": "ATH2-THE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "THESSALONIKI" - ], - "sid": "GA-02423", - "type": "ETHERNET" - }, - { - "name": "GRNET-AP2-LAG", - "overlays": { - "speed": 64424509440 - }, - "pops": [ - "THESSALONIKI" - ], - "sid": "GA-01929", - "type": "ETHERNET" - }, - { - "name": "GRNET-AP2", - "overlays": { - "speed": 64424509440 - }, - "pops": [ - "THESSALONIKI" - ], - "sid": "GS-00472", - "type": "GEANT IP" - }, - { - "name": "GRNET-AP2-IAS", - "overlays": { - "speed": 64424509440 - }, - "pops": [ - "THESSALONIKI" - ], - "sid": "GS-00531", - "type": "GWS - INDIRECT" - }, - { - "name": "ULAKBIM-AP1", - "overlays": { - "speed": 0 - }, - "pops": [ - "THESSALONIKI" - ], - "sid": "GS-00517", - "type": "GEANT IP" - }, - { - "name": "MIL2-THE-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "THESSALONIKI", - "MILAN 2 CALDERA" - ], - "sid": "GS-02609", - "type": "IP TRUNK" - }, - { - "name": "SOF-THE-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "THESSALONIKI", - "SOFIA SO2 (EQUINIX)" - ], - "sid": "GS-02424", - "type": "IP TRUNK" - }, - { - "name": "ULAKBIM-AP1-LHCONE", - "overlays": { - "speed": 0 - }, - "pops": [ - "THESSALONIKI" - ], - "sid": "GS-00868", - "type": "L3-VPN" - }, - { - "name": "ULAKBIM-AP1-IAS", - "overlays": { - "speed": 0 - }, - "pops": [ - "THESSALONIKI" - ], - "sid": "GS-00591", - "type": "GEANT PEERING" - }, - { - "name": "BRU-HAM-02519", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS" - ], - "sid": "GS-02519", - "type": "GEANT PLUS" - }, - { - "name": "LITNET-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GA-02071", - "type": "ETHERNET" - }, - { - "name": "LITNET-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GS-00535", - "type": "GWS - INDIRECT" - }, - { - "name": "LITNET-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "POZNAN 1" - ], - "sid": "GS-00487", - "type": "GEANT IP" - }, - { - "name": "RARE-02644", - "overlays": { - "speed": 536870912000 - }, - "pops": [ - "BILBAO", - "POZNAN 1" - ], - "sid": "GS-02644", - "type": "GEANT PLUS" - }, - { - "name": "RARE-02643", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "PARIS", - "POZNAN 1" - ], - "sid": "GS-02643", - "type": "GEANT PLUS" - }, - { - "name": "GRNET-AP1-LAG", - "overlays": { - "speed": 64424509440 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GA-01794", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_424046", - "overlays": { - "speed": 0 - }, - "pops": [ - "ATHENS 2", - "ATHENS 2", - "ATHENS 2" - ], - "sid": "GS-02500", - "type": "ETHERNET" - }, - { - "name": "ATH2-THE-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GA-02422", - "type": "ETHERNET" - }, - { - "name": "ATH2-MIL2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GA-01795", - "type": "ETHERNET" - }, - { - "name": "GRIX-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GA-01640", - "type": "ETHERNET" - }, - { - "name": "CYNET-AP2-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GA-01928", - "type": "ETHERNET" - }, - { - "name": "GRNET-LHCONE-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GA-01364", - "type": "ETHERNET" - }, - { - "name": "ATH2-THE-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "THESSALONIKI", - "ATHENS 2" - ], - "sid": "GS-02421", - "type": "IP TRUNK" - }, - { - "name": "ATH2-MIL2-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "MILAN 2 CALDERA", - "ATHENS 2" - ], - "sid": "GS-00014", - "type": "IP TRUNK" - }, - { - "name": "GRIX-00667", - "overlays": { - "speed": 21474836480 - }, - "pops": [ - "ATHENS 2", - "ATHENS 2", - "ATHENS 2" - ], - "sid": "GS-00667", - "type": "GEANT PLUS" - }, - { - "name": "GRNET-AP1", - "overlays": { - "speed": 64424509440 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GS-00471", - "type": "GEANT IP" - }, - { - "name": "CYNET-AP2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GS-00450", - "type": "GEANT IP" - }, - { - "name": "GRNET-ATH-LHCONE", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GS-00827", - "type": "L3-VPN" - }, - { - "name": "GRNET-AP1-IAS", - "overlays": { - "speed": 64424509440 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GS-00530", - "type": "GWS - INDIRECT" - }, - { - "name": "CYNET-AP2-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ATHENS 2" - ], - "sid": "GS-00525", - "type": "GWS - INDIRECT" - }, - { - "name": "AMS-HAM-JAXA-SINET-DFN-00640", - "overlays": { - "speed": 644245094400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-00640", - "type": "ETHERNET" - }, - { - "name": "DFN-AP2-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-00817", - "type": "L3-VPN" - }, - { - "name": "DFN-AP2-IAS", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-00567", - "type": "GEANT PEERING" - }, - { - "name": "BUC-BUC-MGMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUCHAREST 2" - ], - "sid": "GA-50061", - "type": "ETHERNET" - }, - { - "name": "BUC-BUC-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUCHAREST 2", - "BUCHAREST 2" - ], - "sid": "GS-50060", - "type": "IP TRUNK" - }, - { - "name": "BUC-BUC-MGMT-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUCHAREST 2" - ], - "sid": "GA-50062", - "type": "ETHERNET" - }, - { - "name": "LJU-MIL2-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "LJUBLJANA 1" - ], - "sid": "GA-01741", - "type": "ETHERNET" - }, - { - "name": "LJU-ZAG-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LJUBLJANA 1" - ], - "sid": "GA-02373", - "type": "ETHERNET" - }, - { - "name": "ARNES-AP1-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LJUBLJANA 1" - ], - "sid": "GA-01742", - "type": "ETHERNET" - }, - { - "name": "LJU-ZAG-IPTRUNK", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LJUBLJANA 1", - "ZAGREB 1" - ], - "sid": "GS-02372", - "type": "IP TRUNK" - }, - { - "name": "ARNES-AP1", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LJUBLJANA 1" - ], - "sid": "GS-00426", - "type": "GEANT IP" - }, - { - "name": "ARNES-AP1-IAS", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "LJUBLJANA 1" - ], - "sid": "GS-00552", - "type": "GEANT PEERING" - }, - { - "name": "GOOGLE-FRA-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "FRANKFURT" - ], - "sid": "GA-01943", - "type": "ETHERNET" - }, - { - "name": "RIG-TAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA" - ], - "sid": "GA-02346", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_210341", - "overlays": { - "speed": 0 - }, - "pops": [ - "RIGA", - "RIGA", - "TARTU", - "TARTU" - ], - "sid": "GS-00752", - "type": "ETHERNET" - }, - { - "name": "EENET-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA" - ], - "sid": "GA-01737", - "type": "ETHERNET" - }, - { - "name": "LAT-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA" - ], - "sid": "GA-02073", - "type": "ETHERNET" - }, - { - "name": "KAU-RIG-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA" - ], - "sid": "GA-02031", - "type": "ETHERNET" - }, - { - "name": "KAU-RIG-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA", - "KAUNAS" - ], - "sid": "GS-00044", - "type": "IP TRUNK" - }, - { - "name": "RIG-TAR-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA", - "TARTU" - ], - "sid": "GS-02345", - "type": "IP TRUNK" - }, - { - "name": "EENET-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA" - ], - "sid": "GS-00569", - "type": "GEANT PEERING" - }, - { - "name": "LAT-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA" - ], - "sid": "GS-00577", - "type": "GEANT PEERING" - }, - { - "name": "EENET-AP2-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA" - ], - "sid": "GS-00819", - "type": "L3-VPN" - }, - { - "name": "LAT-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA" - ], - "sid": "GS-00484", - "type": "GEANT IP" - }, - { - "name": "EENET-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "RIGA" - ], - "sid": "GS-00455", - "type": "GEANT IP" - }, - { - "name": "LON2-PAR-ROLR-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "PARIS" - ], - "sid": "GA-50068", - "type": "ETHERNET" - }, - { - "name": "LON2-PAR-ROLR-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON 2" - ], - "sid": "GA-50067", - "type": "ETHERNET" - }, - { - "name": "MAR-MAR-02645", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "MARSEILLE", - "MARSEILLE" - ], - "sid": "GS-02645", - "type": "GEANT PLUS" - }, - { - "name": "LON2-PAR-ROLR-IPTRUNK$GS-50066", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LONDON 2", - "PARIS" - ], - "sid": "GS-50066", - "type": "IP TRUNK" - }, - { - "name": "LJU-MIL2-IPTRUNK", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "MILAN 2 CALDERA", - "LJUBLJANA 1" - ], - "sid": "GS-00051", - "type": "IP TRUNK" - }, - { - "name": "EENET-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "TARTU" - ], - "sid": "GA-02053", - "type": "ETHERNET" - }, - { - "name": "HAM-TAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "TARTU" - ], - "sid": "GA-02350", - "type": "ETHERNET" - }, - { - "name": "RIG-TAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "TARTU" - ], - "sid": "GA-02347", - "type": "ETHERNET" - }, - { - "name": "EENET-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "TARTU" - ], - "sid": "GS-00454", - "type": "GEANT IP" - }, - { - "name": "EENET-AP1-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "TARTU" - ], - "sid": "GS-00818", - "type": "L3-VPN" - }, - { - "name": "EENET-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "TARTU" - ], - "sid": "GS-00568", - "type": "GEANT PEERING" - }, - { - "name": "KAU-RIG-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KAUNAS" - ], - "sid": "GA-02021", - "type": "ETHERNET" - }, - { - "name": "KAU-POZ-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KAUNAS" - ], - "sid": "GA-02044", - "type": "ETHERNET" - }, - { - "name": "LITNET-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KAUNAS" - ], - "sid": "GA-02042", - "type": "ETHERNET" - }, - { - "name": "LAT-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KAUNAS" - ], - "sid": "GA-02074", - "type": "ETHERNET" - }, - { - "name": "LITNET-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KAUNAS" - ], - "sid": "GS-00486", - "type": "GEANT IP" - }, - { - "name": "LAT-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KAUNAS" - ], - "sid": "GS-00485", - "type": "GEANT IP" - }, - { - "name": "LAT-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KAUNAS" - ], - "sid": "GS-00578", - "type": "GEANT PEERING" - }, - { - "name": "LITNET-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "KAUNAS" - ], - "sid": "GS-00534", - "type": "GWS - INDIRECT" - }, - { - "name": "DUB-LON-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "DUBLIN CITY WEST" - ], - "sid": "GA-02008", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_113015", - "overlays": { - "speed": 0 - }, - "pops": [ - "DUBLIN CITY WEST", - "DUBLIN CITY WEST" - ], - "sid": "GS-00690", - "type": "ETHERNET" - }, - { - "name": "GEANT_EPIPE_117003", - "overlays": { - "speed": 0 - }, - "pops": [ - "DUBLIN CITY WEST", - "DUBLIN CITY WEST" - ], - "sid": "GS-00632", - "type": "ETHERNET" - }, - { - "name": "HEANET-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "DUBLIN CITY WEST" - ], - "sid": "GA-01925", - "type": "ETHERNET" - }, - { - "name": "COR-DUB-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "DUBLIN CITY WEST" - ], - "sid": "GA-02385", - "type": "ETHERNET" - }, - { - "name": "NRENBBEXT-JISC-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "DUBLIN CITY WEST" - ], - "sid": "GA-01550", - "type": "ETHERNET" - }, - { - "name": "INEX-LAG", - "overlays": { - "speed": 32212254720 - }, - "pops": [ - "DUBLIN CITY WEST" - ], - "sid": "GA-01924", - "type": "ETHERNET" - }, - { - "name": "COR-DUB-IPTRUNK", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "DUBLIN CITY WEST", - "CORK" - ], - "sid": "GS-02383", - "type": "IP TRUNK" - }, - { - "name": "HEANET-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "DUBLIN CITY WEST" - ], - "sid": "GS-00473", - "type": "GEANT IP" - }, - { - "name": "HEANET-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "DUBLIN CITY WEST" - ], - "sid": "GS-00572", - "type": "GEANT PEERING" - }, - { - "name": "HEANET-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CORK" - ], - "sid": "GA-01889", - "type": "ETHERNET" - }, - { - "name": "COR-PAR-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CORK" - ], - "sid": "GA-02478", - "type": "ETHERNET" - }, - { - "name": "COR-DUB-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CORK" - ], - "sid": "GA-02384", - "type": "ETHERNET" - }, - { - "name": "COR-LON2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CORK" - ], - "sid": "GA-02387", - "type": "ETHERNET" - }, - { - "name": "HEANET-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CORK" - ], - "sid": "GS-00474", - "type": "GEANT IP" - }, - { - "name": "HEANET-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "CORK" - ], - "sid": "GS-00573", - "type": "GEANT PEERING" - }, - { - "name": "MSECREDENDO-02654", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "BRUSSELS", - "BRUSSELS", - "AMSTERDAM" - ], - "sid": "GS-02654", - "type": "EXPRESS ROUTE" - }, - { - "name": "ARNES-LHCONE-LAG", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LJUBLJANA 1" - ], - "sid": "GA-02632", - "type": "ETHERNET" - }, - { - "name": "MSECREDENDO-02655", - "overlays": { - "speed": 118111600640 - }, - "pops": [ - "FRANKFURT", - "AMSTERDAM", - "AMSTERDAM" - ], - "sid": "GS-02655", - "type": "EXPRESS ROUTE" - }, - { - "name": "ARNES-AP1-LHCONE", - "overlays": { - "speed": 429496729600 - }, - "pops": [ - "LJUBLJANA 1" - ], - "sid": "GS-00807", - "type": "L3-VPN" - }, - { - "name": "HAM-DTN-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GA-50069", - "type": "ETHERNET" - }, - { - "name": "PIONIER-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GA-01892", - "type": "ETHERNET" - }, - { - "name": "NORDUNET-AP2-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GA-01893", - "type": "ETHERNET" - }, - { - "name": "NORDUNET-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-00493", - "type": "GEANT IP" - }, - { - "name": "EUMET-SVALBARD-HAM-MONITORINGVLAN", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02155", - "type": "GEANT IP" - }, - { - "name": "NORDUNET-AP2-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02118", - "type": "L3-VPN" - }, - { - "name": "PIONIER-AP2-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-00843", - "type": "L3-VPN" - }, - { - "name": "PIONIER-AP2", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-00496", - "type": "GEANT IP" - }, - { - "name": "PIONIER-AP2-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-00580", - "type": "GEANT PEERING" - }, - { - "name": "AMS-HAM-MSE-01151", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-01151", - "type": "GEANT PLUS" - }, - { - "name": "AMS-HAM-MSE-01154", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-01154", - "type": "GEANT PLUS" - }, - { - "name": "AMS-HAM-MSE-01149", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-01149", - "type": "GEANT PLUS" - }, - { - "name": "AMS-HAM-MSE-01159", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-01159", - "type": "GEANT PLUS" - }, - { - "name": "AMS-HAM-MSE-01150", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-01150", - "type": "GEANT PLUS" - }, - { - "name": "AMS-HAM-MSE-01161", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-01161", - "type": "GEANT PLUS" - }, - { - "name": "AMS-HAM-MSE-02412", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02412", - "type": "GEANT PLUS" - }, - { - "name": "HAM-DTN-10G-DATA", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "HAMBURG (SÜDERSTRASSE)" - ], - "sid": "GS-02433", - "type": "SERVER LINK" - }, - { - "name": "BUD-ZAG-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GA-01909", - "type": "ETHERNET" - }, - { - "name": "ARNES-AP2-LAG", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GA-01866", - "type": "ETHERNET" - }, - { - "name": "CARNET-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GA-01865", - "type": "ETHERNET" - }, - { - "name": "AMRES-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GA-01902", - "type": "ETHERNET" - }, - { - "name": "LJU-ZAG-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GA-02374", - "type": "ETHERNET" - }, - { - "name": "SOF-ZAG-LAG", - "overlays": { - "speed": 214748364800 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GA-02369", - "type": "ETHERNET" - }, - { - "name": "AMRES-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00425", - "type": "GEANT IP" - }, - { - "name": "ARNES-AP2-LHCONE", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00808", - "type": "L3-VPN" - }, - { - "name": "CARNET-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00559", - "type": "GEANT PEERING" - }, - { - "name": "CARNET-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00440", - "type": "GEANT IP" - }, - { - "name": "ARNES-AP2", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00427", - "type": "GEANT IP" - }, - { - "name": "ARNES-AP2-IAS", - "overlays": { - "speed": 322122547200 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00553", - "type": "GEANT PEERING" - }, - { - "name": "AMRES-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00522", - "type": "GEANT PEERING" - }, - { - "name": "KREN-AP1-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GA-02154", - "type": "ETHERNET" - }, - { - "name": "SETCOR-HR-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GA-02000", - "type": "ETHERNET" - }, - { - "name": "MARNET-AP2-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GA-01862", - "type": "ETHERNET" - }, - { - "name": "MREN-AP1-LAG", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GA-01903", - "type": "ETHERNET" - }, - { - "name": "ROEDUNET-AP1-LAG", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUCHAREST 2" - ], - "sid": "GA-01934", - "type": "ETHERNET" - }, - { - "name": "KREN-AP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-02153", - "type": "GEANT IP" - }, - { - "name": "MREN-AP1-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00538", - "type": "GEANT PEERING" - }, - { - "name": "SETCOR-HR-61211", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00942", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "MREN-AP1", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00491", - "type": "GEANT IP" - }, - { - "name": "MARNET-AP2", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00490", - "type": "GEANT IP" - }, - { - "name": "HR-EDUZONE", - "overlays": { - "speed": 22548578304 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00936", - "type": "IP PEERING - NON R&E (PRIVATE)" - }, - { - "name": "MARNET-AP2-IAS", - "overlays": { - "speed": 10737418240 - }, - "pops": [ - "ZAGREB 1" - ], - "sid": "GS-00537", - "type": "GEANT PEERING" - }, - { - "name": "ROEDUNET-AP1", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUCHAREST 2" - ], - "sid": "GS-00509", - "type": "GEANT IP" - }, - { - "name": "ROEDUNET-AP1-IAS", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUCHAREST 2" - ], - "sid": "GS-00544", - "type": "GEANT PEERING" - }, - { - "name": "ROEDUNET-AP1-LHCONE", - "overlays": { - "speed": 107374182400 - }, - "pops": [ - "BUCHAREST 2" - ], - "sid": "GS-00857", - "type": "L3-VPN" - } -] diff --git a/test/data/poller-interfaces.json b/test/data/poller-interfaces.json deleted file mode 100644 index 656887235590b76cd8b133318f84d55d58b349bd..0000000000000000000000000000000000000000 --- a/test/data/poller-interfaces.json +++ /dev/null @@ -1,79554 +0,0 @@ -[ - { - "router": "rt0.lju.si.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c8/1", - "2/x1/1/c8/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU-ZAG-IPTRUNK $GS-02372 | LJU-ZAG | ", - "circuits": [ - { - "id": 747865, - "name": "LJU-ZAG-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 9, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-ZAG", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LJU-ZAG", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/2.2200", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT HBKU #UK-HBKU $GS-00907 | ASN34945 |", - "circuits": [ - { - "id": 661378, - "name": "UK-HBKU", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1342, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "HBKU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HBKU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/7.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lis-pt-idrac |perfSONAR iDRAC", - "circuits": [ - { - "id": 708306, - "name": "PS-LIS-PT-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 713, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-11/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CERN EXT-2 P_AE22 SRF20066 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1215, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-1/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 678, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 808, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 562, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.101", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT-IT GEANT-IT #AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT $GS-00652", - "circuits": [ - { - "id": 705901, - "name": "AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1548, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02192 |SCION server 1 external port", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1287, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | FRA-PAR-QFX | to QFX xe-0/0/17", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 819, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "2/x1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | BUC-SOF | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178498, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-SOF", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-SOF", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 646, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c18/2", - "1/x1/1/c24/1", - "1/x1/1/c24/2" - ], - "bundle-parents": [ - "1/x1/1/c18/2", - "1/x1/1/c24/1", - "1/x1/1/c24/2" - ], - "description": "LAG CUSTOMER ARNES | $GA-01866 | #ARNES-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.2102", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN RE_INTERCONNECT AARNET #AARNET-LON-LHCONE-AER $GS-00806 | ASN7575", - "circuits": [ - { - "id": 709695, - "name": "AARNET-LON-LHCONE-AER", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 907, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 602, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "et-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | LIS-POR | Infinera GRV1 1/1/3 Facing LISbon", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 553, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-POR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LIS-POR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-23", - "bundle": [ - "1/1/c2/3" - ], - "bundle-parents": [ - "1/1/c2/3" - ], - "description": "LAG INFRASTRUCTURE DTN PROJECT | $GA-50069 | #DTN-LAG | DTN LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177303, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 603, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "1/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-BRU | to RT0.AMS port 1/1/C8/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916353, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-BRU", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-BRU", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 595, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-24", - "bundle": [ - "1/x1/1/c4/2" - ], - "bundle-parents": [ - "1/x1/1/c4/2" - ], - "description": "LAG CUSTOMER MREN | $GA-01903 | #MREN-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177304, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MREN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MREN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae6", - "bundle": [ - "et-0/1/5", - "et-1/1/5" - ], - "bundle-parents": [ - "et-0/1/5", - "et-1/1/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02144 | BIL-MAD | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 837, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-MAD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BIL-MAD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.1008", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT CSTNET #NL-NETHERLIGHT-CSTNET-KAUST-1 $GS-02392 | ASN7497 | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1739, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.100", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_GLOBAL CUSTOMER PIONIER #PIONIER-AP1 $GS-00495 | ASN8501 |", - "circuits": [ - { - "id": 661706, - "name": "PIONIER-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 791, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER URAN", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 569, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.402", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT RE_INTERCONNECT CANARIE UBUNTUNET #AMS-LON-MISC-UBUNTUNET-CANARIE-170352 $GS-00646 |", - "circuits": [ - { - "id": 735618, - "name": "AMS-LON-MISC-UBUNTUNET-CANARIE-170352", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 819, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4073", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSECREDENDO-02654 $GS-02654", - "circuits": [ - { - "id": 747544, - "name": "MSECREDENDO-02654", - "type": "EXPRESS ROUTE", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE2 | Uplink to sw5.lon.uk.geant.net - xe-", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1473, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2511", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE SAO-DUB | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 808, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1278, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:947", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET REDIRIS #HAM-MAD-02183 $GS-02183", - "circuits": [ - { - "id": 747550, - "name": "HAM-MAD-02183", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 592, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae3", - "bundle": [ - "et-7/0/5", - "et-7/1/2", - "et-7/1/5" - ], - "bundle-parents": [ - "et-7/0/5", - "et-7/1/2", - "et-7/1/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02526 | POZ-POZ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 854, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-POZ", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "POZ-POZ", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae3", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01691 | LON2-PRD-ESX03 ESXI Traffic LAG - No LACP", - "circuits": [ - { - "id": 658679, - "name": "LON2-PRD-ESX03-ESXI-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 593, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE DTN-Project #DTN-PRA-10G-DATA $GA-02285 | Under testing ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 546, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "ae13", - "bundle": [ - "et-0/0/0" - ], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "LAG CUSTOMER SANET SRF24007 $GA-02437 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 616, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SANET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SANET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.36", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEULB-02363 $GS-02363", - "circuits": [ - { - "id": 744144, - "name": "MSEULB-02363", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1417, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/4.17", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN17-CH |", - "circuits": [ - { - "id": 663138, - "name": "VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN17-CH", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 549, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-9/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | BUC-BUD", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1129, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE ORANGE P_AE31 SRF21047 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1273, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER AMS", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 530, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "AMS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "2/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178115, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/0.50", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX2-AMS-TO-FW-WAN |SRX-2 to FW WAN (VLAN 50)", - "circuits": [ - { - "id": 663042, - "name": "SRX2-AMS-TO-FW-WAN", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 557, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-2/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC AMS-IX P_AE12 | INTERXION ID: NL102081 AMS-IX ID: mym6-mem-1540-6399", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 951, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.2002", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L3VPN RE_INTERCONNECT INTERNET2 #INTERNET2-LON-LHCONE $GS-00830 | ASN11537", - "circuits": [ - { - "id": 661750, - "name": "INTERNET2-LON-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 869, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | mx1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1262, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae43.100", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 - DIRTY-IAS | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1361, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #psmp-par-fr-bwctl new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 727977, - "name": "PSMP-PAR-FR-BWCTL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1040, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae4", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01675 | FRA-PRD-ESX04 ESXI Traffic LAG", - "circuits": [ - { - "id": 658522, - "name": "FRANKFURT 15-FRANKFURT 15-LAG-063(GEANT)", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 577, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae1.28", - "bundle": [], - "bundle-parents": [ - "xe-1/3/0", - "xe-1/3/1" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT EUMETSAT #POZ-EUMETSAT-SERVER-DATA-TRAFFIC $GS-02360 | POZ-EUMETSAT-1G", - "circuits": [ - { - "id": 732103, - "name": "POZ-EUMETSAT-SERVER-DATA-TRAFFIC", - "type": "IP PEERING - R&E", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1077, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 522, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae8", - "bundle": [ - "et-2/1/5" - ], - "bundle-parents": [ - "et-2/1/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01834 | AMS2-LON-AMT-LAG |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 704, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS2-LON-AMT-LAG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS2-LON-AMT-LAG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-1/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER NORDUNET P_ae33 | #NORDUNET-AP3-100GB", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 943, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 602, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-6", - "bundle": [ - "2/1/c12/1" - ], - "bundle-parents": [ - "2/1/c12/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01777 | ATH2-MIL2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177286, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-MIL2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ATH2-MIL2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 592, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-3/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT INTERNET2 P_ae19 | INTERNET2-400G to BOSTON", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 775, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY #SRX2-SRX1-CH-OFFICE|", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 514, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02193 |SCION server 2 internal port", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1280, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 572, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.510", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #NL-INTERNET2-VLAN510 $GS-00894 | ASN11537 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1736, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae25.333", - "bundle": [], - "bundle-parents": [ - "xe-11/2/6" - ], - "description": "SRV_IAS PRIVATE T-SYSTEMS #DE-TSYSTEMS-IAS $GS-00927 | ASN6878 |", - "circuits": [ - { - "id": 732135, - "name": "DE-TSYSTEMS-IAS", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1142, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT NKN SRF20035 P_AE20 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1292, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "NKN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NKN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.3068", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RARE CANARIE #AMS-AMS-RARE-CANARIE-21013 $GS-00627 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1750, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "et-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | LIS-POR | Infinera GRV1 1/1/4 Facing LISBON", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 554, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-POR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LIS-POR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "1/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | KAU-POZ | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916353, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KAU-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae32.303", - "bundle": [], - "bundle-parents": [ - "et-8/0/5", - "et-8/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IT REFRESH | T0 EXTERNAL PEERINGS", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1599, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1294, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae12", - "bundle": [ - "et-8/1/2" - ], - "bundle-parents": [ - "et-8/1/2" - ], - "description": "LAG CUSTOMER CARNET SRF9926179 $GA-01739 | CARNet AP2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 840, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CARNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CARNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae19", - "bundle": [ - "xe-3/0/1" - ], - "bundle-parents": [ - "xe-3/0/1" - ], - "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE #1 $GA-02522 | GEANT-EXRJ01-MAD31-PRI-07192024", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 657, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/0/2:0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 532, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-1/0/18", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE5 | 10_GBS to RT1.FRA.DE xe-0/3/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 637, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae29.0", - "bundle": [], - "bundle-parents": [ - "xe-4/1/5", - "xe-8/0/1" - ], - "description": "SRV_IAS UPSTREAM COGENT #COGENT-GWS-VIE $GS-00067 | ASN174", - "circuits": [ - { - "id": 708322, - "name": "COGENT-GWS-VIE", - "type": "GWS - UPSTREAM", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1140, - "dashboards": [ - "IAS_UPSTREAM" - ], - "dashboard_info": { - "name": "COGENT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COGENT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4084", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-KULEUVEN-EXPRESSROUTE-4084 $GS-01135 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739669, - "name": "BELNET-KULEUVEN-EXPRESSROUTE-4084", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1669, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae12", - "bundle": [ - "et-4/1/0" - ], - "bundle-parents": [ - "et-4/1/0" - ], - "description": "LAG PUBLIC NIX SRF9934393 $GA-01828 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 918, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 598, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE2 SRF0000001 | mx2-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 702, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae10.1000", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-2/1/5", - "et-11/1/0" - ], - "description": "SRV_GLOBAL CUSTOMER GARR #GARR-AP1 $GS-00462 | ASN137 |", - "circuits": [ - { - "id": 661320, - "name": "GARR-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 793, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:3506", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #SLCIMEC-02514 $GS-02514", - "circuits": [ - { - "id": 745330, - "name": "SLCIMEC-02514", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae2", - "bundle": [ - "et-0/0/5", - "et-0/1/2", - "et-0/1/5" - ], - "bundle-parents": [ - "et-0/0/5", - "et-0/1/2", - "et-0/1/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02543 | PRA-PRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1021, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-PRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "PRA-PRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "irb.519", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SERVER-MGMT-AMS-NL-VRF-VLAN519 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1587, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "ae13.420", - "bundle": [], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "SRV_GLOBAL CUSTOMER SANET #SANET-AP2 $GS-02438 | ASN2607 |", - "circuits": [ - { - "id": 733189, - "name": "SANET-AP2", - "type": "GEANT IP", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 617, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SURFnet VLAN 100 - for Link to GEANT IT VRF via mx1.ams - Surfnet Service ID: 5836", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 517, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4070", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-HoGENT-ExpressRoute-VLAN4070 $GS-02574 | ", - "circuits": [ - { - "id": 741111, - "name": "BELNET-HOGENT-EXPRESSROUTE-VLAN4070", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1686, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-7", - "bundle": [ - "1/1/c9/2", - "1/1/c12/2", - "2/1/c9/2" - ], - "bundle-parents": [ - "1/1/c9/2", - "1/1/c12/2", - "2/1/c9/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02547 | MIL2-MIL2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177287, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-MIL2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MIL2-MIL2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/0/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS | QFX2 C0 MGMT", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 526, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 562, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.3901", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #par-par-GEANTOpen-SINET-SINET-19033 $GS-00987 |", - "circuits": [ - { - "id": 706599, - "name": "PAR-PAR-GEANTOPEN-SINET-SINET-19033", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1451, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-21.333", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c2/2" - ], - "description": "SRV_IAS CUSTOMER CYNET #CYNET-AP2-IAS IASGWS $GS-00525 | ASN3268 | ", - "circuits": [ - { - "id": 745495, - "name": "CYNET-AP2-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "7", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "CYNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CYNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4068", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSERIZIV-02520 $GS-02520", - "circuits": [ - { - "id": 744225, - "name": "MSERIZIV-02520", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1304, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.9", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-DRAC-PAR-FR | ne-esxi-prod-par-1-idrac", - "circuits": [ - { - "id": 739102, - "name": "NE-ESXI-DRAC-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1214, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae20.0", - "bundle": [], - "bundle-parents": [ - "et-9/1/2", - "et-11/0/2" - ], - "description": "SRV_IAS PUBLIC LINX #IX-Peerings-in-LINX $GS-00951 |", - "circuits": [ - { - "id": 708212, - "name": "IX-PEERINGS-IN-LINX", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1019, - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "LINX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LINX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "1/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | FRA-GEN | to GEN01-GRV2 port 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900097, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.11", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-TNMS-PAR-FR | ne-esxi-prod-par-1 TNMS-VMs Portgroup", - "circuits": [ - { - "id": 739099, - "name": "NE-ESXI-TNMS-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1216, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Connected to 1-B-2-2-1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 589, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/3.906", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT INTERNET2 #lon-lon-MISC-GEANT-INTERNET2-9940197 $GS-00726 |", - "circuits": [ - { - "id": 661593, - "name": "LON-LON-MISC-GEANT-INTERNET2-9940197", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1025, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COGENT P_AE32 | Interxion ID: DE111558 | Cogent ID: 3-001176133", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 881, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COGENT - FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COGENT - FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC BOD SRF0000001 $GA-01532 | JISC BoD Edinburgh eMusic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 749, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.2282", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER HEANET INTERNET2 #HEANET-00630 $GS-00630 |", - "circuits": [ - { - "id": 747351, - "name": "HEANET-00630", - "type": "GEANT PLUS", - "status": "planned" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1748, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 609, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-23", - "bundle": [ - "1/x1/1/c2/3" - ], - "bundle-parents": [ - "1/x1/1/c2/3" - ], - "description": "LAG CUSTOMER MARNET | $GA-01862 | #MARNET-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177303, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MARNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MARNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1472, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-NOAA $GS-01086", - "circuits": [ - { - "id": 732670, - "name": "GRE-MULTICAST-TUNNEL-NOAA", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1209, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 750, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae21.333", - "bundle": [], - "bundle-parents": [ - "et-2/0/2" - ], - "description": "SRV_IAS CUSTOMER IUCC #IUCC-AP1-IAS IASGWS $GS-00532 | ASN378 |", - "circuits": [ - { - "id": 730581, - "name": "IUCC-AP1-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 711, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "IUCC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "IUCC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "irb.3001", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-CONTROL-NAGIOS-PAR-FR-LOGICAL-INTERFACE-PAR-FR $GS-00864 | NAGIOS gateway for taas-control VRF", - "circuits": [ - { - "id": 712156, - "name": "TAAS-CONTROL-NAGIOS-PAR-FR", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 665, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae2.0", - "bundle": [], - "bundle-parents": [ - "et-3/0/4", - "et-3/1/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-FRA-IPTRUNK $GS-02461| FRA-FRA | RT0.FRA-RT1.FRA", - "circuits": [ - { - "id": 739046, - "name": "FRA-FRA-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1377, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-FRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FRA-FRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "lag-2", - "bundle": [ - "2/1/c30/1" - ], - "bundle-parents": [ - "2/1/c30/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01996 | KIE-POZ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-POZ", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KIE-POZ", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.3001", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT QNREN #lon-par-GEANTOpen-Netherlight-QNREN-15032 $GS-00972 |", - "circuits": [ - { - "id": 736886, - "name": "LON-PAR-GEANTOPEN-NETHERLIGHT-QNREN-15032", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1164, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - { - "name": "QNREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.mar.fr.geant.net", - "name": "lag-5.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAR-MAR-IPTRUNK $GS-02590 | MAR-MAR | MAR-MAR", - "circuits": [ - { - "id": 742606, - "name": "MAR-MAR-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "irb.999", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-bud-hu-mgmt-vrf-vlan999", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 660, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c9/1" - ], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "LAG CUSTOMER LAT | $GA-02074 | LAT-AP2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LAT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-2/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER REDIRIS P_AE15", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1031, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-1/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 529, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "lag-5", - "bundle": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01830 | PRA-VIE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177285, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-VIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "PRA-VIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2695", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE HEAnet-DC-RNP-build7 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 822, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "ae10.360", - "bundle": [], - "bundle-parents": [ - "xe-0/1/1", - "xe-0/1/2" - ], - "description": "SRV_L3VPN CUSTOMER URAN #URAN-AP2-LHCONE $GS-00871 | ASN12687", - "circuits": [ - { - "id": 714003, - "name": "URAN-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 616, - "dashboards": [ - "EAP", - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.1623", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #par-par-SCION-INTERNET2-SCION-2 $GS-02309 |", - "circuits": [ - { - "id": 736659, - "name": "PAR-PAR-SCION-INTERNET2-SCION-2", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1143, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.301", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_IAS CUSTOMER ENSTINET #NL-ENSTINET-IAS IASPS $GS-00579 | ASN6879 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1732, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ENSTINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ENSTINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-8/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS IT REFRESH P_AE32 | qfx1.ams.nl et-0/0/52", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1271, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae20.2265", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-5/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SINET-22074 $GS-02207 |", - "circuits": [ - { - "id": 721397, - "name": "AMS-LON-SINET-SINET-22074", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1287, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae18", - "bundle": [ - "et-8/0/2" - ], - "bundle-parents": [ - "et-8/0/2" - ], - "description": "LAG CUSTOMER RESTENA SRF9922289 $GA-01952 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1159, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "RESTENA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was PSMP Server", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 564, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "1/x1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | LJU-MIL2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916417, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "2/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | MIL2-THE | to et-0/0/2 RT1.THE.GR", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162114, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-THE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-THE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 517, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-0/0/40", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN | pS Throughtput Tester Interface", - "circuits": [ - { - "id": 716018, - "name": "PS-THROUGHTPUT-TESTER-INTERFACE-10GBE-2", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 686, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.2707", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV-L2CIRCUIT CUSTOMER PIONIER REDIRIS #PSNC-RedIRIS-SLICES-UPV/EHU $GS-02493|", - "circuits": [ - { - "id": 739389, - "name": "PSNC-REDIRIS-SLICES-UPV/EHU", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 631, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae11.111", - "bundle": [], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "SRV_L3VPN CUSTOMER DFN #DFN-AP1-LHCONE $GS-00816 | ASN680", - "circuits": [ - { - "id": 743292, - "name": "DFN-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 782, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae22.100", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_IAS PUBLIC DE-CIX #IX-Peerings-in-DE-CIX-MAR $GS-00948 |", - "circuits": [ - { - "id": 740868, - "name": "IX-PEERINGS-IN-DE-CIX-MAR", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 737, - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "DE-CIX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DE-CIX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae20.100", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-5/1/2" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT SINET #NL-SINET $GS-00901 | ASN2907 | IETR & IP", - "circuits": [ - { - "id": 734867, - "name": "NL-SINET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1283, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/2.1213", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER HEANET GEANT #dub-fra-HEANET-RARE-20062 $GS-00689 |", - "circuits": [ - { - "id": 747360, - "name": "DUB-FRA-HEANET-RARE-20062", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1450, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-5/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MAD-MAR | connected to MAR01-GRV1 1/1/11", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 846, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | MAD-MAD | to RT0.MAD 1/x1/1/c2/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 777, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.411", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ESNET #lon-lon-GEANTOpen-Esnet-Esnet-170391 $GS-00962 |", - "circuits": [ - { - "id": 738643, - "name": "LON-LON-GEANTOPEN-ESNET-ESNET-170391", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 803, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "xe-0/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 561, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 609, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-2", - "bundle": [ - "1/1/c8/1" - ], - "bundle-parents": [ - "1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02279 | BRU-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRU-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BRU-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.33", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEKULEUVEN-01134 $GS-01134", - "circuits": [ - { - "id": 744267, - "name": "MSEKULEUVEN-01134", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1414, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae23.3060", - "bundle": [], - "bundle-parents": [ - "xe-0/3/3" - ], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET ORACLE #ofcfodmob-02630 $GS-02630", - "circuits": [ - { - "id": 744345, - "name": "OFCFODMOB-02630", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1715, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE5 SRF0000001 | RT1.MIL2 to SW2.MIL2 Connected to SW2.MIL2 xe-0/2/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 596, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "2/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | LON2-PAR | TO GRV2.LON2 - 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161665, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-20:2702", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION EENET #SCION-02357 $GS-02357", - "circuits": [ - { - "id": 746464, - "name": "SCION-02357", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SCION", - "interface_type": "LOGICAL" - }, - { - "name": "EENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-6", - "bundle": [ - "1/1/c8/1" - ], - "bundle-parents": [ - "1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02388 | COR-LON2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177286, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-LON2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "COR-LON2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-24.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c4/2" - ], - "description": "SRV_GLOBAL CUSTOMER MREN #MREN-AP1 $GS-00491 | ASN40981 | ", - "circuits": [ - { - "id": 747907, - "name": "MREN-AP1", - "type": "GEANT IP", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "20", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.937", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS GEANT #BIL-GEN-REDIRIS-RARE $GS-02288 |", - "circuits": [ - { - "id": 726620, - "name": "BIL-GEN-REDIRIS-RARE", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 851, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 599, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.991", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access PARIS #FRA-TNMS | Internal network", - "circuits": [ - { - "id": 732624, - "name": "FRA-TNMS", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1413, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae14", - "bundle": [ - "et-1/1/5", - "et-8/0/2", - "et-8/1/2", - "et-8/1/5" - ], - "bundle-parents": [ - "et-1/1/5", - "et-8/0/2", - "et-8/1/2", - "et-8/1/5" - ], - "description": "LAG CUSTOMER RENATER SRF9923751 $GA-01877 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 704, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4067", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-RVA-ONEM-ExpressRoute-VLAN4067 $GS-02432 | ", - "circuits": [ - { - "id": 739670, - "name": "BELNET-RVA-ONEM-EXPRESSROUTE-VLAN4067", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1661, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae18", - "bundle": [ - "et-10/1/0" - ], - "bundle-parents": [ - "et-10/1/0" - ], - "description": "LAG PRIVATE FACEBOOK SRF9935091 $GA-01840 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 714, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/14", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE13 | LON2-PRD-ESX03 NIC2 PORT2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 665, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1277, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CYNET P_ae14 SRF23077 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 655, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CYNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CYNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #AMS-POZ-RARE-P4-9951379 $GS-00661 | RARE P4 TESTBED", - "circuits": [ - { - "id": 736091, - "name": "AMS-POZ-RARE-P4-9951379", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 798, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 563, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "2/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | GEN-GEN | to MX1.GEN.CH et-7/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162817, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/6.1304", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SWITCH KREONET #ams-fra-SCION-KREONET-SWITCH $GS-02292 |", - "circuits": [ - { - "id": 734614, - "name": "AMS-FRA-SCION-KREONET-SWITCH", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1334, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1466, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 577, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE | ORACLE P_AE24 SRF20010 | ASN31898", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1464, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.2050", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NEA3R ESNET #lon-lon-GEANTOpen-ESNET-NEA3R $GS-02250 |", - "circuits": [ - { - "id": 738640, - "name": "LON-LON-GEANTOPEN-ESNET-NEA3R", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1147, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NEA3R", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NEA3R", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae7", - "bundle": [ - "et-1/0/2", - "et-1/0/5", - "et-1/1/2" - ], - "bundle-parents": [ - "et-1/0/2", - "et-1/0/5", - "et-1/1/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02546 | MIL2-MIL2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 749, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-MIL2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MIL2-MIL2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "et-10/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1154, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/2/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 555, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.14", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-TUNI-ExpressRoute-VLAN3912 $GS-01162 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707047, - "name": "NORDUNET-TUNI-EXPRESSROUTE-VLAN3912", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1398, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae10.333", - "bundle": [], - "bundle-parents": [ - "xe-0/1/1", - "xe-0/1/2" - ], - "description": "SRV_IAS CUSTOMER URAN #URAN-AP1-IAS IASPS $GS-00593 | ASN12687 |", - "circuits": [ - { - "id": 713995, - "name": "URAN-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 589, - "dashboards": [ - "EAP", - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.415", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ORACLE REDIRIS SRF22010 #fra-mad-ORACLE-REDIRIS-22010-VL415 $GS-02096", - "circuits": [ - { - "id": 719496, - "name": "FRA-MAD-ORACLE-REDIRIS-22010-VL415", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1079, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-20:3003", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER LAT SURF #EVLBI-JIVE-00662 $GS-00662", - "circuits": [ - { - "id": 745967, - "name": "EVLBI-JIVE-00662", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - }, - { - "name": "LAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.2265", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SINET-22074 $GS-02207 |", - "circuits": [ - { - "id": 721397, - "name": "AMS-LON-SINET-SINET-22074", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1264, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | FRA-PRA | TO RT1.PRA.CZ-et-0/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1196, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/15", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 532, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae21.4002", - "bundle": [], - "bundle-parents": [ - "et-7/1/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT T-SYSTEMS #DE-T-SYSTEMS-R&E $GS-02330 | ASN6878 |", - "circuits": [ - { - "id": 728924, - "name": "DE-T-SYSTEMS-R&E", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 923, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "et-10/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1152, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "2/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | GEN-MAR | to RT1.MAR et-4/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162114, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "et-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | KIE-POZ | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 609, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KIE-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3902", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-JYV-ExpressRoute-VLAN3902 $GS-01157 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707076, - "name": "NORDUNET-JYV-EXPRESSROUTE-VLAN3902", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1193, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1582, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 789, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "xe-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 560, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-1/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 526, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae1.21", - "bundle": [], - "bundle-parents": [ - "xe-1/3/0", - "xe-1/3/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-poz-pl-DRAC | HADES DRAC", - "circuits": [ - { - "id": 727554, - "name": "HADES-POZ-PL-DRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 841, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "xe-3/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P6", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 659, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 577, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae7", - "bundle": [ - "et-1/0/2" - ], - "bundle-parents": [ - "et-1/0/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS $GA-02302 | AMS-AMT |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 960, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.6", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER REDIRIS MICROSOFT #REDIRIS-USC-ExpressRoute-VLAN409 $GS-01167 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 708369, - "name": "REDIRIS-USC-EXPRESSROUTE-VLAN409", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1390, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4061", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSESTAD-02245 $GS-02245", - "circuits": [ - { - "id": 744266, - "name": "MSESTAD-02245", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1466, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae4", - "bundle": [ - "et-5/0/2", - "et-5/0/5" - ], - "bundle-parents": [ - "et-5/0/2", - "et-5/0/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE LAG-LIS-MAD $GA-02002 | LIS-MAD | 200G", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 540, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-MAD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LIS-MAD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c8/1", - "1/x1/1/c8/2", - "1/x1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU-MIL2-IPTRUNK $GS-00051 | LJU-MIL2 | ", - "circuits": [ - { - "id": 746146, - "name": "LJU-MIL2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-MIL2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LJU-MIL2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic present", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 600, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.45", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSECREDENDO-02655 $GS-02655 | ", - "circuits": [ - { - "id": 747921, - "name": "MSECREDENDO-02655", - "type": "EXPRESS ROUTE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 694, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 575, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PSMP-MANAGEMENT-LON2-UK | uat-psmp.lon2.uk.geant.net MGMT", - "circuits": [ - { - "id": 708222, - "name": "PSMP-MANAGEMENT-LON2-UK", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 670, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 546, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/6.1306", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SWITCH KREONET #fra-lon-SCION-SWITCH-KREONET $GS-02294 |", - "circuits": [ - { - "id": 727332, - "name": "FRA-LON-SCION-SWITCH-KREONET", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1335, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "KREONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "xe-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 569, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.1726", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SCION KAUST #ams-gen-KAUST-SCION $GS-02418| ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1743, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "2/1/c11/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | POZ-POZ | to MX1.POZ.PL et-7/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162305, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-lhc-mgmt-fra.de.geant.org pS MGMT (LHCONE)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 550, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER URAN SRF-21-059 P_AE10 | URAN Circuit ID: GEANT-KIV-IEV-1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "1/1/c11/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | POZ-PRA | to RT0.POZ 2/1/c8/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900161, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.2009", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER LAT SURF #LOFAR-00663 $GS-00663", - "circuits": [ - { - "id": 745942, - "name": "LOFAR-00663", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1123, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - }, - { - "name": "LAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae22.0", - "bundle": [], - "bundle-parents": [ - "xe-4/2/1", - "xe-4/2/2" - ], - "description": "SRV_INFRASTRUCTURE ACCESS | NEMO DDOS Detection 2", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 913, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae22.2033", - "bundle": [], - "bundle-parents": [ - "xe-10/0/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER WACREN NORDUNET #lon-lon-GEANTOPEN-NORDUNET-WACREN-20041 $GS-00979 |", - "circuits": [ - { - "id": 705942, - "name": "LON-LON-GEANTOPEN-NORDUNET-WACREN-20041", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 981, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was PSMP Server", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae22.2704", - "bundle": [], - "bundle-parents": [ - "xe-10/0/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SCION EENET #lon-par-SCION-WACREN $GS-02495 | ", - "circuits": [ - { - "id": 737889, - "name": "LON-PAR-SCION-WACREN", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1486, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | VIE-VIE | to RT0.VIE 1/1/c9/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 906, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | psmp-lhc-owd-lon-uk.geant.org pS OWAMP (LHCONE)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1452, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "lag-4", - "bundle": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02341 | HAM-POZ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-POZ", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "HAM-POZ", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/0/2:3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 538, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.520", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #snm-idrac-mgmt | IT Refresh iDRAC MGMT", - "circuits": [ - { - "id": 736096, - "name": "SNM-IDRAC-MGMT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1609, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER NETHERLIGHT | Digital Realty CID: NL172398-4", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 655, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-23.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3" - ], - "description": "SRV_GLOBAL CUSTOMER MARNET #MARNET-AP2 $GS-00490 | ASN44224 | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "17", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-2/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | LR4 QSFP INSTALLED", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 927, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/6.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lhc-gen-ch-owamp LHC new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 723642, - "name": "PS-LHC-GEN-CH-OWAMP", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1318, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.931", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER DFN REDIRIS SRF21028 $GS-00692 | #fra-mad-DFN-REDIRIS-21028", - "circuits": [ - { - "id": 719501, - "name": "FRA-MAD-DFN-REDIRIS-21028", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1087, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 860, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/5.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX2-City-House-Network-Infrastructure |", - "circuits": [ - { - "id": 719500, - "name": "SRX2-CITY-HOUSE-NETWORK-INFRASTRUCTURE", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 538, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-2/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 952, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "2/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | GEN-PAR | connected to GEN01.GRV5 port 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161921, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | psmp-gn-mgmt-lon-uk.geant.org pS MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 757, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.1390", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER SWITCH #GEN-PAR-SCION-RENATER-SWITCH-20026 $GS-00717 |", - "circuits": [ - { - "id": 714179, - "name": "GEN-PAR-SCION-RENATER-SWITCH-20026", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 833, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "et-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | PRA-PRA | to RT0.PRA 1/1/C9/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 886, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 669, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "2/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | POZ-PRA | to RT1.PRA.CZ et-2/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162177, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae21.140", - "bundle": [], - "bundle-parents": [ - "et-5/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CERN REDCLARA #GEN-LIS-CERN-REDCLARA-22059 $GS-02176 |", - "circuits": [ - { - "id": 720101, - "name": "GEN-LIS-CERN-REDCLARA-22059", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 702, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 530, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.4040", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L3VPN RE_INTERCONNECT CANARIE #CANARIE-PAR-LHCONE-2 $GS-00810 | ASN6509", - "circuits": [ - { - "id": 736735, - "name": "CANARIE-PAR-LHCONE-2", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1171, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "irb.3003", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-throughput-network-par-fr $GS-00354 | Perfsonar test VMs - throughput measurement VLAN", - "circuits": [ - { - "id": 712151, - "name": "PS-THROUGHPUT-NETWORK-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1458, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.12", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-HHU-ExpressRoute-VLAN3910 $GS-01156 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 706560, - "name": "NORDUNET-HHU-EXPRESSROUTE-VLAN3910", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1396, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.23", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER GEANT #GARR_UDMilano_ExpressRoute_Vlan4086 $GS-01148 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707643, - "name": "GARR-UDMILANO_EXPRESSROUTE_VLAN4086", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1406, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY To Switch Cluster vme.0 - switch chassis 0 mgmt - primary |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 515, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 643, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 597, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-5", - "bundle": [ - "2/1/c8/2" - ], - "bundle-parents": [ - "2/1/c8/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02607 | MIL2-THE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177285, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-THE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MIL2-THE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.35", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-02328 $GS-02328", - "circuits": [ - { - "id": 747549, - "name": "AMS-HAM-MSE-02328", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 674, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | LR optic connected", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1309, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.103", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-PAR-FR $GS-00124 | DCN MANAGEMENT ", - "circuits": [ - { - "id": 733980, - "name": "DCN-MANAGEMENT-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 711, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 566, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c26/1" - ], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "LAG CUSTOMER HEANET | $GA-01889 | HEANET-AP2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae17.402", - "bundle": [], - "bundle-parents": [ - "xe-0/3/6" - ], - "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET CANARIE #AMS-LON-MISC-UBUNTUNET-CANARIE-170352 $GS-00646 |", - "circuits": [ - { - "id": 735618, - "name": "AMS-LON-MISC-UBUNTUNET-CANARIE-170352", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1345, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 599, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "2/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | LON2-PAR | TO GRV2.LON2 - 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162241, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-20:716", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER GRNET #SLCUTH-02490 $GS-02490|", - "circuits": [ - { - "id": 745409, - "name": "SLCUTH-02490", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1457, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRENA P_AE20 SRF21081 | TTI - Vienna-Tbilisi 10G WL086745", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 868, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRENA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRENA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE SETCOR P_lag-26", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "et-7/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER LITNET P_AE10 | Connected to GRV6 1/1/3 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1052, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LITNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LITNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/6.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #par-fra-SUPERPOP-QFX-2-GEANT $GS-00079 |", - "circuits": [ - { - "id": 729480, - "name": "FRA-PAR-SUPERPOP-QFX-2-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1122, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-20", - "bundle": [ - "1/1/c11/1", - "1/1/c11/2", - "1/1/c12/1", - "1/1/c12/2" - ], - "bundle-parents": [ - "1/1/c11/1", - "1/1/c11/2", - "1/1/c12/1", - "1/1/c12/2" - ], - "description": "LAG CUSTOMER JISC | $GA-01760 | #JISC-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 913, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COLT $GA-01600 |Interxion CID: DE129481| COLT CID: 441303553 | EAP ASNET-AM GWS", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 871, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COLT - FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COLT - FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae48", - "bundle": [ - "et-10/0/5", - "et-10/1/2" - ], - "bundle-parents": [ - "et-10/0/5", - "et-10/1/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS A10-DDOS| TBC |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1613, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2665", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO.T8 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 818, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "et-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | BUC-SOF | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 666, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-SOF", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-SOF", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "et-3/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 753, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/7.908", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #AMS-PAR-MISC-GEANT-INTERNET2-9940543 $GS-00654 |", - "circuits": [ - { - "id": 705419, - "name": "AMS-PAR-MISC-GEANT-INTERNET2-9940543", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 929, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02188 |SCION server 1 external port", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1300, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON-LON-IPTRUNK $GS-02467 | LON-LON | RT0.LON-MX1.LON", - "circuits": [ - { - "id": 738586, - "name": "LON-LON-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-20:354", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT SINET DFN #AMS-HAM-JAXA-SINET-DFN-00640 $GS-00640", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-8", - "bundle": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01762 | LON2-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177288, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "irb.3004", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-CONTROL-FRANKFURT-VRF-VLAN3004-LOGICAL-INTERFACE $GS-00862 | RANCID gateway for taas-control VRF", - "circuits": [ - { - "id": 733012, - "name": "TAAS-CONTROL-FRANKFURT-VRF-VLAN3004", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1235, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 564, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE |DDOS SERVER 1 10Gb_2 | P_ae13", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1045, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ge-0/0/38", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX03 IDRAC", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 555, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae14.3151", - "bundle": [], - "bundle-parents": [ - "et-1/1/5", - "et-8/0/2", - "et-8/1/2", - "et-8/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER SINET #ams-gen-Grid5000-Renater-SINET-07201 $GS-00636 |", - "circuits": [ - { - "id": 705429, - "name": "AMS-GEN-GRID5000-RENATER-SINET-07201", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 826, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | MAR-MIL2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 674, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was DE-CIX", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 654, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.2779", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT WIX #lon-lon-GEANTOpen-Netherlight-WIX $GS-00973 |", - "circuits": [ - { - "id": 707103, - "name": "LON-LON-GEANTOPEN-NETHERLIGHT-WIX", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1591, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - { - "name": "WIX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.2511", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L3VPN RE_INTERCONNECT SINET #SINET-PAR-LHCONE $GS-00859 | ASN2907", - "circuits": [ - { - "id": 660633, - "name": "SINET-PAR-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 634, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 811, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae10", - "bundle": [ - "xe-11/0/0" - ], - "bundle-parents": [ - "xe-11/0/0" - ], - "description": "LAG CUSTOMER MICROSOFT SRF19104 EXPRESSROUTE #1 $GA-01958 | GEANT-FRA32-09XGMR-CIS-1-PRI-11012019", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1201, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae22.1200", - "bundle": [], - "bundle-parents": [ - "xe-10/0/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NEA3R WACREN #lon-lon-GEANTOPEN-NEA3R-WACREN-190131 $GS-00982 |", - "circuits": [ - { - "id": 709339, - "name": "LON-LON-GEANTOPEN-NEA3R-WACREN-190131", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1441, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NEA3R", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - { - "name": "NEA3R", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae27.0", - "bundle": [], - "bundle-parents": [ - "et-1/1/5", - "et-8/3/0" - ], - "description": "SRV_IAS PRIVATE AKAMAI #AKAMAI-20940-AT $GS-00926 | ASN20940", - "circuits": [ - { - "id": 708328, - "name": "AKAMAI-20940-AT", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 975, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "AKAMAI", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AKAMAI", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 588, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-3", - "bundle": [ - "2/x1/1/c8/1", - "2/x1/1/c8/2" - ], - "bundle-parents": [ - "2/x1/1/c8/1", - "2/x1/1/c8/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02373 | LJU-ZAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-ZAG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LJU-ZAG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae10.1946", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_GCS CUSTOMER FCCN MICROSOFT #FCCN-IPP-ExpressRoute-Vlan1946 $GS-01143 | MANUALLY MIGRATED FROM MX1.LIS 25/08/21", - "circuits": [ - { - "id": 706996, - "name": "FCCN-IPP-EXPRESSROUTE-VLAN1946", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 615, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "lag-1", - "bundle": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02463 | GEN-GEN", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-GEN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GEN-GEN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-1", - "bundle": [ - "2/x1/1/c8/1" - ], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02008 | DUB-LON", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "DUB-LON", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "DUB-LON", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/15.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-AMS-TO-SURFNET-PRIMARY | Surfnet Primary - Service ID: 3287IP1", - "circuits": [ - { - "id": 708298, - "name": "SRX1-AMS-TO-SURFNET-PRIMARY", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 537, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT SINGAREN P_AE12 SRF19005 | CAE1 100Gb LL TTI Circuit ID:WL065785 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1559, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae15", - "bundle": [ - "et-0/0/2" - ], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "LAG RE_INTERCONNECT ITER $GA-02416 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 725, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ITER", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ITER", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae20.3153", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-5/1/2" - ], - "description": "SRV_L2CIRCUIT SINET DFN #AMS-HAM-JAXA-SINET-DFN-00640 $GS-00640", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1292, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE WP7T2SF SRF0000001 | PAR BMS Server #4", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1194, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/5.333", - "bundle": [], - "bundle-parents": [], - "description": "SRV_IAS CUSTOMER SINGAREN #SINGAREN-IAS IASGWS $GS-02359 | ASN136968", - "circuits": [ - { - "id": 729063, - "name": "SINGAREN-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 558, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae10.930", - "bundle": [], - "bundle-parents": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC REDIRIS #LON-MAD-GOTO-REDIRIS-JISC-16018 $GS-00734 |", - "circuits": [ - { - "id": 719523, - "name": "LON-MAD-GOTO-REDIRIS-JISC-16018", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1095, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c4/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MREN P_lag-24", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916098, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-0/0/29", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae0 | RT1 xe-5/0/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 683, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4092", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-NCCN-ExpressRoute-Vlan4092 $GS-01126 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739680, - "name": "BELNET-NCCN-EXPRESSROUTE-VLAN4092", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1676, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-20:2301", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER LAT SURF #LOFAR-02584 $GS-02584", - "circuits": [ - { - "id": 745938, - "name": "LOFAR-02584", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - }, - { - "name": "LAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.251", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_GLOBAL CUSTOMER REDIRIS #REDIRIS-AP1 $GS-00498 | ASN766 |", - "circuits": [ - { - "id": 719144, - "name": "REDIRIS-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 859, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "lag-1", - "bundle": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02460 | FRA-FRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-FRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "FRA-FRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/3/0", - "bundle": [], - "bundle-parents": [], - "description": "SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 602, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae7.0", - "bundle": [], - "bundle-parents": [ - "et-1/0/5", - "et-1/1/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-BUD-IPTRUNK $GS-00021 | BUC-BUD | ", - "circuits": [ - { - "id": 730444, - "name": "BUC-BUD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 675, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUC-BUD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "1/1/c9/2", - "1/1/c12/2", - "2/1/c9/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #PRA-PRA-IPTRUNK $GS-02545 | PRA-PRA | PRA-PRA-MGMT", - "circuits": [ - { - "id": 739239, - "name": "PRA-PRA-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-PRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PRA-PRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | NEMO DDOS SERVER link 1 Node 2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1282, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/5.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PSMP-LHC-OWD-LON-UK-VLAN0 | psmp-lhc-owd-lon-uk.geant.org pS OWAMP (LHCONE)", - "circuits": [ - { - "id": 708281, - "name": "PSMP-LHC-OWD-LON-UK-VLAN0", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1004, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae22", - "bundle": [ - "xe-10/0/0" - ], - "bundle-parents": [ - "xe-10/0/0" - ], - "description": "LAG RE_INTERCONNECT WACREN SRF18082 $GA-01838 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 718, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "WACREN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-5/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER REDIRIS P_AE16 SRF240691 | PP:0101:14103252, labeled as M21-43I-10 2 (direct)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 929, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.2128", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET INTERNET2 #lon-lon-GEANTOpen-NORDUNET-INTERNET2-17022 $GS-00974 |", - "circuits": [ - { - "id": 661730, - "name": "LON-LON-GEANTOPEN-NORDUNET-INTERNET2-17022", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1590, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-3/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #1 P_AE19 | Equinix CID: 22903011 | GEANT-EXRJ01-MAD31-PRI-07192024 --P15 in ODF3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 768, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/11", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 526, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Reserved for GTS Expansion", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 604, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | JRA MX to CORSA P5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1577, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-2/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC VIX P_AE10 | DR ID: AT188495 | VIX ID: 1298-1712938", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 935, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae10", - "bundle": [ - "et-0/0/2" - ], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "LAG CUSTOMER FCCN SRF9928603 $GA-02072 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 598, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "xe-3/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 532, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE |DDOS SERVER 1 10Gb_1 | P_ae13", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1044, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-20.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4", - "1/x1/1/c4/1", - "1/x1/1/c4/2", - "1/x1/1/c4/3", - "1/x1/1/c4/4" - ], - "description": "SRV_IAS CUSTOMER GRNET #GRNET-AP2-IAS IASGWS $GS-00531 | ASN5408 | ", - "circuits": [ - { - "id": 745275, - "name": "GRNET-AP2-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "7", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 848, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO NORDUnet #NORDUnet-GEO-UK-1 | SRF9928249 | NORDUNET 100G access to GeO", - "circuits": [ - { - "id": 719819, - "name": "NORDUNET-GEO-UK-1", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1174, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3200", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L3VPN RE_INTERCONNECT TEIN #TEIN-LON-LHCONE $GS-00867 | ASN24490", - "circuits": [ - { - "id": 661919, - "name": "TEIN-LON-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 569, - "dashboards": [ - "CAE1", - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "TEIN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TEIN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-10/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 912, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/2/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | MAR-MAR | to RT0.MAR 1/x1/1/c2/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 671, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-6.0", - "bundle": [], - "bundle-parents": [ - "2/1/c12/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-MIL2-IPTRUNK $GS-00014 | ATH2-MIL2 | ", - "circuits": [ - { - "id": 745507, - "name": "ATH2-MIL2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 7, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-MIL2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ATH2-MIL2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c4/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916100, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1041, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3220", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER SINGAREN #lon-poz-GEANTOpen-SINGAREN-CAE1-19113-VL3220-PIONIER $GS-00986 |", - "circuits": [ - { - "id": 707007, - "name": "LON-POZ-GEANTOPEN-SINGAREN-CAE1-19113-VL3220-PIONIER", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 624, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-26", - "bundle": [ - "1/x1/1/c2/4" - ], - "bundle-parents": [ - "1/x1/1/c2/4" - ], - "description": "LAG PRIVATE SETCOR | $GA-02000 | #SETCOR-PRIVATE-LAG | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177306, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 637, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae1", - "bundle": [ - "xe-2/1/7", - "xe-2/2/7" - ], - "bundle-parents": [ - "xe-2/1/7", - "xe-2/2/7" - ], - "description": "PHY INFRASTRUCTURE ACCESS LAN | gen ch POP LAN", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1465, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE FW1-SNM", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1593, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-101.103", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-KAU-LT-VRF-VLAN103 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "9", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/0/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 525, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/7.104", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF SRF21105 $GS-00706 | #FRA-PRA-RARE-BMS8", - "circuits": [ - { - "id": 737235, - "name": "FRA-PRA-RARE-BMS8", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 971, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE WP6T3 SRF20063 $GA-01326 | Formally JRA4T2 Server", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1569, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-9/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | MAD-MAR | connected to MAD01-GRV2 1/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1139, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/46", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE31 | MX1.LON2.UK xe-1/2/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 686, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02191 |SCION server 1 internal port", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1279, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-mgmt-vie.at.geant.org pS MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 861, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae19.100", - "bundle": [], - "bundle-parents": [ - "et-1/0/2" - ], - "description": "SRV_GLOBAL CUSTOMER UOM #UOM-AP2-100G $GS-02164 | ASN12046 | ", - "circuits": [ - { - "id": 720396, - "name": "UOM-AP2-100G", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 626, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "UOM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "UOM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.978", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER REDIRIS #PSNC-RedIRIS-SLICES-UC3M $GS-02492|", - "circuits": [ - { - "id": 738289, - "name": "PSNC-REDIRIS-SLICES-UC3M", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 792, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 868, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae28.240", - "bundle": [], - "bundle-parents": [ - "et-11/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET TENET #lon-lon-GEANTOPEN-NORDUNET-TENET-18075 $GS-00978 |", - "circuits": [ - { - "id": 718107, - "name": "LON-LON-GEANTOPEN-NORDUNET-TENET-18075", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 681, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "LOGICAL" - }, - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c8/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-LON2-IPTRUNK $GS-02386 | COR-LON2 | ", - "circuits": [ - { - "id": 738860, - "name": "COR-LON2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-LON2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COR-LON2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1459, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/7", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lhc-gen-ch-bwctl LHC new | BWCTL CONTACT: ivan.garnizov@fau.de;", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1296, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "gr-4/0/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT IRANET #NL-IRANET $GS-01168 | ASN6736 |", - "circuits": [ - { - "id": 735729, - "name": "NL-IRANET", - "type": "IP PEERING - R&E", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1473, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "IRANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "IRANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-5/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | MAD-MAR | connected to MAD01-GRV2 1/1/11", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 927, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae2", - "bundle": [ - "xe-3/2/2", - "xe-3/2/3" - ], - "bundle-parents": [ - "xe-3/2/2", - "xe-3/2/3" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-01788 |mx2-sw1(ex3400", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 538, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-6.0", - "bundle": [], - "bundle-parents": [ - "2/1/c11/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS-PAR-IPTRUNK $GS-02633 | LIS-PAR | ", - "circuits": [ - { - "id": 745054, - "name": "LIS-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 8, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LIS-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | mx1-sw1-poz1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 570, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/0/1:1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 529, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae17", - "bundle": [ - "xe-1/2/6" - ], - "bundle-parents": [ - "xe-1/2/6" - ], - "description": "LAG RE_INTERCONNECT ASREN SRF9929569 $GA-01758 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 634, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ASREN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ASREN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "et-7/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | POZ-POZ | to RT0.POZ.PL 2/1/c9/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1054, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.691", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_GCS CUSTOMER REDIRIS MICROSOFT #REDIRIS-ICN2-ExpressRoute-VLAN691 $GS-02559 | ", - "circuits": [ - { - "id": 740766, - "name": "REDIRIS-ICN2-EXPRESSROUTE-VLAN691", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 938, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2602", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 812, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-10/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS | A10 DDOS 100G #1 connected to X49", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 651, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae27.101", - "bundle": [], - "bundle-parents": [ - "xe-10/2/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MAEEN INTERNET2 #LON-PAR-GEANTOpen-MAEEN-INTERNET2-21086 $GS-00728 |", - "circuits": [ - { - "id": 736648, - "name": "LON-PAR-GEANTOPEN-MAEEN-INTERNET2-21086", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 968, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MAEEN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "MAEEN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-0/0/19", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-4/0/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 536, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/5.3179", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SINGAREN SINGAREN #lon-lon2-GEANT2-SingAREN-SingAREN-17085 $GS-00724 |", - "circuits": [ - { - "id": 726769, - "name": "LON-LON2-GEANT2-SINGAREN-SINGAREN-17085", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 761, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-1/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 602, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.6", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER RedIRIS Microsoft #RedIRIS-USC-ExpressRoute-Vlan408 $GS-01165 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707129, - "name": "REDIRIS-USC-EXPRESSROUTE-VLAN408", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 589, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3100", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SURF AARNET #lon-lon-SURF-AARNET-19097 $GS-00721 |", - "circuits": [ - { - "id": 705937, - "name": "LON-LON-SURF-AARNET-19097", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 933, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - }, - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae1", - "bundle": [ - "xe-4/1/7" - ], - "bundle-parents": [ - "xe-4/1/7" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | mx1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 631, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "gr-1/3/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN INFRASTRUCTURE ACCESS #FORTIGATE-TUNNEL-TO-CH-LON-UK $GS-02125 | Tunnel to Fortigate CH", - "circuits": [ - { - "id": 717895, - "name": "FORTIGATE-TUNNEL-TO-CH-LON-UK", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 1194, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "lag-5.0", - "bundle": [], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-GEN-IPTRUNK $GS-00034 | FRA-GEN | ", - "circuits": [ - { - "id": 739737, - "name": "FRA-GEN-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "irb.370", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN CUSTOMER SCION SRF22092 #SCION-SCION-GEN-INTERNAL-VPN-VL370 $GS-02214 |", - "circuits": [ - { - "id": 723797, - "name": "SCION-SCION-GEN-INTERNAL-VPN-VL370", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1326, - "dashboards": [ - "NREN" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-MIL2-IPTRUNK $GS-00039 | GEN-MIL2 | ", - "circuits": [ - { - "id": 740949, - "name": "GEN-MIL2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MIL2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MIL2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "2/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | MIL2-VIE | to RT0.VIE 1/1/c5/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161921, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COLT P_ae21 | COLT ID: 444032087 # DX9403282 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 918, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COLT - BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COLT - BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/5.46", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER ASREN ASREN #lon-lon2-GEANTOpen-ASREN-ASREN-190491 $GS-00984 |", - "circuits": [ - { - "id": 707023, - "name": "LON-LON2-GEANTOPEN-ASREN-ASREN-190491", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 749, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ASREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ASREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae1.20", - "bundle": [], - "bundle-parents": [ - "xe-4/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-vie-at-idrac |perfSONAR iDRAC", - "circuits": [ - { - "id": 742674, - "name": "PS-VIE-AT-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 735, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2500", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO2 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 814, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-uat-owd-fra.de.geant.org pS OWAMP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1298, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | SPLUNK AMS PEER02 link 2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 633, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER KIAE P_AE16 | Digital Realty CID: NL158484 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 634, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KIAE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KIAE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "2/1/c11/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | LJU-MIL2 | to RT1.LJU.SI et-1/0/2 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162305, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae13", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01685 | QFX.PAR.FR AE13", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 582, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-4", - "bundle": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01969 | BIL-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BIL-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4082", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ZWEV-ExpressRoute-VLAN4082 $GS-01129 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739676, - "name": "BELNET-ZWEV-EXPRESSROUTE-VLAN4082", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1667, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-1/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 657, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-9/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | PAR-PAR | TO RT0.PAR 1/1/C19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 760, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PAR-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PAR-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae12.0", - "bundle": [], - "bundle-parents": [ - "et-4/1/0" - ], - "description": "SRV_IAS PUBLIC NIX #IX-Peerings-in-NIX $GS-00953 |", - "circuits": [ - { - "id": 708283, - "name": "IX-PEERINGS-IN-NIX", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 921, - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "NIX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NIX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "2/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | HAM-POZ | to MX1.POZ et-7/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162113, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae30.3015", - "bundle": [], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX-VPAR-PAR-FR $GS-00205 | Infoblox vPAR MGMT", - "circuits": [ - { - "id": 734051, - "name": "INFOBLOX-VPAR-PAR-FR-MGMT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 916, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON-LON2-IPTRUNK $GS-00052 | LON-LON2 | ", - "circuits": [ - { - "id": 738842, - "name": "LON-LON2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "xe-3/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 657, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | LON2-LON2 | to xe-2/1/3 MX1.LON2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899586, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c4/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916098, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.103", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-AMS-NL $GS-00115| ", - "circuits": [ - { - "id": 736086, - "name": "DCN-MANAGEMENT-AMS-NL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1020, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1279, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE2 | Uplink to sw5.lon.uk.geant.net - xe-", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1475, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COLT | P_AE29 Interxion CID: DE201067 | COLT ID: 444032093", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 853, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COLT - FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COLT - FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:2105", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET REDIRIS #BIL-HAM-02517 $GS-02517", - "circuits": [ - { - "id": 747545, - "name": "BIL-HAM-02517", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4091", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEZWEV-01139 $GS-01139", - "circuits": [ - { - "id": 744147, - "name": "MSEZWEV-01139", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "2/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | PRA-VIE | to RT0.PRA 2/1/c8/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162114, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "ae1", - "bundle": [ - "et-0/0/2" - ], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02146 | BRA-BRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 598, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BRA-BRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae11", - "bundle": [ - "xe-0/3/2" - ], - "bundle-parents": [ - "xe-0/3/2" - ], - "description": "LAG PRIVATE GOOGLE $GA-01921 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1327, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.40", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEFEDPOL-02524 $GS-02524", - "circuits": [ - { - "id": 744256, - "name": "MSEFEDPOL-02524", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1678, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae7.20", - "bundle": [], - "bundle-parents": [ - "et-8/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FRA-FRA-AMT-RELAYLINK-IAS $GS-02637 | ", - "circuits": [ - { - "id": 747180, - "name": "FRA-FRA-AMT-RELAYLINK-IAS", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1714, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.2", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER FCCN MICROSOFT #FCCN-NOVESBE-ExpressRoute-VLAN1944 $GS-01144 | MANUALLY MIGRATED FROM MX1.LIS TO RT1.POR 25/08/21", - "circuits": [ - { - "id": 706526, - "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1386, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.1501", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NORDUNET #HAM-LON-00719 $GS-00719", - "circuits": [ - { - "id": 747551, - "name": "HAM-LON-00719", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 955, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE16 | QFX.LON2.UK xe-0/0/46", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1020, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1345, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.21", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon-uk-psmp-bwctl-vlan21 |psmp-gn-drac-lon-uk.geant.org pS iDRAC", - "circuits": [ - { - "id": 740708, - "name": "PS-LON-UK-PSMP-BWCTL-VLAN21", - "type": "SERVER LINK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 756, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP P_AE30 | QFX xe-0/0/19", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1264, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE6 | LON2-PRD-ESX10 NIC1 PORT1", - "circuits": [ - { - "id": 658620, - "name": "LON2-PRD-ESX10-NIC1-PORT1", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 520, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/2", - "1/x1/1/c2/3" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-ATH-GR-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "11", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-21.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c18/1" - ], - "description": "SRV_IAS CUSTOMER AMRES #AMRES-AP1-IAS IASPS $GS-00522 | ASN13092 | ", - "circuits": [ - { - "id": 747849, - "name": "AMRES-AP1-IAS", - "type": "GEANT PEERING", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "13", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "AMRES", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMRES", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "et-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | CHI-CHI | CHI-CHI-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 619, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-CHI", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CHI-CHI", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | SPLUNK LON2 PEER02 link Slot4 P1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1584, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.551", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER RESTENA #fra-par-SLICES-RESTENA-RENATER-VL551 $GS-02485 | ", - "circuits": [ - { - "id": 737780, - "name": "FRA-PAR-SLICES-RESTENA-RENATER-VL551", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1205, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "RESTENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 10G-SR", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1026, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-2/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | BUC-CHI | ROEDUNET CID: BUC-CHI-040-3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 555, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "lag-5", - "bundle": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01858 | PRA-VIE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177285, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-VIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "PRA-VIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/15", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 531, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.1009", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT CSTNET #NL-NETHERLIGHT-CSTNET-KAUST-2 $GS-02393 | ASN7497 | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1740, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/0/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lis-pt-management |perfSONAR MGMT", - "circuits": [ - { - "id": 722334, - "name": "PS-LIS-PT-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 797, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-0/0/44", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | was | 10_GBS to MX1.FRA.DE xe-9/3/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 540, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae40", - "bundle": [ - "xe-11/3/0" - ], - "bundle-parents": [ - "xe-11/3/0" - ], - "description": "LAG PRIVATE ORACLE SRF21099 #2 $GA-02011 | FastConnect NREN Access", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1058, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "1/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20 | GRNET-AP1-IP6", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915969, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.3610", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT KAUST #NL-KAUST $GS-00895 | ASN50999 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1755, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "KAUST", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KAUST", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/4.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lhc-gen-ch-management |perfSONAR MGMT", - "circuits": [ - { - "id": 723646, - "name": "PS-LHC-GEN-CH-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1317, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.3152", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER DFN SINET #fra-par-JAXA-DFN-SINET-14005 $GS-00703 |", - "circuits": [ - { - "id": 706059, - "name": "FRA-PAR-JAXA-DFN-SINET-14005", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 895, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "LOGICAL" - }, - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE WP6T3 SRF20064 $GA-01318 | Formally JRA4T2 Server", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1570, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae17.500", - "bundle": [], - "bundle-parents": [ - "xe-1/2/6" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ASREN #UK-ASREN $GS-00911 | ASN199354 |", - "circuits": [ - { - "id": 661959, - "name": "UK-ASREN", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 608, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ASREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ASREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.3100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SURF AARNET #lon-lon-SURF-AARNET-19097 $GS-00721 |", - "circuits": [ - { - "id": 705937, - "name": "LON-LON-SURF-AARNET-19097", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 590, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - }, - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae10.333", - "bundle": [], - "bundle-parents": [ - "et-4/1/2" - ], - "description": "SRV_IAS CUSTOMER FCCN #FCCN-AP1-IAS IASGWS $GS-00527 | ASN1930", - "circuits": [ - { - "id": 661641, - "name": "FCCN-AP1-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 614, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.111", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L3VPN CUSTOMER RENATER #RENATER-AP1-IPv4-LHCONE $GS-00853 | ASN2200", - "circuits": [ - { - "id": 660442, - "name": "RENATER-AP1-IPV4-LHCONE", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 585, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae31", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01710 | MX1.LON2.UK AE16", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 609, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "1/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | RIG-TAR | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916353, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "RIG-TAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RIG-TAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RIG-TAR-IPTRUNK $GS-02345 | RIG-TAR | ", - "circuits": [ - { - "id": 746458, - "name": "RIG-TAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "RIG-TAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RIG-TAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae15.790", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET ITER #MAR-MAR-02645 $GS-02645 |", - "circuits": [ - { - "id": 746076, - "name": "MAR-MAR-02645", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 865, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ITER", - "interface_type": "LOGICAL" - }, - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae2", - "bundle": [ - "xe-0/1/0", - "xe-0/1/1" - ], - "bundle-parents": [ - "xe-0/1/0", - "xe-0/1/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02600 | BRA-BRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 532, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BRA-BRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "et-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER SANET P_AE13 SRF9938825", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 628, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SANET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SANET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.2260", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINGAREN #AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19103-VL2260 $GS-00957 |", - "circuits": [ - { - "id": 706922, - "name": "AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19103-VL2260", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 572, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae18", - "bundle": [ - "xe-7/0/6" - ], - "bundle-parents": [ - "xe-7/0/6" - ], - "description": "LAG RE_INTERCONNECT ARN SRF20032 $GA-02206 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 656, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ARN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ARN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae1.26", - "bundle": [], - "bundle-parents": [ - "xe-3/0/4", - "xe-3/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | PRA BMS SERVER 8 IDRAC", - "circuits": [ - { - "id": 725643, - "name": "RARE-BMS-SERVER-2-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 955, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1588, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-22", - "bundle": [ - "1/x1/1/c4/1" - ], - "bundle-parents": [ - "1/x1/1/c4/1" - ], - "description": "LAG CUSTOMER JISC | $GA-01550", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1342177302, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae4.0", - "bundle": [], - "bundle-parents": [ - "et-8/0/2", - "et-8/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS-MAD-IPTRUNK $GS-00048 | LIS-MAD 200G |;", - "circuits": [ - { - "id": 712769, - "name": "LIS-MAD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1160, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-MAD 200G", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LIS-MAD 200G", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-3", - "bundle": [ - "2/x1/1/c8/2" - ], - "bundle-parents": [ - "2/x1/1/c8/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02387 | COR-LON2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-LON2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "COR-LON2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:3915", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01161 $GS-01161", - "circuits": [ - { - "id": 747633, - "name": "AMS-HAM-MSE-01161", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.2103", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT AARNET #UK-AARNET-AER $GS-00905 | ASN7575 | AER via NETHERLIGHT", - "circuits": [ - { - "id": 709697, - "name": "UK-AARNET-AER", - "type": "IP PEERING - R&E", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 909, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-1/0/5", - "et-1/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #VIE-VIE-IPTRUNK $GS-02563| VIE-VIE | VIE-VIE-MGMT", - "circuits": [ - { - "id": 740752, - "name": "VIE-VIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 760, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "VIE-VIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "VIE-VIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae5.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-CHI-IPTRUNK $GS-00022| BUC-CHI | BUC-CHI-IPTRUNK", - "circuits": [ - { - "id": 745144, - "name": "BUC-CHI-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 610, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4089", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEPREMIER-01137 $GS-01137", - "circuits": [ - { - "id": 744264, - "name": "MSEPREMIER-01137", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-9/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | MAD-MAR | connected to MAD01-GRV2 1/1/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1144, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae15.100", - "bundle": [], - "bundle-parents": [ - "xe-2/1/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT MARWAN #UK-MARWAN $GS-02406 | ASN30983 |", - "circuits": [ - { - "id": 733897, - "name": "UK-MARWAN", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 802, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "MARWAN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MARWAN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.1728", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SCION KAUST #ams-fra-KAUST-SCION $GS-02417| ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1744, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to RT0.AMS 2/1/c9/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900033, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE ORANGE P_AE32 SRF21047 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1260, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c18/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER AMRES P_lag-21", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916993, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "AMRES", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMRES", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ZAG-ZAG-IPTRUNK $GS-50045 | ZAG-ZAG | ZAG-ZAG", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ZAG-ZAG", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ZAG-ZAG", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-2/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 645, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 566, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.4", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSESCIENSAN-02535 $GS-02535", - "circuits": [ - { - "id": 744226, - "name": "MSESCIENSAN-02535", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1388, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bra.sk.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-BRA-MGMT-IPTRUNK $GS-02602 | BRA-BRA | BRA-BRA-MGMT", - "circuits": [ - { - "id": 743065, - "name": "BRA-BRA-MGMT-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae1.0", - "bundle": [], - "bundle-parents": [ - "xe-7/0/0", - "xe-7/0/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAD-MAD-IPTRUNK $GS-02593| MAD-MAD | MAD-MAD", - "circuits": [ - { - "id": 742615, - "name": "MAD-MAD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 982, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 588, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.3101", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SURF AARNET #lon-lon-SURF-AARNET-23009 $GS-02249 |", - "circuits": [ - { - "id": 726158, - "name": "LON-LON-SURF-AARNET-23009", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1142, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - }, - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.1125", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET INTERNET2 #IMINDS-00681 $GS-00681", - "circuits": [ - { - "id": 744066, - "name": "IMINDS-00681", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 889, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-SRX2-AMS-OFFICE |", - "circuits": [ - { - "id": 708185, - "name": "SRX1-SRX2-AMS-OFFICE", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 510, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.132", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ocvm-lon-uk-esxi | OC VM ESXi", - "circuits": [ - { - "id": 740680, - "name": "OCVM-LON-UK-ESXI", - "type": "SERVER LINK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 717, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.2281", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER HEANET NETHERLIGHT #LOFAR-00632 $GS-00632 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1124, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae12.3552", - "bundle": [], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CSTNET CERN #gen-mar-IHEP-CERN-CSTNET $GS-02414 |", - "circuits": [ - { - "id": 732309, - "name": "GEN-MAR-IHEP-CERN-CSTNET", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 713, - "dashboards": [ - "IC1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/15", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE16 | LON2-PRD-ESX10 NIC1 PORT2", - "circuits": [ - { - "id": 658554, - "name": "LON2-PRD-ESX10-NIC1-PORT2", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 529, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-4/0/2", - "et-4/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS-POR-IPTRUNK $GS-00050 | LIS-POR IP TRUNK", - "circuits": [ - { - "id": 708705, - "name": "LIS-POR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 756, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-POR IP TRUNK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LIS-POR IP TRUNK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.2004", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L3VPN RE_INTERCONNECT ESNET #ESNET-PAR-LHCONE $GS-00823 | ASN293", - "circuits": [ - { - "id": 661188, - "name": "ESNET-PAR-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 617, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae2", - "bundle": [ - "et-0/0/5", - "et-0/1/2", - "et-0/1/5", - "et-5/0/2" - ], - "bundle-parents": [ - "et-0/0/5", - "et-0/1/2", - "et-0/1/5", - "et-5/0/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02171 | MAD-MAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 686, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-101", - "bundle": [ - "2/x1/1/c2/1", - "2/x1/1/c2/3" - ], - "bundle-parents": [ - "2/x1/1/c2/1", - "2/x1/1/c2/3" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae1.7", - "bundle": [], - "bundle-parents": [ - "xe-5/1/1", - "xe-5/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NTP4.GEANT.NET", - "circuits": [ - { - "id": 739307, - "name": "NTP4.GEANT.NET", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 891, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was IUCC: GNT-E10-005", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 551, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae13.104", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #CH-ESNET-IPV4 $GS-00872 | ASN293 | IPv4", - "circuits": [ - { - "id": 730102, - "name": "CH-ESNET-IPV4", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1280, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4083", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-STADKORTRIJK-ExpressRoute-VLAN-4083 $GS-01128 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739677, - "name": "BELNET-STADKORTRIJK-EXPRESSROUTE-VLAN-4083", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1668, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE GTS SRF0000001 | MAD GTS Server #3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 582, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.140", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CERN REDCLARA #GEN-LIS-CERN-REDCLARA-22059 $GS-02176 |", - "circuits": [ - { - "id": 720101, - "name": "GEN-LIS-CERN-REDCLARA-22059", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 791, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-21.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4", - "1/x1/1/c4/2" - ], - "description": "SRV_IAS PUBLIC INEX #IX-Peerings-in-INEX $GS-00950 |", - "circuits": [ - { - "id": 747291, - "name": "IX-PEERINGS-IN-INEX", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "7", - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "INEX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INEX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae4", - "bundle": [ - "et-1/1/2" - ], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02585 | POR-POR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 627, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POR-POR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "POR-POR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.21", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEZWEV-01139 $GS-01139", - "circuits": [ - { - "id": 744147, - "name": "MSEZWEV-01139", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1404, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 573, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.240", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-SINET-EDGE-DEVICE-IDRAC | SINET edge-device-iDRAC", - "circuits": [ - { - "id": 736087, - "name": "AMS-SINET-EDGE-DEVICE-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1516, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mar.fr.geant.net", - "name": "1/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | MAR-MAR | to RT1.MAR xe-3/2/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-101", - "bundle": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1(ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.3921", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET RARE #AMS-HAM-02430 $GS-02430", - "circuits": [ - { - "id": 747548, - "name": "AMS-HAM-02430", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1542, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE IT_INFRA | to QFX xe-0/0/0", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 672, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2018", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-LIS-LHCONE $GS-00848 | ASN27750", - "circuits": [ - { - "id": 713840, - "name": "REDCLARA-LIS-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 780, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.3222", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #NL-INTERNET2-MONTREAL $GS-00893 | ASN11537 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1752, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-1/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | MAR-MIL2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 677, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-7.0", - "bundle": [], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-PAR-IPTRUNK $GS-00040 | GEN-PAR | ", - "circuits": [ - { - "id": 739696, - "name": "GEN-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-11/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE DTN-Project 100G $GA-01379 | Under testing ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1203, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "et-5/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | LIS-MAD | 200G", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 774, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LIS-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "ae2.103", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-KIE2-UA $GS-00132 | DCN MANAGEMENT ", - "circuits": [ - { - "id": 715041, - "name": "DCN-MANAGEMENT-KIE2-UA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 613, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-1", - "bundle": [ - "1/1/c11/1", - "1/1/c11/2", - "1/1/c12/1" - ], - "bundle-parents": [ - "1/1/c11/1", - "1/1/c11/2", - "1/1/c12/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01776 | MAR-MIL2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MIL2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MAR-MIL2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-2/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 730, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-4/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE- WAS FRA-GEN", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1440, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 596, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae22.334", - "bundle": [], - "bundle-parents": [ - "et-10/0/2", - "et-11/0/5" - ], - "description": "SRV_IAS CUSTOMER CERN #CERN-AP1-EXT2-IAS IASPS $GS-00561 | ASN513", - "circuits": [ - { - "id": 701592, - "name": "CERN-AP1-EXT2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1238, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/2.22", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon2-uk-owamp-fpc2 | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20200501", - "circuits": [ - { - "id": 677828, - "name": "PS-LON2-UK-OWAMP-FPC2", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 766, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae17", - "bundle": [ - "xe-0/3/6" - ], - "bundle-parents": [ - "xe-0/3/6" - ], - "description": "LAG RE_INTERCONNECT UBUNTUNET $GA-01917 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1340, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "UBUNTUNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/0/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE3 SRF0000001 | rt1-sw2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 661, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.16", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-UKMO $GS-01089", - "circuits": [ - { - "id": 732665, - "name": "GRE-MULTICAST-TUNNEL-UKMO", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1219, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 521, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.519", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L2CIRCUIT RE_INTERCONNECT NISN RENATER #lon-par-CNES-NISN-RENATER $GS-00736", - "circuits": [ - { - "id": 709305, - "name": "LON-PAR-CNES-NISN-RENATER", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 762, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NISN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NISN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae16.101", - "bundle": [], - "bundle-parents": [ - "xe-1/2/1", - "xe-1/2/3", - "xe-2/0/7", - "xe-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT-IT GEANT-IT #AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT $GS-00652", - "circuits": [ - { - "id": 705901, - "name": "AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 563, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/2/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 600, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "et-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | AMS-LON | AMS-LON-AW-TRUNK", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 631, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 607, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae21.111", - "bundle": [], - "bundle-parents": [ - "et-11/1/0" - ], - "description": "SRV_L3VPN CUSTOMER ROEDUNET #ROEDUNET-AP2-LHCONE $GS-00858 | ASN2614", - "circuits": [ - { - "id": 679572, - "name": "ROEDUNET-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 625, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 574, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "Reserved for New EX | 10G-LR |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 588, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae12.36", - "bundle": [], - "bundle-parents": [ - "et-8/1/2" - ], - "description": "SRV_GLOBAL CUSTOMER CARNET #CARNET-AP2 $GS-00441 | ASN2108 |", - "circuits": [ - { - "id": 730104, - "name": "CARNET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 841, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-20", - "bundle": [ - "1/1/c25/1" - ], - "bundle-parents": [ - "1/1/c25/1" - ], - "description": "LAG CUSTOMER DFN | $GA-01894", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "2/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | BIL-PAR | to RT1.BIL.ES - et-2/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162177, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "xe-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 567, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "lag-6.0", - "bundle": [], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-PRA-IPTRUNK $GS-00033 | FRA-PRA | ", - "circuits": [ - { - "id": 740465, - "name": "FRA-PRA-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-PRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FRA-PRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/4.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #par-lon2-SUPERPOP-QFX-GEANT $GS-00080 |", - "circuits": [ - { - "id": 729412, - "name": "PAR-LON2-SUPERPOP-QFX-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 612, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-4/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 995, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "1/1/c11/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | MAR-MIL2 | to RT1.MAR.FR et-1/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900162, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-22.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/2" - ], - "description": "SRV_GLOBAL CUSTOMER MARNET #MARNET-AP1 $GS-00489 | ASN44224 | ", - "circuits": [ - { - "id": 744954, - "name": "MARNET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 591, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/0.50", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-AMS-TO-FW-WAN |", - "circuits": [ - { - "id": 662969, - "name": "SRX1-AMS-TO-FW-WAN", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 554, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.3061", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET ORACLE #OFCFODMOB-02631 $GS-02631", - "circuits": [ - { - "id": 744387, - "name": "OFCFODMOB-02631", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1701, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae13.421", - "bundle": [], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "SRV_IAS CUSTOMER SANET #SANET-AP1-IAS IASPS $GS-00546 | ASN2607 |", - "circuits": [ - { - "id": 718909, - "name": "SANET-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 618, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "SANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-1/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 677, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | mx1-sw1-poz1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 571, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/2/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 642, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae18.100", - "bundle": [], - "bundle-parents": [ - "et-8/1/0" - ], - "description": "SRV_GLOBAL CUSTOMER KIFU #KIFU-AP2 $GS-00482 | ASN1955 |", - "circuits": [ - { - "id": 734871, - "name": "KIFU-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 585, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE AzScienceNe P_AE37 Interxion CID: DE205548 | 202993", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 883, - "dashboards": [ - "EAP" - ], - "dashboard_info": { - "name": "AZSCIENCENE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AZSCIENCENE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 830, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | FRA-PRA | to RT0.FRA 1/1/C8/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899970, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 602, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae22", - "bundle": [ - "et-2/0/0" - ], - "bundle-parents": [ - "et-2/0/0" - ], - "description": "LAG CUSTOMER IUCC SRF9915965 $GA-01940 | IUCC-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 985, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "IUCC", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "IUCC", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.10", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-INPE $GS-01080", - "circuits": [ - { - "id": 732666, - "name": "GRE-MULTICAST-TUNNEL-INPE", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1213, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.37", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSENCCN-02370 $GS-02370", - "circuits": [ - { - "id": 744141, - "name": "MSENCCN-02370", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1418, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.30", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEMOBILIT-02169 $GS-02169", - "circuits": [ - { - "id": 744269, - "name": "MSEMOBILIT-02169", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1412, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 548, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21", - "bundle": [ - "1/1/c26/1" - ], - "bundle-parents": [ - "1/1/c26/1" - ], - "description": "LAG CUSTOMER NORDUNET | $GA-01893 | NORDUNET LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177301, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 848, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.996", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #GEANT-OPERATIONS-LabConnectivity | GEANT MX1.LON Infinera VRF to Operations Lab", - "circuits": [ - { - "id": 740707, - "name": "GEANT-OPERATIONS-LABCONNECTIVITY", - "type": "CORPORATE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 920, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/0/2.10", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS DTN-PROJECT #DTN-LON-10G-DATA $GS-00146 | 10G Testing CONTACT: Richard.Hughes-Jones@geant.org", - "circuits": [ - { - "id": 661522, - "name": "DTN-LON-10G-DATA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1161, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/3/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 611, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21.100", - "bundle": [], - "bundle-parents": [ - "1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER NORDUNET #NORDUNET-AP2 $GS-00493 | ASN2603 | ", - "circuits": [ - { - "id": 747589, - "name": "NORDUNET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "12", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 | AMS-LON | AMS-LON-AW-TRUNK", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1560, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae1.25", - "bundle": [], - "bundle-parents": [ - "xe-3/0/4", - "xe-3/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | PRA BMS SERVER 5 IDRAC", - "circuits": [ - { - "id": 725645, - "name": "RARE-BMS-SERVER-1-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 950, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae18", - "bundle": [ - "xe-2/1/1", - "xe-2/2/1" - ], - "bundle-parents": [ - "xe-2/1/1", - "xe-2/2/1" - ], - "description": "LAG INFRASTRUCTURE ACCESS | splunk-lon2-peer01.geant.org | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 635, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21.111", - "bundle": [], - "bundle-parents": [ - "1/1/c26/1" - ], - "description": "SRV_L3VPN CUSTOMER NORDUNET #NORDUNET-AP2-LHCONE $GS-02118 | ASN2603 | ", - "circuits": [ - { - "id": 747591, - "name": "NORDUNET-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "13", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4.2050", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER ESNET NEA3R #lon-lon-GEANTOpen-ESNET-NEA3R $GS-02250 |", - "circuits": [ - { - "id": 738640, - "name": "LON-LON-GEANTOPEN-ESNET-NEA3R", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1520, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NEA3R", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NEA3R", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:1176", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET SCION #FED4FIRE-00682 $GS-00682", - "circuits": [ - { - "id": 745343, - "name": "FED4FIRE-00682", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 549, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 583, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.220", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 TENET #lon-par-GEANTOPEN-INTERNET2-TENET-19004 $GS-00970 |", - "circuits": [ - { - "id": 736663, - "name": "LON-PAR-GEANTOPEN-INTERNET2-TENET-19004", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1135, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "LOGICAL" - }, - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CESNET", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 651, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 561, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "2/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | FRA-FRA | TO RT1.FRA.DE-et-3/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162817, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "lag-7", - "bundle": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02408 | POZ-PRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177287, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-PRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "POZ-PRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae28.201", - "bundle": [], - "bundle-parents": [ - "et-11/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER TENET ESNET #lon-lon-GEANTOpen-Esnet-TENET-180871 $GS-00966 |", - "circuits": [ - { - "id": 738644, - "name": "LON-LON-GEANTOPEN-ESNET-TENET-180871", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 644, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "LOGICAL" - }, - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4080", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ARPGAN-ExpressRoute-VLAN4080 $GS-01122 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739674, - "name": "BELNET-ARPGAN-EXPRESSROUTE-VLAN4080", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1665, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae9", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01681 | FRA-PRD-ESX01 VM Traffic LAG", - "circuits": [ - { - "id": 658532, - "name": "FRANKFURT 15-FRANKFURT 15-LAG-064(GEANT)", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 578, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/4.19", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #DASHBOARD-TEST-SERVICE-LON2-VIRGIN(DO-NOT-OPEN-TICKET)|", - "circuits": [ - { - "id": 709123, - "name": "VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN19-CH", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 532, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-7", - "bundle": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01823 | GEN-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177287, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae23", - "bundle": [ - "xe-0/3/3" - ], - "bundle-parents": [ - "xe-0/3/3" - ], - "description": "LAG PRIVATE ORACLE SRF21099 #NL-ORACLEFC-LAG-1 $GA-02009 | FastConnect NREN Access", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1311, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.buc.ro.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c26/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-BUC-IPTRUNK $GS-50060 | BUC-BUC | BUC-BUC", - "circuits": [ - { - "id": 745576, - "name": "BUC-BUC-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUC-BUC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.87", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_GLOBAL CUSTOMER EUMETSAT #EUMET-BUCC-MAD-17042 $GS-00457 | VLAN 87 MONITORING 85", - "circuits": [ - { - "id": 715042, - "name": "EUMET-BUCC-MAD-17042", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1055, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-101", - "bundle": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae23.333", - "bundle": [], - "bundle-parents": [ - "et-9/0/5", - "et-10/1/5" - ], - "description": "SRV_IAS CUSTOMER CESNET #CESNET-AP2-IAS IASPS $GS-00564 | ASN2852", - "circuits": [ - { - "id": 731675, - "name": "CESNET-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1098, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.18", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #VIRGIN-MEDIA-EX1-LON2-TO-CAM-SRX-VLAN18 |", - "circuits": [ - { - "id": 661962, - "name": "VIRGIN-MEDIA-EX1-LON2-TO-CAM-SRX-VLAN18", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1862, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae3.103", - "bundle": [], - "bundle-parents": [ - "xe-2/0/1", - "xe-2/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-MAD-ES | ", - "circuits": [ - { - "id": 702127, - "name": "DCN-MANAGEMENT-MAD-ES", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 747, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae18.111", - "bundle": [], - "bundle-parents": [ - "et-8/1/0" - ], - "description": "SRV_L3VPN CUSTOMER KIFU #KIFU-AP2-LHCONE $GS-02283 | ASN1955 |", - "circuits": [ - { - "id": 734866, - "name": "KIFU-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 851, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-22:1640", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET SCION #SCION-02382 $GS-02382", - "circuits": [ - { - "id": 745483, - "name": "SCION-02382", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-8/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | LIS-MAD | 200G", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1141, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LIS-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae14.100", - "bundle": [], - "bundle-parents": [ - "et-4/0/0", - "et-10/1/2" - ], - "description": "SRV_IAS PUBLIC DE-CIX #IX-Peerings-in-DE-CIX-MAD $GS-00949 |", - "circuits": [ - { - "id": 661295, - "name": "IX-PEERINGS-IN-DE-CIX-MAD", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1106, - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "DE-CIX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DE-CIX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-8/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | BUD-VIE | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1144, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUD-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/1/c9/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #HAM-TAR-IPTRUNK $GS-02348 | HAM-TAR | ", - "circuits": [ - { - "id": 746460, - "name": "HAM-TAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-TAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HAM-TAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.37", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MSER-NCCN-ExpressRoute-VLAN4065 $GS-02371 | ", - "circuits": [ - { - "id": 739672, - "name": "BELNET-MSER-NCCN-EXPRESSROUTE-VLAN4065", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 676, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/2/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #par-lon2-SUPERPOP-QFX-2-GEANT $GS-00081 |", - "circuits": [ - { - "id": 729417, - "name": "PAR-LON2-SUPERPOP-QFX-2-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1117, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4092", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEIMEC-02092 $GS-02092", - "circuits": [ - { - "id": 744142, - "name": "MSEIMEC-02092", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3202", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT TEIN #UK-TEIN $GS-00924 | ASN24490 | Singapore", - "circuits": [ - { - "id": 661949, - "name": "UK-TEIN", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 575, - "dashboards": [ - "CAE1", - "RE_PEER" - ], - "dashboard_info": { - "name": "TEIN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TEIN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 520, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.38", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS Customer Nordunet MICROSOFT #Nordunet-MSER-ExpressRoute-Vlan3918 $GS-02411 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 732192, - "name": "NORDUNET-MSER-EXPRESSROUTE-VLAN3918", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1419, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 579, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-8/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 992, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #uat-ps-lon2-uk-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20200225", - "circuits": [ - { - "id": 708923, - "name": "UAT-PS-LON2-UK-BWCTL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 671, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "2/x1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | LJU-ZAG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178498, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LJU-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.10", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-VMnetwork-PAR-FR | ne-esxi-prod-par-1 VMnetwork", - "circuits": [ - { - "id": 739095, - "name": "NE-ESXI-VMNETWORK-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1215, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.4001", - "bundle": [], - "bundle-parents": [], - "description": "SRV_IAS PRIVATE NORDUNET #UK-NORDUNET-IX-2603 $GS-00944 | ASN2603 | NORDUnet peer UK", - "circuits": [ - { - "id": 660550, - "name": "UK-NORDUNET-IX-2603", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1281, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 870, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN | Trunk to EX1.lon2.uk", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1021, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 933, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.400", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NOKIA_DEMO_AMS | ", - "circuits": [ - { - "id": 747232, - "name": "NOKIA_DEMO_AMS", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1764, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.420", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT DFN NKN #AMS-HAM-DFN-NKN-02211 $GS-02211", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1735, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.3018", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-PAR-SINET-SD-WAN-SINET-SINET-17091 $GS-00660 |", - "circuits": [ - { - "id": 736074, - "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17091", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1519, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4.123", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon-GEANTOpen-ESnet-NORDUNET-15039-1 $GS-00963 |", - "circuits": [ - { - "id": 738642, - "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-1", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1509, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-11/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 743, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/2.702", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #par-fra-DTN-generator $GS-00745 | RARE P4 TESTBED", - "circuits": [ - { - "id": 733002, - "name": "PAR-FRA-DTN-GENERATOR", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1449, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.615", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT REDCLARA #PT-REDCLARA $GS-00903 | ASN27750 |", - "circuits": [ - { - "id": 713837, - "name": "PT-REDCLARA", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 779, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-bw-vie.at.geant.org pS BWCTL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 865, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.22", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-DMI $GS-02172", - "circuits": [ - { - "id": 732672, - "name": "GRE-MULTICAST-TUNNEL-DMI", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1225, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.936", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS GEANT #AMS-BIL-REDIRIS-RARE $GS-02287 |", - "circuits": [ - { - "id": 736075, - "name": "AMS-BIL-REDIRIS-RARE", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1534, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae20.100", - "bundle": [], - "bundle-parents": [ - "xe-2/0/3", - "xe-2/1/1" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT NKN #CH-NKN $GS-00874 | ASN9885 |", - "circuits": [ - { - "id": 678060, - "name": "CH-NKN", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 892, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "NKN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NKN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c9/1", - "1/x1/1/c9/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #SOF-ZAG-IPTRUNK $GS-02367 | SOF-ZAG | ", - "circuits": [ - { - "id": 747867, - "name": "SOF-ZAG-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 7, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-ZAG", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SOF-ZAG", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/2.104", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF SRF21105 #FRA-PRA-RARE-BMS8 $GS-00706", - "circuits": [ - { - "id": 737235, - "name": "FRA-PRA-RARE-BMS8", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1446, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/10", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 525, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.20", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet_ARTEV_ExpressRoute_VLAN4081 $GS-01123 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739675, - "name": "BELNET-ARTEV-EXPRESSROUTE-VLAN4081", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 601, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "et-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | PRA-PRA | to RT0.PRA 1/1/C12/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 897, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/3.500", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-City-House-Network-Infrastructure |", - "circuits": [ - { - "id": 662973, - "name": "SRX1-CITY-HOUSE-NETWORK-INFRASTRUCTURE", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 544, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae2.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/5", - "et-0/1/2", - "et-0/1/5", - "et-5/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAD-MAR-IPTRUNK $GS-00054| MAD-MAR | ", - "circuits": [ - { - "id": 717047, - "name": "MAD-MAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 690, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.34", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSERIZIV-02520 $GS-02520", - "circuits": [ - { - "id": 744225, - "name": "MSERIZIV-02520", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1415, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-101.103", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-COR-IE-VRF-VLAN103 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "8", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4086", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEFGOV-01132 $GS-01132", - "circuits": [ - { - "id": 744263, - "name": "MSEFGOV-01132", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "ae10.100", - "bundle": [], - "bundle-parents": [ - "xe-0/1/1", - "xe-0/1/2" - ], - "description": "SRV_GLOBAL CUSTOMER URAN #URAN-AP2 $GS-00521 | ASN12687 |", - "circuits": [ - { - "id": 714000, - "name": "URAN-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 609, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:191", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET REDIRIS #HAM-MAD-02343 $GS-02343", - "circuits": [ - { - "id": 747542, - "name": "HAM-MAD-02343", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 623, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 593, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 849, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae18.10", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_IAS PUBLIC BIX #IX-Peerings-in-BIX-BUD $GS-00956 |", - "circuits": [ - { - "id": 663235, - "name": "IX-PEERINGS-IN-BIX-BUD", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 527, - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "BIX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BIX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-20.100", - "bundle": [], - "bundle-parents": [ - "1/1/c25/1" - ], - "description": "SRV_GLOBAL CUSTOMER DFN #DFN-AP2 $GS-00453 | ASN680 | ", - "circuits": [ - { - "id": 745579, - "name": "DFN-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae1.100", - "bundle": [], - "bundle-parents": [ - "xe-5/1/1", - "xe-5/1/2" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT UTIC #BUD-UTIC $GS-02232 | ASN8670 |", - "circuits": [ - { - "id": 739336, - "name": "BUD-UTIC", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 945, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "UTIC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "UTIC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-lhc-bw-fra.de.geant.org pS BWCTL (LHCONE)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 553, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/7.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #par-lon2-SUPERPOP-QFX-GEANT $GS-00080 |", - "circuits": [ - { - "id": 729412, - "name": "PAR-LON2-SUPERPOP-QFX-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1120, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3151", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET SINGAREN #LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3151 $GS-00976 |", - "circuits": [ - { - "id": 705892, - "name": "LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3151", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 758, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.35", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-FUNET-ExpressRoute-VLAN3917 $GS-02327 | ", - "circuits": [ - { - "id": 727782, - "name": "NORDUNET-FUNET-EXPRESSROUTE-VLAN3917", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1416, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1059, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/2.201", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE REDIRIS #fra-mad-RARE-REDIRIS-23017-VL201 $GS-02274", - "circuits": [ - { - "id": 732759, - "name": "FRA-MAD-RARE-REDIRIS-23017-VL201", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1447, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-4/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 997, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-9.0", - "bundle": [], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-HAM-IPTRUNK $GS-00010 | AMS-HAM | ", - "circuits": [ - { - "id": 739970, - "name": "AMS-HAM-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-HAM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-HAM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.3151", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER SINET #ams-gen-Grid5000-Renater-SINET-07201 $GS-00636 |", - "circuits": [ - { - "id": 705429, - "name": "AMS-GEN-GRID5000-RENATER-SINET-07201", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 893, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "irb.521", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-LON2-UK-VRF-VLAN521 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 831, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.209", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-mit2-fra-de-idrac | NEMO DDOS Mitigation 2 iDRAC | ", - "circuits": [ - { - "id": 732633, - "name": "DDOS-MIT2-FRA-DE-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1411, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 524, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER REDIRIS P_AE15 SRF21114", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 670, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae12.1200", - "bundle": [], - "bundle-parents": [ - "et-4/0/5", - "et-8/0/5", - "et-11/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CERN GARR #gen-gen-GARR-CERNlight-CERN-GARR-16034 $GS-00709 |", - "circuits": [ - { - "id": 706977, - "name": "GEN-GEN-GARR-CERNLIGHT-CERN-GARR-16034", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 805, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/5.3174", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SINGAREN NETHERLIGHT #SINGAREN-02647 $GS-02647 |", - "circuits": [ - { - "id": 746484, - "name": "SINGAREN-02647", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 929, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ASNET-AM P_AE17 Interxion CID: DE238515 | Telekom Armenia CID: GEANT-22-254-EPL1 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 898, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ASNET-AM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ASNET-AM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c26/1" - ], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "LAG CUSTOMER BELNET | $GA-01913", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.903", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #par-par-MISC-GEANT-INTERNET2-9940539 $GS-00747 |", - "circuits": [ - { - "id": 705916, - "name": "PAR-PAR-MISC-GEANT-INTERNET2-9940539", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1210, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/0/1:2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 533, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "2/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "''", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161730, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 621, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1028, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-4/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | GEN-MAR | to rt0.gen 2/1/c8/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 580, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae1.28", - "bundle": [], - "bundle-parents": [ - "xe-3/0/4", - "xe-3/0/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT EUMETSAT #PRA-EUMETSAT-SERVER-DATA-TRAFFIC $GS-02361 | PRA-EUMETSAT-1G", - "circuits": [ - { - "id": 729004, - "name": "PRA-EUMETSAT-SERVER-DATA-TRAFFIC", - "type": "IP PEERING - R&E", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 966, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae10.4088", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-2/1/5", - "et-11/1/0" - ], - "description": "SRV_GCS CUSTOMER GARR MICROSOFT #GARR-ROMA_ExpressRoute_VLAN4088 $GS-01147 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707295, - "name": "GARR-ROMA_EXPRESSROUTE_VLAN4088", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 796, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/2/7.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-fra-de-management UAT |perfSONAR MGMT", - "circuits": [ - { - "id": 733940, - "name": "PS-FRA-DE-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1354, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae4.0", - "bundle": [], - "bundle-parents": [ - "et-1/0/5", - "et-1/1/2", - "et-2/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL-PAR-IPTRUNK $GS-00016| BIL-PAR | BIL-PAR", - "circuits": [ - { - "id": 739468, - "name": "BIL-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 525, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BIL-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae1.250", - "bundle": [], - "bundle-parents": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #vm-lon2-uk-idracs-250| NEW VM iDRACs", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 884, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae2.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/5", - "et-0/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL-POR-IPTRUNK $GS-00017 | BIL-POR IP TRUNK", - "circuits": [ - { - "id": 709122, - "name": "BIL-POR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 524, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-POR IP TRUNK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BIL-POR IP TRUNK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae31.0", - "bundle": [], - "bundle-parents": [ - "xe-4/3/5", - "xe-8/0/0" - ], - "description": "SRV_INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 MGMT | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 741, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 564, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/0.1200", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER CERN GARR #gen-gen-GARR-CERNlight-CERN-GARR-16034 $GS-00709 |", - "circuits": [ - { - "id": 706977, - "name": "GEN-GEN-GARR-CERNLIGHT-CERN-GARR-16034", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 859, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "1/1/c11/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-9 | BUD-VIE | to MX1.BUD et-8/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900162, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUD-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae18", - "bundle": [ - "et-1/1/0" - ], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "LAG PUBLIC BIX SRF9946209 $GA-01900 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 655, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae33", - "bundle": [ - "et-1/1/2" - ], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "LAG CUSTOMER NORDUNET $GA-02480 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1682, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "2/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | RIG-TAR | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178497, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "RIG-TAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RIG-TAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER REDIRIS P_AE15 SRF21114", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 676, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.19", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-UWSSEC $GS-01090", - "circuits": [ - { - "id": 732660, - "name": "GRE-MULTICAST-TUNNEL-UWSSEC", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1222, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-101.103", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/2", - "1/x1/1/c2/3" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-ATH-GR-VRF-VLAN103 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "10", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1195, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae14.160", - "bundle": [], - "bundle-parents": [ - "et-1/1/5", - "et-8/0/2", - "et-8/1/2", - "et-8/1/5" - ], - "description": "SRV_GLOBAL CUSTOMER RENATER #RENATER-AP2 $GS-00506 | ASN2200 |", - "circuits": [ - { - "id": 663060, - "name": "RENATER-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 828, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae11.420", - "bundle": [], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER DFN NKN SRF22079 #FRA-GEN-DFN-NKN-22079 $GS-02210 |", - "circuits": [ - { - "id": 724886, - "name": "FRA-GEN-DFN-NKN-22079", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 915, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NKN", - "interface_type": "LOGICAL" - }, - { - "name": "DFN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bud.hu.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c9/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-BUD-IPTRUNK $GS-02596 | BUD-BUD | BUD-BUD-MGMT", - "circuits": [ - { - "id": 742924, - "name": "BUD-BUD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-BUD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUD-BUD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "lag-2", - "bundle": [ - "1/1/c9/2", - "1/1/c12/2", - "2/1/c9/2" - ], - "bundle-parents": [ - "1/1/c9/2", - "1/1/c12/2", - "2/1/c9/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02544 | PRA-PRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-PRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "PRA-PRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-21.111", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1", - "1/x1/1/c26/2" - ], - "description": "SRV_L3VPN CUSTOMER ULAKBIM #ULAKBIM-AP1-LHCONE $GS-00868 | ASN8517 | ", - "circuits": [ - { - "id": 745294, - "name": "ULAKBIM-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "12", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-MIL2-IPTRUNK $GS-00039 | GEN-MIL2 | ", - "circuits": [ - { - "id": 740949, - "name": "GEN-MIL2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MIL2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MIL2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-1", - "bundle": [ - "1/x1/1/c9/1", - "1/x1/1/c9/2" - ], - "bundle-parents": [ - "1/x1/1/c9/1", - "1/x1/1/c9/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02369 | SOF-ZAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-ZAG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SOF-ZAG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 559, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE DTN-Project 10G $GA-01377 | Under testing ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1199, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-1/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENATER P_AE12 | RENATER-AP1-1 | DR Circuit ID: FR112753", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1152, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae12.333", - "bundle": [], - "bundle-parents": [ - "et-8/1/2" - ], - "description": "SRV_IAS CUSTOMER CARNET #CARNET-AP2-IAS IASPS $GS-00560 | ASN2108", - "circuits": [ - { - "id": 730098, - "name": "CARNET-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 843, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "CARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-7/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | WAS FB-ID: 8644659", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 824, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/1/5.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DTN-LON-100G-JBO-DATA $GS-00144 | DTN-PROJECT | 100G Testing CONTACT: Richard.Hughes-Jones@geant.org", - "circuits": [ - { - "id": 708302, - "name": "DTN-LON-100G-JBO-DATA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 632, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae11.938", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-2/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CESNET #pra-ams-CESNET-SURF-FABRIC $GS-02649 |", - "circuits": [ - { - "id": 747231, - "name": "PRA-AMS-CESNET-SURF-FABRIC", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1029, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE2 | LON2-PRD-ESX02 NIC1 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 518, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1058, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/8.10", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #GEANT-CORPORATE-ViaVodafone | GEANT Corporate to mx1.lon - Via Vodafone", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 543, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE1 | LON2-PRD-ESX01 NIC1 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 517, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae11.111", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-2/1/5" - ], - "description": "SRV_L3VPN CUSTOMER CESNET #CESNET-AP1-LHCONE $GS-00813 | ASN2852", - "circuits": [ - { - "id": 725154, - "name": "CESNET-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 934, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 516, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/2/6.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-owamp UAT | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 733912, - "name": "PS-FRA-DE-OWAMP", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1353, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE FW1-SNM", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 663, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-bw- bud.hu geant.org pS BWCTL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 943, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | FRA-PAR-QFX | to QFX xe-1/0/17", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 821, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4085", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-IMEC-ExpressRoute-VLAN4085 $GS-02091 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739663, - "name": "BELNET-IMEC-EXPRESSROUTE-VLAN4085", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1670, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae18.0", - "bundle": [], - "bundle-parents": [ - "xe-2/1/1", - "xe-2/2/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | SPLUNK LON2 PEER01 MGMT | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 798, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-22:1006", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET GRNET #FED4FIRE-00669 $GS-00669", - "circuits": [ - { - "id": 747356, - "name": "FED4FIRE-00669", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-3/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 769, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 846, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/3.501", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #CAM-CH-WAN-GATEWAY-2 | 2nd internet link at City House", - "circuits": [ - { - "id": 663110, - "name": "CAM-CH-WAN-GATEWAY-2", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 549, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER NETHERLIGHT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 647, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/4.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER RENATER $GS-00784 #ams-par-LOFAR-RENATER-NetherLight-10001 |", - "circuits": [ - { - "id": 734546, - "name": "AMS-PAR-LOFAR-RENATER-NETHERLIGHT-10001", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1057, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 791, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.25", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DRAC-SuperPoP-PAR-FR | SuperPOP DRAC", - "circuits": [ - { - "id": 733978, - "name": "DRAC-SUPERPOP-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 715, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "1/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to LON01.GRV1 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900097, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae27.1", - "bundle": [], - "bundle-parents": [ - "xe-10/2/0" - ], - "description": "PHY CUSTOMER_GEO MAEEN #MAEEN-GEO-UK-1 | SRF21017|", - "circuits": [ - { - "id": 719829, - "name": "MAEEN-GEO-UK-1", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1171, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "MAEEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAEEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.401", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SINGAREN #OOB-SINGAREN-LON2-UK | LON2-SingAREN-1G OOB", - "circuits": [ - { - "id": 740504, - "name": "OOB-SINGAREN-LON2-UK", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 900, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae17", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01705 | LON2-PRD-ESX11 VM TRAFFIC LAG", - "circuits": [ - { - "id": 658659, - "name": "LON2-PRD-ESX11-VM-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 605, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-1/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | BIL-PAR | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 679, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 569, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae33.200", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 - CLEAN-IAS | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 817, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae1", - "bundle": [ - "xe-5/1/1", - "xe-5/1/2" - ], - "bundle-parents": [ - "xe-5/1/1", - "xe-5/1/2" - ], - "description": "PHY INFRASTRUCTURE ACCESS LAN | bud hu POP LAN", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 615, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "lag-3", - "bundle": [ - "2/1/c9/2", - "2/1/c11/1", - "2/1/c11/2" - ], - "bundle-parents": [ - "2/1/c9/2", - "2/1/c11/1", - "2/1/c11/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02527 | POZ-POZ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-POZ", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "POZ-POZ", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "xe-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENAM", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 567, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-2/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 100GB LR4 CFP2 INSTALLED", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 649, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE16 | QFX.LON2.UK xe-0/0/47", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1571, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "et-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER SANET P_AE13 SRF24007|", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 592, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SANET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SANET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.1629", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #gen-par-SCION-SCION-INTERNET2-2 $GS-02311 |", - "circuits": [ - { - "id": 736653, - "name": "GEN-PAR-SCION-SCION-INTERNET2-2", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1155, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.412", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_GCS CUSTOMER REDIRIS MICROSOFT #REDIRIS-UCLM-ExpressRoute-VLAN412 $GS-01164 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707138, - "name": "REDIRIS-UCLM-EXPRESSROUTE-VLAN412", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1085, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-21.200", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER EENET #EENET-AP2-IAS IASPS $GS-00569 | ASN3221 | ", - "circuits": [ - { - "id": 745985, - "name": "EENET-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "9", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "EENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae3", - "bundle": [ - "xe-0/1/7" - ], - "bundle-parents": [ - "xe-0/1/7" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN |rt1-sw1(ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 596, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-ZAG-HR-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "et-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | BRA-VIE | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 629, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRA-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/42", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE29 | 10_GBS to MX1.LON2.UK xe-2/2/7", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 683, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae1", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01690 | LON2-PRD-ESX01 ESXI Traffic LAG - No LACP", - "circuits": [ - { - "id": 658656, - "name": "LON2-PRD-ESX01-ESXI-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 591, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/3.1338", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION SURF #ams-par-SCION-SURF-SCION-23013 $GS-02264 |", - "circuits": [ - { - "id": 726377, - "name": "AMS-PAR-SCION-SURF-SCION-23013", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 961, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.19", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #DASHBOARD-TEST-SERVICE-LON2-VIRGIN(DO-NOT-OPEN-TICKET)|", - "circuits": [ - { - "id": 707142, - "name": "DASHBOARD-TEST-SERVICE-LON2-VIRGIN(DO-NOT-OPEN-TICKET)", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 610, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.4005", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN CUSTOMER NORDUNET #NORDUNET-LON-IPv6-LHCONE $GS-00842 | ASN2603", - "circuits": [ - { - "id": 661712, - "name": "NORDUNET-LON-IPV6-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1282, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 564, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4065", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEONDD-02389 $GS-02389", - "circuits": [ - { - "id": 744236, - "name": "MSEONDD-02389", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-23:550", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET RENATER #GRID5K-02234", - "circuits": [ - { - "id": 744235, - "name": "GRID5K-02234", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | mx1-sw2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1268, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/2/0", - "bundle": [], - "bundle-parents": [], - "description": "SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 592, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER AMS", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 532, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "AMS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.buc.ro.geant.net", - "name": "lag-2", - "bundle": [ - "2/x1/1/c26/1" - ], - "bundle-parents": [ - "2/x1/1/c26/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-50062 | BUC-BUC", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUC", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUC-BUC", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.2000", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L3VPN RE_INTERCONNECT CSTNET #CSTNET-AMS-LHCONE $GS-02537 | ASN7497 ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1745, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.3502", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02640 $GS-02640 |", - "circuits": [ - { - "id": 745532, - "name": "RARE-02640", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 899, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-4/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-vie-at | SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 737826, - "name": "EX3400-MANAGEMENT-VIE-AT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 655, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-2/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 636, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae1.402", - "bundle": [], - "bundle-parents": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS WP6 Netronome server # Netronome-IDRAC-LON2-UK | IDRAC CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180502", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 902, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae29", - "bundle": [ - "xe-4/1/5", - "xe-8/0/1" - ], - "bundle-parents": [ - "xe-4/1/5", - "xe-8/0/1" - ], - "description": "LAG UPSTREAM COGENT SRF9945471 $GA-01849 | Cogent ID: 3-001176142", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 709, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21", - "bundle": [ - "2/x1/1/c2/2" - ], - "bundle-parents": [ - "2/x1/1/c2/2" - ], - "description": "LAG CUSTOMER BELNET | $GA-02314 | IMINDS-IC-GEANT-10G", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1342177301, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-8/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER REDIRIS P_AE16 SRF21114 |Equinix CID: M21-11I-02-65/66 | P6 in odf3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1143, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae20.2260", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-5/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINGAREN #AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19103-VL2260 $GS-00957 |", - "circuits": [ - { - "id": 706922, - "name": "AMS-LON-GEANTOPEN-SINET-SINGAREN-CAE1-19103-VL2260", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1286, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-6.0", - "bundle": [], - "bundle-parents": [ - "1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-LON2-IPTRUNK $GS-02386 | COR-LON2 | ", - "circuits": [ - { - "id": 738860, - "name": "COR-LON2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-LON2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COR-LON2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae11.0", - "bundle": [], - "bundle-parents": [ - "xe-0/3/2" - ], - "description": "SRV_IAS PRIVATE GOOGLE #NL-GOOGLE-2-15169 $GS-00938 | ASN15169 |", - "circuits": [ - { - "id": 734909, - "name": "NL-GOOGLE-2-15169", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1328, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "GOOGLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GOOGLE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae18.333", - "bundle": [], - "bundle-parents": [ - "et-8/1/0" - ], - "description": "SRV_IAS CUSTOMER KIFU #KIFU-AP2-IAS IASPS $GS-00576 | ASN1955 |", - "circuits": [ - { - "id": 734862, - "name": "KIFU-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 586, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "xe-3/0/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P10", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 539, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #HAM-POZ-IPTRUNK $GS-02339 | HAM-POZ | ", - "circuits": [ - { - "id": 740148, - "name": "HAM-POZ-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-POZ", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HAM-POZ", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 831, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae28.1", - "bundle": [], - "bundle-parents": [ - "et-11/0/5" - ], - "description": "PHY CUSTOMER_GEO TENET #TENET-GEO-UK | P_AE28 SRF21083 |", - "circuits": [ - { - "id": 719827, - "name": "TENET-GEO-UK", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1173, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4074", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSECREDENDO-02655 $GS-02655 | ", - "circuits": [ - { - "id": 747921, - "name": "MSECREDENDO-02655", - "type": "EXPRESS ROUTE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1721, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae20.333", - "bundle": [], - "bundle-parents": [ - "xe-11/2/3" - ], - "description": "SRV_IAS CUSTOMER GRENA #GRENA-AP1-IAS IASPS $GS-02653 | ASN20545 |", - "circuits": [ - { - "id": 747643, - "name": "GRENA-AP1-IAS", - "type": "GEANT PEERING", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 816, - "dashboards": [ - "EAP", - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "GRENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 835, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae22", - "bundle": [ - "et-10/0/2", - "et-11/0/5" - ], - "bundle-parents": [ - "et-10/0/2", - "et-11/0/5" - ], - "description": "LAG CUSTOMER CERN #1 $GA-02089 |EXT-2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 712, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-LON-IPTRUNK $GS-02269 | AMS-LON | ", - "circuits": [ - { - "id": 738598, - "name": "AMS-LON-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "et-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | ROEDUNET 100G AP upgrade - CFP2 present | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 629, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "et-4/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | BUC-BUC | Connected to rt0.buc 2/x1/1/c26/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 636, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-BUC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/11", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 525, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae25.100", - "bundle": [], - "bundle-parents": [ - "xe-0/3/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT NIKS #NL-NIKS $GS-01183 | ASN3267 |", - "circuits": [ - { - "id": 734932, - "name": "NL-NIKS", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1330, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "NIKS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NIKS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-5.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c8/1", - "2/x1/1/c8/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-SOF-IPTRUNK $GS-00024 | BUC-SOF | ", - "circuits": [ - { - "id": 744991, - "name": "BUC-SOF-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 17, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-SOF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUC-SOF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-101.200", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SRV_GLOBAL CUSTOMER BREN #BREN-AP2 $GS-00439 | ASN6802 |", - "circuits": [ - { - "id": 744952, - "name": "BREN-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "12", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae32.533", - "bundle": [], - "bundle-parents": [ - "et-1/0/0", - "et-5/0/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #TOOLS-ACCESS-LON2-UK | TOOLS ACCESS", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 925, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-lhc-owd-gen.ch.geant.org pS OWAMP (OWAMP)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1295, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-20.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c18/2", - "1/x1/1/c24/1", - "1/x1/1/c24/2" - ], - "description": "SRV_GLOBAL CUSTOMER ARNES #ARNES-AP2 $GS-00427 | ASN2107 | ", - "circuits": [ - { - "id": 747839, - "name": "ARNES-AP2", - "type": "GEANT IP", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "9", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1038, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "1/x1/1/c6/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | ATH2-MIL2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916225, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ATH2-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-uat-bw-fra.de.geant.org pS BWCTL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1299, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae4", - "bundle": [ - "et-8/0/2", - "et-8/0/5" - ], - "bundle-parents": [ - "et-8/0/2", - "et-8/0/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE #LAG-LIS-MAD $GA-02001 | LIS-MAD | 200G", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 618, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-MAD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LIS-MAD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "1/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | KAU-KAU | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-KAU", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KAU-KAU", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 10G-SR", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1027, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-22", - "bundle": [ - "1/x1/1/c2/2" - ], - "bundle-parents": [ - "1/x1/1/c2/2" - ], - "description": "LAG CUSTOMER MARNET | $GA-01732 | #MARNET-AP1-LAG | MARNET-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177302, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MARNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MARNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae2", - "bundle": [ - "et-0/0/0" - ], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02036 | AMS2-LON-AMT-LAG |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 580, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS2-LON-AMT-LAG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS2-LON-AMT-LAG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RARE EDGECORE WEDGE100BF-32X xe-1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1261, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "et-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | BUC-CHI | connected to GRV4 port 1/1/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 660, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "xe-0/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 561, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-8/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CARNET P_AE12 | CARnet AP2 #1 part of ae12", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1148, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CARNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CARNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23.25", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET SCION #FED4FIRE-00671 $GS-00671", - "circuits": [ - { - "id": 745340, - "name": "FED4FIRE-00671", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "VLAN", - "snmp-index": 693, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-bw-poz-pl.geant.org pS BWCTL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 755, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #HAM-TAR-IPTRUNK $GS-02348 | HAM-TAR | ", - "circuits": [ - { - "id": 746460, - "name": "HAM-TAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-TAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HAM-TAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 745, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.23", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon-uk-psmp-bwctl-vlan23 |psmp-lhc-drac-lon-uk.geant.org pS iDRAC", - "circuits": [ - { - "id": 740709, - "name": "PS-LON-UK-PSMP-BWCTL-VLAN23", - "type": "SERVER LINK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 776, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | mx1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1261, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.2110", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 HBKU #lon-par-GEANTOPEN-INTERNET2-HBKU-190092 $GS-00985 |", - "circuits": [ - { - "id": 709340, - "name": "LON-PAR-GEANTOPEN-INTERNET2-HBKU-190092", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 827, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "HBKU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.2126", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CERN CANARIE #lon-par-Canarie-CERN-15014 $GS-00720 |", - "circuits": [ - { - "id": 736734, - "name": "LON-PAR-CANARIE-CERN-15014", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1161, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/8.11", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #GEANT-CORPORATE-ViaVodafone-VRF | GEANT Corporate to mx1.lon - Via Vodafone - for VRF", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 545, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.3174", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINGAREN NETHERLIGHT #SINGAREN-02647 $GS-02647 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1751, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae7", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01694 | LON2-PRD-ESX11 ESXI Traffic LAG - LACP passive", - "circuits": [ - { - "id": 658524, - "name": "LON2-PRD-ESX11-ESXI-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 597, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 594, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae17.333", - "bundle": [], - "bundle-parents": [ - "xe-1/2/6" - ], - "description": "SRV_IAS CUSTOMER ASREN #UK-ASREN-IAS IASGWS $GS-00547 | ASN199354 |", - "circuits": [ - { - "id": 661220, - "name": "UK-ASREN-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 607, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ASREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ASREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-3", - "bundle": [ - "1/x1/1/c8/1" - ], - "bundle-parents": [ - "1/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02347 | RIG-TAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "RIG-TAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "RIG-TAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/5.1000", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT SINGAREN #UK-SINGAREN $GS-00923 | ASN136968 | UK-SINGAREN", - "circuits": [ - { - "id": 661473, - "name": "UK-SINGAREN", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 751, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4091", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ICT-ExpressRoute-Vlan4091 $GS-01125 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739679, - "name": "BELNET-ICT-EXPRESSROUTE-VLAN4091", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1675, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.2701", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER BELNET #SLCIMEC-02486 $GS-02486", - "circuits": [ - { - "id": 745342, - "name": "SLCIMEC-02486", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "VLAN", - "snmp-index": 736, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 658, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-8/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | QSFP56-DD-400GBASE-DR4 installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1013, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae24.0", - "bundle": [], - "bundle-parents": [ - "xe-3/1/7" - ], - "description": "SRV_IAS PRIVATE ORACLE #UK-ORACLE-31898 $GS-00624 | ASN31898 |", - "circuits": [ - { - "id": 719260, - "name": "UK-ORACLE-31898", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 976, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae6", - "bundle": [ - "et-5/1/2", - "et-5/1/5", - "et-10/0/2", - "et-10/0/5" - ], - "bundle-parents": [ - "et-5/1/2", - "et-5/1/5", - "et-10/0/2", - "et-10/0/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02204 | BIL-MAD | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 620, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-MAD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BIL-MAD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-1/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 675, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC P_AE10 SRF24022 | JISC-AP1-LL4 | JISC ID: 22820799", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1557, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10", - "bundle": [ - "et-3/3/0" - ], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "LAG CUSTOMER KIFU AP1 SRF19047 $GA-01905 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 642, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.205", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON-DDOS-FRA-DE-MANAGEMENT | FlowMon Management CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170910", - "circuits": [ - { - "id": 732620, - "name": "FLOWMON-DDOS-FRA-DE-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1408, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae33.0", - "bundle": [], - "bundle-parents": [ - "xe-4/2/6", - "xe-4/3/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | NEMO DDOS Detection 1", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1049, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae10.114", - "bundle": [], - "bundle-parents": [ - "et-5/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ORACLE CERN #fra-gen-ORACLE-CERN-20094 $GS-00698 |", - "circuits": [ - { - "id": 705442, - "name": "FRA-GEN-ORACLE-CERN-20094", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 907, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was DE-CIX", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 653, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.2698", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA | deltaId+1e2911d9-39e2-4d23-a914-cc10de75732c:uuid+3059a3f6-605d-49a2-8630-d3c42195cb88 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1540, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "1/1/c9/2", - "1/1/c12/1", - "1/1/c12/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #VIE-VIE-IPTRUNK $GS-02563 | VIE-VIE | VIE-VIE-MGMT", - "circuits": [ - { - "id": 740752, - "name": "VIE-VIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "VIE-VIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "VIE-VIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE EXOSCALE-2 P_AE24 | Interxion CID: DE107460 | ASN61098", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 882, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae30.106", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #NL-ESNET-IPV6 $GS-00890 | ASN293 | AMS-ESNET-400G", - "circuits": [ - { - "id": 734114, - "name": "NL-ESNET-IPV6", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1032, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae30.3007", - "bundle": [], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX-VPAR-PAR-FR $GS-00205 | Infoblox vPAR", - "circuits": [ - { - "id": 712154, - "name": "INFOBLOX-VPAR-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1014, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae1.50", - "bundle": [], - "bundle-parents": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #Dashboard-server-lon2-vlan50_ | DBOARD", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 885, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/1/c11/1", - "1/1/c11/2", - "1/1/c12/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAR-MIL2-IPTRUNK $GS-01185 | MAR-MIL2 | MAR-MIL2", - "circuits": [ - { - "id": 746147, - "name": "MAR-MIL2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MIL2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MIL2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30.2001", - "bundle": [], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #ESXI-Management-Fra $GS-00073 | ESXI MANAGEMENT", - "circuits": [ - { - "id": 733918, - "name": "ESXI-MANAGEMENT-FRA", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1127, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | DDOS Mitigation Server link 1 Node 2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1295, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-2/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 633, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-3/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE GOOGLE P_AE15", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 837, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/4.18", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN18-CH | ", - "circuits": [ - { - "id": 662977, - "name": "VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN18-CH", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 550, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE GOOGLE P_AE13 | Interxion CID DE236100-1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 829, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.2210", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 HBKU #lon-par-GEANTOPEN-HBKU-INTERNET2-190091 $GS-00967 |", - "circuits": [ - { - "id": 736739, - "name": "LON-PAR-GEANTOPEN-HBKU-INTERNET2-190091", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1162, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "HBKU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.120", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL CUSTOMER EUMETSAT-SVALBARD #EUMET-SVALBARD-LON-MONITORINGVLAN $GS-02156 | NU-S800115 | - Monitoring Link 2", - "circuits": [ - { - "id": 729170, - "name": "EUMET-SVALBARD-LON-MONITORINGVLAN", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 591, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "EUMETSAT-SVALBARD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EUMETSAT-SVALBARD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 518, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "irb.3004", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-CONTROL-RANCID-LOGICAL-INTERFACE-PAR-FR $GS-00865 | RANCID gateway for taas-control VRF", - "circuits": [ - { - "id": 712152, - "name": "TAAS-CONTROL-RANCID-LOGICAL-INTERFACE-PAR-FR", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 574, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1465, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "lag-5.0", - "bundle": [], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #PRA-VIE-IPTRUNK $GS-00059 | PRA-VIE | ", - "circuits": [ - { - "id": 740751, - "name": "PRA-VIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-VIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PRA-VIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae5", - "bundle": [ - "xe-3/2/8", - "xe-3/2/9" - ], - "bundle-parents": [ - "xe-3/2/8", - "xe-3/2/9" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02588 | MAR-MAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 861, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MAR-MAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-mgmt-bud.hu.geant.org pS MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 941, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/24", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX01 NIC2 PORT3 - VSAN PORT", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 672, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE GOOGLE P_AE13 |Interxion CID - NL244649", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 678, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae19.0", - "bundle": [], - "bundle-parents": [ - "xe-2/2/4", - "xe-2/3/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | SPLUNK LON2 PEER02 MGMT | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 799, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "1/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | VIE-VIE | to MX1.VIE et-1/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900034, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae21", - "bundle": [ - "et-7/1/0" - ], - "bundle-parents": [ - "et-7/1/0" - ], - "description": "LAG PRIVATE T-SYSTEMS SRF22104 $GA-02272 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 714, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 609, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-4", - "bundle": [ - "1/x1/1/c9/1" - ], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02425 | SOF-THE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-THE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SOF-THE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3914", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER NORDUNet MICROSOFT $GS-01160 | #NORDUNet-SUNET-ExpressRoute-VLAN3914 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 713462, - "name": "NORDUNET-SUNET-EXPRESSROUTE-VLAN3914", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 785, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.41", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEAZDELTA-02564 $GS-02564", - "circuits": [ - { - "id": 744149, - "name": "MSEAZDELTA-02564", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1688, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1469, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 915, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-22.2603", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "SRV_GLOBAL CUSTOMER RESTENA #RESTENA-AP2 $GS-00508 | ASN2602 | ", - "circuits": [ - { - "id": 744073, - "name": "RESTENA-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "3", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RESTENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1047, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae1.991", - "bundle": [], - "bundle-parents": [ - "xe-5/1/1", - "xe-5/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-BUD-HU | ", - "circuits": [ - { - "id": 739309, - "name": "DCN-MANAGEMENT-BUD-HU", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 897, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "et-3/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT BELLA P_AE11 SRF21059| #FOR-LIS-BELLA-100G | Circuit ID: BRFT1 PTLX1 100GE00001", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 704, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "BELLA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BELLA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "1/x1/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER AMRES P_lag-21", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916418, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "AMRES", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMRES", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-5/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BIL-MAD |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 931, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "2/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | POZ-PRA | to RT1.PRA.CZ et-2/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162113, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae2.0", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0", - "xe-0/1/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-BRA-MGMT-IPTRUNK $GS-02602| BRA-BRA | BRA-BRA-MGMT", - "circuits": [ - { - "id": 743065, - "name": "BRA-BRA-MGMT-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 533, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae31", - "bundle": [ - "xe-4/1/5" - ], - "bundle-parents": [ - "xe-4/1/5" - ], - "description": "LAG PRIVATE ORANGE SRF21047 #FR-ORANGE-LAG-4 $GA-02145", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 993, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae27", - "bundle": [ - "et-1/1/5", - "et-8/3/0" - ], - "bundle-parents": [ - "et-1/1/5", - "et-8/3/0" - ], - "description": "LAG PRIVATE AKAMAI SRF9941087 $GA-01872 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 707, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae1", - "bundle": [ - "xe-1/3/0", - "xe-1/3/1" - ], - "bundle-parents": [ - "xe-1/3/0", - "xe-1/3/1" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 |mx1-sw2(ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 599, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.131", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ocvm-lon-uk | OC VM User Traffic", - "circuits": [ - { - "id": 740698, - "name": "OCVM-LON-UK", - "type": "SERVER LINK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 693, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-4", - "bundle": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02340 | HAM-POZ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-POZ", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "HAM-POZ", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/0/2:2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 537, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.18", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet_Premier_ExpressRoute_VLAN4093 $GS-01127 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739681, - "name": "BELNET-PREMIER-EXPRESSROUTE-VLAN4093", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 600, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-20:2282", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER HEANET INTERNET2 #HEANET-00630 $GS-00630", - "circuits": [ - { - "id": 747351, - "name": "HEANET-00630", - "type": "GEANT PLUS", - "status": "planned" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-4/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 924, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | MIL2-MIL2 | RT0.MIL2.IT 1/1/c9/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 653, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.1500", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET NETHERLIGHT #AMS-LON-JIVE-NETHERLIGHT-UBUNTUNET-12008 $GS-00645 |", - "circuits": [ - { - "id": 734613, - "name": "AMS-LON-JIVE-NETHERLIGHT-UBUNTUNET-12008", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1122, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-20:2112", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER LAT EENet #GENOMICS-00752 $GS-00752", - "circuits": [ - { - "id": 745982, - "name": "GENOMICS-00752", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LAT", - "interface_type": "LOGICAL" - }, - { - "name": "EENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 577, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was PSMP Server", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 594, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mad.es.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAD-MAD-IPTRUNK $GS-02593 | MAD-MAD | MAD-MAD", - "circuits": [ - { - "id": 742615, - "name": "MAD-MAD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/28", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX11 NIC1 PORT3 - VSAN PORT", - "circuits": [ - { - "id": 658458, - "name": "LON2-PRD-ESX11-NIC1-PORT3", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 642, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/10", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 525, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.472", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER CERN RARE SRF223010 #AMS-GEN-CERN-RARE-123010 $GS-02262 |", - "circuits": [ - { - "id": 736071, - "name": "AMS-GEN-CERN-RARE-123010", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1531, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE T-SYSTEMS P_AE25 Interxion CID: DE087499| AS6878", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 884, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-8/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COGENT SRF9943643 P_AE29 | Cogent ID: 3-001176142", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 988, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COGENT - VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COGENT - VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/15", - "bundle": [], - "bundle-parents": [], - "description": "PHY Surfnet Primary - Service ID: 3287IP1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 531, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae8", - "bundle": [ - "et-0/0/1" - ], - "bundle-parents": [ - "et-0/0/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01755 | BRA-VIE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 597, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-VIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BRA-VIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.203", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #UK-ESNET-NEA3R-203 $GS-00918 | ASN293 | NEA3R-ESnet", - "circuits": [ - { - "id": 661433, - "name": "UK-ESNET-NEA3R-203", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 854, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO NORDUnet #NORDUnet-GEO-UK-1 $GA-01447 | SRF9928249 | NORDUNET 100G access to GeO", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1204, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE FW1-SNM", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1595, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 | mx1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1335, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-5/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | NEMO DDOS 100G #2 | Needs SR optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 836, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.32", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSETHOMASMORE-02475 $GS-02475", - "circuits": [ - { - "id": 744238, - "name": "MSETHOMASMORE-02475", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1643, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 606, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "ae6.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-BUD-IPTRUNK $GS-00018| BRA-BUD", - "circuits": [ - { - "id": 730086, - "name": "BRA-BUD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 603, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BUD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BUD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-21.1", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c18/1" - ], - "description": "SRV_GLOBAL CUSTOMER AMRES #AMRES-AP1 $GS-00425 | ASN13092 | ", - "circuits": [ - { - "id": 747837, - "name": "AMRES-AP1", - "type": "GEANT IP", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "12", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "AMRES", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMRES", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 932, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 578, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/4.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-AMS-TO-SWITCH-CLUSTER-VME0 |", - "circuits": [ - { - "id": 708168, - "name": "SRX1-AMS-TO-SWITCH-CLUSTER-VME0", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 532, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae8.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-VIE-IPTRUNK $GS-00019| BRA-VIE | ", - "circuits": [ - { - "id": 740792, - "name": "BRA-VIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 614, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-VIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BRA-VIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.11", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #GEANT-CORPORATE-ViaVodafone-VRF | GEANT Corporate to SRX2.CH - Via Vodafone - for VRF", - "circuits": [ - { - "id": 740705, - "name": "GEANT-CORPORATE-VIAVODAFONE-VRF", - "type": "CORPORATE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 857, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae2.103", - "bundle": [], - "bundle-parents": [ - "xe-3/2/2", - "xe-3/2/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-LIS-PT $GS-00118 |", - "circuits": [ - { - "id": 679548, - "name": "DCN-MANAGEMENT-LIS-PT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 735, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "2/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to AMS01-GRV5 1/1/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162113, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/7.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #par-lon2-SUPERPOP-QFX-2-GEANT $GS-00081 |", - "circuits": [ - { - "id": 729417, - "name": "PAR-LON2-SUPERPOP-QFX-2-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 613, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "1/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | KAU-KAU | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915970, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-KAU", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KAU-KAU", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae21", - "bundle": [ - "et-5/0/4" - ], - "bundle-parents": [ - "et-5/0/4" - ], - "description": "LAG CUSTOMER CERN #1 SRF20066 $GA-01876 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 711, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "xe-0/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | BUC-CHI | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 559, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "lag-2", - "bundle": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01886 | GEN-MIL2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MIL2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GEN-MIL2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.802", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT RE_INTERCONNECT INTERNET2 UBUNTUNET #AMS-LON-MISC-UBUNTUNET-INTERNET2-170342 $GS-00647 |", - "circuits": [ - { - "id": 735619, - "name": "AMS-LON-MISC-UBUNTUNET-INTERNET2-170342", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 823, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/0.472", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER CERN RARE SRF223010 #AMS-GEN-CERN-RARE-P4-123010 $GS-02262 |", - "circuits": [ - { - "id": 736071, - "name": "AMS-GEN-CERN-RARE-123010", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 839, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | LJU-ZAG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916353, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LJU-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "1/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | To FRA01-GRV2- 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899777, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 605, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.10", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER FCCN MICROSOFT #FCCN-IPP-ExpressRoute-VLAN1946 $GS-01143 | MANUALLY MIGRATED FROM MX1.LIS TO RT1.POR 25/08/21", - "circuits": [ - { - "id": 706996, - "name": "FCCN-IPP-EXPRESSROUTE-VLAN1946", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1394, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/6.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #fra-lon2-SUPERPOP-QFX-2-GEANT $GS00077 |", - "circuits": [ - { - "id": 729418, - "name": "FRA-LON2-SUPERPOP-QFX-2-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1029, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "et-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 664, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | SOF-ZAG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916418, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SOF-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.420", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NEA3R TENET #lon-lon-GEANTOPEN-NEA3R-TENET-18097 $GS-00971 |", - "circuits": [ - { - "id": 718087, - "name": "LON-LON-GEANTOPEN-NEA3R-TENET-18097", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 789, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "1/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | LON-LON | to RT1.LON et-7/0/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900673, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "2/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to AMS01-GRV3 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161665, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RARE EDGECORE WEDGE100BF-32X xe-2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1262, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02194 |SCION server 2 external port", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1288, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae2", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01696 | LON2-PRD-ESX02 ESXI Traffic LAG - No LACP", - "circuits": [ - { - "id": 658664, - "name": "LON2-PRD-ESX02-ESXI-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 592, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-101.991", - "bundle": [], - "bundle-parents": [ - "1/1/c2/1", - "1/1/c2/2" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-HAM-DE-VRF-VLAN991 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "17", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4084", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSESTADKORTRIJK-01138 $GS-01138", - "circuits": [ - { - "id": 744150, - "name": "MSESTADKORTRIJK-01138", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.2016", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-PAR-LHCONE-2 $GS-00846 | ASN27750", - "circuits": [ - { - "id": 736738, - "name": "REDCLARA-PAR-LHCONE-2", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1157, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 585, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "ae6", - "bundle": [ - "et-0/0/1" - ], - "bundle-parents": [ - "et-0/0/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01756 | BRA-BUD", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 601, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BUD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BRA-BUD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "2/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | LJU-MIL2 | to RT1.LJU.SI et-2/1/5 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162177, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae30.3004", - "bundle": [], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-CONTROL-RANCID-PAR-FR $GS-00865 | RANCID gateway for taas-control VRF", - "circuits": [ - { - "id": 712152, - "name": "TAAS-CONTROL-RANCID-LOGICAL-INTERFACE-PAR-FR", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1474, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 596, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae30.1220", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ESNET RENATER #AMS-PAR-INFINICORTEX-ESNET-RENATER-15030 $GS-00653 |", - "circuits": [ - { - "id": 734115, - "name": "AMS-PAR-INFINICORTEX-ESNET-RENATER-15030", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1034, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE IT_INFRA | to QFX xe-0/0/18", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1314, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.7", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NTP6.GEANT.NET |", - "circuits": [ - { - "id": 736081, - "name": "NTP6.GEANT.NET", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1513, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae20.0", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_IAS PUBLIC MIX #IX-Peerings-in-MIX $GS-00952 |", - "circuits": [ - { - "id": 708323, - "name": "IX-PEERINGS-IN-MIX", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 695, - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "MIX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MIX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Reserved for GTS Expansion", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 603, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/3.100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-AMS-VLAN100-TO-SURFNET-VIA-MX1 | Surfnet Service ID: 5836", - "circuits": [ - { - "id": 662997, - "name": "SRX1-AMS-VLAN100-TO-SURFNET-VIA-MX1", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 522, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "ae1", - "bundle": [ - "et-0/0/3" - ], - "bundle-parents": [ - "et-0/0/3" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02045 | KIE-KIE|", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 585, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-KIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KIE-KIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/2.100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT UBUNTUNET #UK-UBUNTUNET $GS-00909 | ASN36944 |", - "circuits": [ - { - "id": 661682, - "name": "UK-UBUNTUNET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1564, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae3", - "bundle": [ - "et-7/0/4", - "et-7/1/4" - ], - "bundle-parents": [ - "et-7/0/4", - "et-7/1/4" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02462 | GEN-GEN", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 652, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-GEN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GEN-GEN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER NETHERLIGHT #ams-lon-LOFAR-NETHERLIGHT-JISC-10007 $GS-00783", - "circuits": [ - { - "id": 711990, - "name": "AMS-LON-LOFAR-NETHERLIGHT-JISC-10007", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1058, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/6.2702", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION EENET #fra-tar-SCION-EENET $GS-02357 | ", - "circuits": [ - { - "id": 746442, - "name": "FRA-TAR-SCION-EENET", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1337, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.2710", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER ESnet #lon-poz-PIONIER-ESnet-Quantum-Demo-VL2710 $GS-02557 |", - "circuits": [ - { - "id": 739897, - "name": "LON-POZ-PIONIER-ESNET-QUANTUM-DEMO-VL2710", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 856, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.206", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SCION-fra-de | SCION SERVERS", - "circuits": [ - { - "id": 732657, - "name": "SCION-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1409, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 688, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.por.pt.geant.net", - "name": "lag-4", - "bundle": [ - "1/x1/1/c9/1" - ], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02586 | POR-POR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POR-POR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "POR-POR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 | mx1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 921, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-2/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | BUC-CHI | ROEDUNET CID: BUC-CHI-040-2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 552, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "1/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | FRA-GEN | to GEN01-GRV2 port 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899521, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/6.107", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF SRF21106 #PRA-POZ-RARE-BMS9 $GS-00751", - "circuits": [ - { - "id": 737234, - "name": "PRA-POZ-RARE-BMS9", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 974, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT ASNET-TW $GA-01635 | Digital Reality CID: NL265320", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 648, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ASNET-TW", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ASNET-TW", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae42", - "bundle": [ - "xe-0/2/3", - "xe-0/2/4" - ], - "bundle-parents": [ - "xe-0/2/3", - "xe-0/2/4" - ], - "description": "LAG INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 2 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1325, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.1626", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #fra-par-SCION-SCION-INTERNET2-2 $GS-02310 |", - "circuits": [ - { - "id": 736666, - "name": "FRA-PAR-SCION-SCION-INTERNET2-2", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1146, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/4.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PSMP-LHC-MANAGEMENT-LON-UK-VLAN0 | psmp-lhc-mgmt-lon-uk.geant.org pS MGMT (LHCONE)", - "circuits": [ - { - "id": 708184, - "name": "PSMP-LHC-MANAGEMENT-LON-UK-VLAN0", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1001, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3917", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-FUNET-ExpressRoute-VLAN3917 $GS-02327 | ", - "circuits": [ - { - "id": 727782, - "name": "NORDUNET-FUNET-EXPRESSROUTE-VLAN3917", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1253, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae10.4006", - "bundle": [], - "bundle-parents": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC NKN #AMS-LON-5GUK-JISC-NKN-22048 $GS-02162 | ", - "circuits": [ - { - "id": 719849, - "name": "AMS-LON-5GUK-JISC-NKN-22048", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1186, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NKN", - "interface_type": "LOGICAL" - }, - { - "name": "JISC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae3", - "bundle": [ - "et-1/0/2", - "et-1/0/5", - "et-1/1/2" - ], - "bundle-parents": [ - "et-1/0/2", - "et-1/0/5", - "et-1/1/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02561 | VIE-VIE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 752, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "VIE-VIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "VIE-VIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 617, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4086", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-THOMASMORE-ExpressRoute-VLAN4086 $GS-02476 | ", - "circuits": [ - { - "id": 739668, - "name": "BELNET-THOMASMORE-EXPRESSROUTE-VLAN4086", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1671, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae10.333", - "bundle": [], - "bundle-parents": [ - "et-0/0/1" - ], - "description": "SRV_IAS CUSTOMER RENAM #RENAM-AP1-IAS IASGWS $GS-00541 | ASN9199", - "circuits": [ - { - "id": 714070, - "name": "RENAM-AP1-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 566, - "dashboards": [ - "EAP", - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "2/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | FRA-GEN | TO FRA01-GRV1 port 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162241, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c8/1", - "1/x1/1/c8/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #SOF-ZAG-IPTRUNK $GS-02367 | SOF-ZAG | ", - "circuits": [ - { - "id": 747867, - "name": "SOF-ZAG-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-ZAG", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SOF-ZAG", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE7 | LON2-PRD-ESX11 NIC1 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 521, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.208", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-mit1-fra-de-idrac | NEMO DDOS Mitigation 1 iDRAC | ", - "circuits": [ - { - "id": 732632, - "name": "DDOS-MIT1-FRA-DE-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1410, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 752, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae41", - "bundle": [ - "xe-0/2/1", - "xe-0/2/2" - ], - "bundle-parents": [ - "xe-0/2/1", - "xe-0/2/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1324, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.2013", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L3VPN RE_INTERCONNECT ESNET #ESNET-NEA3R-LON-LHCONE $GS-00822 | ASN293", - "circuits": [ - { - "id": 709643, - "name": "ESNET-NEA3R-LON-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 877, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae5", - "bundle": [ - "et-5/0/2", - "et-9/0/2", - "et-9/0/5", - "et-9/1/2" - ], - "bundle-parents": [ - "et-5/0/2", - "et-9/0/2", - "et-9/0/5", - "et-9/1/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02010 | MAD-MAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 619, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/0/1:3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 531, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.12", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-KNMI $GS-01083", - "circuits": [ - { - "id": 732663, - "name": "GRE-MULTICAST-TUNNEL-KNMI", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1215, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1043, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/17", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE18 | LON2-PRD-ESX12 NIC1 PORT2", - "circuits": [ - { - "id": 658495, - "name": "LON2-PRD-ESX12-NIC1-PORT2", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 532, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-lhc-mgmt-par-fr.geant.org pS MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1200, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae17", - "bundle": [ - "et-10/0/5" - ], - "bundle-parents": [ - "et-10/0/5" - ], - "description": "LAG CUSTOMER SURF GEO SRF18071 $GA-01819 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 689, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "lag-5.0", - "bundle": [], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK $GS-02458 | AMS-AMS | AMS-AMS-NOKIA", - "circuits": [ - { - "id": 735616, - "name": "AMS-AMS-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae17.3901", - "bundle": [], - "bundle-parents": [ - "et-10/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #par-par-GEANTOpen-SINET-SINET-19033 $GS-00987 |", - "circuits": [ - { - "id": 706599, - "name": "PAR-PAR-GEANTOPEN-SINET-SINET-19033", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1485, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-4", - "bundle": [ - "2/x1/1/c8/1" - ], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02426 | SOF-THE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-THE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SOF-THE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1272, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.2031", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon-GEANTOpen-ESnet-NORDUNET-15039-3 $GS-00965 |", - "circuits": [ - { - "id": 738641, - "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-3", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1276, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-21.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER LITNET #LITNET-AP1 $GS-00486 | ASN2847 | ", - "circuits": [ - { - "id": 746528, - "name": "LITNET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LITNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LITNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | GEN-MIL2 | to RT0.GEN.CH 1/1/c8/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899970, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 640, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/2/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-fra-de-management LHC new |perfSONAR MGMT", - "circuits": [ - { - "id": 729060, - "name": "PS-FRA-DE-MANAGEMENT-BWCTL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 546, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/3/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 610, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-DUB-IE-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "9", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "ae13.421", - "bundle": [], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "SRV_IAS CUSTOMER SANET #SANET-AP2-IAS IASPS $GS-02439 | ASN2607 |", - "circuits": [ - { - "id": 733192, - "name": "SANET-AP2-IAS", - "type": "GEANT PEERING", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 618, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "SANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae15", - "bundle": [ - "et-9/1/5" - ], - "bundle-parents": [ - "et-9/1/5" - ], - "description": "LAG RE_INTERCONNECT COPERNICUS SRF21068 $GA-02004 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 653, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "COPERNICUS", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "COPERNICUS", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.2126", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER CERN CANARIE #lon-par-Canarie-CERN-15014 $GS-00720 |", - "circuits": [ - { - "id": 736734, - "name": "LON-PAR-CANARIE-CERN-15014", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1589, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae2.0", - "bundle": [], - "bundle-parents": [ - "et-4/0/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-BUC-IPTRUNK $GS-50060| BUC-BUC | BUC-BUC", - "circuits": [ - { - "id": 745576, - "name": "BUC-BUC-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 631, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUC-BUC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae3", - "bundle": [ - "et-9/0/4", - "et-9/1/4" - ], - "bundle-parents": [ - "et-9/0/4", - "et-9/1/4" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02471 | PAR-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1179, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PAR-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "PAR-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "xe-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 560, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 618, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 549, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:3503", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER BELNET #SLCIMEC-02486 $GS-02486", - "circuits": [ - { - "id": 745342, - "name": "SLCIMEC-02486", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | mx1-sw2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1267, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-21.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER LITNET #LITNET-AP1-IAS IASGWS $GS-00534 | ASN2847 | ", - "circuits": [ - { - "id": 746533, - "name": "LITNET-AP1-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "7", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "LITNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LITNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae13.0", - "bundle": [], - "bundle-parents": [ - "xe-0/2/2" - ], - "description": "SRV_IAS PRIVATE GOOGLE #GOOGLE-15169-NL $GS-02451 | ASN15169", - "circuits": [ - { - "id": 733783, - "name": "GOOGLE-15169-NL", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 996, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "GOOGLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GOOGLE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-23.0", - "bundle": [], - "bundle-parents": [ - "1/1/c2/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #HAM-DTN-10G-DATA $GS-02433", - "circuits": [ - { - "id": 747638, - "name": "HAM-DTN-10G-DATA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "15", - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/8.12", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRV_CORPORATE CUSTOMER GEANT_INTERNAL #DASHBOARD-TEST-SERVICE-LON-VODAFONE(DO-NOT-OPEN-TICKET)|", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 522, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae6", - "bundle": [ - "et-7/1/5" - ], - "bundle-parents": [ - "et-7/1/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01910 | BRA-BUD", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 828, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BUD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BRA-BUD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae19.333", - "bundle": [], - "bundle-parents": [ - "et-1/0/2" - ], - "description": "SRV_IAS CUSTOMER UOM #UOM-AP2-100G-IAS IASGWS $GS-02165 | ASN12046 | ", - "circuits": [ - { - "id": 720397, - "name": "UOM-AP2-100G-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 627, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "UOM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "UOM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae12.4087", - "bundle": [], - "bundle-parents": [ - "et-4/0/5", - "et-8/0/5", - "et-11/0/2" - ], - "description": "SRV_GCS CUSTOMER GARR MICROSOFT #GARR-UDMilano-ExpressRoute-Vlan4087 $GS-01146 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707644, - "name": "GARR-UDMILANO-EXPRESSROUTE-VLAN4087", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 639, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae10.360", - "bundle": [], - "bundle-parents": [ - "xe-0/1/1", - "xe-0/1/2" - ], - "description": "SRV_L3VPN CUSTOMER URAN #URAN-AP1-LHCONE $GS-00870 | ASN12687 |", - "circuits": [ - { - "id": 714002, - "name": "URAN-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 590, - "dashboards": [ - "EAP", - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bud.hu.geant.net", - "name": "lag-2", - "bundle": [ - "2/x1/1/c9/2" - ], - "bundle-parents": [ - "2/x1/1/c9/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02595 | BUD-BUD", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-BUD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUD-BUD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/24", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX01 NIC1 PORT3 - VSAN PORT", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 640, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "2/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | LON-LON | to RT1.LON et-7/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162817, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 584, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-22.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER CARNET #CARNET-AP1-IAS IASPS $GS-00559 | ASN2108 | ", - "circuits": [ - { - "id": 747859, - "name": "CARNET-AP1-IAS", - "type": "GEANT PEERING", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "16", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "CARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/2/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 601, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #PAR-PAR-IPTRUNK $GS-02473 | PAR-PAR | RT0.PAR-MX1.PAR IPTRUNK", - "circuits": [ - { - "id": 739437, - "name": "PAR-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PAR-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PAR-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.2702", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER BELNET #SLCIMEC-02487 $GS-02487", - "circuits": [ - { - "id": 745329, - "name": "SLCIMEC-02487", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "VLAN", - "snmp-index": 762, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae11", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01683 | FRA-PRD-ESX03 VM Traffic LAG", - "circuits": [ - { - "id": 658655, - "name": "FRANKFURT 15-FRANKFURT 15-LAG-052(GEANT)", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 580, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4060", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-STAD-EXPRESSROUTE-VLAN4060 $GS-02246 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739667, - "name": "BELNET-STAD-EXPRESSROUTE-VLAN4060", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1656, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "2/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to AMS01-GRV3 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161921, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 824, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae3.103", - "bundle": [], - "bundle-parents": [ - "xe-0/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-BRA1-SK $GS-00114 | DCN MANAGEMENT ", - "circuits": [ - { - "id": 731614, - "name": "DCN-MANAGEMENT-BRA1-SK", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 621, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-2/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT SINET P_AE20 | Digital Realty CID: NL116823-4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 955, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "1/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915969, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-3/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENATER P_AE12 | RENATER-AP1-4 | DR Circuit ID: FR247487", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 854, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 550, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/2.559", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SWITCH GEANT #fra-gen-SWITCH-RARE-21035 $GS-00700 |", - "circuits": [ - { - "id": 709921, - "name": "FRA-GEN-SWITCH-RARE-21035", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1448, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae28", - "bundle": [ - "et-11/0/5" - ], - "bundle-parents": [ - "et-11/0/5" - ], - "description": "LAG RE_INTERCONNECT TENET SRF21083 $GA-02014 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 724, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.1916", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RARE INTERNET2-RNP #AMS-PAR-RARE-INTERNET2-RNP-20061 $GS-00655 |", - "circuits": [ - { - "id": 736072, - "name": "AMS-PAR-RARE-INTERNET2-RNP-20061", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1087, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-10/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | SUSPECTED FAULTY SLOT", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 911, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae1.521", - "bundle": [], - "bundle-parents": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #snm-switch-mgmt $GS-00151 | IT Refresh QFX MGMT", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 844, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-5", - "bundle": [ - "1/1/c9/1" - ], - "bundle-parents": [ - "1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02479 | COR-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177285, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "COR-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae19", - "bundle": [ - "xe-11/1/3", - "xe-11/1/4" - ], - "bundle-parents": [ - "xe-11/1/3", - "xe-11/1/4" - ], - "description": "LAG PRIVATE ORACLE SRF19090 #1 $GA-01941 | FastConnect CERN ONLY", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1052, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae3", - "bundle": [ - "xe-3/0/8", - "xe-3/2/0" - ], - "bundle-parents": [ - "xe-3/0/8", - "xe-3/2/0" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 |rt1-sw2 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 601, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-par-fr.geant.org pS OWAMP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1283, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae13.40", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-10/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SWITCH NETHERLIGHT #AMS-PAR-SCION-SWITCH-NETHERLIGHT-20019 $GS-00658 |", - "circuits": [ - { - "id": 714175, - "name": "AMS-PAR-SCION-SWITCH-NETHERLIGHT-20019", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 729, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "et-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | KIE-KIE | KIE-KIE-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 610, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-KIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KIE-KIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.18", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEPREMIER-01137 $GS-01137", - "circuits": [ - { - "id": 744264, - "name": "MSEPREMIER-01137", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1401, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "2/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | LON2-PAR | TO GRV2.LON2 - 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161921, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae0", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01672 | MX AE30", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 573, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS | QFX1 C0 MGMT", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 521, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae27", - "bundle": [ - "xe-10/2/0" - ], - "bundle-parents": [ - "xe-10/2/0" - ], - "description": "LAG RE_INTERCONNECT MAEEN SRF21017 $GA-02005 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 723, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "MAEEN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MAEEN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/6.1626", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #fra-par-SCION-SCION-INTERNET2-2 $GS-02310 |", - "circuits": [ - { - "id": 736666, - "name": "FRA-PAR-SCION-SCION-INTERNET2-2", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1331, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-10/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER SWITCH P_AE13 SRF19148 | Circuit ID : CE4 Hu0/0/0/7 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 997, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae49", - "bundle": [ - "et-2/1/1" - ], - "bundle-parents": [ - "et-2/1/1" - ], - "description": "LAG PRIVATE GOOGLE $GA-01943 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1440, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/27", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX10 NIC2 PORT3 - VSAN PORT", - "circuits": [ - { - "id": 658552, - "name": "LON2-PRD-ESX10-NIC2-PORT3", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 675, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae17.200", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-1/1/2" - ], - "description": "SRV_GLOBAL CUSTOMER CERN #CERN-AP1 $GS-00442 | ASN513 |", - "circuits": [ - { - "id": 662952, - "name": "CERN-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 920, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-1/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | MIL2-MIL2 | RT0.MIL2.IT 2/1/c9/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 660, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "xe-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENAM | Prime Telecom CID: 1022641", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 569, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-20.1", - "bundle": [], - "bundle-parents": [ - "1/1/c11/1", - "1/1/c11/2", - "1/1/c12/1", - "1/1/c12/2" - ], - "description": "SRV_GLOBAL CUSTOMER JISC #JISC-AP2 $GS-00480 | ASN786 | ", - "circuits": [ - { - "id": 743310, - "name": "JISC-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-3/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER SWITCH P_AE23 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1184, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae10.4086", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-2/1/5", - "et-11/1/0" - ], - "description": "SRV_GCS CUSTOMER GARR MICROSOFT #GARR-UDMilano_ExpressRoute_Vlan4086 $GS-01148 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707643, - "name": "GARR-UDMILANO_EXPRESSROUTE_VLAN4086", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 795, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-8/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 993, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | SOF-ZAG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916417, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SOF-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/1/c2/1", - "1/1/c2/2" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-HAM-DE-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "18", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae15.52", - "bundle": [], - "bundle-parents": [ - "et-3/0/0" - ], - "description": "SRV_IAS CUSTOMER ACONET #ACONET-AP1-IAS IASPS $GS-00550 | ASN1853", - "circuits": [ - { - "id": 661622, - "name": "ACONET-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 830, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ACONET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ACONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/25", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX02 NIC1 PORT3 - VSAN PORT", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 644, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/3.2704", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION EENET #lon-par-SCION-WACREN $GS-02495 | ", - "circuits": [ - { - "id": 737889, - "name": "LON-PAR-SCION-WACREN", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1213, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/1/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-ams-nl-owamp new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 736110, - "name": "PS-AMS-NL-OWAMP", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1525, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/0/2.500", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF #BUD-POZ-RARE-BMS8 $GS-02629", - "circuits": [ - { - "id": 744388, - "name": "BUD-POZ-RARE-BMS8", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 954, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae12.4089", - "bundle": [], - "bundle-parents": [ - "et-4/0/5", - "et-8/0/5", - "et-11/0/2" - ], - "description": "SRV_GCS CUSTOMER GARR MICROSOFT #GARR-ROMA-ExpressRoute-Vlan4089 $GS-01145 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707342, - "name": "GARR-ROMA-EXPRESSROUTE-VLAN4089", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 630, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-20.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c18/2", - "1/x1/1/c24/1", - "1/x1/1/c24/2" - ], - "description": "SRV_IAS CUSTOMER ARNES #ARNES-AP2-IAS IASPS $GS-00553 | ASN2107 | ", - "circuits": [ - { - "id": 747852, - "name": "ARNES-AP2-IAS", - "type": "GEANT PEERING", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "10", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-8", - "bundle": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01824 | LON2-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177288, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1276, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 698, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE5 | LON2-PRD-ESX21 NIC2 PORT3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 662, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.1304", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KREONET SWITCH #ams-fra-SCION-KREONET-SWITCH $GS-02292 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1742, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 594, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "2/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | BIL-PAR | to RT1.BIL.ES - et-1/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162113, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "2/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | MIL2-MIL2 | to RT1.MIL2.IT et-1/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162178, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4090", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEARTEV-01131 $GS-01131", - "circuits": [ - { - "id": 744265, - "name": "MSEARTEV-01131", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae13.111", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L3VPN RE_INTERCONNECT ESNET #ESNET-GEN-LHCONE $GS-00820 | ASN293", - "circuits": [ - { - "id": 730103, - "name": "ESNET-GEN-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1286, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae10", - "bundle": [ - "et-4/1/2" - ], - "bundle-parents": [ - "et-4/1/2" - ], - "description": "LAG CUSTOMER FCCN SRF9928599 $GA-01786 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 570, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "2/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | GEN-MAR | to to RT1.MAR et-2/1/5 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162178, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.401", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT RE_INTERCONNECT CANARIE UBUNTUNET #lon-lon-MISC-UBUNTUNET-CANARIE-170351 $GS-00727 |", - "circuits": [ - { - "id": 709304, - "name": "LON-LON-MISC-UBUNTUNET-CANARIE-170351", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 797, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "irb.521", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-AMS-NL-VRF-VLAN521 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1588, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1470, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4064", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSENCCN-02370 $GS-02370", - "circuits": [ - { - "id": 744141, - "name": "MSENCCN-02370", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.620", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET RNP #IMINDS-00680 $GS-00680", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1096, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "xe-0/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 559, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915969, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-20.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4", - "1/x1/1/c4/1", - "1/x1/1/c4/2", - "1/x1/1/c4/3", - "1/x1/1/c4/4" - ], - "description": "SRV_GLOBAL CUSTOMER GRNET #GRNET-AP2 $GS-00472 | ASN5408 | ", - "circuits": [ - { - "id": 745279, - "name": "GRNET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae6.0", - "bundle": [], - "bundle-parents": [ - "et-5/1/2", - "et-5/1/5", - "et-10/0/2", - "et-10/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL-MAD-IPTRUNK $GS-02203 | BIL-MAD |", - "circuits": [ - { - "id": 719646, - "name": "BIL-MAD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1134, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-MAD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BIL-MAD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-10/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO WACREN #WACREN-GEO-UK-1 P_AE22 | SRF43753 ID: SN-20858588 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 904, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "WACREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE - Unused - Was cbg-lon Virgin-Media ID CAL0151087 - Removed 07/08/19", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 606, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 520, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 583, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "2/x1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | ZAG-ZAG | TO MX2.ZAG.HR-et-4/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178561, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ZAG-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ZAG-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | PRA BMS Server 8", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 544, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #fra-par-SUPERPOP-QFX-2-GEANT $GS-00079 |", - "circuits": [ - { - "id": 729480, - "name": "FRA-PAR-SUPERPOP-QFX-2-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 978, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "1/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915970, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 935, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 888, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae40.416", - "bundle": [], - "bundle-parents": [ - "xe-11/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ORACLE PIONIER SRF23002 #fra-poz-ORACLE-PIONIER-23002-VL416 $GS-02243", - "circuits": [ - { - "id": 726355, - "name": "FRA-POZ-ORACLE-PIONIER-23002-VL416", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1060, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-8/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | BUD-VIE | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1145, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUD-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae12", - "bundle": [ - "et-2/0/2" - ], - "bundle-parents": [ - "et-2/0/2" - ], - "description": "LAG PUBLIC AMS-IX $GA-01920 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1336, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae11", - "bundle": [ - "et-4/0/4" - ], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "LAG CUSTOMER DFN $GA-01957 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 780, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4069", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEHOGENT-02573 $GS-02573", - "circuits": [ - { - "id": 744239, - "name": "MSEHOGENT-02573", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.14", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-JPL $GS-01081", - "circuits": [ - { - "id": 732677, - "name": "GRE-MULTICAST-TUNNEL-JPL", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1217, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/3.996", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #City-House-Lab-Infinera-MGMT-Network |", - "circuits": [ - { - "id": 663240, - "name": "CITY-HOUSE-LAB-INFINERA-MGMT-NETWORK", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 553, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.340", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_IAS CUSTOMER REDIRIS #REDIRIS-AP2-IAS IASPS $GS-00582 | ASN766", - "circuits": [ - { - "id": 718228, - "name": "REDIRIS-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 812, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 604, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/6.106", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF SRF21106 $GS-00687 | #BUD-PRA-RARE-BMS5", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 969, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-10/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | QSFP-100GBASE optic installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1562, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:3502", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER PRO-M/NIIF BELNET #SLCIMEC-02511 $GS-02511", - "circuits": [ - { - "id": 744362, - "name": "SLCIMEC-02511", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PRO-M/NIIF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PRO-M/NIIF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 562, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 518, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 684, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae13.333", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-10/0/2" - ], - "description": "SRV_IAS CUSTOMER SWITCH #SWITCH-AP2-IAS IASPS $GS-00590 | ASN559", - "circuits": [ - { - "id": 661345, - "name": "SWITCH-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 612, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1305, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CARNET P_lag-22", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CARNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CARNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "1/x1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | COR-PAR | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916417, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COR-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae10.2300", - "bundle": [], - "bundle-parents": [ - "et-5/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CSTNET CERN #ams-gen-IHEP-CERN-CSTNET $GS-02415 |", - "circuits": [ - { - "id": 740995, - "name": "AMS-GEN-IHEP-CERN-CSTNET", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1494, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae1.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KIE-KIE-IPTRUNK $GS-00045 | KIE-KIE |", - "circuits": [ - { - "id": 713325, - "name": "KIE-KIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 583, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-KIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIE-KIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/2/3.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-bwctl LHC new | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160524", - "circuits": [ - { - "id": 729062, - "name": "PS-FRA-DE-BWCTL-LHCONE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 551, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae17.333", - "bundle": [], - "bundle-parents": [ - "xe-11/3/4" - ], - "description": "SRV_IAS CUSTOMER ASNET-AM #ASNET-AM-AP1-IAS IASPS $GS-00555 | ASN47623 |", - "circuits": [ - { - "id": 732137, - "name": "ASNET-AM-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1171, - "dashboards": [ - "EAP", - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae14.600", - "bundle": [], - "bundle-parents": [ - "et-5/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SWITCH AMS-IX #AMS-GEN-NREN-IX-AMSIX-SWITCH-18008 $GS-00638 |", - "circuits": [ - { - "id": 734173, - "name": "AMS-GEN-NREN-IX-AMSIX-SWITCH-18008", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1041, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-IX", - "interface_type": "LOGICAL" - }, - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.11", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #Nordunet_LTU_ExpressRoute_Vlan3909 $GS-01153 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707121, - "name": "NORDUNET-LTU-EXPRESSROUTE-VLAN3909", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 594, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ge-1/0/36", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX10 IDRAC", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 689, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/2/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 586, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-8/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS IT REFRESH P_AE32 | qfx1.ams.nl et-1/0/52", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1274, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "2/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | LJU-ZAG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178497, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LJU-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 899, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-1/3/0", - "xe-1/3/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-poz1-pl| SW1-EX3400-POZ1 MANAGEMENT", - "circuits": [ - { - "id": 724825, - "name": "EX3400-MANAGEMENT-POZ1-PL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 822, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae6.0", - "bundle": [], - "bundle-parents": [ - "et-7/1/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-BUD-IPTRUNK $GS-00018| BRA-BUD", - "circuits": [ - { - "id": 730086, - "name": "BRA-BUD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 829, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BUD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BUD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae7.0", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-1/0/5", - "et-1/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2-MIL2-IPTRUNK $GS-02548| MIL2-MIL2 | MIL2-MIL2-MGMT", - "circuits": [ - { - "id": 740951, - "name": "MIL2-MIL2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 754, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-MIL2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-MIL2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/0/0.0", - "bundle": [], - "bundle-parents": [], - "description": " SRV_10GGBS CUSTOMER GEANT-IT #fra-par-SUPERPOP-QFX-GEANT $GS-00078 |", - "circuits": [ - { - "id": 729477, - "name": "FRA-PAR-SUPERPOP-QFX-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 977, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | RARE EDGECORE WEDGE100BF-32X xe-0", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1442, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/0/2.107", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF SRF21106 #PRA-POZ-RARE-BMS9 $GS-00751", - "circuits": [ - { - "id": 737234, - "name": "PRA-POZ-RARE-BMS9", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 804, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 767, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "1/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | GEN-PAR | Connected to PAR01.GRV2 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900097, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30.3003", - "bundle": [], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-throughput-network-fra-de $GS-00299| Throughput network", - "circuits": [ - { - "id": 733021, - "name": "PS-THROUGHPUT-NETWORK-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1131, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-2", - "bundle": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-50065 | KAU-KAU", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-KAU", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KAU-KAU", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ge-0/0/37", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX02 IDRAC", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 554, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | LON2-PAR-QFX | to QFX xe-1/0/42", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1587, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "lag-8", - "bundle": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01915 | AMS-FRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177288, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae14", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01686 | QFX.LON2.UK AE30", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 583, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-20.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1", - "1/x1/1/c26/2" - ], - "description": "SRV_IAS CUSTOMER ARNES #ARNES-AP1-IAS IASPS $GS-00552 | ASN2107 | ", - "circuits": [ - { - "id": 745717, - "name": "ARNES-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "7", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/0/2.1955", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER KIFU GEANT #bud-bud-KIFU-RARE-200100 $GS-00683 |", - "circuits": [ - { - "id": 705914, - "name": "BUD-BUD-KIFU-RARE-200100", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 816, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae13.100", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-10/0/2" - ], - "description": "SRV_GLOBAL CUSTOMER SWITCH #SWITCH-AP2 $GS-00515 | ASN559 |", - "circuits": [ - { - "id": 661602, - "name": "SWITCH-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 811, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to RT0.AMS 2/1/C8/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899970, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KIE-POZ-IPTRUNK $GS-00046| KIE-POZ | ", - "circuits": [ - { - "id": 740201, - "name": "KIE-POZ-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 587, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-POZ", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIE-POZ", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-10/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER REDIRIS P_AE16 SRF23022 | CXC ID M21-12I-03-59 & 60 --P12 in ODF3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1048, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.2033", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET #lon-lon-GEANTOPEN-NORDUNET-WACREN-20041 $GS-00979 |", - "circuits": [ - { - "id": 705942, - "name": "LON-LON-GEANTOPEN-NORDUNET-WACREN-20041", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 982, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:3507", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #SLCIMEC-02515 $GS-02515", - "circuits": [ - { - "id": 745337, - "name": "SLCIMEC-02515", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | LON2-LON2 | to xe-1/2/9 MX1.LON2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899585, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "1/1/c12/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | VIE-VIE | to MX1.VIE et-1/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900225, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-2/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE CLOUDFERRO P_AE35 | Interxion CID: DE132127 | ASN200999", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 684, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae1.31", - "bundle": [], - "bundle-parents": [ - "xe-2/1/7", - "xe-2/2/7" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #Gen513-EEX-ESNET-1G $GA-01543", - "circuits": [ - { - "id": 708305, - "name": "GEN513-EEX-ESNET-1G", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1487, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE FW1-SNM", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 664, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 810, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae41.0", - "bundle": [], - "bundle-parents": [ - "xe-0/2/1", - "xe-0/2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 MGMT | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1355, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.41", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-AZDELTA-ExpressRoute-VLAN4068 GS-02565 | ", - "circuits": [ - { - "id": 740640, - "name": "BELNET-AZDELTA-EXPRESSROUTE-VLAN4068", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 684, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 608, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-1/0/45", - "bundle": [], - "bundle-parents": [], - "description": "PSY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 658, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 691, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 524, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "gr-10/1/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN INFRASTRUCTURE ACCESS #FORTIGATE-TUNNEL-TO-CH-LON2-UK $GS-02124 | Tunnel to Fortigate CH", - "circuits": [ - { - "id": 737548, - "name": "FORTIGATE-TUNNEL-TO-CH-LON2-UK", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 872, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "2/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER EENET P_lag-21", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611179649, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "EENET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "EENET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 635, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae29", - "bundle": [ - "xe-11/0/7", - "xe-11/1/2" - ], - "bundle-parents": [ - "xe-11/0/7", - "xe-11/1/2" - ], - "description": "LAG UPSTREAM COLT $GA-02113 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1153, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "1/x1/1/c27/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ULAKBIM P_lag-23", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917569, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 647, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1476, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.333", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_IAS CUSTOMER PIONIER #PIONIER-AP1-IAS IASGWS $GS-00539 | ASN8501", - "circuits": [ - { - "id": 660626, - "name": "PIONIER-AP1-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 789, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-20.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/4", - "1/x1/1/c4/1", - "1/x1/1/c4/2", - "1/x1/1/c4/3", - "1/x1/1/c4/4" - ], - "description": "SRV_GLOBAL CUSTOMER GRNET #GRNET-AP1 $GS-00471 | ASN5408 | ", - "circuits": [ - { - "id": 745493, - "name": "GRNET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 590, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 616, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-3/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER KIFU P_AE10 SRF19047 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 698, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-0/0/43", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae14 | 10_GBS to RT1 xe-7/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 692, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae11", - "bundle": [ - "et-9/0/2", - "et-10/3/0" - ], - "bundle-parents": [ - "et-9/0/2", - "et-10/3/0" - ], - "description": "LAG CUSTOMER SURF $GA-01844 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 707, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "irb.370", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN CUSTOMER SCION SRF22092 #SCION-SCION-FRA-INTERNAL-VPN-VL370 $GS-02216 |", - "circuits": [ - { - "id": 732533, - "name": "SCION-SCION-FRA-INTERNAL-VPN-VL370", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1368, - "dashboards": [ - "NREN" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic present", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 677, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "2/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CYNET P_lag-23 | CYNET-GRIX", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178115, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CYNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CYNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | JRA MX to CORSA P4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1580, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "1/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | KAU-RIG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916353, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-RIG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KAU-RIG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "et-10/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1159, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.936", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS GEANT #AMS-BIL-REDIRIS-RARE $GS-02287 |", - "circuits": [ - { - "id": 736075, - "name": "AMS-BIL-REDIRIS-RARE", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 850, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "1/1/c12/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | MIL2-MIL2 | to RT1.MIL2.IT et-1/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900226, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS | mx1-sw2-1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1019, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 665, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1060, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-20:1213", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER HEANET RARE #RARE-00689 $GS-00689", - "circuits": [ - { - "id": 747350, - "name": "RARE-00689", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/7.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon-uk-psmp-bwctl-lhcone | psmp-lhc-bw-lon-uk.geant.org pS BWCTL (LHCONE)", - "circuits": [ - { - "id": 708314, - "name": "PS-LON-UK-PSMP-BWCTL-LHCONE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1478, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/2/3.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRENA COGENT #vie-vie-EAP-GRENA-COGENT-22035 $GS-00695", - "circuits": [ - { - "id": 719668, - "name": "VIE-VIE-EAP-GRENA-COGENT-22035", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1089, - "dashboards": [ - "EAP", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COGENT", - "interface_type": "LOGICAL" - }, - { - "name": "GRENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1280, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 522, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.111", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN CUSTOMER NORDUNET #NORDUNET-AP1-IPv4-LHCONE $GS-00841 | ASN2603", - "circuits": [ - { - "id": 661194, - "name": "NORDUNET-AP1-IPV4-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1268, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-7/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | BUD-BUD | to RT0.BUD 2/x1/1/c9/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1138, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUD-BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae13", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01701 | LON2-PRD-ESX03 VM Traffic LAG", - "circuits": [ - { - "id": 658695, - "name": "LON2-PRD-ESX03-VM-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 601, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c8/1", - "1/x1/1/c8/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU-ZAG-IPTRUNK $GS-02372 | LJU-ZAG | ", - "circuits": [ - { - "id": 747865, - "name": "LJU-ZAG-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 14, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-ZAG", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LJU-ZAG", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/1/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-ams-nl-management |perfSONAR MGMT", - "circuits": [ - { - "id": 736082, - "name": "PS-AMS-NL-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1523, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.15", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet_NCCN_ExpressRoute_Vlan4092 $GS-01126 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739680, - "name": "BELNET-NCCN-EXPRESSROUTE-VLAN4092", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 598, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 594, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "et-4/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC NIX P_AE12", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 996, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-0/0/16", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 533, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "xe-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | RT1-SW1 | Patched to EX3400 xe-0/2/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 531, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "RT1-SW1", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RT1-SW1", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4062", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEJUST-02318 $GS-02318", - "circuits": [ - { - "id": 745303, - "name": "SLCIMEC-02518", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/2/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #ams-fra-IT_INFRA-QFX-GEANT $GS-02555 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1685, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "2/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ULAKBIM P_lag-23", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611179649, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 549, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.116", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L3VPN CUSTOMER RENATER #RENATER-AP1-IPv6-LHCONE $GS-00854 | ASN2200", - "circuits": [ - { - "id": 661664, - "name": "RENATER-AP1-IPV6-LHCONE", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 586, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "1/x1/1/c4/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20 | GRNET-AP1-IP3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916098, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.3504", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02642 $GS-02642 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 872, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "lag-7", - "bundle": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01887 | GEN-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177287, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "2/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | FRA-GEN | TO FRA01-GRV1 port 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162049, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae1", - "bundle": [ - "et-0/0/3" - ], - "bundle-parents": [ - "et-0/0/3" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02015 | CHI-CHI|", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 585, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-CHI", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CHI-CHI", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "2/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to AMS01-GRV3 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162241, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.23", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT CAAREN #GRE-MULTICAST-TUNNEL-CAAREN $GS-02376 | ASN4901", - "circuits": [ - { - "id": 732664, - "name": "GRE-MULTICAST-TUNNEL-CAAREN", - "type": "IP PEERING - R&E", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1226, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "CAAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CAAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.8", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01149 $GS-01149", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 591, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | JRA MX to CORSA P6", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1575, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | FRA-PRA | TO RT1.PRA.CZ-et-0/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899970, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae8.0", - "bundle": [], - "bundle-parents": [ - "et-2/1/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS2-LON-AMT-IPTRUNK $GS-00012 | ", - "circuits": [ - { - "id": 736813, - "name": "AMS2-LON-AMT-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1428, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-101.103", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-RIG-SI-VRF-VLAN103 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "3", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER NKN SRF19102 P_AE20 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 559, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NKN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NKN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.550", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET RENATER #GRID5K-02234", - "circuits": [ - { - "id": 744235, - "name": "GRID5K-02234", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 934, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.3925", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT SINGAREN #NL-SINGAREN $GS-02202 | ASN23855 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1758, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-3/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 770, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO Netherlight #Netherlight-GEO-UK-1 | SRF9928315 | GeO NETHERLIGHT 100G | NETHERLIGHT ID: Asd001A-8700-08:8/1", - "circuits": [ - { - "id": 719825, - "name": "NETHERLIGHT-GEO-UK-1", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1168, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4.102", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER MAEEN ESNET #LON-LON-GEANTOpen-MAEEN-ESNET-22004 $GS-00464 | ", - "circuits": [ - { - "id": 738639, - "name": "LON-LON-GEANTOPEN-MAEEN-ESNET-22004", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1512, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MAEEN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "MAEEN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 559, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RIG-TAR-IPTRUNK $GS-02345 | RIG-TAR | ", - "circuits": [ - { - "id": 746458, - "name": "RIG-TAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 7, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "RIG-TAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RIG-TAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "2/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | LON-LON2 | to LON01.GRV2 - 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162241, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 869, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:1501", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NORDUNET #HAM-LON-00719 $GS-00719", - "circuits": [ - { - "id": 747551, - "name": "HAM-LON-00719", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-fra-de $GS-00151 | SW3-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 729100, - "name": "EX3400-MANAGEMENT-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 973, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae34.0", - "bundle": [], - "bundle-parents": [ - "xe-4/2/5", - "xe-4/3/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | NEMO DDOS Detection 2", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1048, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae5", - "bundle": [ - "et-7/0/2", - "et-7/0/5" - ], - "bundle-parents": [ - "et-7/0/2", - "et-7/0/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01738 | BUD-ZAG | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 619, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-ZAG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUD-ZAG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | SPLUNK LON2 PEER01 link Slot7 P1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1574, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.130", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ocvm-lon-uk-ilo | OC VM iDRAC", - "circuits": [ - { - "id": 740699, - "name": "OCVM-LON-UK-ILO", - "type": "SERVER LINK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 676, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 551, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae5.0", - "bundle": [], - "bundle-parents": [ - "xe-3/2/8", - "xe-3/2/9" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAR-MAR-IPTRUNK $GS-02590| MAR-MAR | MAR-MAR", - "circuits": [ - { - "id": 742606, - "name": "MAR-MAR-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 862, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae30", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01709 | QFX.FRA.DE AE14", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 608, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/26", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX03 NIC1 PORT3 - VSAN PORT", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 638, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae10.2030", - "bundle": [], - "bundle-parents": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "description": "SRV_L3VPN CUSTOMER JISC #JISC-AP1-LHCONE $GS-00832 | ASN786", - "circuits": [ - { - "id": 661732, - "name": "JISC-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 967, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "1/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | LJU-MIL2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916353, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/1/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 536, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4.2010", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon-GEANTOpen-Esnet-NORDUNET-15039-2 $GS-00964 |", - "circuits": [ - { - "id": 738645, - "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-2", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1518, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY To SRX2 to SRX1 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 514, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-21", - "bundle": [ - "1/x1/1/c26/1" - ], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "LAG CUSTOMER LITNET | $GA-02042 | LITNET-AP1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177301, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LITNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LITNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE ORACLE P_AE11 SRF21099 | GEANT-Interxion-AMS8 2-1 | Digital Realty CID: NL159412", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae1.103", - "bundle": [], - "bundle-parents": [ - "xe-3/0/0", - "xe-3/0/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-POR-PT $GS-00125 | ", - "circuits": [ - { - "id": 712189, - "name": "DCN-MANAGEMENT-POR-PT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 589, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.801", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT RE_INTERCONNECT INTERNET2 UBUNTUNET #lon-lon-MISC-UBUNTUNET-INTERNET2-170341 $GS-00729 |", - "circuits": [ - { - "id": 709301, - "name": "LON-LON-MISC-UBUNTUNET-INTERNET2-170341", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 804, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/1/3.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER URAN #chi-kie-EAP-RENAM-URAN-22087 $GS-02212 |", - "circuits": [ - { - "id": 723461, - "name": "CHI-KIE-EAP-RENAM-URAN-22087", - "type": "GEANT - GBS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 600, - "dashboards": [ - "EAP", - "GBS_10G" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-2/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE GOOGLE P_AE49 | Interxion CID DE272882", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 682, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4082", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEKULEUVEN-01134 $GS-01134", - "circuits": [ - { - "id": 744267, - "name": "MSEKULEUVEN-01134", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1462, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/0/1:3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 534, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-11/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC LINX P_AE20 | LINX port: core4-tch-re1 - et-2/2/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1652, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4.201", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER ESNET #lon-lon-GEANTOpen-Esnet-TENET-180871 $GS-00966 |", - "circuits": [ - { - "id": 738644, - "name": "LON-LON-GEANTOPEN-ESNET-TENET-180871", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1514, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "LOGICAL" - }, - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "1/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | to AMS01-GRV1 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899777, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "1/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | GEN-PAR | Connected to PAR01.GRV2 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899521, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "et-1/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS IT REFRESH P_AE30 | qfx1.lon2.uk et-0/0/52", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 748, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.3019", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SD-WAN-SINET-SINET-17088 $GS-00649 |", - "circuits": [ - { - "id": 740719, - "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17088", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 667, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER HEANET P_lag-20 | HEANET-AP2-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "et-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | AMS-AMS | AMS-AMS-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 633, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC DE-CIX P_AE20 | DE-CIX Migration 1_2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1562, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER BELNET P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4", - "1/x1/1/c4/1", - "1/x1/1/c4/2", - "1/x1/1/c4/3", - "1/x1/1/c4/4" - ], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4", - "1/x1/1/c4/1", - "1/x1/1/c4/2", - "1/x1/1/c4/3", - "1/x1/1/c4/4" - ], - "description": "LAG CUSTOMER GRNET | $GA-01929 | #GRNET-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "irb.3006", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-GTS-IMS-MEDIATION-FRANKFURT-LOGiCAL-INTERFACE $GS-00866| IMS Mediation Gateway for taas-control VRF", - "circuits": [ - { - "id": 733017, - "name": "TAAS-GTS-IMS-MEDIATION-FRANKFURT", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1234, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 606, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "2/1/c9/1", - "2/1/c11/1", - "2/1/c11/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU-MIL2-IPTRUNK $GS-00051 | LJU-MIL2 | ", - "circuits": [ - { - "id": 746146, - "name": "LJU-MIL2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 6, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-MIL2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LJU-MIL2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.300", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #dtn-project-par-fr $GS-00145 | DTN-Project CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20171205", - "circuits": [ - { - "id": 739093, - "name": "DTN-PROJECT-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1225, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-10/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | WAS BIL-MAD", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1045, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 560, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae2", - "bundle": [ - "et-3/0/4", - "et-3/1/4" - ], - "bundle-parents": [ - "et-3/0/4", - "et-3/1/4" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02459 | FRA-FRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1376, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-FRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "FRA-FRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-5/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | LR4 Optic Installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 848, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-11/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE FACEBOOK P_AE16 | Digital Reality CID: AT227180 | FB ID: FC-203126783", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 869, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/6.500", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF #PRA-POZ-RARE-BMS9 $GS-02628", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1025, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-23.111", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c27/1", - "2/x1/1/c26/1" - ], - "description": "SRV_L3VPN CUSTOMER ULAKBIM #ULAKBIM-AP2-LHCONE $GS-00869 | ASN8517 | ", - "circuits": [ - { - "id": 744997, - "name": "ULAKBIM-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "20", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:3913", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01154 $GS-01154", - "circuits": [ - { - "id": 747629, - "name": "AMS-HAM-MSE-01154", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT MANLAN P_AE15 SRF21042 | Paris-NewYork ANA Link - GTT/002228864", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1150, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "MANLAN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MANLAN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1064, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.5", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-JYV-ExpressRoute-VLAN3902 $GS-01157 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707076, - "name": "NORDUNET-JYV-EXPRESSROUTE-VLAN3902", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1389, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae2", - "bundle": [ - "et-7/1/2" - ], - "bundle-parents": [ - "et-7/1/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02594 | BUD-BUD", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 616, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-BUD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUD-BUD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE GTS SRF0000001 | MAD GTS Server #1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 578, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1265, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae30", - "bundle": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 $GA-01815 | QFX1.PAR.FR SRX BYPASS", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 702, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-4", - "bundle": [ - "2/1/c5/1" - ], - "bundle-parents": [ - "2/1/c5/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01769 | MIL2-VIE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-VIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MIL2-VIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1062, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/44", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE30 | to QFX1.LON2.UK xe-1/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 684, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE3 | LON2-PRD-ESX03 NIC1 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 519, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE2 | rt1-sw3 xe-2/0/1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1441, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae31", - "bundle": [ - "xe-11/0/1" - ], - "bundle-parents": [ - "xe-11/0/1" - ], - "description": "LAG CUSTOMER MICROSOFT SRF19104 EXPRESSROUTE #2 $GA-01963 | GEANT-FRA32-09XGMR-CIS-2-SEC-11012019", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1207, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae40.415", - "bundle": [], - "bundle-parents": [ - "xe-11/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ORACLE REDIRIS SRF22010 #fra-mad-ORACLE-REDIRIS-22010-VL415 $GS-02096", - "circuits": [ - { - "id": 719496, - "name": "FRA-MAD-ORACLE-REDIRIS-22010-VL415", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1059, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae17.433", - "bundle": [], - "bundle-parents": [ - "xe-11/3/4" - ], - "description": "SRV_IAS CUSTOMER ASNET-AM #ASNET-AM-AP2-IAS IASPS $GS-02651 | ASN47623 |", - "circuits": [ - { - "id": 747039, - "name": "ASNET-AM-AP2-IAS", - "type": "GEANT PEERING", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1710, - "dashboards": [ - "EAP", - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COLT | COLT ID: 444162876", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1065, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COLT - VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COLT - VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:2104", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET REDIRIS #HAM-MAD-02516 $GS-02516", - "circuits": [ - { - "id": 747543, - "name": "HAM-MAD-02516", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-9/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC P_AE10 SRF22051 | JISC-AP1-LL3 | JISC ID: 22352619", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1403, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 557, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1298, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c6/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | ATH2-THE | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916225, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-THE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ATH2-THE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | HAM-POZ | to RT0.HAM.DE 2/1/c8/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899970, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae1.991", - "bundle": [], - "bundle-parents": [ - "xe-2/1/7", - "xe-2/2/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-GEN-CH | DCN MANAGEMENT", - "circuits": [ - { - "id": 740080, - "name": "DCN-MANAGEMENT-GEN-CH", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1484, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10.100", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_GLOBAL CUSTOMER KIFU #KIFU-AP1 $GS-00481 | ASN1955 | aka KIFU", - "circuits": [ - { - "id": 663051, - "name": "KIFU-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 730, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.4050", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT CANARIE #FR-CANARIE-2 $GS-00913 | ASN6509 | MANLAN Vlan:4050 ", - "circuits": [ - { - "id": 736733, - "name": "FR-CANARIE-2", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1173, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20 | GRNET-AP1-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/47", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE31 | MX1.LON2.UK xe-3/2/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 549, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-8/0/2", - "et-8/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-VIE-IPTRUNK $GS-00026| BUD-VIE | ", - "circuits": [ - { - "id": 740790, - "name": "BUD-VIE-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 714, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-VIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUD-VIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae13.0", - "bundle": [], - "bundle-parents": [ - "xe-5/2/0", - "xe-11/0/3", - "xe-11/0/5" - ], - "description": "SRV_IAS PRIVATE GOOGLE #GOOGLE-FRA15-15169-DE-to-be-deleted $TS-00934 | ASN15169", - "circuits": [ - { - "id": 731196, - "name": "GOOGLE-FRA15-15169-DE-TO-BE-DELETED", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 999, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "GOOGLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GOOGLE", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae16", - "bundle": [ - "et-4/1/5" - ], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "LAG CUSTOMER RASH SRF23039 $GA-02324 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 940, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RASH", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "RASH", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 644, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-20:2281", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER HEANET #LOFAR-00632 $GS-00632", - "circuits": [ - { - "id": 747349, - "name": "LOFAR-00632", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 520, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/32", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik C Data Port 2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 680, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/2/0.702", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #par-fra-DTN-generator $GS-00745 | RARE P4 TESTBED ", - "circuits": [ - { - "id": 733002, - "name": "PAR-FRA-DTN-GENERATOR", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 984, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "xe-3/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | RT1-SW1 | Patched to EX3400 xe-0/2/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 540, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "RT1-SW1", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RT1-SW1", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_ae1 SRF0000001 | rt1-sw2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 683, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae11", - "bundle": [ - "xe-0/1/1" - ], - "bundle-parents": [ - "xe-0/1/1" - ], - "description": "LAG PRIVATE ORACLE SRF21099 #2 | #NL-ORACLEFC-LAG-2 $GA-02035| FastConnect NREN Access", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 582, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.692", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_GCS CUSTOMER REDIRIS MICROSOFT #REDIRIS-ICN2-ExpressRoute-VLAN692 $GS-02560 | ", - "circuits": [ - { - "id": 740768, - "name": "REDIRIS-ICN2-EXPRESSROUTE-VLAN692", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1040, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-FRA-IPTRUNK $GS-02461 | FRA-FRA | RT0.FRA-RT1.FRA", - "circuits": [ - { - "id": 739046, - "name": "FRA-FRA-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-FRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FRA-FRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #HAM-POZ-IPTRUNK $GS-02339 | HAM-POZ | ", - "circuits": [ - { - "id": 740148, - "name": "HAM-POZ-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-POZ", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HAM-POZ", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-8/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1273, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4081", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ARTEV-ExpressRoute-VLAN4081 $GS-01123 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739675, - "name": "BELNET-ARTEV-EXPRESSROUTE-VLAN4081", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1666, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE FW1-SNM", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1594, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-21", - "bundle": [ - "1/x1/1/c25/1" - ], - "bundle-parents": [ - "1/x1/1/c25/1" - ], - "description": "LAG CUSTOMER ARNES | $GA-02632 | ARNES-AP1B-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177301, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/12", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 527, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/10", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 525, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30.3004", - "bundle": [], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-CONTROL-FRANKFURT-VRF-VLAN3004 $GS-00862 | RANCID gateway for taas-control VRF", - "circuits": [ - { - "id": 733012, - "name": "TAAS-CONTROL-FRANKFURT-VRF-VLAN3004", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1132, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2707", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO.T4 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 816, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.3928", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT CANARIE #NL-CANARIE-vlan3928 $GS-02646 | ASN6509", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1759, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER UOM P_AE19 SRF21103 | #UOM-AP2-100G-LL1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 673, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "UOM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "UOM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-7/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | AMS-AMS | to RT0.AMS 1/1/c19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 543, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/8.996", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #GEANT-OPERATIONS-LabConnectivity | GEANT MX1.LON Infinera VRF to Operations Lab", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 554, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae21.4001", - "bundle": [], - "bundle-parents": [ - "et-7/1/0" - ], - "description": "SRV_IAS PRIVATE T-SYSTEMS #DE-T-SYSTEMS-IAS $GS-02273 | ASN6878 |", - "circuits": [ - { - "id": 727982, - "name": "DE-T-SYSTEMS-IAS", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 722, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1467, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.204", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON-DDOS-FRA-DE-IDRAC | FlowMon iDRAC CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170910", - "circuits": [ - { - "id": 732625, - "name": "FLOWMON-DDOS-FRA-DE-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1407, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.26", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-JUST-ExpressRoute-VLAN4063 $GS-02319 | ", - "circuits": [ - { - "id": 739662, - "name": "BELNET-JUST-EXPRESSROUTE-VLAN4063", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 607, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.21", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet_ZWEV_ExpressRoute_VLAN4082 $GS-01129 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739676, - "name": "BELNET-ZWEV-EXPRESSROUTE-VLAN4082", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 602, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "2/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "''", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161729, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "1/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MARNET P_lag-22", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915970, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MARNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MARNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-22.320", - "bundle": [], - "bundle-parents": [ - "1/1/c27/1" - ], - "description": "SRV_GLOBAL CUSTOMER PIONIER #PIONIER-AP2 $GS-00496 | ASN8501 | ", - "circuits": [ - { - "id": 747601, - "name": "PIONIER-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "9", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10.2802", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET KIFU #SLCUTH-02497 $GS-02497|", - "circuits": [ - { - "id": 745594, - "name": "SLCUTH-02497", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 860, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 598, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 602, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae16.333", - "bundle": [], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "SRV_IAS CUSTOMER RASH #RASH-AP1-100G-IAS IASGWS $GS-02326 | ASN57961 | ", - "circuits": [ - { - "id": 727802, - "name": "RASH-AP1-100G-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 944, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "RASH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RASH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-8/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 994, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 | QFX xe-0/0/29", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 818, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SRX-2 To Switch Cluster ge-1/0/2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 513, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae21.333", - "bundle": [], - "bundle-parents": [ - "et-11/1/0" - ], - "description": "SRV_IAS CUSTOMER ROEDUNET #ROEDUNET-AP2-IAS IASGWS $GS-00545 | ASN2614 |", - "circuits": [ - { - "id": 679570, - "name": "ROEDUNET-AP2-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 918, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3240", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET HARNET #lon-lon-GEANTOpen-HARNET-NORDUNET $GS-02606 | ", - "circuits": [ - { - "id": 742671, - "name": "LON-LON-GEANTOPEN-HARNET-NORDUNET", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 620, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "HARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.3068", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE CANARIE #AMS-AMS-RARE-CANARIE-21013 $GS-00627 |", - "circuits": [ - { - "id": 736077, - "name": "AMS-AMS-RARE-CANARIE-21013", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1541, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "CANARIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.3", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER RedIRIS Microsoft #RedIRIS-UCLM-ExpressRoute-Vlan411 $GS-01166 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 706055, - "name": "REDIRIS-UCLM-EXPRESSROUTE-VLAN411", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1387, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1301, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE |DDOS SERVER 2 10Gb_2 | P_ae22", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1056, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "1/x1/1/c25/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ARNES P_lag-21 | ARNES-AP1B-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917441, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-1/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BIL-MAD |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 680, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "lag-7.0", - "bundle": [], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-PAR-IPTRUNK $GS-00040 | GEN-PAR | ", - "circuits": [ - { - "id": 739696, - "name": "GEN-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae32.991", - "bundle": [], - "bundle-parents": [ - "et-1/0/0", - "et-5/0/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #CORIANT-LIBRENMS-ACCESS-LON2-UK | OPTICAL LIBRENMS ACCESS", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 926, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.buc.ro.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c26/1" - ], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "LAG CUSTOMER ROEDUNET | $GA-018934 | # | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-25.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c4/1" - ], - "description": "SRV_GLOBAL CUSTOMER KREN #KREN-AP1 $GS-02153 | ASN211080 | ", - "circuits": [ - { - "id": 747899, - "name": "KREN-AP1", - "type": "GEANT IP", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "19", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MARNET P_lag-23", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MARNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MARNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae1.21", - "bundle": [], - "bundle-parents": [ - "xe-4/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-vie-at-DRAC | Hades DRAC", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 657, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.1002", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET TEIN #lon-lon-GEANTOpen-NORDUNET-TEIN-17026 $GS-00977 |", - "circuits": [ - { - "id": 705906, - "name": "LON-LON-GEANTOPEN-NORDUNET-TEIN-17026", - "type": "GEANT OPEN CROSS CONNECT", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 579, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TEIN", - "interface_type": "LOGICAL" - }, - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/1/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER ASNET-AM ASNET-AM #fra-fra-EAP-ASNET-AM-CL-190891 $GS-00696 |", - "circuits": [ - { - "id": 732138, - "name": "FRA-FRA-EAP-ASNET-AM-CL-190891", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1070, - "dashboards": [ - "EAP", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4.1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO ESnet #ESnet-GEO-UK-1 | Lon-ESnet-OPEN-400G", - "circuits": [ - { - "id": 738646, - "name": "ESNET-GEO-UK-1", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1511, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 687, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae10.1990", - "bundle": [], - "bundle-parents": [ - "et-4/1/2" - ], - "description": "SRV_L3VPN CUSTOMER FCCN #FCCN-AP1-LIS-LHCONE $GS-02401 | ASN1930", - "circuits": [ - { - "id": 730596, - "name": "FCCN-AP1-LIS-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 673, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "2/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | BUC-SOF | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178497, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-SOF", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-SOF", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-mgmt-loc-lis-pt.geant.org pS MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 695, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT HBKU SRF18083 $GA-01398 | Colt ID: XBG/XBG/LE-241593", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1289, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "HBKU", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HBKU", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae18", - "bundle": [ - "et-2/0/2" - ], - "bundle-parents": [ - "et-2/0/2" - ], - "description": "LAG CUSTOMER ACONET AP_B SRF9943109 $GA-01770 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 803, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ACONET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ACONET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-RIG-SI-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30.3015", - "bundle": [], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX-FRA-DE | Infoblox vFRA MGMT", - "circuits": [ - { - "id": 733919, - "name": "INFOBLOX-FRA-DE-MGMT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1137, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | was ANKABUT", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1458, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26", - "bundle": [ - "et-1/1/0" - ], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "LAG RE_INTERCONNECT NEA3R SRF20098 $GA-01970 | ANA-100G-NEA3R", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 722, - "dashboards": [ - "ANA", - "RE_PEER" - ], - "dashboard_info": { - "name": "NEA3R", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "NEA3R", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.500", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NEA3R SURF #LON-LON-NEA3R-SURF-22015 $GS-00707 | ", - "circuits": [ - { - "id": 718304, - "name": "LON-LON-NEA3R-SURF-22015", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1012, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NEA3R", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NEA3R", - "interface_type": "LOGICAL" - }, - { - "name": "SURFNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "2/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | FRA-GEN | TO FRA01-GRV1 port 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161921, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.702", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #LON-AMS-DTN-GENERATOR $GS-00722 | RARE P4 TESTBED", - "circuits": [ - { - "id": 736105, - "name": "LON-AMS-DTN-GENERATOR", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1533, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae20", - "bundle": [ - "xe-2/2/0" - ], - "bundle-parents": [ - "xe-2/2/0" - ], - "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE #2 $GA-02523 | GEANT-EXRJ02-MAD31-SEC-07192024", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 658, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #1 P_AE10 | Interrxion CID: DE131269-1 | GEANT-FRA32-09XGMR-CIS-1-PRI-11012019", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 854, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3918", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS Customer Nordunet MICROSOFT #Nordunet-MSER-ExpressRoute-Vlan3918 $GS-02411 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 732192, - "name": "NORDUNET-MSER-EXPRESSROUTE-VLAN3918", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1344, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "et-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CESNET P_AE11 SRF9922157 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 885, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-bw-ams.nl.geant.org pS BWCTL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1452, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/0/1:0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 531, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-9/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT COPERNICUS P_AE15 SRF21068| #FOR-MAD-COPERNICUS-100G | Circuit ID: BRFT1 MEQX1 100GB00001 | p22 in odf3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1145, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "COPERNICUS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COPERNICUS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-2/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 634, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae18", - "bundle": [ - "et-8/1/0" - ], - "bundle-parents": [ - "et-8/1/0" - ], - "description": "LAG CUSTOMER KIFU $GA-01861 | KIFU-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 578, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/2.2210", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER HBKU INTERNET2 #lon-par-GEANTOPEN-HBKU-INTERNET2-190091 $GS-00967 |", - "circuits": [ - { - "id": 736739, - "name": "LON-PAR-GEANTOPEN-HBKU-INTERNET2-190091", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1434, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "HBKU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae1.301", - "bundle": [], - "bundle-parents": [ - "xe-1/3/0", - "xe-1/3/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #POZ Groove 1 | ", - "circuits": [ - { - "id": 727448, - "name": "POZ", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 780, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.352", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON-PAR-FR-NETFLOW | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", - "circuits": [ - { - "id": 739101, - "name": "FLOWMON-PAR-FR-NETFLOW", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1368, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.50", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT IRANET #DE-IRANET $GS-01169 | ASN6736", - "circuits": [ - { - "id": 732661, - "name": "DE-IRANET", - "type": "IP PEERING - R&E", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1228, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "IRANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "IRANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae46", - "bundle": [ - "et-2/0/1" - ], - "bundle-parents": [ - "et-2/0/1" - ], - "description": "LAG PRIVATE FACEBOOK $GA-02481 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1606, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae21.110", - "bundle": [], - "bundle-parents": [ - "et-5/0/4" - ], - "description": "SRV_L3VPN CUSTOMER CERN #CERN-GEN-LHCONE-2 $GS-00812 | ASN513 | CERNLIGHT", - "circuits": [ - { - "id": 701612, - "name": "CERN-GEN-LHCONE-2", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1243, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/2.1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO HBKU #HBKU-GEO-UK-1 | SRF18085 | EQUINIX ID: 20873393 |", - "circuits": [ - { - "id": 719826, - "name": "HBKU-GEO-UK-1", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1178, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "HBKU", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HBKU", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae32", - "bundle": [ - "xe-4/0/0" - ], - "bundle-parents": [ - "xe-4/0/0" - ], - "description": "LAG PRIVATE ORANGE SRF21047 #FR-ORANGE-LAG-3 $GA-02179", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 779, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 607, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "xe-0/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 562, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.904", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #lon-lon2-MISC-GEANT-INTERNET2-9940525 $GS-00732 |", - "circuits": [ - { - "id": 709300, - "name": "LON-LON2-MISC-GEANT-INTERNET2-9940525", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 832, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-10/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CESNET P_AE23 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 569, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.2001", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L3VPN RE_INTERCONNECT INTERNET2 #INTERNET2-PAR-LHCONE $GS-00831 | ASN11537", - "circuits": [ - { - "id": 660639, - "name": "INTERNET2-PAR-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 613, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "1/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | PAR-PAR | TO MX1.PAR.FR et-9/0/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900673, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PAR-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PAR-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/2.101", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE GEANT #fra-ham-WP7T2SF-RARE-20104-FRA", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1444, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-4", - "bundle": [ - "1/x1/1/c8/1" - ], - "bundle-parents": [ - "1/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01792 | AMS-BRU", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-BRU", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-BRU", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-1/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 527, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-4/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 998, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae31.0", - "bundle": [], - "bundle-parents": [ - "xe-4/1/5" - ], - "description": "SRV_IAS PRIVATE ORANGE #FR-ORANGE-2280-2 $GS-01179 | ASN2280 |", - "circuits": [ - { - "id": 718722, - "name": "FR-ORANGE-2280-2", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 994, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "ORANGE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORANGE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic present", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 678, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-2", - "bundle": [ - "2/x1/1/c9/1" - ], - "bundle-parents": [ - "2/x1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-50047 | ZAG-ZAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ZAG-ZAG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ZAG-ZAG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/42", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE29 | 10_GBS to MX1.LON2.UK xe-2/0/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 543, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/6.1728", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION KAUST #ams-fra-KAUST-SCION $GS-02417|", - "circuits": [ - { - "id": 744389, - "name": "AMS-FRA-KAUST-SCION", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1705, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae11.1700", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-2/1/5" - ], - "description": "SRV_GLOBAL CUSTOMER CESNET P_AE11 SRF0000001 #CESnet-NSI-GCS $GS-00446 | GCS Port", - "circuits": [ - { - "id": 725157, - "name": "CESNET-NSI-GCS", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 937, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP P_AE30 | QFX xe-1/0/19", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1270, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae13", - "bundle": [ - "xe-0/2/2" - ], - "bundle-parents": [ - "xe-0/2/2" - ], - "description": "LAG PRIVATE GOOGLE $GA-02450 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 995, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae15.0", - "bundle": [], - "bundle-parents": [ - "et-3/1/5" - ], - "description": "SRV_IAS PRIVATE GOOGLE #GOOGLE-2-15169-IT $GS-02248 | ASN15169", - "circuits": [ - { - "id": 733062, - "name": "GOOGLE-2-15169-IT", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 951, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "GOOGLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GOOGLE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae10", - "bundle": [ - "et-7/0/2" - ], - "bundle-parents": [ - "et-7/0/2" - ], - "description": "LAG CUSTOMER LITNET AP2 #LITNET-AP2-LAG $GA-02071 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 615, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LITNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LITNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae5", - "bundle": [ - "xe-0/3/0", - "xe-0/3/1" - ], - "bundle-parents": [ - "xe-0/3/0", - "xe-0/3/1" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 |rt1-sw2 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 671, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae15.422", - "bundle": [], - "bundle-parents": [ - "et-3/0/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ACONET SANET #BRA-VIE-ACONET-SANET $GS-02379 |", - "circuits": [ - { - "id": 729694, - "name": "BRA-VIE-ACONET-SANET", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1025, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae1.200", - "bundle": [], - "bundle-parents": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON2-SEC-ESX-DEVICES-IDRAC |lon2-sec-esx20/21-devices-iDRAC CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20181031", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 881, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-23", - "bundle": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "LAG CUSTOMER BELNET | $GA-01791 | #BELNET-GRID5K-LAG", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1342177303, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | GEN-MIL2 | to RT1.MIL2 et-9/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900033, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | was LON TAAS 01", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 597, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "lag-8.0", - "bundle": [], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-FRA-IPTRUNK $GS-00009 | AMS-FRA | ", - "circuits": [ - { - "id": 739045, - "name": "AMS-FRA-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-8/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GARR P_AE12 SRF21107 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1529, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c4/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916097, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-21.100", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c2/2" - ], - "description": "SRV_GLOBAL CUSTOMER CYNET #CYNET-AP2 $GS-00450 | ASN3268 | ", - "circuits": [ - { - "id": 745492, - "name": "CYNET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CYNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CYNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-8/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENATER P_AE14 | RENATER-100GB-LL4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1528, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-0/0/18", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-4/2/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 535, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1063, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-2/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 637, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | RENAM 10G GBS", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 681, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-mgmt-ams-nl.geant.org pS MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1450, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "1/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | HAM-TAR | to RT2.TAR et-0/0/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900034, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-TAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HAM-TAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae11.931", - "bundle": [], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER DFN REDIRIS SRF21028 #fra-mad-DFN-REDIRIS-21028 $GS-00692", - "circuits": [ - { - "id": 719501, - "name": "FRA-MAD-DFN-REDIRIS-21028", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 916, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | FRA-LON2-QFX | to QFX xe-0/0/43", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 545, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 524, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/0/1:1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 532, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae2", - "bundle": [ - "et-0/0/5", - "et-0/1/2" - ], - "bundle-parents": [ - "et-0/0/5", - "et-0/1/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02077 | BIL-POR |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 519, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-POR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BIL-POR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.2023", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET INTERNET2 #AMS-PAR-GEANTOPEN-NORDUNET-INTERNET2-17008 $GS-00959 |", - "circuits": [ - { - "id": 705899, - "name": "AMS-PAR-GEANTOPEN-NORDUNET-INTERNET2-17008", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 962, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/2/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 641, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae18.333", - "bundle": [], - "bundle-parents": [ - "xe-7/0/6" - ], - "description": "SRV_IAS Customer ARN #ES-ARN-AP1-IAS IASGWS $GS-00529 | ASN3208 |", - "circuits": [ - { - "id": 724754, - "name": "ES-ARN-AP1-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1167, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SRX-1 To TS eth1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 519, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1312, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-11/1/2.100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS DTN-PROJECT #DTN-LON-100G-DATA $GS-00143 | 100G Testing CONTACT: Richard.Hughes-Jones@geant.org", - "circuits": [ - { - "id": 736817, - "name": "DTN-LON-100G-DATA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1424, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-1/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 530, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "xe-0/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENAM P_AE10 SRF21066 | RENAM ID: MX240 xe-2/0/1-AP2-L1 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 561, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae2.998", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-kie-ua $GS-00152 | SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 713313, - "name": "EX3400-MANAGEMENT-KIE-UA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 585, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-20:713", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET REDIRIS #SLCUTH-02498 $GS-02498|", - "circuits": [ - { - "id": 745414, - "name": "SLCUTH-02498", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae2.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/5", - "et-0/1/2", - "et-0/1/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #PRA-PRA-IPTRUNK $GS-02545| PRA-PRA | PRA-PRA-MGMT", - "circuits": [ - { - "id": 739239, - "name": "PRA-PRA-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1022, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-PRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PRA-PRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.2023", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL CUSTOMER NORDUNET #NORDUNET-AP1 $GS-00492 | ASN2603 |", - "circuits": [ - { - "id": 661366, - "name": "NORDUNET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1275, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30", - "bundle": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "LAG INFRASTRUCTURE ACCESS SUPERPOP $GA-01938| QFX1.FRA.DE SRX BYPASS", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1125, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae30.111", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L3VPN RE_INTERCONNECT ESNET #NL-ESNET-LHCONE $GS-00835 | ASN293 |", - "circuits": [ - { - "id": 734117, - "name": "NL-ESNET-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1036, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-2", - "bundle": [ - "1/x1/1/c9/1" - ], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02478 | COR-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "COR-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae13", - "bundle": [ - "et-0/0/0" - ], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "LAG CUSTOMER SANET SRF9938829 $GA-02157 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 599, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SANET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SANET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "et-7/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | POZ-POZ | to RT0.POZ.PL 2/1/c11/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1060, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae12.0", - "bundle": [], - "bundle-parents": [ - "et-2/0/5" - ], - "description": "SRV_IAS PRIVATE GOOGLE #GOOGLE-15169-IT $GS-00935 | ASN15169", - "circuits": [ - { - "id": 708198, - "name": "GOOGLE-15169-IT", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 765, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "GOOGLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GOOGLE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "xe-3/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P7", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 536, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #bud-fra-RARE-P4-9951387 $GS-00684 | RARE P4 TESTBED", - "circuits": [ - { - "id": 708177, - "name": "BUD-FRA-RARE-P4-9951387", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 787, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/27", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX10 NIC1 PORT3 - VSAN PORT", - "circuits": [ - { - "id": 658425, - "name": "LON2-PRD-ESX10-NIC1-PORT3", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 646, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c6/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-THE-IPTRUNK $GS-02421 | ATH2-THE | ", - "circuits": [ - { - "id": 745464, - "name": "ATH2-THE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-THE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ATH2-THE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3906", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #Nordunet-Aalto-ExpressRoute-Vlan3906 $GS-01155 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 706994, - "name": "NORDUNET-AALTO-EXPRESSROUTE-VLAN3906", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1197, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRU-PAR-IPTRUNK $GS-02280 | BRU-PAR | ", - "circuits": [ - { - "id": 744055, - "name": "BRU-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 8, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRU-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BRU-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3101", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT AARNET #UK-AARNET $GS-00904 | ASN7575 | CAE1-WL065785-VL3101", - "circuits": [ - { - "id": 661460, - "name": "UK-AARNET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 666, - "dashboards": [ - "CAE1", - "RE_PEER" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae7.0", - "bundle": [], - "bundle-parents": [ - "et-9/0/2", - "et-9/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-BUD-IPTRUNK $GS-00021 | BUC-BUD | ", - "circuits": [ - { - "id": 730444, - "name": "BUC-BUD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 848, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUC-BUD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.14", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01154 $GS-01154", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 597, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c4/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER KREN P_lag-25", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916097, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.2200", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L3VPN RE_INTERCONNECT CANARIE #CANARIE-PAR-LHCONE $GS-00809 | ASN6509", - "circuits": [ - { - "id": 661404, - "name": "CANARIE-PAR-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 625, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/2.904", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #lon-lon2-MISC-GEANT-INTERNET2-9940525 $GS-00732 |", - "circuits": [ - { - "id": 709300, - "name": "LON-LON2-MISC-GEANT-INTERNET2-9940525", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 785, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 594, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23.559", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SWITCH GEANT #fra-gen-SWITCH-RARE-21035 $GS-00700 |", - "circuits": [ - { - "id": 709921, - "name": "FRA-GEN-SWITCH-RARE-21035", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 641, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:3907", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01149 $GS-01149", - "circuits": [ - { - "id": 747630, - "name": "AMS-HAM-MSE-01149", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.55", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS GEANT IT #DataDomain-01-DATA PORT |", - "circuits": [ - { - "id": 745869, - "name": "DATADOMAIN-01-DATA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 711, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.1627", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #gen-par-SCION-SCION-INTERNET2-1 $GS-02297 |", - "circuits": [ - { - "id": 736637, - "name": "GEN-PAR-SCION-SCION-INTERNET2-1", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1153, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae20.200", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-5/1/2" - ], - "description": "SRV_L3VPN RE_INTERCONNECT SINET #NL-SINET-LHCONE $GS-00840 | ASN2907 |", - "circuits": [ - { - "id": 734869, - "name": "NL-SINET-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1284, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "1/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | To FRA01-GRV2- 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900097, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-4", - "bundle": [ - "1/x1/1/c8/1", - "1/x1/1/c8/2" - ], - "bundle-parents": [ - "1/x1/1/c8/1", - "1/x1/1/c8/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02374 | LJU-ZAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-ZAG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LJU-ZAG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.29", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-UCLOUVAIN-ExpressRoute-VLAN4088 $GS-02161 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739665, - "name": "BELNET-UCLOUVAIN-EXPRESSROUTE-VLAN4088", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 609, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ge-1/0/33", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik B IPMI", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 688, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 576, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-owd-vie.at.geant.org pS OWAMP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 862, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-1/0/19", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-4/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 651, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/0/2:3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 535, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae10.1990", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_L3VPN CUSTOMER FCCN #FCCN-AP2-POR-LHCONE $GS-02402 | ASN1930", - "circuits": [ - { - "id": 730599, - "name": "FCCN-AP2-POR-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 582, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-1/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 609, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/0/2.105", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF SRF21105 $GS-00686 | #BUD-PRA-RARE-BMS8", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1154, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.12", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRV_CORPORATE CUSTOMER GEANT_INTERNAL #DASHBOARD-TEST-SERVICE-LON-VODAFONE(DO-NOT-OPEN-TICKET)|", - "circuits": [ - { - "id": 740706, - "name": "SRV_CORPORATE", - "type": "CORPORATE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 890, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | GEN-MIL2 | to RT0.GEN.CH 1/1/c8/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-3/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ESNET P_AE13 SRF9928169 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 868, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.30", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MOBILIT-ExpressRoute-VLAN4089 $GS-02170 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739664, - "name": "BELNET-MOBILIT-EXPRESSROUTE-VLAN4089", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 610, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bud.hu.geant.net", - "name": "2/x1/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | BUD-BUD | to MX1.BUD et-7/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178562, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUD-BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae3.998", - "bundle": [], - "bundle-parents": [ - "xe-3/0/8", - "xe-3/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-mar-fr| SW2-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 719630, - "name": "EX3400-MANAGEMENT-MAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 606, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/5.25", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GARR UBUNTUNET #lon-mil2-ASI-BSC-to-Fucino-Ubuntunet-GARR-20007 $GS-00735", - "circuits": [ - { - "id": 705891, - "name": "LON-MIL2-ASI-BSC-TO-FUCINO-UBUNTUNET-GARR-20007", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 766, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-mgmt-poz-pl.geant.org pS MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 754, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae43.200", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 - CLEAN-IAS | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1362, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE2 | LON2-PRD-ESX02 NIC2 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 656, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/2/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lis-pt-owamp new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 722352, - "name": "PS-LIS-PT-OWAMP", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 798, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/2/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 614, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "1/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | COR-DUB | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916353, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-DUB", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COR-DUB", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae19.114", - "bundle": [], - "bundle-parents": [ - "xe-11/1/3", - "xe-11/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ORACLE CERN #fra-gen-ORACLE-CERN-20094 $GS-00698 |", - "circuits": [ - { - "id": 705442, - "name": "FRA-GEN-ORACLE-CERN-20094", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1054, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 611, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC DE-CIX P_AE20 | DE-CIX Migration 2_2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2501", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA | deltaId+f5c0e052-7c69-4363-9368-8c56d5cfd01c:uuid+ab7479ec-1408-4c49-b3d1-a7d9f580635f | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 706, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COGENT SRF22035 $GA-02147 | EAP GRENA GWS |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1057, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COGENT - VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COGENT - VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "2/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178113, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-25", - "bundle": [ - "1/x1/1/c4/1" - ], - "bundle-parents": [ - "1/x1/1/c4/1" - ], - "description": "LAG CUSTOMER KREN | $GA-02154 | #KREN-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177305, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KREN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KREN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 552, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae10.0", - "bundle": [], - "bundle-parents": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "description": "SRV_GLOBAL CUSTOMER JISC #JISC-AP1 $GS-00479 | ASN786 |", - "circuits": [ - { - "id": 661264, - "name": "JISC-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 770, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/11", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 527, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae12.111", - "bundle": [], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "SRV_L3VPN RE_INTERCONNECT CSTNET #CSTNET-MAR-LHCONE-PRIMARY $GS-00814 | ASN7497 ", - "circuits": [ - { - "id": 729627, - "name": "CSTNET-MAR-LHCONE-PRIMARY", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 637, - "dashboards": [ - "IC1", - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was PSMP Server", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 581, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 638, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ARNES P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE ORACLE P_AE19 | Interxion CID: DE134518 | Oracle CID: GEANT-Interxion-1-2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 866, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "et-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | BIL-POR | Infinera POR01-GRV2 1/1/3 facing Bilbao", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 557, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-POR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-POR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 553, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.2160", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT SINGAREN #UK-SINGAREN-AER-vlan2160 $GS-00908 | ASN23855 |", - "circuits": [ - { - "id": 708101, - "name": "UK-SINGAREN-AER-VLAN2160", - "type": "IP PEERING - R&E", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 747, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.111", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L3VPN CUSTOMER PIONIER #PIONIER-AP1-LHCONE $GS-00844 | ASN8501", - "circuits": [ - { - "id": 661518, - "name": "PIONIER-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 785, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.992", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-HEL-FI | DCN MANAGEMENT", - "circuits": [ - { - "id": 714244, - "name": "DCN-MANAGEMENT-HEL-FI", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 946, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c13/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | LON2-PAR | connected to LON2.GRV4 port 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900289, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ESNET P_AE13 SRF9928017 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 778, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/6.1220", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER ESNET RENATER #AMS-PAR-INFINICORTEX-ESNET-RENATER-15030 $GS-00653 |", - "circuits": [ - { - "id": 734115, - "name": "AMS-PAR-INFINICORTEX-ESNET-RENATER-15030", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1349, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae28", - "bundle": [ - "xe-4/0/4", - "xe-4/3/0" - ], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/3/0" - ], - "description": "LAG UPSTREAM COLT SRF0000001 $GA-02114 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 708, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 574, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 528, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "1/x1/1/c4/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20 | GRNET-AP1-IP2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916097, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae46.0", - "bundle": [], - "bundle-parents": [ - "et-2/0/1" - ], - "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK-32934-FRA-PCDE-90606624 $GS-02483 | ASN32934", - "circuits": [ - { - "id": 737794, - "name": "FACEBOOK-32934-FRA-PCDE-90606624", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1608, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.40", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-FEDPOL-ExpressRoute-VLAN4071 $GS-02525 | ", - "circuits": [ - { - "id": 739671, - "name": "BELNET-FEDPOL-EXPRESSROUTE-VLAN4071", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 672, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.975", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #SLCIMEC-02514 $GS-02514", - "circuits": [ - { - "id": 745330, - "name": "SLCIMEC-02514", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "VLAN", - "snmp-index": 818, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/3.2701", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION EENET #par-tar-SCION-EENET $GS-02356 | ", - "circuits": [ - { - "id": 746441, - "name": "PAR-TAR-SCION-EENET", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1326, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae14", - "bundle": [ - "et-9/1/2" - ], - "bundle-parents": [ - "et-9/1/2" - ], - "description": "LAG PRIVATE FACEBOOK $GA-01852 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 694, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.53", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS FLOWMON #FLOWMON-LON-IDRAC $GS-01193 | DRAC LOM", - "circuits": [ - { - "id": 745870, - "name": "FLOWMON-LON-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 699, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | DDOS Mitigation Server link 1 Node 1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1293, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.2242", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT HARNET #NL-HARNET $GS-02539 | ASN137207 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1747, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "HARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae12.1000", - "bundle": [], - "bundle-parents": [ - "et-4/0/5", - "et-8/0/5", - "et-11/0/2" - ], - "description": "SRV_GLOBAL CUSTOMER GARR #GARR-AP2 $GS-00463 | ASN137 |", - "circuits": [ - { - "id": 663180, - "name": "GARR-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 696, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-2/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE FACEBOOK P_AE46| META ID: PCDE-90606624", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 673, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS JBO (via JISC) DTN $GA-01448 | 100G testing from Jodrell Bank DTN servers", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1266, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae29", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN P_-- | QFX.PAR.FR AE14", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 607, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-4/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | Reserved for SINET 400G upgrade", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 562, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-8/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER KIFU AP2 P_AE18 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 991, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 523, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.20", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-KMA2 $GS-00790", - "circuits": [ - { - "id": 732662, - "name": "GRE-MULTICAST-TUNNEL-KMA2", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1223, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #fra-lon2-SUPERPOP-QFX-GEANT $GS00076 |", - "circuits": [ - { - "id": 729416, - "name": "FRA-LON2-SUPERPOP-QFX-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1018, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | LON-LON2 | TO LON02 GRV1 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899905, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/3/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 625, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PSMP-GN-MANAGEMENT-LON-UK-VLAN0 | psmp-gn-mgmt-lon-uk.geant.org pS MGMT", - "circuits": [ - { - "id": 708299, - "name": "PSMP-GN-MANAGEMENT-LON-UK-VLAN0", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1011, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.32", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT MANLAN #FR-MANLAN $GS-00461 | Notification VLAN Only", - "circuits": [ - { - "id": 714830, - "name": "FR-MANLAN", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1246, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "MANLAN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MANLAN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae5.0", - "bundle": [], - "bundle-parents": [ - "et-5/0/2", - "et-9/0/2", - "et-9/0/5", - "et-9/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAD-MAR-IPTRUNK $GS-00054| MAD-MAR | ", - "circuits": [ - { - "id": 717047, - "name": "MAD-MAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 855, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "et-4/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | LIS-POR | Infinera GRV1 1/1/3 Facing PORto", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 654, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-POR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LIS-POR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4081", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ARPGAN-01130 $GS-01130", - "circuits": [ - { - "id": 744143, - "name": "BELNET-ARPGAN-01130", - "type": "EXPRESS ROUTE", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/3.500", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #City-House-Network-Infrastructure | Network Infrastructure City House", - "circuits": [ - { - "id": 662925, - "name": "CITY-HOUSE-NETWORK-INFRASTRUCTURE", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 548, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae27.100", - "bundle": [], - "bundle-parents": [ - "xe-10/2/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT MAEEN #UK-MAEEN $GS-00921 | ASN8895|", - "circuits": [ - { - "id": 713957, - "name": "UK-MAEEN", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 935, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "MAEEN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MAEEN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE8 | LON2-PRD-ESX12 NIC2 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 660, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-7/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BRA-BUD", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1139, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-3", - "bundle": [ - "1/x1/1/c8/1" - ], - "bundle-parents": [ - "1/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02044 | KAU-POZ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-POZ", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KAU-POZ", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COLT P_ae21 | COLT ID: 444031977 # DX9403226 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 917, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COLT - BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COLT - BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae14", - "bundle": [ - "xe-3/0/2" - ], - "bundle-parents": [ - "xe-3/0/2" - ], - "description": "LAG CUSTOMER CYNET AP1 SRF23077 $GA-02440 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 719, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CYNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CYNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "irb.520", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #IDRAC-MGMT-AMS-NL-VRF-VLAN520 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1586, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/32", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik C Data Port 1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 539, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER LAT P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LAT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/19", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE15 | LON2-PRD-ESX21 NIC2 PORT4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 670, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae3.998", - "bundle": [], - "bundle-parents": [ - "xe-2/0/1", - "xe-2/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-mad-es| SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 702125, - "name": "EX3400-MANAGEMENT-MAD-ES", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 748, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GEANT CORPORATE SRF000001 | GEANT Corporate to MX1.LON - Via Vodafone", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 523, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SRX-1 To Switch Cluster ge-0/0/0 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 513, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "ae0", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01714 | MX AE30", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 583, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS | mx1-sw2-2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1023, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | LON-LON2 | TO LON02 GRV1 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900097, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 523, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | BRA-BRA-MGMT | to RT0.BRA.SK 1/X1/1/C2/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA-MGMT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BRA-MGMT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "2/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | PRA-VIE | to RT0.PRA 2/1/c8/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162113, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 606, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae20", - "bundle": [ - "xe-11/2/3" - ], - "bundle-parents": [ - "xe-11/2/3" - ], - "description": "LAG CUSTOMER GRENA SRF21081 $GA-01860 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 700, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRENA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GRENA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 575, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae14.518", - "bundle": [], - "bundle-parents": [ - "et-1/1/5", - "et-8/0/2", - "et-8/1/2", - "et-8/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER NISN #LON-GEN-CNES-NISN-RENATER-09201 $GS-00723 |", - "circuits": [ - { - "id": 709299, - "name": "LON-GEN-CNES-NISN-RENATER-09201", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 827, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "NISN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-1/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CERN P_AE17 SRF0000001 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1346, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-4/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT IC-1 P_AE12 SRF22102 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 584, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "IC-1", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "IC-1", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-7/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | AMS-AMS | to RT0.AMS 2/1/c19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 551, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae28.100", - "bundle": [], - "bundle-parents": [ - "et-11/0/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT TENET #UK-TENET $GS-01192 | ASN2018", - "circuits": [ - { - "id": 717803, - "name": "UK-TENET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1007, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.11", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON-LON2-UK-MANAGEMENT | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", - "circuits": [ - { - "id": 661935, - "name": "FLOWMON-LON2-UK-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 979, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15", - "bundle": [ - "et-3/1/4" - ], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "LAG CUSTOMER SURF $GA-01919 | SURF AE4 (0c94e02e)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1059, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-8/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE7 | AMT RELAY LINK #1 | TO AMT1.FRA.DE et-0/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1589, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-20.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1", - "1/x1/1/c26/2" - ], - "description": "SRV_GLOBAL CUSTOMER ARNES #ARNES-AP1 $GS-00426 | ASN2107 | ", - "circuits": [ - { - "id": 745714, - "name": "ARNES-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "2/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | GEN-MAR | to to RT1.MAR et-4/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162177, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 548, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-9/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | MAD-MAR | connected to MAD01-GRV2 1/1/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1138, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae3", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01674 | FRA-PRD-ESX03 ESXI Traffic LAG", - "circuits": [ - { - "id": 658678, - "name": "FRANKFURT 15-FRANKFURT 15-LAG-056(GEANT)", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 576, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | PRA BMS Server 9", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 542, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/0/0.103", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #FRA-PAR-RARE-RARE-21101 $GS-00705 |", - "circuits": [ - { - "id": 716207, - "name": "FRA-PAR-RARE-RARE-21101", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 959, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/2/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 554, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 832, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1049, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "2/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | POZ-PRA | to RT1.PRA.CZ et-2/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162114, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3909", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #Nordunet-LTU-ExpressRoute-Vlan3909 $GS-01153 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707121, - "name": "NORDUNET-LTU-EXPRESSROUTE-VLAN3909", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1200, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-11/3/0.111", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DTN-PAR-100G-DATA-LHCONE $GS-99999 | 100G Testing LHCONE CONTACT: Richard.Hughes-Jones@geant.org;", - "circuits": [ - { - "id": 724437, - "name": "DTN-PAR-100G-DATA-LHCONE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 751, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30.3002", - "bundle": [], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-latency-network-fra-de $GS-00312 | Latency network", - "circuits": [ - { - "id": 733022, - "name": "PS-LATENCY-NETWORK-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1130, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 901, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | DDOS Mitigation Server link 2 Node 1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1294, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 521, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.10", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-FRA-DE-TNMS-VLAN10 | ne-esxi-prod-fra-1 VMnetwork", - "circuits": [ - { - "id": 732679, - "name": "NE-ESXI-FRA-DE-TNMS-VLAN10", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1403, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | LON2-LON2 | TO MX1.LON2.UK-et-3/0/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900673, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 634, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-101", - "bundle": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "2/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | DUB-LON | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178497, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "DUB-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "DUB-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae30.3008", - "bundle": [], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access link DNS #INFOBLOX-TEST-PAR-FR $GS-00203 | TEST - Infoblox GRID /// NMAAS IS-IS Listener", - "circuits": [ - { - "id": 712155, - "name": "INFOBLOX-TEST-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1060, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.3501", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02639 $GS-02639 |", - "circuits": [ - { - "id": 745531, - "name": "RARE-02639", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 898, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #CHI-KIE-IPTRUNK $GS-00029 | CHI-KIE IP TRUNK", - "circuits": [ - { - "id": 713101, - "name": "CHI-KIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 607, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-KIE IP TRUNK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CHI-KIE IP TRUNK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.3611", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT MAEEN #NL-MAEEN $GS-00898 | ASN8895 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1756, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "MAEEN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MAEEN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "Reserved for GEANT OC to test Virgin Media link", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 513, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3140", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET SINGAREN #LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3140 $GS-00975 |", - "circuits": [ - { - "id": 705918, - "name": "LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3140", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 763, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 920, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae21.100", - "bundle": [], - "bundle-parents": [ - "et-11/1/0" - ], - "description": "SRV_GLOBAL CUSTOMER ROEDUNET #ROEDUNET-AP2 $GS-00510 | ASN2614 |", - "circuits": [ - { - "id": 679571, - "name": "ROEDUNET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 919, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:3918", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-02328 $GS-02328", - "circuits": [ - { - "id": 747549, - "name": "AMS-HAM-MSE-02328", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-10/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO MAEEN #MAEEN-GEO-UK-1 P_AE27 | SRF21017 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 913, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "MAEEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAEEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.3005", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02639 $GS-02639 |", - "circuits": [ - { - "id": 736109, - "name": "RARE-P4-MANAGEMENT-VLAN26", - "type": "L2SERVICES", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1518, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ge-1/0/34", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik D IPMI", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 731, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.25", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FRANKFURT-DRAC | SuperPOP DRAC", - "circuits": [ - { - "id": 729098, - "name": "FRANKFURT-DRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 969, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.701", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE RARE NETHERLIGHT #AMS-AMS-NETHERLIGHT-RARE-9952733 $GS-00626 |", - "circuits": [ - { - "id": 736101, - "name": "AMS-AMS-NETHERLIGHT-RARE-9952733", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1117, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 516, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae1.3005", - "bundle": [], - "bundle-parents": [ - "xe-5/1/1", - "xe-5/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02641 $GS-02641 | ", - "circuits": [ - { - "id": 739308, - "name": "RARE-P4-MANAGEMENT-VLAN3005", - "type": "L2SERVICES", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 944, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.1338", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SURF SCION #ams-par-SCION-SURF-SCION-23013 $GS-02264 |", - "circuits": [ - { - "id": 726377, - "name": "AMS-PAR-SCION-SURF-SCION-23013", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1121, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 903, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "1/x1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER LAT P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916417, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LAT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/45", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 546, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | LON2-FRA-QFX | to QFX xe-0/0/41", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1566, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.39", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-RVA-ONEM-ExpressRoute-VLAN4067 $GS-02432 | ", - "circuits": [ - { - "id": 739670, - "name": "BELNET-RVA-ONEM-EXPRESSROUTE-VLAN4067", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 683, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10.333", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_IAS CUSTOMER KIFU #KIFU-AP1-IAS IASPS $GS-00575 | ASN1955 | aka KIFU", - "circuits": [ - { - "id": 663070, - "name": "KIFU-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 705, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 852, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-9/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 571, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c17/1", - "bundle": [], - "bundle-parents": [], - "description": "''", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900545, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-9/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | NEEDS OPTIC", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1136, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "xe-0/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 561, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae5.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-CHI-IPTRUNK $GS-00022| BUC-CHI | BUC-CHI-IPTRUNK", - "circuits": [ - { - "id": 745144, - "name": "BUC-CHI-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 614, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "xe-0/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE4 | rt2-sw2(ex3400) ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 562, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | LR optic connected", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1310, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #AMS-FRA-RARE-P4-9951375 $GS-00635 | RARE P4 TESTBED", - "circuits": [ - { - "id": 736076, - "name": "AMS-FRA-RARE-P4-9951375", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1442, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 751, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 887, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae3", - "bundle": [ - "xe-0/1/2", - "xe-0/1/3", - "xe-0/1/4", - "xe-0/1/5" - ], - "bundle-parents": [ - "xe-0/1/2", - "xe-0/1/3", - "xe-0/1/4", - "xe-0/1/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-92018 | BUC-CHI", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 587, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | LON2-PAR-QFX | to QFX xe-1/0/42", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1201, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 548, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | WAS RASH", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 554, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.3009", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX-GRID-PAR-FR | Infoblox Grid-PAR", - "circuits": [ - { - "id": 733983, - "name": "INFOBLOX-GRID-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1304, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/2.602", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET WACREN #lon-lon-UBUNTUNET-WACREN-20103 $GS-00731 |", - "circuits": [ - { - "id": 705895, - "name": "LON-LON-UBUNTUNET-WACREN-20103", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1236, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-LON-IPTRUNK $GS-02269 | AMS-LON | ", - "circuits": [ - { - "id": 738598, - "name": "AMS-LON-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-4/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER DFN P_AE11 |Digital Realty CID: DE225750-3 DFN AP1 400G ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 914, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/14", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 529, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "2/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | GEN-MAR | to RT1.MAR et-4/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162113, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | LR optic connected", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1308, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-2/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 100GB LR4 CFP2 INSTALLED", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 647, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic present", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 676, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.28", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON2-SPLUNK-SERVER1-iDRAC", - "circuits": [ - { - "id": 732437, - "name": "LON2-SPLUNK-SERVER1-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 788, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENATER", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1263, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "lag-9.0", - "bundle": [], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-HAM-IPTRUNK $GS-00010 | AMS-HAM | ", - "circuits": [ - { - "id": 739970, - "name": "AMS-HAM-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-HAM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-HAM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.24", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSESTADKORTRIJK-01138 $GS-01138", - "circuits": [ - { - "id": 744150, - "name": "MSESTADKORTRIJK-01138", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1407, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-7/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | WAS FB-ID: 8644660", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 827, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/0/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #fra-lon2-SUPERPOP-QFX-GEANT $GS-00076 |", - "circuits": [ - { - "id": 729416, - "name": "FRA-LON2-SUPERPOP-QFX-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1071, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae27.102", - "bundle": [], - "bundle-parents": [ - "xe-10/2/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MAEEN ESNET #LON-LON-GEANTOpen-MAEEN-ESNET-22004 $GS-00464 |", - "circuits": [ - { - "id": 738639, - "name": "LON-LON-GEANTOPEN-MAEEN-ESNET-22004", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 588, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MAEEN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "MAEEN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 567, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "lag-7.0", - "bundle": [], - "bundle-parents": [ - "1/1/c11/1", - "1/1/c11/2", - "1/1/c12/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #POZ-PRA-IPTRUNK $GS-02407 | POZ-PRA | ", - "circuits": [ - { - "id": 740495, - "name": "POZ-PRA-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-PRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "POZ-PRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae10", - "bundle": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "bundle-parents": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "description": "LAG CUSTOMER JISC SRF9923031 $GA-01845 | JISC-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 706, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.22", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER GARR MICROSOFT #GARR-ROMA_ExpressRoute_VLAN4088 $GS-01147 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707295, - "name": "GARR-ROMA_EXPRESSROUTE_VLAN4088", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1405, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-20.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER HEANET #HEANET-AP2-IAS IASPS $GS-00573 | ASN1213 | ", - "circuits": [ - { - "id": 747415, - "name": "HEANET-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:2102", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER KIFU NORDUNET #BUD-HAM-02513 $GS-02513", - "circuits": [ - { - "id": 747547, - "name": "BUD-HAM-02513", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c24/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ARNES P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917377, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/29", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX12 NIC2 PORT3 - VSAN PORT", - "circuits": [ - { - "id": 658585, - "name": "LON2-PRD-ESX12-NIC2-PORT3", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 677, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.9", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet_fgov_ExpressRoute_Vlan4090 $GS-01124 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739678, - "name": "BELNET-FGOV-EXPRESSROUTE-VLAN4090", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 592, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-20:2701", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION EENET #SCION-02356 $GS-02356", - "circuits": [ - { - "id": 746463, - "name": "SCION-02356", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SCION", - "interface_type": "LOGICAL" - }, - { - "name": "EENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | COLT GWS Upstream 1_2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 937, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "xe-0/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 559, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/1.10", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX2-SRX1-CH-OFFICE |", - "circuits": [ - { - "id": 662939, - "name": "SRX2-SRX1-CH-OFFICE", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 509, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "irb.50", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SRF22066 #SCION-SCION-FRA-INTERNAL-BRIDGE", - "circuits": [ - { - "id": 732534, - "name": "SCION-SCION-FRA-INTERNAL-BRIDGE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1330, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.1306", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KREONET SWITCH #fra-lon-SCION-SWITCH-KREONET $GS-02294 |", - "circuits": [ - { - "id": 727332, - "name": "FRA-LON-SCION-SWITCH-KREONET", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1247, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "KREONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-1/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE AKAMAI P_AE27 | Interxion ID: DP28378", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 923, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | SPLUNK LON2 PEER02 link Slot7 P1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1592, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae3", - "bundle": [ - "et-3/0/4", - "et-3/1/4" - ], - "bundle-parents": [ - "et-3/0/4", - "et-3/1/4" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02468 | LON2-LON2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 620, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-LON2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LON2-LON2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE5 | LON2-PRD-ESX21 NIC2 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 525, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | uat-psmp.lon2.uk.geant.net OWAMP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1591, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-10/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "xe-3/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P6", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 535, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/12", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE11 | LON2-PRD-ESX01 NIC2 PORT2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 663, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | PREVIOUSLY ORANGE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 649, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "et-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | QSFP LR4 optic installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 556, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 788, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.4006", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC NKN #AMS-LON-5GUK-JISC-NKN-22048 $GS-02162 | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1760, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae16.2001", - "bundle": [], - "bundle-parents": [ - "xe-1/2/1", - "xe-1/2/3", - "xe-2/0/7", - "xe-2/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #ESXI-Management-Lon2 $GS-00074 | ESXI MANAGEMENT", - "circuits": [ - { - "id": 661564, - "name": "ESXI-MANAGEMENT-LON2", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1773, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae30.3006", - "bundle": [], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-CONTROL-IMS-MEDIATION-PAR-FR $GS-00863 | IMS Mediation Gateway for taas-control VRF", - "circuits": [ - { - "id": 712153, - "name": "TAAS-CONTROL-IMS-MEDIATION-LOGICAL-INTERFACE-PAR-FR", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 812, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT UBUNTUNET P_AE17 | Digital Realty CID: NL247648", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 673, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "UBUNTUNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae10.100", - "bundle": [], - "bundle-parents": [ - "xe-0/1/1", - "xe-0/1/2" - ], - "description": "SRV_GLOBAL CUSTOMER URAN #URAN-AP1 $GS-00520 | ASN12687 |", - "circuits": [ - { - "id": 714001, - "name": "URAN-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 588, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 598, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "1/1/c25/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER DFN P_lag-20 | Circuit ID: 2007330347 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610901057, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae13.50", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-10/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER SWITCH #PAR-PAR-GRID5000-RENATER-SWITCH-20026 $GS-00750 |", - "circuits": [ - { - "id": 714182, - "name": "PAR-PAR-GRID5000-RENATER-SWITCH-20026", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 732, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.191", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET REDIRIS #HAM-MAD-02343 $GS-02343", - "circuits": [ - { - "id": 747542, - "name": "HAM-MAD-02343", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 721, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1040, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae7.20", - "bundle": [], - "bundle-parents": [ - "et-7/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON2-LON2-AMT-RELAYLINK-IAS $GS-02638 | ", - "circuits": [ - { - "id": 747034, - "name": "LON2-LON2-AMT-RELAYLINK-IAS", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 931, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae16.100", - "bundle": [], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "SRV_GLOBAL CUSTOMER RASH #RASH-AP1-100G $GS-02325 | ASN57961 |", - "circuits": [ - { - "id": 727800, - "name": "RASH-AP1-100G", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 943, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RASH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RASH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE4 | LON2-PRD-ESX20 NIC2 PORT3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 661, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.101", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE GEANT #AMS-AMS-WP7TSF-RARE-200105-AMS", - "circuits": [ - { - "id": 736083, - "name": "AMS-AMS-WP7TSF-RARE-200105-AMS", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1528, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "1/1/c12/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | POZ-PRA | to RT0.POZ 2/1/c9/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900225, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.6", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #EXFO-MANAGEMENT-VLAN11 | EXFO Management VLAN 11", - "circuits": [ - { - "id": 740506, - "name": "EXFO-MANAGEMENT-VLAN11", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 878, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae21", - "bundle": [ - "xe-5/0/5", - "xe-5/0/6" - ], - "bundle-parents": [ - "xe-5/0/5", - "xe-5/0/6" - ], - "description": "LAG UPSTREAM COLT $GA-02112 | COLT ID: 342349627", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 662, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/10", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 524, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-2/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE APPLE-1 P_AE45 | ASN714", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 696, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 916, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae12", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01684 | FRA-PRD-ESX04 VM Traffic LAG", - "circuits": [ - { - "id": 658677, - "name": "FRANKFURT 15-FRANKFURT 15-LAG-061(GEANT)", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 581, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/12", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE11 | LON2-PRD-ESX01 NIC1 PORT2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 526, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae1", - "bundle": [ - "xe-5/0/8", - "xe-5/0/9" - ], - "bundle-parents": [ - "xe-5/0/8", - "xe-5/0/9" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001| rt1-sw2 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 887, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c8/1", - "2/x1/1/c8/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-ZAG-IPTRUNK $GS-00027 | BUD-ZAG | ", - "circuits": [ - { - "id": 747898, - "name": "BUD-ZAG-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 8, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-ZAG", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUD-ZAG", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:1008", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET RNP #IMINDS-00680 $GS-00680", - "circuits": [ - { - "id": 745349, - "name": "IMINDS-00680", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RNP", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/13", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 529, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-7/0/4", - "et-7/1/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON-LON-IPTRUNK $GS-02467| LON-LON | RT0.LON-MX1.LON", - "circuits": [ - { - "id": 738586, - "name": "LON-LON-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1163, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 692, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae24.100", - "bundle": [], - "bundle-parents": [ - "et-2/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT TENET #NL-TENET $GS-01182 | ASN2018", - "circuits": [ - { - "id": 732999, - "name": "NL-TENET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 972, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/0.937", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS GEANT #BIL-GEN-REDIRIS-RARE $GS-02288 |", - "circuits": [ - { - "id": 726620, - "name": "BIL-GEN-REDIRIS-RARE", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 855, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/3/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 610, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "xe-0/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 559, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae10.111", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-2/1/5", - "et-11/1/0" - ], - "description": "SRV_L3VPN CUSTOMER GARR #GARR-AP1-LHCONE $GS-00825 | ASN137", - "circuits": [ - { - "id": 661882, - "name": "GARR-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 791, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9925113 | psmp-lhc-bw-lon-uk.geant.org pS BWCTL (LHCONE)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1451, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae1.3005", - "bundle": [], - "bundle-parents": [ - "xe-1/3/0", - "xe-1/3/1" - ], - "description": "SRV_VPLS INFRASTRUCTURE VLAN3005 #RARE-P4-B1-POZ | RARE P4 b1.poz MGMT CONTACT: mian.usman@geant.org IMPLEMENTED: 20200116", - "circuits": [ - { - "id": 727552, - "name": "RARE-P4-B1-POZ", - "type": "L2SERVICES", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 840, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "et-3/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | LON2-LON2 | TO RT0.LON2.UK-1/1/C19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 616, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae11.400", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-2/1/5" - ], - "description": "SRV_GCS Customer CESNET MICROSOFT #CESNET-NACIT-ExpressRoute-VLAN400 $GS-02174 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 725107, - "name": "CESNET-NACIT-EXPRESSROUTE-VLAN400", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 939, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae13.203", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-10/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SCION SWITCH #par-par-SCION-SWITCH $GS-02209 |", - "circuits": [ - { - "id": 721429, - "name": "PAR-PAR-SCION-SWITCH", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 969, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-0/0/42", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE14 | 10_GBS to MX1.PAR.FR xe-4/1/7", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 544, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #1 |GEANT-EXR01-AMS21-PRI-06162020 | Digital Realty CID: NL144337-1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 646, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2", - "bundle": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "LAG INFRASTRUCTURE LAN $GA- | Uplink LAG to sw5.lon.uk.geant.net", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 614, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "lag-4", - "bundle": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02267 | AMS-LON", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.954", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER REDIRIS #PSNC-RedIRIS-SLICES-UPV/EHU $GS-02493|", - "circuits": [ - { - "id": 739389, - "name": "PSNC-REDIRIS-SLICES-UPV/EHU", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 915, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "lag-9", - "bundle": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01923 | AMS-HAM", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177289, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-HAM", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-HAM", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "2/1/c9/2", - "2/1/c11/1", - "2/1/c11/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #POZ-POZ-IPTRUNK $GS-02528 | POZ-POZ | POZ-POZ-MGMT", - "circuits": [ - { - "id": 740149, - "name": "POZ-POZ-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-POZ", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "POZ-POZ", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.409", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_GCS CUSTOMER REDIRIS MICROSOFT #RedIRIS-USC-ExpressRoute-Vlan409 $GS-01167 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 708369, - "name": "REDIRIS-USC-EXPRESSROUTE-VLAN409", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1091, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-4/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RASH P_AE16 100G | to MIX MMR ODF MOD5 P01 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 938, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RASH", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RASH", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "1/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | FRA-GEN | to GEN01-GRV2 port 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899777, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:3921", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET RARE #AMS-HAM-02430 $GS-02430", - "circuits": [ - { - "id": 747548, - "name": "AMS-HAM-02430", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae32.0", - "bundle": [], - "bundle-parents": [ - "xe-4/0/0" - ], - "description": "SRV_IAS PRIVATE ORANGE #FR-ORANGE-2280 $GS-02180 | ASN2280 |", - "circuits": [ - { - "id": 720102, - "name": "FR-ORANGE-2280", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 809, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "ORANGE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORANGE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/6.1624", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #fra-par-SCION-SCION-INTERNET2-1 $GS-02296 |", - "circuits": [ - { - "id": 736667, - "name": "FRA-PAR-SCION-SCION-INTERNET2-1", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1336, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4.2710", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER ESnet #lon-poz-PIONIER-ESnet-Quantum-Demo-VL2710 $GS-02557 |", - "circuits": [ - { - "id": 739897, - "name": "LON-POZ-PIONIER-ESNET-QUANTUM-DEMO-VL2710", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1529, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23.611", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L3VPN CUSTOMER SWITCH #SWITCH-UNIBE-LHCONE $GS-02378 | AS216467", - "circuits": [ - { - "id": 729642, - "name": "SWITCH-UNIBE-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 722, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae7.20", - "bundle": [], - "bundle-parents": [ - "et-1/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-AMS-AMT-RELAYLINK-IAS $GS-02636 | ", - "circuits": [ - { - "id": 744351, - "name": "AMS-AMS-AMT-RELAYLINK-IAS", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1711, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/0/2.500", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF #PRA-POZ-RARE-BMS9 $GS-02628", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 870, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19", - "bundle": [ - "et-3/0/4" - ], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "LAG RE_INTERCONNECT INTERNET2 $GA-01477 | INTERNET2-ANA-400G to BOSTON", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 691, - "dashboards": [ - "ANA", - "RE_PEER" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-22", - "bundle": [ - "1/x1/1/c9/1" - ], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "LAG CUSTOMER RESTENA | $GA-01818 | #RESTENA-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177302, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "RESTENA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-DUB-IPTRUNK $GS-02383 | COR-DUB | ", - "circuits": [ - { - "id": 747279, - "name": "COR-DUB-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 6, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-DUB", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COR-DUB", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae33.100", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GLOBAL CUSTOMER NORDUNET #NORDUNET-AP3 $GS-02552 | ASN2603 |", - "circuits": [ - { - "id": 739582, - "name": "NORDUNET-AP3", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1683, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 521, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae28.0", - "bundle": [], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/3/0" - ], - "description": "SRV_IAS UPSTREAM COLT #COLT-GWS-VIE $GS-00070 | ASN3356", - "circuits": [ - { - "id": 720369, - "name": "COLT-GWS-VIE", - "type": "GWS - UPSTREAM", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1006, - "dashboards": [ - "IAS_UPSTREAM" - ], - "dashboard_info": { - "name": "COLT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COLT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #DUB-LON-IPTRUNK $GS-00031 | DUB-LON | ", - "circuits": [ - { - "id": 747278, - "name": "DUB-LON-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "DUB-LON", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DUB-LON", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c26/1" - ], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "LAG CUSTOMER HEANET | $GA-01925 | #HEANET-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae10", - "bundle": [ - "et-2/1/2", - "et-2/1/5", - "et-11/1/0" - ], - "bundle-parents": [ - "et-2/1/2", - "et-2/1/5", - "et-11/1/0" - ], - "description": "LAG CUSTOMER GARR SRF9923977 $GA-01773 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 789, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4065", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MSER-NCCN-ExpressRoute-VLAN4065 $GS-02371 | ", - "circuits": [ - { - "id": 739672, - "name": "BELNET-MSER-NCCN-EXPRESSROUTE-VLAN4065", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1659, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.123", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon-GEANTOpen-ESnet-NORDUNET-15039-1 $GS-00963 |", - "circuits": [ - { - "id": 738642, - "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-1", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1269, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23.600", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SWITCH AMS-IX #AMS-GEN-NREN-IX-AMSIX-SWITCH-18008 $GS-00638 |", - "circuits": [ - { - "id": 734173, - "name": "AMS-GEN-NREN-IX-AMSIX-SWITCH-18008", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1275, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-IX", - "interface_type": "LOGICAL" - }, - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/44", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE30 | to QFX1.LON2.UK xe-0/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 544, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae17.802", - "bundle": [], - "bundle-parents": [ - "xe-0/3/6" - ], - "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET INTERNET2 #AMS-LON-MISC-UBUNTUNET-INTERNET2-170342 $GS-00647 |", - "circuits": [ - { - "id": 735619, - "name": "AMS-LON-MISC-UBUNTUNET-INTERNET2-170342", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1346, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-8/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENATER P_AE14 | RENATER-100GB-LL1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1530, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 576, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "lag-5", - "bundle": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02457 | AMS-AMS", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177285, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae10", - "bundle": [ - "et-0/0/1" - ], - "bundle-parents": [ - "et-0/0/1" - ], - "description": "LAG CUSTOMER RENAM SRF21066 $GA-02016 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 588, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.202", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #UK-INTERNET2-NEA3R-202 $GS-00919 | ASN11537 | NEA3R-Internet2", - "circuits": [ - { - "id": 709338, - "name": "UK-INTERNET2-NEA3R-202", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 836, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 606, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO HBKU #HBKU-GEO-UK-1 $GA-01458 | SRF18085 | Equinix ID: 20873393 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 748, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "HBKU", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HBKU", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-0/0/45", - "bundle": [], - "bundle-parents": [], - "description": "PSY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 545, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.976", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET REDIRIS #SLCUTH-02498 $GS-02498|", - "circuits": [ - { - "id": 745414, - "name": "SLCUTH-02498", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 734, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/45", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 685, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae15.990", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET RENATER #AMS-MAR-ITER-IFERC-SINET-RENATER-24039 $GS-00637 |", - "circuits": [ - { - "id": 738726, - "name": "AMS-MAR-ITER-IFERC-SINET-RENATER-24039", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 732, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4083", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSETHOMASMORE-02475 $GS-02475", - "circuits": [ - { - "id": 744238, - "name": "MSETHOMASMORE-02475", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.31", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER CESNET MICROSOFT #CESNET-NACIT-ExpressRoute-VLAN401 $GS-02175 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 724682, - "name": "CESNET-NACIT-EXPRESSROUTE-VLAN401", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 611, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.50", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DASHBOARD-SERVER-AMS-VLAN50 | DBOARD", - "circuits": [ - { - "id": 736875, - "name": "DASHBOARD-SERVER-AMS-VLAN50", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1515, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1340, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER EENET P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "EENET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "EENET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae12.100", - "bundle": [], - "bundle-parents": [ - "et-2/0/2" - ], - "description": "SRV_IAS PUBLIC AMS-IX #IX-PEERINGS-IN-AMS-IX $GS-00955 |", - "circuits": [ - { - "id": 734937, - "name": "IX-PEERINGS-IN-AMS-IX", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1337, - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "AMS-IX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-IX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1313, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10.2805", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KIFU REDIRIS #UPV/EHU-REDIRIS-KIFU-SLICES-SZTAKI $GS-02518 | ", - "circuits": [ - { - "id": 739311, - "name": "UPV/EHU-REDIRIS-KIFU-SLICES-SZTAKI", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 882, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae30.2001", - "bundle": [], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #ESXI-Management-Par $GS-00075 | ESXI MANAGEMENT", - "circuits": [ - { - "id": 712148, - "name": "ESXI-MANAGEMENT-PAR", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 964, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae47.0", - "bundle": [], - "bundle-parents": [ - "et-2/0/2" - ], - "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK-32934-FRA-PCDE-90606625 $GS-02484| ASN32934", - "circuits": [ - { - "id": 737788, - "name": "FACEBOOK-32934-FRA-PCDE-90606625", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1609, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae13.422", - "bundle": [], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SANET ACONET #BRA-VIE-ACONET-SANET $GS-02379 |", - "circuits": [ - { - "id": 729694, - "name": "BRA-VIE-ACONET-SANET", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 616, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.11", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-FRA-DE-TNMS-VLAN11 | ne-esxi-prod-fra-1 TNMS-VMs Portgroup", - "circuits": [ - { - "id": 732631, - "name": "NE-ESXI-FRA-DE-TNMS-VLAN11", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1404, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "lag-2", - "bundle": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01846 | LON-LON2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "2/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | PRA-VIE | to MX1.VIE et-1/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162114, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-9/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER SURF P_AE11 | 200GB AP2 1_2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1404, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "et-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER FCCN P_AE10 SRF9928603", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 552, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 636, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae3.998", - "bundle": [], - "bundle-parents": [ - "xe-0/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-bra-sk $GS-00149 | SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 731619, - "name": "EX3400-MANAGEMENT-BRA-SK", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 622, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "et-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | BREN AP2 upgrade - needs SR4 optic | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 607, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "et-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | CHI-KIE | RETN CID: OC-904687-3.MD.CSN.TRB-UA.KIV.KPI-50GHZ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 619, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-KIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CHI-KIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 807, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-8/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED FOR DTN-Second port| Needs optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 944, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae12.840", - "bundle": [], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT SINGAREN #FR-IC1-SINGAREN $GS-02320 | ASN134148 | ", - "circuits": [ - { - "id": 727611, - "name": "FR-IC1-SINGAREN", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 586, - "dashboards": [ - "IC1", - "RE_PEER" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915970, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 564, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/18", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE14 | LON2-PRD-ESX20 NIC2 PORT4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 669, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1039, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "1/1/c13/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON2-PAR-ROLR-IPTRUNK $GS-50066 | LON2-PAR | ", - "circuits": [ - { - "id": 746141, - "name": "LON2-PAR-ROLR-IPTRUNK$GS-50066", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 9, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-BRU-IPTRUNK $GS-00008 | AMS-BRU | ", - "circuits": [ - { - "id": 744129, - "name": "AMS-BRU-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 6, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-BRU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-BRU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-1/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | MAR-MIL2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 678, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30.3007", - "bundle": [], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX-FRA-DE | Infoblox vFRA", - "circuits": [ - { - "id": 733007, - "name": "INFOBLOX-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1135, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae10.1945", - "bundle": [], - "bundle-parents": [ - "et-4/1/2" - ], - "description": "SRV_GCS CUSTOMER FCCN MICROSOFT #FCCN-NoveSBE-ExpressRoute-Vlan1945 $GS-01142 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707126, - "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1945", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 738, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-lhc-par-fr.geant.org pS OWAMP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1291, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae19", - "bundle": [ - "xe-5/1/6", - "xe-5/3/4" - ], - "bundle-parents": [ - "xe-5/1/6", - "xe-5/3/4" - ], - "description": "LAG UPSTREAM COGENT SRF9946737 $GA-01898 | Cogent ID: 3-001176117 3-001176119", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 656, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.23", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER GARR MICROSOFT #GARR_UDMilano_ExpressRoute_Vlan4087 $GS-01146 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707644, - "name": "GARR-UDMILANO-EXPRESSROUTE-VLAN4087", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 604, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE2 SRF0000001 | rt1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 559, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE8 | LON2-PRD-ESX12 NIC1 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 522, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.9", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEFGOV-01132 $GS-01132", - "circuits": [ - { - "id": 744263, - "name": "MSEFGOV-01132", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1393, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 558, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT UBUNTUNET SRF0000001 $GA-01452 | GEANT+", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1465, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "UBUNTUNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-1/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 679, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "lag-7", - "bundle": [ - "1/1/c11/1", - "1/1/c11/2", - "1/1/c12/1" - ], - "bundle-parents": [ - "1/1/c11/1", - "1/1/c11/2", - "1/1/c12/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02409 | POZ-PRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177287, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-PRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "POZ-PRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae17.420", - "bundle": [], - "bundle-parents": [ - "xe-11/3/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ASNET-AM ASNET-AM AP2 #fra-fra-EAP-ASNET-AM-AP2-CL-25091 $GS-02652 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1709, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "2/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to AMS01-GRV3 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162049, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae11.666", - "bundle": [], - "bundle-parents": [ - "et-9/0/2", - "et-10/3/0" - ], - "description": "SRV_L3VPN CUSTOMER SURF #SURF-AP2-LHCONE $GS-02413 | ASN1103 |", - "circuits": [ - { - "id": 732253, - "name": "SURF-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1355, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-22", - "bundle": [ - "1/x1/1/c26/1" - ], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "LAG CUSTOMER CARNET | $GA-01865 | #CARNET-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177302, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CARNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CARNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.21", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PS-AMS-NL-IDRAC | PERFSONAR IDRAC", - "circuits": [ - { - "id": 736089, - "name": "PS-AMS-NL-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1514, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "xe-3/0/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 538, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "irb.500", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #RE-AMS-NL-VRF-VLAN500 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1570, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-mgmt-par-fr.geant.org pS MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1266, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | rt1-sw3 (ex3400)|", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 828, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-8/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RESTENA P_AE18 | NEW-FRA-LUX | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 925, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RESTENA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.15", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSENCCN-01136 $GS-01136", - "circuits": [ - { - "id": 744268, - "name": "MSENCCN-01136", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1399, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.56", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #EXFO-MANAGEMENT-VLAN56 | EXFO Management VLAN 30", - "circuits": [ - { - "id": 745836, - "name": "EXFO-MANAGEMENT-VLAN56", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 729, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4.411", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER ESNET #lon-lon-GEANTOpen-Esnet-Esnet-170391 $GS-00962 |", - "circuits": [ - { - "id": 738643, - "name": "LON-LON-GEANTOPEN-ESNET-ESNET-170391", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1516, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae5.7", - "bundle": [], - "bundle-parents": [ - "xe-0/3/0", - "xe-0/3/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NTP5.GEANT.NET", - "circuits": [ - { - "id": 661176, - "name": "NTP5.GEANT.NET", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 685, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-8/0/4", - "bundle": [], - "bundle-parents": [], - "description": "temp cable connected to GRV2 1/1/8 to prove Infinera optic fault", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 916, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 603, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.161", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_GLOBAL CUSTOMER RENATER #RENATER-AP-RTBH $GS-00503 | ASN2200 | For hearing RTBH routes only", - "circuits": [ - { - "id": 661439, - "name": "RENATER-AP-RTBH", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 855, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/2/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-poz-pl-bwctl new | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160524", - "circuits": [ - { - "id": 708161, - "name": "PS-POZ-PL-BWCTL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 829, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.1620", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #par-par-SCION-INTERNET2-SCION-1 $GS-02295 |", - "circuits": [ - { - "id": 736658, - "name": "PAR-PAR-SCION-INTERNET2-SCION-1", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1141, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-COR-MGMT-IPTRUNK $GS-02618 | COR-COR | COR-COR-MGMT", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-COR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COR-COR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae22.333", - "bundle": [], - "bundle-parents": [ - "et-2/0/0" - ], - "description": "SRV_IAS CUSTOMER IUCC #IUCC-AP2-IAS IASGWS $GS-00533 | ASN378 |", - "circuits": [ - { - "id": 729998, - "name": "IUCC-AP2-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 987, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "IUCC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "IUCC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "xe-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 567, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-1", - "bundle": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02472 | PAR-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PAR-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "PAR-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-1/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT NETHERLIGHT | NETHERLIGHT PORT ID: Asd001B-JNX-06 et-0/1/3 (D76BFBF6)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 945, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 592, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mar.fr.geant.net", - "name": "lag-5", - "bundle": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02589 | MAR-MAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177285, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MAR-MAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "2/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | PRA-VIE | to RT0.PRA 2/1/c9/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162177, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "2/1/c30/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KIE-POZ-IPTRUNK $GS-00046 | KIE-POZ | ", - "circuits": [ - { - "id": 740201, - "name": "KIE-POZ-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 6, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-POZ", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIE-POZ", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae21", - "bundle": [ - "et-2/0/2" - ], - "bundle-parents": [ - "et-2/0/2" - ], - "description": "LAG CUSTOMER IUCC SRF9926387 $GA-01831 | IUCC-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 709, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "IUCC", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "IUCC", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915970, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-101.334", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SRV_IAS CUSTOMER BREN #BREN-AP2-IAS IASPS $GS-00558 | ASN6802 |", - "circuits": [ - { - "id": 744964, - "name": "BREN-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "13", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "BREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae18.2001", - "bundle": [], - "bundle-parents": [ - "et-4/0/2" - ], - "description": "SRV_IAS PUBLIC CIXP #IX-Peerings-in-CIXP $GS-00946 |", - "circuits": [ - { - "id": 663212, - "name": "IX-PEERINGS-IN-CIXP", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 864, - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "CIXP", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CIXP", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae17.2128", - "bundle": [], - "bundle-parents": [ - "et-10/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CANARIE SURF #PAR-PAR-CANARIE-SURF-20058 $GS-00749 |", - "circuits": [ - { - "id": 679228, - "name": "PAR-PAR-CANARIE-SURF-20058", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1068, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURFNET", - "interface_type": "LOGICAL" - }, - { - "name": "CANARIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "2/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | LON-LON2 | to LON01.GRV2 - 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162049, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 863, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "irb.260", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN INFRASTRUCTURE ACCESS TAAS GTS #TAAS-CONTROL-LONDON | TAAS CONTROL", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1051, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE IT_INFRA | to QFX xe-1/0/18", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1315, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae7", - "bundle": [ - "et-1/0/5", - "et-1/1/5" - ], - "bundle-parents": [ - "et-1/0/5", - "et-1/1/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01932 | BUC-BUD", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 672, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUC-BUD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae20", - "bundle": [ - "xe-2/0/3", - "xe-2/1/1" - ], - "bundle-parents": [ - "xe-2/0/3", - "xe-2/1/1" - ], - "description": "LAG CUSTOMER NKN $GA-02088 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 710, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NKN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "NKN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | uat-psmp.lon2.uk.geant.net BWCTL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1590, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 551, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE16 | QFX.LON2.UK xe-1/0/47", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1576, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4067", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEAZDELTA-02564 $GS-02564", - "circuits": [ - { - "id": 744149, - "name": "MSEAZDELTA-02564", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-21.111", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c26/1" - ], - "description": "SRV_L3VPN CUSTOMER EENET #EENET-AP2-LHCONE $GS-00819 | ASN3221 | ", - "circuits": [ - { - "id": 745973, - "name": "EENET-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "10", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "EENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1269, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae11.500", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-2/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CESNET #pra-vie-CESNET-AP1-CESNET-AP2 $GS-02344 |", - "circuits": [ - { - "id": 728645, - "name": "PRA-VIE-CESNET-AP1-CESNET-AP2", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 964, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/19", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE15 | LON2-PRD-ESX21 NIC2 PORT2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 535, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.102", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #AMS-PAR-RARE-RARE-21101 $GS-00656 |", - "circuits": [ - { - "id": 736095, - "name": "AMS-PAR-RARE-RARE-21101", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1529, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae32.3000", - "bundle": [], - "bundle-parents": [ - "et-1/0/0", - "et-5/0/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VM-Datanetwork-LON2-AE32 $TBA | VM DATA network", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 920, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SRX-2 To Switch Cluster ge-2/0/0", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 517, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 852, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 608, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae6.0", - "bundle": [], - "bundle-parents": [ - "et-5/1/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS-PAR-IPTRUNK $GS-02633| LIS-PAR | ", - "circuits": [ - { - "id": 745054, - "name": "LIS-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 728, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LIS-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae25", - "bundle": [ - "xe-11/2/6" - ], - "bundle-parents": [ - "xe-11/2/6" - ], - "description": "LAG PRIVATE T-SYSTEMS SRF9939159 $GA-01947 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1141, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-21", - "bundle": [ - "1/x1/1/c9/2" - ], - "bundle-parents": [ - "1/x1/1/c9/2" - ], - "description": "LAG CUSTOMER AMRES | $GA-02239 | #AMRES-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177301, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "AMRES", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMRES", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 591, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae11.333", - "bundle": [], - "bundle-parents": [ - "et-9/1/5" - ], - "description": "SRV_IAS CUSTOMER UOM #UOM-AP1-IAS IASGWS $GS-00548 | ASN12046 | ", - "circuits": [ - { - "id": 722111, - "name": "UOM-AP1-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 651, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "UOM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "UOM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 607, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COGENT P_AE29 | Cogent ID: 3-001176140", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1051, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COGENT - VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COGENT - VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.3001", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT QNREN #lon-par-GEANTOpen-Netherlight-QNREN-15032 $GS-00972 |", - "circuits": [ - { - "id": 736886, - "name": "LON-PAR-GEANTOPEN-NETHERLIGHT-QNREN-15032", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1592, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - { - "name": "QNREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.29", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEUCLOUVAIN-02152 $GS-02152", - "circuits": [ - { - "id": 744146, - "name": "MSEUCLOUVAIN-02152", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1411, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.210", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-uat-fra-de-idrac |perfSONAR UAT IDRAC", - "circuits": [ - { - "id": 732656, - "name": "PS-UAT-FRA-DE-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1412, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-4/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC CIXP P_AE18 | CIXP port: e513-x-yjuxm-1/0/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1435, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "2/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | HAM-POZ | to MX1.POZ et-7/1/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162177, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae28.220", - "bundle": [], - "bundle-parents": [ - "et-11/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 TENET #lon-par-GEANTOPEN-INTERNET2-TENET-19004 $GS-00970 |", - "circuits": [ - { - "id": 736663, - "name": "LON-PAR-GEANTOPEN-INTERNET2-TENET-19004", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 646, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "LOGICAL" - }, - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-21", - "bundle": [ - "1/x1/1/c26/1", - "1/x1/1/c26/2" - ], - "bundle-parents": [ - "1/x1/1/c26/1", - "1/x1/1/c26/2" - ], - "description": "LAG CUSTOMER ULAKBIM | $GA-01904 | #ULAKBIM-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177301, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "lag-8.0", - "bundle": [], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-FRA-IPTRUNK $GS-00009 | AMS-FRA | ", - "circuits": [ - { - "id": 739045, - "name": "AMS-FRA-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #2 P_AE31 | Interxion CID: DE133662-2 | GEANT-FRA32-09XGMR-CIS-2-SEC-11012019", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 855, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-21.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c9/2" - ], - "description": "SRV_IAS CUSTOMER AMRES #AMRES-AP2-IAS IASGWS $GS-02241 | ASN13092 | ", - "circuits": [ - { - "id": 744957, - "name": "AMRES-AP2-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "7", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "AMRES", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMRES", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.2023", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET INTERNET2 #AMS-PAR-GEANTOPEN-NORDUNET-INTERNET2-17008 $GS-00959 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1746, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae8", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01698 | LON2-PRD-ESX12 ESXI Traffic LAG - LACP Passive", - "circuits": [ - { - "id": 658666, - "name": "LON2-PRD-ESX12-ESXI-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 598, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-0/0/17", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 534, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 659, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae6", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01693 | LON2-PRD-ESX10 ESXI Traffic LAG - LACP Passive Enabled", - "circuits": [ - { - "id": 658665, - "name": "LON2-PRD-ESX10-ESXI-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 596, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-9/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | PAR-PAR | TO RT0.PAR 2/1/C19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 887, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PAR-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PAR-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/14", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 530, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/13", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE12 | LON2-PRD-ESX02 NIC1 PORT2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 527, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 914, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.27", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON2-DTN-SERVER-1-iDRAC", - "circuits": [ - { - "id": 726226, - "name": "LON2-DTN-SERVER-1-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 623, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-22:705", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET BELNET #FED4FIRE-00668 $GS-00668", - "circuits": [ - { - "id": 745508, - "name": "FED4FIRE-00668", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae37", - "bundle": [ - "xe-11/2/5" - ], - "bundle-parents": [ - "xe-11/2/5" - ], - "description": "PHY CUSTOMER AZSCIENCENET SRF19095 $GA-01599 | GEANT-10G-Baku-CO-Interxion|", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1690, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "AZSCIENCENET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AZSCIENCENET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 648, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "xe-3/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 537, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-8/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER REDIRIS P_AE16 SRF20096 |Equinix CID: M12I-03D-57/58(on.cable) P1/P2 in odf-mmr pp0101:14102749 (direct)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1142, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-vie-at-management |perfSONAR MGMT", - "circuits": [ - { - "id": 661769, - "name": "PS-VIE-AT-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 999, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-11/1/2.111", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS DTN-PROJECT SRF0000001 | LHCone 100G Testing CONTACT: Richard.Hughes-Jones@geant.org IMPLEMENTED: ????????", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1425, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-3/0/0", - "xe-3/0/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-bil-es $GS-00148 | SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 709869, - "name": "EX3400-MANAGEMENT-BIL-ES", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 522, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1277, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "1/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | MIL2-MIL2 | to RT1.MIL2.IT et-1/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900034, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/3.1305", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SWITCH KREONET #lon-par-SCION-KREONET-SWITCH $GS-02293 |", - "circuits": [ - { - "id": 727330, - "name": "LON-PAR-SCION-KREONET-SWITCH", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1292, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "KREONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "xe-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 569, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae10.3015", - "bundle": [], - "bundle-parents": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC JISC #DUB-LON-NRENBBEXT-JISC-13015 $GS-00690 | backup for niran", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 733, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "xe-3/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 661, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/3.1303", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SWITCH KREONET #ams-par-SCION-KREONET-SWITCH $GS-02291 |", - "circuits": [ - { - "id": 727383, - "name": "AMS-PAR-SCION-KREONET-SWITCH", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1293, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/2/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 615, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-22", - "bundle": [ - "2/x1/1/c2/1" - ], - "bundle-parents": [ - "2/x1/1/c2/1" - ], - "description": "LAG CUSTOMER GRNET | $GA-01364 | #GRNET-LHCONE | GRNET-LHCONE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177302, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.500", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NEA3R SURF #LON-LON-NEA3R-SURF-22015 $GS-00707 |", - "circuits": [ - { - "id": 718304, - "name": "LON-LON-NEA3R-SURF-22015", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1002, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NEA3R", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NEA3R", - "interface_type": "LOGICAL" - }, - { - "name": "SURFNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2", - "bundle": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN $GA-02076 | rt1-sw3 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1017, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae31.300", - "bundle": [], - "bundle-parents": [ - "xe-4/3/5", - "xe-8/0/0" - ], - "description": "SRV_INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 - VM BGP | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 936, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-lhc-owd-fra.de.geant.org pS OWAMP (OWAMP)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 552, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.3020", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SD-WAN-SINET-SINET-17084 $GS-00648 |", - "circuits": [ - { - "id": 740717, - "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17084", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 669, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-9/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC LINX P_AE20 | LINX port: core4-tch-re1 - et-7/5/2 | Equinix CID: 23049089", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1405, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | PAR-LON2-QFX | to QFX xe-0/0/42", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1275, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/0/0.666", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #RARE-PAR-FR | RARE CONTACT: frederic.loui@renater.fr ", - "circuits": [ - { - "id": 716843, - "name": "RARE-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 584, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-5.0", - "bundle": [], - "bundle-parents": [ - "2/1/c8/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2-THE-IPTRUNK $GS-02609 | MIL2-THE | MIL2-THE", - "circuits": [ - { - "id": 745270, - "name": "MIL2-THE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 8, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-THE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-THE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ULAKBIM P_lag-21", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "xe-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | BUC-CHI | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 569, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE DTN-Project #DTN-LON2-10G-DATA $GA-02284 | Under testing ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1572, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | SPLUNK LON2 PEER01 link Slot4 P1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1581, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/1.10", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-SRX2-CH-OFFICE |", - "circuits": [ - { - "id": 662954, - "name": "SRX1-SRX2-CH-OFFICE", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 535, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/5", - "et-0/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS-POR-IPTRUNK $GS-00050 | LIS-POR IP TRUNK", - "circuits": [ - { - "id": 708705, - "name": "LIS-POR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 593, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-POR IP TRUNK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LIS-POR IP TRUNK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER CESNET #ams-pra-IX-CESNET-AMS-12016 $GS-00786|", - "circuits": [ - { - "id": 720237, - "name": "AMS-PRA-IX-CESNET-AMS-12016", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1307, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | MX1-SW1 | (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 573, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MX1-SW1", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MX1-SW1", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae13.106", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #CH-ESNET-IPV6 $GS-00873 | ASN293 | IPv6", - "circuits": [ - { - "id": 730105, - "name": "CH-ESNET-IPV6", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1285, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1197, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.2301", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER LAT SURF #LOFAR-02584 $GS-02584", - "circuits": [ - { - "id": 745938, - "name": "LOFAR-02584", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1707, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - }, - { - "name": "LAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 559, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/2/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 600, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae13.37", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-10/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET SCION #FED4FIRE-00682 $GS-00682", - "circuits": [ - { - "id": 745343, - "name": "FED4FIRE-00682", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "VLAN", - "snmp-index": 735, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-101", - "bundle": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/2/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #ams-fra-IT_INFRA-QFX-GEANT $GS-02556 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1686, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "1/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | KAU-POZ | to RT2.KAU.LT et-0/0/1 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900034, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KAU-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-10/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CERN EXT-2 P_AE22 SRF23043-2 | 18:2a:d3:0f:bd:b0 519 E773-E-RJUXM-2.cern.ch", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1250, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/2/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 587, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-2/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No Optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1035, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-1/0/28", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae0 | RT1 xe-7/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 542, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-101.31", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SRV_IAS PRIVATE OPTIMA-TELEKOM #HR-EduZone $GS-00936 | For Eduzone", - "circuits": [ - { - "id": 747941, - "name": "HR-EDUZONE", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "5", - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "OPTIMA-TELEKOM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "OPTIMA-TELEKOM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-23.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3" - ], - "description": "SRV_IAS CUSTOMER MARNET #MARNET-AP2-IAS IASPS $GS-00537 | ASN44224 | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "18", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "MARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | FRA-PRA | to RT0.FRA 1/1/C9/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900033, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-5/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 988, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bra.sk.geant.net", - "name": "1/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | BRA-BRA-MGMT | to RT1.BRA XE-0/1/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA-MGMT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BRA-MGMT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae49.0", - "bundle": [], - "bundle-parents": [ - "et-2/1/1" - ], - "description": "SRV_IAS PRIVATE GOOGLE #GOOGLE-FRA15-15169-DE $GS-00934 | ASN15169", - "circuits": [ - { - "id": 746058, - "name": "GOOGLE-FRA15-15169-DE", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1441, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "GOOGLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GOOGLE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE5 SRF0000001 | RT1.MIL2 to SW2.MIL2 Connected to SW2.MIL2 xe-0/2/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 603, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 589, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 590, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "1/1/c12/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | PRA-PRA | to RT1.PRA et-0/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900226, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae2.0", - "bundle": [], - "bundle-parents": [ - "et-0/1/5", - "et-1/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL-POR-IPTRUNK $GS-00017 | BIL-POR IP TRUNK", - "circuits": [ - { - "id": 709122, - "name": "BIL-POR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 592, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-POR IP TRUNK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BIL-POR IP TRUNK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.906", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #lon-lon-MISC-GEANT-INTERNET2-9940197 $GS-00726 |", - "circuits": [ - { - "id": 661593, - "name": "LON-LON-MISC-GEANT-INTERNET2-9940197", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1587, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-9/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | no optic installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1137, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ge-1/0/37", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX11 IDRAC", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 691, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-1/3/0.3104", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER AARNET SINGAREN #lon-lon-GEANTOpen-AARNET-SINGAREN-CAE1-20044-VL3104 $GS-00960 | ", - "circuits": [ - { - "id": 705943, - "name": "LON-LON-GEANTOPEN-AARNET-SINGAREN-CAE1-20044-VL3104", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 991, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.310", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DTN-PROJECT-VLAN310 $GS-00142 | DTN-Project CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20171206", - "circuits": [ - { - "id": 740700, - "name": "DTN-PROJECT-VLAN310", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 633, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | FRA-LON2-QFX | to QFX xe-1/0/43", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 547, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "2/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CYNET P_lag-21 | CYNET-AP1-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178114, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CYNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CYNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER HEANET P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae44.0", - "bundle": [], - "bundle-parents": [ - "et-5/1/0" - ], - "description": "SRV_IAS PRIVATE GOOGLE #GOOGLE-2-FRA15-15169-DE $GS-02226 | ASN15169", - "circuits": [ - { - "id": 731227, - "name": "GOOGLE-2-FRA15-15169-DE", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1005, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "GOOGLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GOOGLE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3910", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #Nordunet-HHU-ExpressRoute-Vlan3910 $GS-01156 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 706560, - "name": "NORDUNET-HHU-EXPRESSROUTE-VLAN3910", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1201, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4068", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-AZDELTA-ExpressRoute-VLAN4068 GS-02565 | ", - "circuits": [ - { - "id": 740640, - "name": "BELNET-AZDELTA-EXPRESSROUTE-VLAN4068", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1681, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "2/x1/1/c6/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | ATH2-THE | ATH2-THE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178369, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-THE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ATH2-THE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 | mx1-sw1(ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1053, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 697, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic present", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 684, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1069, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "1/1/c12/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | VIE-VIE | to MX1.VIE et-1/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900226, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae3.103", - "bundle": [], - "bundle-parents": [ - "xe-3/0/8", - "xe-3/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-MAR-FR | ", - "circuits": [ - { - "id": 719643, - "name": "DCN-MANAGEMENT-MAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 605, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae34", - "bundle": [ - "xe-4/2/5", - "xe-4/3/1" - ], - "bundle-parents": [ - "xe-4/2/5", - "xe-4/3/1" - ], - "description": "LAG INFRASTRUCTURE ACCESS | NEMO DDOS Detection 2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 979, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c12/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900225, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-9/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Disable due to interface flapping", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 564, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:cp-1290", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET RENATER #IMINDS-00670 $GS-00670", - "circuits": [ - { - "id": 744061, - "name": "IMINDS-00670", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.991", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-LON2-UK | ", - "circuits": [ - { - "id": 713898, - "name": "DCN-MANAGEMENT-LON2-UK", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 658, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae30.3001", - "bundle": [], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-CONTROL-NAGIOS-PAR-FR $GS-00864 | NAGIOS gateway for taas-control VRF", - "circuits": [ - { - "id": 712156, - "name": "TAAS-CONTROL-NAGIOS-PAR-FR", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 846, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-10/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 901, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-101.103", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-SOF-BG-VRF-VLAN103 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "3", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/3.501", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-City-House-WAN-Gateway |", - "circuits": [ - { - "id": 663189, - "name": "SRX1-CITY-HOUSE-WAN-GATEWAY", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 545, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/6.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER ROEDUNET #buc-chi-RENAM-ROEDUNET-240752 $GS-02576 |", - "circuits": [ - { - "id": 743607, - "name": "BUC-CHI-RENAM-ROEDUNET-240752", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 900, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "2/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | BRA-VIE | to RT1.BRA et-0/0/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162178, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRA-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "et-3/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | LON2-LON2 | TO RT0.LON2.UK-2/1/C19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 680, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER BELNET P_lag-23", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae5", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01697 | LON2-SEC-ESX21 ESXI Traffic LAG - No LACP", - "circuits": [ - { - "id": 658516, - "name": "LON2-SEC-ESX21-ESXI-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 595, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1040, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/7.105", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF SRF21105 $GS-00686 | #BUD-PRA-RARE-BMS8", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 972, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4069", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-RIZIV-INAMI-ExpressRoute-VLAN4069 $GS-02521 | ", - "circuits": [ - { - "id": 739661, - "name": "BELNET-RIZIV-INAMI-EXPRESSROUTE-VLAN4069", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1662, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "et-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | BRA-BRA", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 596, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/29", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX12 NIC1 PORT3 - VSAN PORT", - "circuits": [ - { - "id": 658459, - "name": "LON2-PRD-ESX12-NIC1-PORT3", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 648, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "1/x1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | COR-DUB | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916354, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-DUB", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COR-DUB", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-20:420", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT DFN NKN #AMS-HAM-DFN-NKN-02211 $GS-02211", - "circuits": [ - { - "id": 745577, - "name": "AMS-HAM-DFN-NKN-02211", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae13", - "bundle": [ - "xe-4/0/6", - "xe-4/0/7" - ], - "bundle-parents": [ - "xe-4/0/6", - "xe-4/0/7" - ], - "description": "LAG INFRASTRUCTURE ACCESS | NEMO DDOS Detection 1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1003, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-101.103", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-ZAG-HR-VRF-VLAN103 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "3", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 610, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae29.0", - "bundle": [], - "bundle-parents": [ - "xe-11/0/7", - "xe-11/1/2" - ], - "description": "SRV_IAS UPSTREAM COLT #COLT-GWS-FRA $GS-00069 | ASN3353", - "circuits": [ - { - "id": 732143, - "name": "COLT-GWS-FRA", - "type": "GWS - UPSTREAM", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1154, - "dashboards": [ - "IAS_UPSTREAM" - ], - "dashboard_info": { - "name": "COLT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COLT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae10.100", - "bundle": [], - "bundle-parents": [ - "et-0/0/1" - ], - "description": "SRV_GLOBAL CUSTOMER RENAM #RENAM-AP1 $GS-00500 | ASN9199 |", - "circuits": [ - { - "id": 714072, - "name": "RENAM-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 554, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 599, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.3333", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT OMREN #NL-OMREN $GS-00900 | ASN206350 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1754, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "OMREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "OMREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.204", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT NISN #UK-NISN-NEA3R-204 $GS-00922 | ASN297 | NEA3R-NISN", - "circuits": [ - { - "id": 661526, - "name": "UK-NISN-NEA3R-204", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 862, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "NISN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NISN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "lag-6.0", - "bundle": [], - "bundle-parents": [ - "1/1/c9/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-POZ-IPTRUNK $GS-00043 | KAU-POZ | ", - "circuits": [ - { - "id": 746527, - "name": "KAU-POZ-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-POZ", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KAU-POZ", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | RARE BMS SERVER 6", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1449, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-20.111", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_L3VPN CUSTOMER EENET #EENET-AP1-LHCONE $GS-00818 | ASN3221 | ", - "circuits": [ - { - "id": 746449, - "name": "EENET-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "5", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "EENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO Netherlight #Netherlight-GEO-UK-1 $GA-01481 | SRF9928315 | GeO NETHERLIGHT 100G | NETHERLIGHT ID: e0404963", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1558, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-4/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 999, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 605, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1343, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.240", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON-SINET-EDGE-DEVICE-IDRAC | SINET edge-device-iDRAC", - "circuits": [ - { - "id": 740702, - "name": "LON-SINET-EDGE-DEVICE-IDRAC", - "type": "SERVER LINK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 648, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-26.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/4" - ], - "description": "SRV_IAS PRIVATE SETCOR #SETCOR-HR-61211 $GS-00942 | ASN 61211", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "SETCOR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SETCOR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.6", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-ECMWF2 $GS-01077", - "circuits": [ - { - "id": 732674, - "name": "GRE-MULTICAST-TUNNEL-ECMWF2", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1212, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-0/0/18", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE5 | 10_GBS to RT1.FRA.DE xe-0/3/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 535, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1306, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 582, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/4.1337", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION SURF #ams-gen-SCION-SURF-SCION-23012 $GS-02263 |", - "circuits": [ - { - "id": 726378, - "name": "AMS-GEN-SCION-SURF-SCION-23012", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1259, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "ae2.103", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-CHI2-MD $GS-00128 | DCN MANAGEMENT ", - "circuits": [ - { - "id": 715035, - "name": "DCN-MANAGEMENT-CHI2-MD", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 612, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE2 SRF0000001 | rt1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 563, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.4", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-SCIENSAN0-ExpressRoute-VLAN4073 $GS-02536 | ", - "circuits": [ - { - "id": 739673, - "name": "BELNET-SCIENSAN0-EXPRESSROUTE-VLAN4073", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 587, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-21", - "bundle": [ - "2/x1/1/c26/1" - ], - "bundle-parents": [ - "2/x1/1/c26/1" - ], - "description": "LAG CUSTOMER EENET | $GA-01737 | #EENET-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177301, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "EENET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "EENET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1460, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-9", - "bundle": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01896 | AMS-HAM", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177289, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-HAM", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-HAM", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-2/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE FACEBOOK P_AE47 | META ID: PCDE-90606625", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 675, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2637", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE Test Connection | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 804, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-1/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | VIE-VIE | to RT0.VIE 1/1/c12/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 922, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.300", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ENSTINET #NL-ENSTINET-AP1 $GS-00892 | ASN6879 | AP1", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1731, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ENSTINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ENSTINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.32", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-THOMASMORE-ExpressRoute-VLAN4086 $GS-02476 | ", - "circuits": [ - { - "id": 739668, - "name": "BELNET-THOMASMORE-EXPRESSROUTE-VLAN4086", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 630, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "xe-3/0/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P10", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 663, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/0.10", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-AMS-Infrastructure-Management |", - "circuits": [ - { - "id": 663032, - "name": "SRX1-AMS-INFRASTRUCTURE-MANAGEMENT", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 553, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #SOF-THE-IPTRUNK $GS-02424 | SOF-THE | ", - "circuits": [ - { - "id": 745269, - "name": "SOF-THE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 14, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-THE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SOF-THE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 604, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae13.3507", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-10/0/2" - ], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE RARE P4 #RARE-00774 $GS-00774 |", - "circuits": [ - { - "id": 747031, - "name": "RARE-00774", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 568, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4093", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEMOBILIT-02169 $GS-02169", - "circuits": [ - { - "id": 744269, - "name": "MSEMOBILIT-02169", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.3532", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02644 $GS-02644 |", - "circuits": [ - { - "id": 745529, - "name": "RARE-02644", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 903, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/0/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #bud-poz-RARE-P4-9951383 $GS-00685 | RARE P4 TESTBED", - "circuits": [ - { - "id": 708292, - "name": "BUD-POZ-RARE-P4-9951383", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 799, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae10.3250", - "bundle": [], - "bundle-parents": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #ams-lon-GEANTOpen-JISC-NEA3R $GS-02400 |", - "circuits": [ - { - "id": 732708, - "name": "AMS-LON-GEANTOPEN-JISC-NEA3R", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1165, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4072", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSESCIENSAN-02535 $GS-02535", - "circuits": [ - { - "id": 744226, - "name": "MSESCIENSAN-02535", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae3", - "bundle": [ - "et-7/0/4", - "et-7/1/4" - ], - "bundle-parents": [ - "et-7/0/4", - "et-7/1/4" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02465 | LON-LON", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1157, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LON-LON", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/46", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE31 | MX1.LON2.UK xe-1/2/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 547, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4071", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-FEDPOL-ExpressRoute-VLAN4071 $GS-02525 | ", - "circuits": [ - { - "id": 739671, - "name": "BELNET-FEDPOL-EXPRESSROUTE-VLAN4071", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1663, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae1.25", - "bundle": [], - "bundle-parents": [ - "xe-2/1/7", - "xe-2/2/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SCION-gen-ch | SCION SERVERS", - "circuits": [ - { - "id": 740081, - "name": "SCION-GEN-CH", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1468, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.3007", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #Infoblox-Trinzic805-Lon2-VLAN3007 | Infoblox Trinzic 805 - DNS", - "circuits": [ - { - "id": 679409, - "name": "INFOBLOX-TRINZIC805-LON2-VLAN3007", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 797, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/30", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik A Data Port 2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 678, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "lag-9", - "bundle": [ - "1/1/c11/1", - "1/1/c11/2" - ], - "bundle-parents": [ - "1/1/c11/1", - "1/1/c11/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01853 | BUD-VIE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177289, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-VIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUD-VIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae7.10", - "bundle": [], - "bundle-parents": [ - "et-7/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON2-LON2-AMT-RELAYLINK $GS-02304 | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 930, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.2", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER FCCN MICROSOFT #FCCN_NoveSBE_ExpressRoute_Vlan1945 $GS-01142 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707126, - "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1945", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 585, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-0/0/19", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 536, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MAD-MAR | connected to MAR01-GRV1 1/1/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 676, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-20.12", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER HEANET #HEANET-AP2 $GS-00474 | ASN1213 | ", - "circuits": [ - { - "id": 747414, - "name": "HEANET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "5", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.88", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_GLOBAL CUSTOMER EUMETSAT #EUMET-BUCC-BIL-20117 $GS-00458 | VLAN 88 MONITORING 86", - "circuits": [ - { - "id": 721130, - "name": "EUMET-BUCC-BIL-20117", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 843, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-20:715", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET NORDUNET #ATH2-HAM-02500 $GS-02500", - "circuits": [ - { - "id": 747639, - "name": "ATH2-HAM-02500", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/0/2:2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 534, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae35.0", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_IAS PRIVATE CLOUDFERRO #DE-CLOUDFERRO-IAS $GS-00603 |ASN200999 |", - "circuits": [ - { - "id": 708235, - "name": "DE-CLOUDFERRO-IAS", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1031, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "CLOUDFERRO", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CLOUDFERRO", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-par-fr.geant.org pS OWAMP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 756, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/0/0.111", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN RE_INTERCONNECT CNGI-6IX #UK-CNGI-6IX-CERNET-LHCONE $GS-00815 | ASN23911 |", - "circuits": [ - { - "id": 661398, - "name": "UK-CNGI-6IX-CERNET-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1063, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "CNGI-6IX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CNGI-6IX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae18", - "bundle": [ - "et-4/0/2" - ], - "bundle-parents": [ - "et-4/0/2" - ], - "description": "LAG PUBLIC CIXP SRF9930443 $GA-01881 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 708, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "irb.50", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SRF22066 #SCION-SCION-GEN-INTERNAL-BRIDGE", - "circuits": [ - { - "id": 723798, - "name": "SCION-SCION-GEN-INTERNAL-BRIDGE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 692, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.375", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SINGAREN RARE #AMS-LON-SINGAREN-RARE-123034 $GS-02315 | ", - "circuits": [ - { - "id": 736108, - "name": "AMS-LON-SINGAREN-RARE-123034", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1530, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-lis-pt.geant.org pS OWAMP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 700, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae45", - "bundle": [ - "et-10/1/5" - ], - "bundle-parents": [ - "et-10/1/5" - ], - "description": "LAG PRIVATE APPLE SRF9934309 $GA-02394 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 990, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #2 P_AE20 | Equinix CID: 22903012 | GEANT-EXRJ02-MAD31-SEC-07192024 --P24 in ODF3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 580, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae2.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS2-LON-AMT-IPTRUNK $GS-00012 | ", - "circuits": [ - { - "id": 736813, - "name": "AMS2-LON-AMT-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 584, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15", - "bundle": [ - "et-1/0/5" - ], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "LAG RE_INTERCONNECT MANLAN SRF21042 $GA-01821 | ANA-100G to MANLAN", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 687, - "dashboards": [ - "ANA", - "RE_PEER" - ], - "dashboard_info": { - "name": "MANLAN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MANLAN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae17.0", - "bundle": [], - "bundle-parents": [ - "et-9/1/5" - ], - "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK-32934-LON-FA-1026202 $GS-00928 | ASN32934", - "circuits": [ - { - "id": 708275, - "name": "FACEBOOK-32934-LON-FA-1026202", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1041, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/6.2703", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION WACREN #fra-lon-SCION-WACREN $GS-02496 | ", - "circuits": [ - { - "id": 737890, - "name": "FRA-LON-SCION-WACREN", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1610, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae22.602", - "bundle": [], - "bundle-parents": [ - "xe-10/0/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET WACREN #lon-lon-UBUNTUNET-WACREN-20103 $GS-00731 |", - "circuits": [ - { - "id": 705895, - "name": "LON-LON-UBUNTUNET-WACREN-20103", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1232, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.buc.ro.geant.net", - "name": "lag-20.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER ROEDUNET #ROEDUNET-AP1 $GS-00509 | ASN2614 | ", - "circuits": [ - { - "id": 747908, - "name": "ROEDUNET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "3", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-7/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | LON-LON | to RT0.LON 1/1/c19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1381, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae23.111", - "bundle": [], - "bundle-parents": [ - "et-9/0/5", - "et-10/1/5" - ], - "description": "SRV_L3VPN CUSTOMER CESNET #CESNET-AP2-LHCONE $GS-02455 | ASN2852", - "circuits": [ - { - "id": 733852, - "name": "CESNET-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1109, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE ORACLE P_AE40 | Interxion CID: DE188623| Oracle CID: GEANT-Interxion-2-1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 902, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae41.300", - "bundle": [], - "bundle-parents": [ - "xe-0/2/1", - "xe-0/2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 - VM BGP | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1356, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-1/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENATER P_AE14 | RENATER-100GB-LL3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1347, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1061, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.252", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_IAS CUSTOMER REDIRIS #REDIRIS-AP1-IAS IASPS $GS-00581 | ASN766", - "circuits": [ - { - "id": 719126, - "name": "REDIRIS-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 860, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.519", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT RE_INTERCONNECT NISN RENATER #lon-par-CNES-NISN-RENATER $GS-00736 |", - "circuits": [ - { - "id": 709305, - "name": "LON-PAR-CNES-NISN-RENATER", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 826, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NISN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NISN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-3/0/4", - "et-3/1/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON2-LON2-IPTRUNK $GS-02470| LON2-LON2 | RT0.LON2-MX1.LON2", - "circuits": [ - { - "id": 738843, - "name": "LON2-LON2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1137, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-LON2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LON2-LON2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT UBUNTUNET SRF996314 $GA-01463", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1471, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "UBUNTUNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.3503", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02641 $GS-02641 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 871, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.31", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS Customer CESNET MICROSOFT #CESNET-NACIT-ExpressRoute-VLAN400 $GS-02174 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 725107, - "name": "CESNET-NACIT-EXPRESSROUTE-VLAN400", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1413, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16", - "bundle": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "LAG CUSTOMER REDIRIS SRF21114 $GA-01800 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 654, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/4.200", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION SWITCH #gen-gen-SCION-SWITCH $GS-02199 |", - "circuits": [ - { - "id": 720418, - "name": "GEN-GEN-SCION-SWITCH", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 728, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | rt1-sw2 (ex3400) | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 538, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1468, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae18.2602", - "bundle": [], - "bundle-parents": [ - "et-8/0/2" - ], - "description": "SRV_GLOBAL CUSTOMER RESTENA #RESTENA-AP1 $GS-00507 | ASN2602 |", - "circuits": [ - { - "id": 732142, - "name": "RESTENA-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1162, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RESTENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae27.4002", - "bundle": [], - "bundle-parents": [ - "et-5/0/2" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT T-SYSTEMS #NL-T-SYSTEMS-R&E $GS-02329 | ASN6878 |", - "circuits": [ - { - "id": 734872, - "name": "NL-T-SYSTEMS-R&E", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1319, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae17.400", - "bundle": [], - "bundle-parents": [ - "xe-11/3/4" - ], - "description": "SRV_GLOBAL CUSTOMER ASNET-AM #ASNET-AM-AP2 $GS-02650 | ASN47623 |", - "circuits": [ - { - "id": 746552, - "name": "ASNET-AM-AP2", - "type": "GEANT IP", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1452, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/0/1:2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 530, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.25", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER NORDUNet SUNET #NORDUNet-SUNET-ExpressRoute-VLAN3914 $GS-01160 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 713462, - "name": "NORDUNET-SUNET-EXPRESSROUTE-VLAN3914", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1408, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae10.100", - "bundle": [], - "bundle-parents": [ - "et-7/0/2" - ], - "description": "SRV_GLOBAL CUSTOMER LITNET #LITNET-AP2 $GS-00487 | ASN2847 |", - "circuits": [ - { - "id": 745339, - "name": "LITNET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 881, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LITNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LITNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-0/0/17", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae13 | 10_GBS to RT1.FRA.DE xe-5/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 534, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4073", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-SCIENSAN0-ExpressRoute-VLAN4073 $GS-02536 | ", - "circuits": [ - { - "id": 739673, - "name": "BELNET-SCIENSAN0-EXPRESSROUTE-VLAN4073", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1664, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/0/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #bud-poz-RARE-P4-9951383 $GS-00685 | RARE P4 TESTBED", - "circuits": [ - { - "id": 708292, - "name": "BUD-POZ-RARE-P4-9951383", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 786, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 | QFX xe-0/0/28", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 543, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae11.1103", - "bundle": [], - "bundle-parents": [ - "et-9/0/2", - "et-10/3/0" - ], - "description": "SRV_GLOBAL CUSTOMER SURF #SURF-AP2 $GS-00513 | ASN1103 |", - "circuits": [ - { - "id": 660540, - "name": "SURF-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 859, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/0/6.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-par-fr-management |perfSONAR MGMT", - "circuits": [ - { - "id": 722336, - "name": "PS-PAR-FR-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1050, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "lag-6", - "bundle": [ - "1/1/c9/2" - ], - "bundle-parents": [ - "1/1/c9/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01812 | KAU-POZ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177286, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-POZ", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KAU-POZ", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae13.104", - "bundle": [], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #UK-ESNET-IPV4 $GS-00915 | ASN293 | Lon-ESnet-IPv4-400G", - "circuits": [ - { - "id": 730143, - "name": "UK-ESNET-IPV4", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 964, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | SPLUNK AMS PEER01 link 1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 630, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.2128", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CANARIE SURF #PAR-PAR-CANARIE-SURF-20058 $GS-00749 |", - "circuits": [ - { - "id": 679228, - "name": "PAR-PAR-CANARIE-SURF-20058", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1067, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURFNET", - "interface_type": "LOGICAL" - }, - { - "name": "CANARIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/0/2:1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 536, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON-LON2-IPTRUNK $GS-00052 | LON-LON2 | ", - "circuits": [ - { - "id": 738842, - "name": "LON-LON2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-LJU-SI-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-20.333", - "bundle": [], - "bundle-parents": [ - "1/1/c25/1" - ], - "description": "SRV_IAS CUSTOMER DFN #DFN-AP2-IAS IASPS $GS-00567 | ASN680 | ", - "circuits": [ - { - "id": 745580, - "name": "DFN-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "7", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 556, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c6/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-THE-IPTRUNK $GS-02421 | ATH2-THE | ", - "circuits": [ - { - "id": 745464, - "name": "ATH2-THE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 9, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-THE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ATH2-THE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "xe-0/1/2", - "xe-0/1/3", - "xe-0/1/4", - "xe-0/1/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-CHI-IPTRUNK $GS-90022| BUC-CHI | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 553, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER BELNET P_lag-23", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-5", - "bundle": [ - "2/x1/1/c8/1", - "2/x1/1/c8/2" - ], - "bundle-parents": [ - "2/x1/1/c8/1", - "2/x1/1/c8/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01733 | BUC-SOF", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177285, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-SOF", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUC-SOF", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae1.26", - "bundle": [], - "bundle-parents": [ - "xe-4/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-det2-vie-at-idrac | NEMO DDOS Detection 2 iDRAC | MT-TEST-DEV01-VIE", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 663, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF SRF0000001 | uat-psmp.lon2.uk.geant.net MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1589, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | psmp-gn-bw-lon-uk.geant.org pS BWCTL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1450, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "1/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | to AMS01-GRV1 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900097, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "lag-5", - "bundle": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01888 | FRA-GEN", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177285, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.2703", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER BELNET #SLCIMEC-02488 $GS-02488", - "circuits": [ - { - "id": 745341, - "name": "SLCIMEC-02488", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "VLAN", - "snmp-index": 777, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #AMS-FRA-RARE-P4-9951375 $GS-00635 | RARE P4 TESTBED", - "circuits": [ - { - "id": 736076, - "name": "AMS-FRA-RARE-P4-9951375", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1526, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 656, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-2/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GARR P_AE10 SRF21107|", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 711, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae16.0", - "bundle": [], - "bundle-parents": [ - "et-11/3/0" - ], - "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK-32934-VIE-FC-203126783 $GS-00930 | ASN32934", - "circuits": [ - { - "id": 738665, - "name": "FACEBOOK-32934-VIE-FC-203126783", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 722, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-2/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | GEN-MAR | to rt0.gen 2/1/c9/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 700, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-2/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT TENET P_AE24 SRF21084 | Interxion CID NL189955", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 957, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | SPLUNK AMS PEER01 link 2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 631, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "et-5/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS IT REFRESH P_AE30 | qfx1.lon2.uk et-1/0/52", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 747, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/2/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lis-pt-bwctl new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 722353, - "name": "PS-LIS-PT-BWCTL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 803, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 939, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-2/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC DE-CIX P_AE22 | Digital Realty CID: FR261961 | DE-CIX ID: : DXDB:PNI:31850", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 698, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae30.3003", - "bundle": [], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-throughput-network-par-fr $GS-00354 | Throughput network", - "circuits": [ - { - "id": 712151, - "name": "PS-THROUGHPUT-NETWORK-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1468, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/2/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-loc-xx-management |perfSONAR MGMT", - "circuits": [ - { - "id": 721398, - "name": "PS-LOC-XX-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 828, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.334", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_IAS PRIVATE NORDUNET #NL-NORDUNET-IX-2603 $GS-00939 | ASN2603 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1734, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae4", - "bundle": [ - "et-1/0/5", - "et-1/1/2", - "et-2/0/2" - ], - "bundle-parents": [ - "et-1/0/5", - "et-1/1/2", - "et-2/0/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02087 | BIL-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 520, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BIL-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON2-LON2-IPTRUNK $GS-02470 | LON2-LON2 | RT0.LON2-MX1.LON2", - "circuits": [ - { - "id": 738843, - "name": "LON2-LON2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-LON2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LON2-LON2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 650, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "2/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | LON2-PAR | TO PAR.GRV3 - 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162241, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-5/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT SINET P_AE20 | Digital Realty CID: NL248167", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 990, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/13", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE12 | LON2-PRD-ESX02 NIC2 PORT2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 664, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-20.83", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER LAT #LAT-AP1 $GS-00484 | ASN5538 | ", - "circuits": [ - { - "id": 745983, - "name": "LAT-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.673", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT KREONET #NL-KREONET $GS-00897 | ASN17579 |", - "circuits": [ - { - "id": 734548, - "name": "NL-KREONET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1116, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "KREONET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KREONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | FRA-PRA | TO RT1.PRA.CZ-et-0/1/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900033, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae32.3000", - "bundle": [], - "bundle-parents": [ - "et-8/0/5", - "et-8/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VM-Datanetwork-AMS-IRB $TBA | VM DATA network", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1719, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 752, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | NEMO DDOS SERVER link 2 Node 2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1286, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.25", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01161 $GS-01161", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 606, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 620, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-10/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 910, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER URAN SRF21-059|URAN Circuit ID:GEANT-POZ-IEV-2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 561, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae2", - "bundle": [ - "xe-0/1/0" - ], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-02025 | rt1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 580, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-2/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | BIL-PAR | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1029, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.991", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-COP-DK | DCN MANAGEMENT", - "circuits": [ - { - "id": 714243, - "name": "DCN-MANAGEMENT-COP-DK", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 945, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4080", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEUCLOUVAIN-02152 $GS-02152", - "circuits": [ - { - "id": 744146, - "name": "MSEUCLOUVAIN-02152", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "ae10.333", - "bundle": [], - "bundle-parents": [ - "xe-0/1/1", - "xe-0/1/2" - ], - "description": "SRV_IAS CUSTOMER URAN #URAN-AP2-IAS IASPS $GS-00594 | ASN12687 |", - "circuits": [ - { - "id": 714004, - "name": "URAN-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 611, - "dashboards": [ - "EAP", - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-1/3/0.1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO AARNET #AARNET-GEO-UK-1 | SRF20044|", - "circuits": [ - { - "id": 719818, - "name": "AARNET-GEO-UK-1", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1169, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AARNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY Surfnet Secondary - Service ID: 3287IR2 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 515, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02196 |SCION server 1 external port", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1282, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/14", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE13 | LON2-PRD-ESX03 NIC1 PORT2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 528, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "irb.518", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #CORIANT-MGMT-LON2-UK-VRF-VLAN518 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1575, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c18/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ARNES P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916994, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1339, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae22.201", - "bundle": [], - "bundle-parents": [ - "et-10/0/2", - "et-11/0/5" - ], - "description": "SRV_GLOBAL CUSTOMER CERN #CERN-AP1-EXT2 $GS-00443 | ASN513 |", - "circuits": [ - { - "id": 701593, - "name": "CERN-AP1-EXT2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1237, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE ORACLE P_AE19 | Interxion CID: DE129680 | Oracle CID: GEANT-Interxion-1-1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 865, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-3/0/4", - "xe-3/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-pra-cz| SW2-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 725173, - "name": "EX3400-MANAGEMENT-PRA-CZ", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 948, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/3/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER AZSCIENCENET AZSCIENCENET #fra-fra-EAP-AZSCIENCENET-CL-190961 $GS-00694 | ", - "circuits": [ - { - "id": 723801, - "name": "FRA-FRA-EAP-AZSCIENCENET-CL-190961", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1035, - "dashboards": [ - "EAP", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "AZSCIENCENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AZSCIENCENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-20.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1" - ], - "description": "SRV_IAS CUSTOMER BREN #BREN-AP1-IAS IASPS $GS-00557 | ASN6802 | ", - "circuits": [ - { - "id": 744956, - "name": "BREN-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "9", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "BREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/25", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX02 NIC2 PORT3 - VSAN PORT", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 673, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 571, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae20", - "bundle": [ - "et-9/1/2", - "et-11/0/2" - ], - "bundle-parents": [ - "et-9/1/2", - "et-11/0/2" - ], - "description": "LAG PUBLIC LINX SRF9929379 $GA-01839 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 716, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was IUCC: GNT-E10-006", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 852, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-101.103", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-TAR-EE-VRF-VLAN103 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "8", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 806, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.33", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-KULEUVEN-EXPRESSROUTE-4084 $GS-01135 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739669, - "name": "BELNET-KULEUVEN-EXPRESSROUTE-4084", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 671, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-101", - "bundle": [ - "1/1/c2/1", - "1/1/c2/2" - ], - "bundle-parents": [ - "1/1/c2/1", - "1/1/c2/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.701", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT RARE #AMS-AMS-NETHERLIGHT-RARE-9952733 $GS-00626 | ", - "circuits": [ - { - "id": 736101, - "name": "AMS-AMS-NETHERLIGHT-RARE-9952733", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1532, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4.2031", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon-GEANTOpen-Esnet-NORDUNET-15039-3 $GS-00965 |", - "circuits": [ - { - "id": 738641, - "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-3", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1519, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "xe-0/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE3 | rt1-sw2(ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 562, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae1.403", - "bundle": [], - "bundle-parents": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS WP6 Netronome server # Netronome-MANAGEMENT-LON2-UK |SRV MGMT CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180502", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 903, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "1/1/c13/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | LON2-PAR | connected to PAR.GRV6 port 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900289, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.953", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KIFU REDIRIS #UPV/EHU-REDIRIS-KIFU-SLICES-SZTAKI $GS-02518 |", - "circuits": [ - { - "id": 739311, - "name": "UPV/EHU-REDIRIS-KIFU-SLICES-SZTAKI", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 902, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 649, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae11.333", - "bundle": [], - "bundle-parents": [ - "et-9/0/2", - "et-10/3/0" - ], - "description": "SRV_IAS CUSTOMER SURF #SURF-AP2-IAS IASPS $GS-00588 | ASN1103 |", - "circuits": [ - { - "id": 660399, - "name": "SURF-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 860, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 515, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae14.1290", - "bundle": [], - "bundle-parents": [ - "et-1/1/5", - "et-8/0/2", - "et-8/1/2", - "et-8/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET RENATER #IMINDS-00670 $GS-00670", - "circuits": [ - { - "id": 744061, - "name": "IMINDS-00670", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 774, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-4/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC DE-CIX P_AE14 | DXDB:PNI:11663 Equinix CID: 23175631", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 977, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/0/1:0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 528, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "irb.999", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-vie-at-mgmt-vrf-vlan999|", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 683, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c11/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900161, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae45", - "bundle": [ - "et-2/0/5" - ], - "bundle-parents": [ - "et-2/0/5" - ], - "description": "LAG PRIVATE APPLE SRF9934309 $GA-02396 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 704, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-5.0", - "bundle": [], - "bundle-parents": [ - "1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-PAR-IPTRUNK $GS-02477 | COR-PAR | ", - "circuits": [ - { - "id": 747412, - "name": "COR-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 7, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COR-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:2103", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET PIONIER #HAM-POZ-02494 $GS-02494", - "circuits": [ - { - "id": 747540, - "name": "HAM-POZ-02494", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-POZ-IPTRUNK $GS-00043 | KAU-POZ | ", - "circuits": [ - { - "id": 746527, - "name": "KAU-POZ-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-POZ", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KAU-POZ", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/13", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 529, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 928, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae17.333", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-1/1/2" - ], - "description": "SRV_IAS CUSTOMER CERN #CERN-AP1-IAS IASPS $GS-00562 | ASN513", - "circuits": [ - { - "id": 663049, - "name": "CERN-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 748, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COGENT P_AE32 | Interxion ID: IXDE-17030 | Cogent ID: 3-001176128", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 858, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COGENT - FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COGENT - FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12", - "bundle": [ - "et-2/1/2" - ], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "LAG RE_INTERCONNECT CAE1 SRF19005 $GA-01843 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1705, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "CAE1", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CAE1", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "ae14", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN | QFX.LON2.UK AE29", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 593, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-9/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | BUC-BUD", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1128, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.3018", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-PAR-SINET-SD-WAN-SINET-SINET-17091 $GS-00660 |", - "circuits": [ - { - "id": 736074, - "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17091", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1081, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae28.420", - "bundle": [], - "bundle-parents": [ - "et-11/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER TENET NEA3R #lon-lon-GEANTOPEN-NEA3R-TENET-18097 $GS-00971 |", - "circuits": [ - { - "id": 718087, - "name": "LON-LON-GEANTOPEN-NEA3R-TENET-18097", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 694, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/5.1500", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT RE_INTERCONNECT UBUNTUNET NETHERLIGHT #AMS-LON-JIVE-NETHERLIGHT-UBUNTUNET-12008 $GS-00645 |", - "circuits": [ - { - "id": 734613, - "name": "AMS-LON-JIVE-NETHERLIGHT-UBUNTUNET-12008", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1494, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC INEX P_lag-21", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.10", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #GEANT-CORPORATE-ViaVodafone | GEANT Corporate to SRX2.CH - Via Vodafone", - "circuits": [ - { - "id": 740704, - "name": "GEANT-CORPORATE-VIAVODAFONE", - "type": "CORPORATE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 831, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1264, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-10/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | WAS BIL-MAD", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1046, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-24.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER RASH #RASH-AP2 $GS-00497 | ASN57961 | ", - "circuits": [ - { - "id": 745010, - "name": "RASH-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "15", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RASH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RASH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae12.1005", - "bundle": [], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT CSTNET #FR-IC1-CSTNET-PRIMARY $GS-02358 | ASN7497 | ", - "circuits": [ - { - "id": 729009, - "name": "FR-IC1-CSTNET-PRIMARY", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 621, - "dashboards": [ - "IC1", - "RE_PEER" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.mad.es.geant.net", - "name": "lag-1", - "bundle": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02592 | MAD-MAD", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MAD-MAD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | GEN-MIL2 | to RT1.MIL2 et-9/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/3/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | RESERVED FOR LAN SW - AK", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 611, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS DTN SRF0000001 $GA-01478 | DATA 10G", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 849, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae2.103", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-KIE1-UA $GS-00131 | DCN MANAGEMENT ", - "circuits": [ - { - "id": 713312, - "name": "DCN-MANAGEMENT-KIE1-UA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 584, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "1/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | FRA-GEN | to GEN01-GRV2 port 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899905, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae34", - "bundle": [ - "xe-11/3/3" - ], - "bundle-parents": [ - "xe-11/3/3" - ], - "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE #2 FOR NORDUNET SRF19135 $GA-01965 | GEANT-FRA32-09XGMR-CIS-2-SEC-12062019", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1204, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-11/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC P_AE10 SRF18084 | JISC-AP1-LL2 | JISC ID: TCF:21304-23275", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1655, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "irb.3006", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-CONTROL-IMS-MEDIATION-LOGICAL-INTERFACE-PAR-FR $GS-00863 | IMS Mediation Gateway for taas-control VRF", - "circuits": [ - { - "id": 712153, - "name": "TAAS-CONTROL-IMS-MEDIATION-LOGICAL-INTERFACE-PAR-FR", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 782, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "irb.370", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN CUSTOMER SCION SRF22092 #SCION-SCION-PAR-INTERNAL-VPN-VL370 $GS-02215 |", - "circuits": [ - { - "id": 723805, - "name": "SCION-SCION-PAR-INTERNAL-VPN-VL370", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1098, - "dashboards": [ - "NREN" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1336, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.1214", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER HEANET RARE #ams-cor-00633 $GS-00633", - "circuits": [ - { - "id": 747413, - "name": "AMS-COR-00633", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1535, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-7/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | BUD-ZAG", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1133, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUD-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:3505", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER BELNET #SLCIMEC-02488 $GS-02488", - "circuits": [ - { - "id": 745341, - "name": "SLCIMEC-02488", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "1/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | COR-COR | TO RT1.COR.IE-XE-0/1/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-COR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COR-COR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.39", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSERVAONEM-02431 $GS-02431", - "circuits": [ - { - "id": 744145, - "name": "MSERVAONEM-02431", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1420, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-20:cp-2009", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER LAT SURF #LOFAR-00663 $GS-00663", - "circuits": [ - { - "id": 745942, - "name": "LOFAR-00663", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - }, - { - "name": "LAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3160", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT SINGAREN #UK-CAE1-SINGAREN $GS-00912 | ASN23855 | CAE1-WL065785-VL3160", - "circuits": [ - { - "id": 661924, - "name": "UK-CAE1-SINGAREN", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1709, - "dashboards": [ - "CAE1", - "RE_PEER" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1263, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-7/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 1X100GE CFP installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 584, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.1", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-CBG-Lab $GS-00791", - "circuits": [ - { - "id": 732673, - "name": "GRE-MULTICAST-TUNNEL-CBG-LAB", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1210, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-8/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | no optic installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1149, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.2", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-NCI-CSIRO $GS-01084", - "circuits": [ - { - "id": 732658, - "name": "GRE-MULTICAST-TUNNEL-NCI-CSIRO", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1211, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02189 |SCION server 2 internal port", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1307, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC INEX P_lag-21", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae17.1", - "bundle": [], - "bundle-parents": [ - "et-10/0/5" - ], - "description": "PHY CUSTOMER_GEO SURF #SURF-GEO-FR-1 | P_AE17 SRF18071|Circuit ID: FR108917 | Netherlight Port:Pr003a-jnx-01: et-0/0/1", - "circuits": [ - { - "id": 719822, - "name": "SURF-GEO-FR-1", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 639, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-20.200", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER EENET #EENET-AP1-IAS IASPS $GS-00568 | ASN3221 | ", - "circuits": [ - { - "id": 746448, - "name": "EENET-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "EENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae28.2062", - "bundle": [], - "bundle-parents": [ - "et-11/0/5" - ], - "description": "SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-TENET-LON-LHCONE $GS-02167 | ASN27750", - "circuits": [ - { - "id": 720027, - "name": "REDCLARA-TENET-LON-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1230, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.18", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-IMPA $GS-01079", - "circuits": [ - { - "id": 732669, - "name": "GRE-MULTICAST-TUNNEL-IMPA", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1221, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | VIE EX3400 XE-0/2/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1052, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE4 | LON2-PRD-ESX20 NIC2 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 524, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "1/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | PRA-PRA | to RT1.PRA et-0/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900034, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-8/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 990, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "1/x1/1/c4/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC P_lag-22", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916097, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15", - "bundle": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "LAG CUSTOMER REDIRIS | $GA-01780 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 688, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-SOF-BG-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23.333", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_IAS CUSTOMER SWITCH #SWITCH-AP1-IAS IASPS $GS-00589 | ASN559", - "circuits": [ - { - "id": 663229, - "name": "SWITCH-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1273, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-23.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c27/1", - "2/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER ULAKBIM #ULAKBIM-AP2-IAS IASPS $GS-00592 | ASN8517 | ", - "circuits": [ - { - "id": 745011, - "name": "ULAKBIM-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "19", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 | mx1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 922, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-2/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 728, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-20:710", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET BELNET #SLCIMEC-02518 $GS-02518|", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.500", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_GLOBAL CUSTOMER INTERNET2 #INTERNET2-TESTVLAN-RTT $GS-00475 | TEST VLAN FOR NYC-PAR RTT", - "circuits": [ - { - "id": 677814, - "name": "INTERNET2-TESTVLAN-RTT", - "type": "GEANT IP", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 858, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae45.0", - "bundle": [], - "bundle-parents": [ - "et-10/1/5" - ], - "description": "SRV_IAS PRIVATE APPLE #DE-APPLE-IAS $GS-02395 | ASN714 |", - "circuits": [ - { - "id": 730364, - "name": "DE-APPLE-IAS", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 991, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "APPLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "APPLE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.0", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GLOBAL CUSTOMER BELNET #BELNET-AP2 $GS-00436 | ASN2611 |", - "circuits": [ - { - "id": 739643, - "name": "BELNET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1654, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.46", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ASREN ASREN #lon-lon2-GEANTOpen-ASREN-ASREN-190491 $GS-00984 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 642, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30.3008", - "bundle": [], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access link #INFOBLOX-DNS-FRA-DE $GS-00200| TEST - Infoblox GRID /// NMAAS IS-IS Listener", - "circuits": [ - { - "id": 733008, - "name": "INFOBLOX-DNS-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1136, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 526, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-101.103", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-LJU-SI-VRF-VLAN103 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "3", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 568, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 590, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-2/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER IUCC P_AE21 | IUCC-AP1-LL1 - Tamares Telecom ID: GNT-E100-010", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 694, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "IUCC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "IUCC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae1", - "bundle": [ - "et-0/0/2" - ], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02033 | AMS-AMS |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 579, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.14", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DRACS-LON2-UK | LON2 DRACS", - "circuits": [ - { - "id": 661540, - "name": "DRACS-LON2-UK", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1183, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae42.0", - "bundle": [], - "bundle-parents": [ - "xe-0/2/3", - "xe-0/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 2 MGMT | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1358, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-1/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 680, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/3/5.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-bud-hu-management |perfSONAR MGMT", - "circuits": [ - { - "id": 724898, - "name": "PS-BUD-HU-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1176, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "xe-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 560, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-2", - "bundle": [ - "2/x1/1/c8/1" - ], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02350 | HAM-TAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-TAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "HAM-TAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "2/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | BIL-PAR | to RT1.BIL.ES - et-1/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162114, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae30.104", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #NL-ESNET-IPV4 $GS-00889 | ASN293 | AMS-ESNET-400G", - "circuits": [ - { - "id": 734112, - "name": "NL-ESNET-IPV4", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1030, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23.200", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SCION SWITCH #gen-gen-SCION-SWITCH $GS-02199 |", - "circuits": [ - { - "id": 720418, - "name": "GEN-GEN-SCION-SWITCH", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 725, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "lag-9.0", - "bundle": [], - "bundle-parents": [ - "1/1/c11/1", - "1/1/c11/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-VIE-IPTRUNK $GS-00026 | BUD-VIE | ", - "circuits": [ - { - "id": 740790, - "name": "BUD-VIE-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-VIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUD-VIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "lag-3", - "bundle": [ - "1/1/c9/2", - "1/1/c12/1", - "1/1/c12/2" - ], - "bundle-parents": [ - "1/1/c9/2", - "1/1/c12/1", - "1/1/c12/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02562 | VIE-VIE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "VIE-VIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "VIE-VIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER KIAE P_AE16 | Digital Realty CID: NL134571 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 650, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KIAE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KIAE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae12", - "bundle": [ - "et-4/0/5", - "et-8/0/5", - "et-11/0/2" - ], - "bundle-parents": [ - "et-4/0/5", - "et-8/0/5", - "et-11/0/2" - ], - "description": "LAG CUSTOMER GARR SRF9916009 $GA-01883 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 699, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 513, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "1/x1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | LJU-MIL2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916354, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-101.103", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-SOF-BG-VRF-VLAN103 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "10", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 609, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/28", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX11 NIC2 PORT3 - VSAN PORT", - "circuits": [ - { - "id": 658619, - "name": "LON2-PRD-ESX11-NIC2-PORT3", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 676, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 668, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.956", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET REDIRIS #BIL-HAM-02517 $GS-02517", - "circuits": [ - { - "id": 747545, - "name": "BIL-HAM-02517", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 903, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DTN-LON2-10G-DATA $GS-02355", - "circuits": [ - { - "id": 727045, - "name": "DTN-LON2-10G-DATA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1015, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:2101", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET NORDUNET #ATH2-HAM-02500 $GS-02500", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.2300", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CSTNET CERN #ams-gen-IHEP-CERN-CSTNET $GS-02415 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1749, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-21.100", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER EENET #EENET-AP2 $GS-00455 | ASN3221 | ", - "circuits": [ - { - "id": 745984, - "name": "EENET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "8", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "EENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.333", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_IAS CUSTOMER BELNET #BELNET-AP2-IAS IASPS $GS-00523 | ASN2611", - "circuits": [ - { - "id": 739626, - "name": "BELNET-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1655, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-5/1/1", - "xe-5/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-bud-hu | SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 739254, - "name": "EX3400-MANAGEMENT-BUD-HU", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 887, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 563, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 931, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.1", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "PHY CUSTOMER_GEO NEA3R #IndianaUni-GEO-UK-1 | P_AE26 SRF20098|NEA3R", - "circuits": [ - { - "id": 719685, - "name": "INDIANAUNI-GEO-UK-1", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1158, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "NEA3R", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NEA3R", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae1.28", - "bundle": [], - "bundle-parents": [ - "xe-4/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-mit2-vie-at-idrac | NEMO DDOS Mitigation 2 iDRAC | Stage.Nemo", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 665, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.28", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-SPLUNK-SERVER1-iDRAC", - "circuits": [ - { - "id": 736084, - "name": "AMS-SPLUNK-SERVER1-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1018, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae37.300", - "bundle": [], - "bundle-parents": [ - "xe-11/2/5" - ], - "description": "SRV_GLOBAL CUSTOMER AZSCIENCENET #AZSCIENCENET-AP1 $GS-00433 | ASN202993 |", - "circuits": [ - { - "id": 743174, - "name": "AZSCIENCENET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1692, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "AZSCIENCENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AZSCIENCENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SRX-1 To Switch Cluster ge-0/0/4", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 516, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.38", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-02412 $GS-02412", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 680, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | MIL2-MIL2 | RT0.MIL2.IT 1/1/c12/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 658, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-9/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE FACEBOOK SRF9934785 P_AE17 | FB ID: FA-1026202", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1406, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.20", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-par-fr-drac | psmp drac", - "circuits": [ - { - "id": 739104, - "name": "PSMP-PAR-FR-DRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1218, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.buc.ro.geant.net", - "name": "2/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | BUC-BUC | Connected to RT1.BUC - et-4/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611179649, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-BUC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "1/x1/1/c4/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC INEX P_lag-21", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916098, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "2/1/c11/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | LJU-MIL2 | to RT1.LJU.SI et-1/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162306, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LJU-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.por.pt.geant.net", - "name": "1/x1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | POR-POR | to RT1.POR.PT et-1/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916417, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POR-POR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POR-POR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT ARN SRF22085 |Equinix CID: M21-43I-10-5/6 | ES-ARN-AP1-LL1 --P17/P18 in odf-mmr PP:0101:14103252 (direct)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 794, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ARN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ARN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:3501", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET BELNET #SLCIMEC-02518 $GS-02518", - "circuits": [ - { - "id": 745336, - "name": "MSEJUST-02318", - "type": "EXPRESS ROUTE", - "status": "installed" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c11/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900162, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-7.0", - "bundle": [], - "bundle-parents": [ - "1/1/c9/2", - "1/1/c12/2", - "2/1/c9/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2-MIL2-IPTRUNK $GS-02548 | MIL2-MIL2 | MIL2-MIL2-MGMT", - "circuits": [ - { - "id": 740951, - "name": "MIL2-MIL2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-MIL2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-MIL2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 593, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae19.112", - "bundle": [], - "bundle-parents": [ - "xe-11/1/3", - "xe-11/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ORACLE CERN #fra-gen-ORACLE-CERN-20150 $GS-00699 |", - "circuits": [ - { - "id": 705439, - "name": "FRA-GEN-ORACLE-CERN-20150", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1053, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-4/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | GEN-MAR | to rt0.gen 2/1/c8/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 579, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-9/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER UOM P_AE11 SRF22076 | #UOM-AP1-LL1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 835, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "UOM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "UOM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.375", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINGAREN RARE #AMS-LON-SINGAREN-RARE-123034 $GS-02315 | ", - "circuits": [ - { - "id": 736108, - "name": "AMS-LON-SINGAREN-RARE-123034", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1250, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae33.4005", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_L3VPN CUSTOMER NORDUNET #NL-NORDUNET-LHCONE-IPV6 $GS-00839 | ASN2603 |", - "circuits": [ - { - "id": 740765, - "name": "NL-NORDUNET-LHCONE-IPV6", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1695, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1474, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "ae1", - "bundle": [ - "et-0/0/3" - ], - "bundle-parents": [ - "et-0/0/3" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02037 | CHI-CHI |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 585, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-CHI", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CHI-CHI", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "2/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | LON2-PAR | TO PAR.GRV3 - 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161921, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.29", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON2-SPLUNK-SERVER2-iDRAC", - "circuits": [ - { - "id": 732529, - "name": "LON2-SPLUNK-SERVER2-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 598, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.105", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SPLUNK-PAR-FR | Splunk1 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160825", - "circuits": [ - { - "id": 733979, - "name": "SPLUNK-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 717, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "et-7/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | POZ-POZ | to RT0.POZ.PL 2/1/c11/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1061, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "xe-3/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 658, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae18.0", - "bundle": [], - "bundle-parents": [ - "et-10/1/0" - ], - "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK-32934-LON-FC-26603 $GS-00931 | ASN32934", - "circuits": [ - { - "id": 708242, - "name": "FACEBOOK-32934-LON-FC-26603", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1042, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae12", - "bundle": [ - "et-4/1/5" - ], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "LAG RE_INTERCONNECT IC-1 SRF22102 $GA-02233 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 585, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "IC-1", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "IC-1", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-101", - "bundle": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/15", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 531, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.2503", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA | deltaId+9d8cec2f-9947-4af2-b473-05ea523a7d0f:uuid+c58223b9-fa23-44df-a947-b0759ced1994 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1539, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "et-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | BUC-SOF | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 662, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-SOF", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-SOF", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "lag-1", - "bundle": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02466 | LON-LON", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LON-LON", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae21", - "bundle": [ - "et-11/1/0" - ], - "bundle-parents": [ - "et-11/1/0" - ], - "description": "LAG CUSTOMER ROEDUNET AP2 SRF20069 $GA-01850 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 701, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-2/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER IUCC P_AE22 | IUCC-AP2-LL1 -Tamares Telecom ID: GNT-E100-011", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 671, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "IUCC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "IUCC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MAD-MAR | connected to MAR01-GRV1 1/1/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 680, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-101", - "bundle": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-4/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1000, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "2/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to AMS01-GRV5 1/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162114, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae17", - "bundle": [ - "xe-11/3/4" - ], - "bundle-parents": [ - "xe-11/3/4" - ], - "description": "LAG CUSTOMER ASNET-AM SRF9931823 $GA-01953 | ASNET-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1164, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ASNET-AM", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ASNET-AM", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 612, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "irb.50", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SRF22066 #SCION-SCION-PAR-INTERNAL-BRIDGE", - "circuits": [ - { - "id": 723800, - "name": "SCION-SCION-PAR-INTERNAL-BRIDGE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 615, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "2/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | BRU-PAR | to RT0.PAR 1/1/c8/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178497, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRU-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRU-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.611", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT REDCLARA #UK-CLARA-NEA3R $GS-00914 | ASN27750", - "circuits": [ - { - "id": 709307, - "name": "UK-CLARA-NEA3R", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 866, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/2/5.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-bwctl UAT | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 733939, - "name": "PS-FRA-DE-BWCTL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1352, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/1/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-vie-at-bwctl new | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20160524", - "circuits": [ - { - "id": 736085, - "name": "PS-VIE-AT-BWCTL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1524, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "2/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | FRA-GEN | TO FRA01-GRV1 port 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161665, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-1/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO NEA3R #IndianaUni-GEO-UK-1 | P_AE26 SRF20098|NEA3R", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 851, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "NEA3R", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NEA3R", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.42", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER REDIRIS MICROSOFT #REDIRIS-ICN2-ExpressRoute-VLAN692 $GS-02560 | ", - "circuits": [ - { - "id": 740768, - "name": "REDIRIS-ICN2-EXPRESSROUTE-VLAN692", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 686, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 608, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-9/0/4", - "et-9/1/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #PAR-PAR-IPTRUNK $GS-02473| PAR-PAR | RT0.PAR-MX1.PAR IPTRUNK", - "circuits": [ - { - "id": 739437, - "name": "PAR-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1180, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PAR-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PAR-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.200", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-FRA-DE-IDRAC | ne-esxi-prod-fra-1-idrac", - "circuits": [ - { - "id": 732681, - "name": "NE-ESXI-FRA-DE-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1405, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.40", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT SWITCH #AMS-PAR-SCION-SWITCH-NETHERLIGHT-20019 $GS-00658 |", - "circuits": [ - { - "id": 714175, - "name": "AMS-PAR-SCION-SWITCH-NETHERLIGHT-20019", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1112, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "ae13", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01727 | QFX.FRA.DE AE13", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 592, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02198 |SCION server 2 external port", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1266, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae19.0", - "bundle": [], - "bundle-parents": [ - "xe-5/1/6", - "xe-5/3/4" - ], - "description": "SRV_IAS UPSTREAM COGENT #COGENT-GWS-BUD $GS-00065 | ASN174", - "circuits": [ - { - "id": 708282, - "name": "COGENT-GWS-BUD", - "type": "GWS - UPSTREAM", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 554, - "dashboards": [ - "IAS_UPSTREAM" - ], - "dashboard_info": { - "name": "COGENT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COGENT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-3/0/4", - "bundle": [], - "bundle-parents": [], - "description": " PHY RE_INTERCONNECT ESNET P_AE30 400G | Digital Realty CID: NL205425", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 718, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 674, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 830, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | OLD PSMP BWCTL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 930, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC P_AE10 SRF9925125 | JISC-AP1-LL1 | JISC ID: TCF:25315-27877", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1203, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.951", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #SLCIMEC-02515 $GS-02515", - "circuits": [ - { - "id": 745337, - "name": "SLCIMEC-02515", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "VLAN", - "snmp-index": 910, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER BENOCS | Interxion CID DE236793", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 831, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BENOCS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BENOCS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-PAR-IPTRUNK $GS-02477 | COR-PAR | ", - "circuits": [ - { - "id": 747412, - "name": "COR-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COR-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-2/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 680, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1276, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "1/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to LON01.GRV1 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899521, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.17", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet_ARPGAN_ExpressRoute_VLAN4080 $GS-01122 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739674, - "name": "BELNET-ARPGAN-EXPRESSROUTE-VLAN4080", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 599, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "lag-8", - "bundle": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01945 | AMS-FRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177288, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:3919", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-02412 $GS-02412", - "circuits": [ - { - "id": 747634, - "name": "AMS-HAM-MSE-02412", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae18.52", - "bundle": [], - "bundle-parents": [ - "et-2/0/2" - ], - "description": "SRV_IAS CUSTOMER ACONET #ACONET-AP2-IAS IASPS $GS-00551 | ASN1853", - "circuits": [ - { - "id": 661759, - "name": "ACONET-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 804, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ACONET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ACONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "et-4/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | no optic installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 802, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae33", - "bundle": [ - "et-2/1/2" - ], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 742, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.28", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SCION-par-fr | SCION SERVERS", - "circuits": [ - { - "id": 739096, - "name": "SCION-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1223, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-20.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER HEANET #HEANET-AP1-IAS IASPS $GS-00572 | ASN1213 | ", - "circuits": [ - { - "id": 747283, - "name": "HEANET-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "5", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 607, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "2/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | LON-LON2 | to LON01.GRV2 - 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161665, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mad.es.geant.net", - "name": "1/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | MAD-MAD | to MX1.MAD xe-7/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23.34", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT SWITCH #AMS-GEN-SCION-NETHERLIGHT-SWITCH-20018 $GS-00639 |", - "circuits": [ - { - "id": 734612, - "name": "AMS-GEN-SCION-NETHERLIGHT-SWITCH-20018", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 675, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "et-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | BUC-BUD", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 609, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "ae10.333", - "bundle": [], - "bundle-parents": [ - "xe-0/1/6", - "xe-0/1/7" - ], - "description": "SRV_IAS CUSTOMER RENAM #RENAM-AP2-IAS IASGWS $GS-00542 | ASN9199", - "circuits": [ - { - "id": 714067, - "name": "RENAM-AP2-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 610, - "dashboards": [ - "EAP", - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/7.500", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF #PRA-POZ-RARE-BMS8 $GS-02629", - "circuits": [ - { - "id": 744388, - "name": "BUD-POZ-RARE-BMS8", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1027, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | FRA-PAR-QFX | to QFX xe-1/0/41", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1290, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae12.111", - "bundle": [], - "bundle-parents": [ - "et-4/0/5", - "et-8/0/5", - "et-11/0/2" - ], - "description": "SRV_L3VPN CUSTOMER GARR #GARR-AP2-LHCONE $GS-00826 | ASN137", - "circuits": [ - { - "id": 663175, - "name": "GARR-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 700, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "2/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | LON-LON2 | to LON01.GRV2 - 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161921, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-10/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO SURF #SURF-GEO-FR-1 P_AE17 | SRF18071 | Circuit ID: FR108917 | Netherlight Port:Pr003a-jnx-01: et-0/0/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1001, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1578, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-RIG-IPTRUNK $GS-00044 | KAU-RIG | ", - "circuits": [ - { - "id": 746526, - "name": "KAU-RIG-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 8, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-RIG", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KAU-RIG", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER NORDUNET P_lag-21 | NORDUNET-AP2-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610901121, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/4.1627", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #gen-par-SCION-SCION-INTERNET2-1 $GS-02297 |", - "circuits": [ - { - "id": 736637, - "name": "GEN-PAR-SCION-SCION-INTERNET2-1", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1261, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-101.520", - "bundle": [], - "bundle-parents": [ - "1/1/c2/1", - "1/1/c2/2" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #IDRAC-MGMT-HAM-DE-VRF-VLAN520 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "2", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae1.21", - "bundle": [], - "bundle-parents": [ - "xe-2/1/7", - "xe-2/2/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-gen-ch-DRAC | HADES DRAC", - "circuits": [ - { - "id": 740084, - "name": "HADES-GEN-CH-DRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1471, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | BRU-PAR | to RT2.BRU.BE - et-0/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRU-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRU-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.203", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #A10-DDOS-SCRUBBING-FRA -NEW- | A10 Management- NEW", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1602, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 657, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae24", - "bundle": [ - "xe-3/1/7" - ], - "bundle-parents": [ - "xe-3/1/7" - ], - "description": "LAG PRIVATE ORACLE #UK-ORACLE-IAS-LAG $GA-02082 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 720, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.3021", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-SINET-INTERNET-ACCESS | SINET INTERNET ACCESS", - "circuits": [ - { - "id": 736099, - "name": "AMS-SINET-INTERNET-ACCESS", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1521, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mar.fr.geant.net", - "name": "1/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | MAR-MAR | to RT1.MAR xe-3/2/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915970, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 828, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae14.100", - "bundle": [], - "bundle-parents": [ - "xe-3/0/2" - ], - "description": "SRV_GLOBAL CUSTOMER CYNET #CYNET-AP1 $GS-02441 | ASN3268 |", - "circuits": [ - { - "id": 733814, - "name": "CYNET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 720, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CYNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CYNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae2", - "bundle": [ - "xe-0/1/0" - ], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-02017 | rt1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 586, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 599, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 670, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | PAR-FRA-QFX | to QFX xe-0/0/41", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1271, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.51", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "PHY INFRASTRUCTURE ACCESS FLOWMON SRF0000001 | FlowMon2 Management + FanOut CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20170708", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 643, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.3009", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX-GRID-FRA-DE $GS-00201 | Infoblox Grid-FRA", - "circuits": [ - { - "id": 729102, - "name": "INFOBLOX-GRID-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 974, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 519, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-20:2112", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER LAT EENET #GENOMICS-00752 $GS-00752", - "circuits": [ - { - "id": 745982, - "name": "GENOMICS-00752", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LAT", - "interface_type": "LOGICAL" - }, - { - "name": "EENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/0/0.102", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #AMS-PAR-RARE-RARE-21101 $GS-00656 |", - "circuits": [ - { - "id": 736095, - "name": "AMS-PAR-RARE-RARE-21101", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 950, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-23.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c27/1", - "2/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER ULAKBIM #ULAKBIM-AP2 $GS-00518 | ASN8517 | ", - "circuits": [ - { - "id": 745009, - "name": "ULAKBIM-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "18", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP P_AE30 | QFX xe-0/0/18", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1278, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae11", - "bundle": [ - "et-9/1/5" - ], - "bundle-parents": [ - "et-9/1/5" - ], - "description": "LAG CUSTOMER UOM SRF22076 #UOM-AP1-LAG $GA-01344 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 649, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "UOM", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "UOM", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 924, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae19", - "bundle": [ - "xe-0/0/2", - "xe-0/0/3" - ], - "bundle-parents": [ - "xe-0/0/2", - "xe-0/0/3" - ], - "description": "LAG INFRASTRUCTURE ACCESS | splunk-ams-peer02.geant.org | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 963, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.2708", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET PIONIER #HAM-POZ-02494 $GS-02494", - "circuits": [ - { - "id": 747540, - "name": "HAM-POZ-02494", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 675, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.34", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-RIZIV-INAMI-ExpressRoute-VLAN4069 $GS-02521 | ", - "circuits": [ - { - "id": 739661, - "name": "BELNET-RIZIV-INAMI-EXPRESSROUTE-VLAN4069", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 669, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae12.333", - "bundle": [], - "bundle-parents": [ - "et-4/0/5", - "et-8/0/5", - "et-11/0/2" - ], - "description": "SRV_IAS CUSTOMER GARR #GARR-AP2-IAS IASPS $GS-00571 | ASN137", - "circuits": [ - { - "id": 663118, - "name": "GARR-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 745, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.3400", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT RE_INTERCONNECT ESNET UBUNTUNET #lon-par-ESnet-UbuntuNet-14020 $GS-00737 |", - "circuits": [ - { - "id": 706028, - "name": "LON-PAR-ESNET-UBUNTUNET-14020", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 897, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "irb.998", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #qfx-management-dub-ie| EXFO management", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 960, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE2 | rt1-sw3 xe-0/2/0 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1457, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT ORIENTPLUS SRF9917037 $GA-01479|", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 847, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ORIENTPLUS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ORIENTPLUS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae11.100", - "bundle": [], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "SRV_GLOBAL CUSTOMER DFN #DFN-AP1 $GS-00452 | ASN680 | DFN ID: GE100/ANWD-KA2994-FRA-0GEANT DFN AP", - "circuits": [ - { - "id": 743295, - "name": "DFN-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 781, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae13.0", - "bundle": [], - "bundle-parents": [ - "xe-4/0/6", - "xe-4/0/7" - ], - "description": "SRV_INFRASTRUCTURE ACCESS | NEMO DDOS Detection 1", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1004, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-20:711", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET KIFU #SLCUTH-02497 $GS-02497", - "circuits": [ - { - "id": 745594, - "name": "SLCUTH-02497", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "1/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | SOF-ZAG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916353, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SOF-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | HAM-POZ | to RT0.HAM.DE 2/1/c8/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae7", - "bundle": [ - "et-8/0/5" - ], - "bundle-parents": [ - "et-8/0/5" - ], - "description": "LAG INFRASTRUCTURE ACCESS $GA-02303 | FRA-AMT |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 587, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-8.0", - "bundle": [], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON2-PAR-IPTRUNK $GS-00053 | LON2-PAR | ", - "circuits": [ - { - "id": 739436, - "name": "LON2-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae32.533", - "bundle": [], - "bundle-parents": [ - "et-8/0/5", - "et-8/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #TOOLS-ACCESS-AMS-NL | TOOLS ACCESS", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1722, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-2", - "bundle": [ - "2/x1/1/c8/1" - ], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02278 | BRU-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRU-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BRU-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae1.25", - "bundle": [], - "bundle-parents": [ - "xe-4/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-det1-vie-at-idrac | NEMO DDOS Detection 1 iDRAC", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 660, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae20", - "bundle": [ - "et-1/0/2", - "et-1/0/5" - ], - "bundle-parents": [ - "et-1/0/2", - "et-1/0/5" - ], - "description": "LAG PUBLIC DE-CIX SRF9924381 $GA-01956 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 604, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | AMS-BRU | to AMS01-GRV6 1/1/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-BRU", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-BRU", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-2/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ACONET P_AE18 AP_B |MIL02-GRV5 1/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 707, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ACONET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ACONET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CESNET", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 653, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.1305", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KREONET SWITCH #lon-par-SCION-KREONET-SWITCH $GS-02293 |", - "circuits": [ - { - "id": 727330, - "name": "LON-PAR-SCION-KREONET-SWITCH", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1231, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "KREONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENAM | Prime Telecom CID: 1022641", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 680, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-11/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | LIS-PAR TRUNK", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1198, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-3", - "bundle": [ - "1/x1/1/c8/1" - ], - "bundle-parents": [ - "1/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02031 | KAU-RIG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-RIG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KAU-RIG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae18", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01695 | LON2-PRD-ESX12 VM TRAFFIC LAG", - "circuits": [ - { - "id": 658657, - "name": "LON2-PRD-ESX12-VM-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 606, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae21.3552", - "bundle": [], - "bundle-parents": [ - "et-5/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CSTNET CERN #gen-mar-IHEP-CERN-CSTNET $GS-02414 |", - "circuits": [ - { - "id": 732309, - "name": "GEN-MAR-IHEP-CERN-CSTNET", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1290, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae48.740", - "bundle": [], - "bundle-parents": [ - "et-10/0/5", - "et-10/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #A10-DDOS-SCRUBBING-FRA-Clean-traffic $GS-00087 | Clean-Traffic CONTACT: SOC@geant.org IMPLEMENTED: 20240701", - "circuits": [ - { - "id": 741337, - "name": "A10-DDOS-SCRUBBING-FRA-CLEAN-TRAFFIC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1616, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 556, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "xe-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.4020", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT WIX #lon-par-GEANTOpen-Internet2-Netherlight-15034 $GS-00968 |", - "circuits": [ - { - "id": 736741, - "name": "LON-PAR-GEANTOPEN-INTERNET2-NETHERLIGHT-15034", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1598, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae5", - "bundle": [ - "et-7/0/4", - "et-7/1/4" - ], - "bundle-parents": [ - "et-7/0/4", - "et-7/1/4" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02456 | AMS-AMS", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1323, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.2706", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV-L2CIRCUIT CUSTOMER PIONIER REDIRIS #PSNC-RedIRIS-SLICES-UC3M $GS-02492|", - "circuits": [ - { - "id": 738289, - "name": "PSNC-REDIRIS-SLICES-UC3M", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 630, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "1/x1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | SOF-ZAG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916354, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SOF-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-2", - "bundle": [ - "1/x1/1/c6/1" - ], - "bundle-parents": [ - "1/x1/1/c6/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01795 | ATH2-MIL2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-MIL2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ATH2-MIL2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae10.112", - "bundle": [], - "bundle-parents": [ - "et-5/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ORACLE CERN #fra-gen-ORACLE-CERN-20150 $GS-00699 |", - "circuits": [ - { - "id": 705439, - "name": "FRA-GEN-ORACLE-CERN-20150", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 852, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "et-1/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | POR-POR | to RT0.POR.PT 1/x1/1/c9/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 558, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POR-POR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POR-POR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4063", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEULB-02363 $GS-02363", - "circuits": [ - { - "id": 744144, - "name": "MSEULB-02363", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE7 | LON2-PRD-ESX11 NIC2 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 659, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE FW1-SNM", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 662, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.3920", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER AARNET SINGAREN #AMS-LON-AARNET-SINGAREN-23049 $GS-02342 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1757, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/31", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik B Data Port 1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 538, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "2/1/c5/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2-VIE-IPTRUNK $GS-00057 | MIL2-VIE | ", - "circuits": [ - { - "id": 740950, - "name": "MIL2-VIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-VIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-VIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-TAR-EE-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "9", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 529, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-4/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | GEN-MAR | to rt0.gen 2/1/c9/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 583, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae18.100", - "bundle": [], - "bundle-parents": [ - "xe-7/0/6" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ARN #ES-ARN-AP1 $GS-00880 | ASN3208 |", - "circuits": [ - { - "id": 724758, - "name": "ES-ARN-AP1", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1166, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ARN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ARN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ge-0/0/34", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik C IPMI", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 552, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae12", - "bundle": [ - "et-2/0/5" - ], - "bundle-parents": [ - "et-2/0/5" - ], - "description": "LAG PRIVATE GOOGLE SRF9931047 $GA-01771 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 762, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-7/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | BUD-ZAG", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1132, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUD-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3104", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER AARNET SINGAREN #lon-lon-GEANTOpen-AARNET-SINGAREN-CAE1-20044-VL3104 $GS-00960 |", - "circuits": [ - { - "id": 705943, - "name": "LON-LON-GEANTOPEN-AARNET-SINGAREN-CAE1-20044-VL3104", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 990, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/1/4.1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO SINGAREN #SingAREN-GEO-UK-1 | SRF19075 |", - "circuits": [ - { - "id": 725081, - "name": "SINGAREN-GEO-UK-1", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 773, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae11", - "bundle": [ - "et-0/0/2", - "et-2/1/5" - ], - "bundle-parents": [ - "et-0/0/2", - "et-2/1/5" - ], - "description": "LAG CUSTOMER CESNET SRF9927551 $GA-01829 | CESNET AP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 923, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-COR-IE-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "9", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE GOOGLE P_AE13 | Interxion CID DE236100-3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 851, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/17", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE18 | LON2-PRD-ESX12 NIC2 PORT2", - "circuits": [ - { - "id": 658622, - "name": "LON2-PRD-ESX12-NIC2-PORT2", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 668, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae1.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-BRA-IPTRUNK $GS-01205| BRA-BRA", - "circuits": [ - { - "id": 731789, - "name": "BRA-BRA-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 612, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "1/1/c11/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | MAR-MIL2 | to RT1.MAR.FR et-1/0/5 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900161, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-lon2-uk $GS-00151 | SW3-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 743294, - "name": "EX3400-MANAGEMENT-LON2-UK", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 810, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-21", - "bundle": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4", - "1/x1/1/c4/2" - ], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4", - "1/x1/1/c4/2" - ], - "description": "LAG PUBLIC INEX | $GA-01924", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177301, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-1/0/43", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae14 | 10_GBS to RT1 xe-7/0/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 694, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1459, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | MX1-SW1 | (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 574, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MX1-SW1", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MX1-SW1", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-1/0/44", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | was | 10_GBS to MX1.FRA.DE xe-9/3/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 645, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae10", - "bundle": [ - "et-5/1/4" - ], - "bundle-parents": [ - "et-5/1/4" - ], - "description": "LAG CUSTOMER CERN #2 SRF9921193 $GA-01885 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 697, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 934, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10.111", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L3VPN CUSTOMER KIFU #KIFU-AP1-LHCONE $GS-02282 | ASN1955 |", - "circuits": [ - { - "id": 726626, - "name": "KIFU-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 823, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae43", - "bundle": [ - "et-1/1/5" - ], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "LAG INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1326, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "ae4", - "bundle": [ - "xe-0/1/7" - ], - "bundle-parents": [ - "xe-0/1/7" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt2-sw2 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 609, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to RT0.AMS 2/1/C8/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.12", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01150 $GS-01150", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 595, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-5/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE GOOGLE P_AE44 | Interxion CID DE236900", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 826, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4088", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSENCCN-01136 $GS-01136", - "circuits": [ - { - "id": 744268, - "name": "MSENCCN-01136", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "xe-3/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | rt1-sw1(ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 655, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/2/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | MAR-MAR | to RT0.MAR 1/x1/1/c2/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 672, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1", - "2/1/c9/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-MAR-IPTRUNK $GS-00038 | GEN-MAR | ", - "circuits": [ - { - "id": 739738, - "name": "GEN-MAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 6, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10.2806", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KIFU NORDUNET #BUD-HAM-02513 $GS-02513", - "circuits": [ - { - "id": 747547, - "name": "BUD-HAM-02513", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 880, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4066", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSERVAONEM-02431 $GS-02431", - "circuits": [ - { - "id": 744145, - "name": "MSERVAONEM-02431", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/12", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 528, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 561, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 696, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "1/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | To FRA01-GRV2- 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899905, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.11", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01159 $GS-01159", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1395, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 534, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae28.2061", - "bundle": [], - "bundle-parents": [ - "et-11/0/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT REDCLARA #UK-REDCLARA $GS-02166| ASN27750 |", - "circuits": [ - { - "id": 720021, - "name": "UK-REDCLARA", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1216, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae5", - "bundle": [ - "et-0/0/2" - ], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02003 | BUC-CHI", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 608, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER SWITCH P_AE13 SRF19030 | SWITCH BACKUP", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1149, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CERN SRF9925993 $GA-01541 | LHC-CERN via SWITCH GN+", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 556, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-1", - "bundle": [ - "1/x1/1/c6/1" - ], - "bundle-parents": [ - "1/x1/1/c6/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02423 | ATH2-THE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-THE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ATH2-THE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-5/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER SWITCH P_AE14 | Digital Realty CID: NL132369", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 992, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 593, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.2021", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET WIX #NORDU-TO-WIX-2021 $GS-00743 | NORDU-to-WIX 2021", - "circuits": [ - { - "id": 736882, - "name": "NORDU-TO-WIX-2021", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1274, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae6.0", - "bundle": [], - "bundle-parents": [ - "et-0/1/5", - "et-1/1/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL-MAD-IPTRUNK $GS-02203 | BIL-MAD |", - "circuits": [ - { - "id": 719646, - "name": "BIL-MAD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 838, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-MAD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BIL-MAD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae9", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-TBA | QFX1.LON2.UK AE9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 739, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "lag-6.0", - "bundle": [], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-PRA-IPTRUNK $GS-00033 | FRA-PRA | ", - "circuits": [ - { - "id": 740465, - "name": "FRA-PRA-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-PRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FRA-PRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae4", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01692 | LON2-SEC-ESX20 ESXI Traffic LAG - No LACP", - "circuits": [ - { - "id": 658685, - "name": "LON2-SEC-ESX20-ESXI-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 594, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23.1390", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER SWITCH #GEN-PAR-SCION-RENATER-SWITCH-20026 $GS-00717 |", - "circuits": [ - { - "id": 714179, - "name": "GEN-PAR-SCION-RENATER-SWITCH-20026", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 689, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "2/1/c30/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | KIE-POZ | to RT1.KIE.UA et-0/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611163521, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KIE-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02187 |SCION server 1 internal port", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1299, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "1/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | MIL2-VIE | to RT0.MIL2 2/1/c5/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899777, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "2/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-9 | AMS-HAM | to AMS01-GRV5 1/1/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162177, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-HAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-24.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER RASH #RASH-AP2-IAS IASGWS $GS-00540 | ASN57961 | ", - "circuits": [ - { - "id": 745019, - "name": "RASH-AP2-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "16", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "RASH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RASH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.23", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-fra-de-idrac |perfSONAR IDRAC", - "circuits": [ - { - "id": 729101, - "name": "PS-FRA-DE-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 968, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae16.100", - "bundle": [], - "bundle-parents": [ - "xe-0/0/4", - "xe-0/1/7", - "xe-0/3/1" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT KIAE #NL-KIAE $GS-00896 | ASN59624 |", - "circuits": [ - { - "id": 734246, - "name": "NL-KIAE", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1053, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "KIAE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIAE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | psmp-lhc-mgmt-lon-uk.geant.org pS MGMT (LHCONE)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1449, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.17", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #VIRGIN-MEDIA-EX1-LON2-TO-CAM-SRX-VLAN17 |", - "circuits": [ - { - "id": 660718, - "name": "VIRGIN-MEDIA-EX1-LON2-TO-CAM-SRX-VLAN17", - "type": "CORPORATE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1847, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 523, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER LITNET P_lag-21", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LITNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LITNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-4/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 400GBASE-DR4 optic installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 571, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae18.333", - "bundle": [], - "bundle-parents": [ - "et-8/0/2" - ], - "description": "SRV_IAS CUSTOMER RESTENA #RESTENA-AP1-IAS IASPS $GS-00585 | ASN2602 |", - "circuits": [ - { - "id": 732134, - "name": "RESTENA-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1160, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RESTENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "2/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | LON2-PAR | TO PAR.GRV3 - 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161665, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.221", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT TWAREN #FR-TWAREN-221 $GS-00886 | ASN7539 | MANLAN ID: 221", - "circuits": [ - { - "id": 661630, - "name": "FR-TWAREN-221", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 873, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "TWAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TWAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-8/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENATER P_AE14 | RENATER-100GB-LL2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1531, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae15.51", - "bundle": [], - "bundle-parents": [ - "et-3/0/0" - ], - "description": "SRV_GLOBAL CUSTOMER ACONET #ACONET-AP1 $GS-00422 | ASN1853 |", - "circuits": [ - { - "id": 660433, - "name": "ACONET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 831, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ACONET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ACONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae20.210", - "bundle": [], - "bundle-parents": [ - "xe-11/2/3" - ], - "description": "SRV_L2CIRCUIT CUSTOMER GRENA COGENT #vie-vie-EAP-GRENA-COGENT-22035 $GS-00695", - "circuits": [ - { - "id": 719668, - "name": "VIE-VIE-EAP-GRENA-COGENT-22035", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 997, - "dashboards": [ - "EAP", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COGENT", - "interface_type": "LOGICAL" - }, - { - "name": "GRENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae27.4003", - "bundle": [], - "bundle-parents": [ - "et-5/0/2" - ], - "description": "SRV_L3VPN CUSTOMER T-SYSTEMS #NL-T-SYSTEMS-COPERNICUS $GS-02331 | ASN6878", - "circuits": [ - { - "id": 734864, - "name": "NL-T-SYSTEMS-COPERNICUS", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1320, - "dashboards": [ - "COPERNICUS", - "NREN" - ], - "dashboard_info": { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-1/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 616, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae32.991", - "bundle": [], - "bundle-parents": [ - "et-8/0/5", - "et-8/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #CORIANT-LIBRENMS-ACCESS-AMS-NL | OPTICAL LIBRENMS ACCESS", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1723, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | DDOS Mitigation Server link 1 Node 1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1067, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "xe-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | BUC-CHI | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 567, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.518", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT RE_INTERCONNECT NISN RENATER #LON-GEN-CNES-NISN-RENATER-09201 $GS-00723 |", - "circuits": [ - { - "id": 709299, - "name": "LON-GEN-CNES-NISN-RENATER-09201", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 811, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "NISN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-22.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "SRV_IAS CUSTOMER RESTENA #RESTENA-AP2-IAS $GS-00586 | ASN2602 | ", - "circuits": [ - { - "id": 744074, - "name": "RESTENA-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RESTENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 866, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "1/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER BREN P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915969, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae20.3019", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-5/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SD-WAN-SINET-SINET-17088 $GS-00649 |", - "circuits": [ - { - "id": 740719, - "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17088", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1289, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae15", - "bundle": [ - "et-3/0/0" - ], - "bundle-parents": [ - "et-3/0/0" - ], - "description": "LAG CUSTOMER ACONET SRF996718 $GA-01864 | ACONET AP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 695, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ACONET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ACONET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-0", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 682, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.977", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KIFU REDIRIS #SZTAKI-KIFU-RedIRIS-SLICES-UC3M $GS-02512|", - "circuits": [ - { - "id": 738341, - "name": "SZTAKI-KIFU-REDIRIS-SLICES-UC3M", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 803, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:3908", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01159 $GS-01159", - "circuits": [ - { - "id": 747631, - "name": "AMS-HAM-MSE-01159", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/30", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik A Data Port 1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 536, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.1200", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NEA3R WACREN #lon-lon-GEANTOPEN-NEA3R-WACREN-190131 $GS-00982 |", - "circuits": [ - { - "id": 709339, - "name": "LON-LON-GEANTOPEN-NEA3R-WACREN-190131", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 805, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NEA3R", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - { - "name": "NEA3R", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:2100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET NORDUNET #BRU-HAM-02519 $GS-02519", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/0/3.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER NetherLight $GS-00784 #ams-par-LOFAR-RENATER-NetherLight-10001 |", - "circuits": [ - { - "id": 734546, - "name": "AMS-PAR-LOFAR-RENATER-NETHERLIGHT-10001", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 724, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | rt1-sw3 (ex3400)|", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 886, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.15", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT EUMETSAT #LON-EUMETSAT-SERVER-DATA-TRAFFIC $GS-02313 | LON-EUMETSAT-1G", - "circuits": [ - { - "id": 740679, - "name": "LON-EUMETSAT-SERVER-DATA-TRAFFIC", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 777, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-3/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | FRA-FRA | TO RT0.FRA.DE- 2/1/c19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 659, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.26", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEJUST-02318 $GS-02318", - "circuits": [ - { - "id": 745336, - "name": "MSEJUST-02318", - "type": "EXPRESS ROUTE", - "status": "installed" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1409, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 596, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/3/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #fra-ams-IT_INFRA-QFX-GEANT $GS-02556 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1680, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae5.0", - "bundle": [], - "bundle-parents": [ - "et-7/0/2", - "et-7/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-ZAG-IPTRUNK $GS-00027 | BUD-ZAG |", - "circuits": [ - { - "id": 747898, - "name": "BUD-ZAG-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 740, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-ZAG", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUD-ZAG", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "2/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | SOF-THE | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178497, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-THE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SOF-THE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20.2", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER BELNET #BELNET-AP1 $GS-00437 | ASN2611 | ", - "circuits": [ - { - "id": 744240, - "name": "BELNET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "9", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae23", - "bundle": [ - "et-9/0/5", - "et-10/1/5" - ], - "bundle-parents": [ - "et-9/0/5", - "et-10/1/5" - ], - "description": "LAG CUSTOMER CESNET $GA-01899 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1097, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae12.790", - "bundle": [], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET ITER #MAR-MAR-02645 $GS-02645 |", - "circuits": [ - { - "id": 746076, - "name": "MAR-MAR-02645", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 864, - "dashboards": [ - "IC1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ITER", - "interface_type": "LOGICAL" - }, - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/13", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 528, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-10/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS | A10 DDOS 100G #2 connected to X50", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 660, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/2.103", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #FRA-PAR-RARE-RARE-21101 $GS-00705 |", - "circuits": [ - { - "id": 716207, - "name": "FRA-PAR-RARE-RARE-21101", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1445, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "1/1/c12/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | MAR-MIL2 | to RT1.MAR.FR et-1/1/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900225, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 532, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-2/0/5.2100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER AARNET NETHERLIGHT #lon-lon-GEANTOpen-AARNET-NETHERLIGHT-21003 $GS-00284 |", - "circuits": [ - { - "id": 709856, - "name": "LON-LON-GEANTOPEN-AARNET-NETHERLIGHT-21003", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 663, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.2021", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET WIX #NORDU-TO-WIX-2021 $GS-00743 | NORDU-to-WIX 2021", - "circuits": [ - { - "id": 736882, - "name": "NORDU-TO-WIX-2021", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1158, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "xe-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | rt1-sw1(ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 654, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/7.903", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #par-par-MISC-GEANT-INTERNET2-9940539 $GS-00747 |", - "circuits": [ - { - "id": 705916, - "name": "PAR-PAR-MISC-GEANT-INTERNET2-9940539", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 927, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-2/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 644, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-owd- bud.hu.geant.org pS OWAMP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 942, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "2/1/c12/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | ATH2-MIL2 | to RT2.ATH2.GR et-0/0/1 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162369, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ATH2-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-5/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CERN LHCONE P_AE21 SRF22071 | B513-B773 link (LR4)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 862, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.1624", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #fra-par-SCION-SCION-INTERNET2-1 $GS-02296 |", - "circuits": [ - { - "id": 736667, - "name": "FRA-PAR-SCION-SCION-INTERNET2-1", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1144, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 743, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.320", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_GLOBAL CUSTOMER REDIRIS #REDIRIS-AP2 $GS-00499 | ASN766 |", - "circuits": [ - { - "id": 718229, - "name": "REDIRIS-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 689, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE2 | rt1-sw3 xe-0/2/3 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 675, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-RIG-IPTRUNK $GS-00044 | KAU-RIG | ", - "circuits": [ - { - "id": 746526, - "name": "KAU-RIG-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 11, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-RIG", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KAU-RIG", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae23.401", - "bundle": [], - "bundle-parents": [ - "et-9/0/5", - "et-10/1/5" - ], - "description": "SRV_GCS CUSTOMER CESNET MICROSOFT #CESNET-NACIT-ExpressRoute-VLAN401 $GS-02175 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 724682, - "name": "CESNET-NACIT-EXPRESSROUTE-VLAN401", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1099, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-20.111", - "bundle": [], - "bundle-parents": [ - "1/1/c25/1" - ], - "description": "SRV_L3VPN CUSTOMER DFN #DFN-AP2-LHCONE $GS-00817 | ASN680 | ", - "circuits": [ - { - "id": 745581, - "name": "DFN-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "8", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/3/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 651, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SRX-1 To TS eth0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 519, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae4.0", - "bundle": [], - "bundle-parents": [ - "et-5/0/2", - "et-5/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS-MAD-IPTRUNK $GS-00048 | LIS-MAD 200G |", - "circuits": [ - { - "id": 712769, - "name": "LIS-MAD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 761, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-MAD 200G", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LIS-MAD 200G", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae4.0", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #POR-POR-IPTRUNK $GS-02587| POR-POR | POR-POR", - "circuits": [ - { - "id": 742668, - "name": "POR-POR-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 628, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POR-POR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "POR-POR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3140", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET SINGAREN #LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3140 $GS-00975 |", - "circuits": [ - { - "id": 705918, - "name": "LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3140", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 760, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.3020", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-PAR-SINET-SD-WAN-SINET-SINET-17090 $GS-00659 |", - "circuits": [ - { - "id": 736070, - "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17090", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1520, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "irb.3002", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-latency-network-fra-de-IRB $GS-00312 | Perfsonar test VMs - latency measurement VLAN", - "circuits": [ - { - "id": 733022, - "name": "PS-LATENCY-NETWORK-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1231, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae10", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01682 | FRA-PRD-ESX02 VM Traffic LAG", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 579, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.488", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER ESNET #lon-par-NCSA-LAAS-ESNET-RENATER-15057 $GS-00738 |", - "circuits": [ - { - "id": 738739, - "name": "LON-PAR-NCSA-LAAS-ESNET-RENATER-15057", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 937, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | rt1-sw2 (ex3400) | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 540, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/0.1100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER CERN GARR #gen-gen-GARR-CERNlight-CERN-GARR-16011 $GS-00708 | ", - "circuits": [ - { - "id": 707040, - "name": "GEN-GEN-GARR-CERNLIGHT-CERN-GARR-16011", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 858, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c26/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ULAKBIM P_lag-21", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917506, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "xe-3/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 534, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | BIL-POR | Infinera BIL-GRV1 Facing POR-GRV2 1/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 673, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-POR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-POR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | BIL-POR | Infinera BIL-GRV1 Facing POR-GRV2 1/1/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 671, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-POR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-POR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae3", - "bundle": [ - "et-8/0/2", - "et-8/0/5" - ], - "bundle-parents": [ - "et-8/0/2", - "et-8/0/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01907 | BUD-VIE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 617, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-VIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUD-VIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1302, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.4020", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT WIX #lon-par-GEANTOpen-Internet2-Netherlight-15034 $GS-00968 |", - "circuits": [ - { - "id": 736741, - "name": "LON-PAR-GEANTOPEN-INTERNET2-NETHERLIGHT-15034", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1169, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-5/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No Optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 852, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 603, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE7 | AMT RELAY LINK #1 | TO AMT1.AMS.NL et-0/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 939, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE GOOGLE P_AE13 | Interxion CID DE236100-2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 849, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/12", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 527, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "2/1/c11/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | LIS-PAR | LIS-PAR 100G | Digital Realty CID: FR266695", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162305, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LIS-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae2", - "bundle": [ - "et-0/1/5", - "et-1/0/5" - ], - "bundle-parents": [ - "et-0/1/5", - "et-1/0/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02028 | BIL-POR |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 577, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-POR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BIL-POR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae19.0", - "bundle": [], - "bundle-parents": [ - "xe-0/0/2", - "xe-0/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | SPLUNK AMS PEER02 MGMT | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 968, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.17", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ARPGAN-01130 $GS-01130", - "circuits": [ - { - "id": 744143, - "name": "BELNET-ARPGAN-01130", - "type": "EXPRESS ROUTE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1400, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.854", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER RESTENA #fra-par-MISC-RESTENA-RENATER-20030 $GS-00704 |", - "circuits": [ - { - "id": 733000, - "name": "FRA-PAR-MISC-RESTENA-RENATER-20030", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 981, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RESTENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE2 SRF0000001 | rt2-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 563, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30.3006", - "bundle": [], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-GTS-IMS-MEDIATION-FRANKFURT $GS-00866 | IMS Mediation Gateway for taas-control VRF", - "circuits": [ - { - "id": 733017, - "name": "TAAS-GTS-IMS-MEDIATION-FRANKFURT", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1134, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "et-3/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER PIONIER P_AE11 SRF9937611 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 764, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae37.220", - "bundle": [], - "bundle-parents": [ - "xe-11/2/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER AZSCIENCENET AZSCIENCENET #fra-fra-EAP-AZSCIENCENET-CL-190961 $GS-00694 | ", - "circuits": [ - { - "id": 723801, - "name": "FRA-FRA-EAP-AZSCIENCENET-CL-190961", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1691, - "dashboards": [ - "EAP", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "AZSCIENCENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AZSCIENCENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "ae10.100", - "bundle": [], - "bundle-parents": [ - "xe-0/1/6", - "xe-0/1/7" - ], - "description": "SRV_GLOBAL CUSTOMER RENAM #RENAM-AP2 $GS-00501 | ASN9199 |", - "circuits": [ - { - "id": 714069, - "name": "RENAM-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 608, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-1/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | NEMO DDOS Mitigation Server 1 DATA link | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1569, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae1", - "bundle": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "bundle-parents": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | mx1-sw2(ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 809, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.2704", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER GRNET #SLCUTH-02489 $GS-02489|", - "circuits": [ - { - "id": 745413, - "name": "SLCUTH-02489", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "VLAN", - "snmp-index": 603, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae20.990", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-5/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET RENATER #AMS-MAR-ITER-IFERC-SINET-RENATER-24039 $GS-00637 |", - "circuits": [ - { - "id": 738726, - "name": "AMS-MAR-ITER-IFERC-SINET-RENATER-24039", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1285, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "et-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | BRA-BRA", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 630, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae1.103", - "bundle": [], - "bundle-parents": [ - "xe-1/3/0", - "xe-1/3/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN_MANAGEMENT-POZ-PL | ", - "circuits": [ - { - "id": 724826, - "name": "DCN_MANAGEMENT-POZ-PL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 821, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-7/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | GEN-GEN | to RT0.GEN.CH 1/1/c19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 812, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 633, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "2/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | POZ-POZ | to MX1.POZ.PL et-7/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162178, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-1/0/16", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 648, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "irb.3002", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-par-fr-latency-testvm $GS-00313 | Perfsonar test VMs - latency measurement VLAN", - "circuits": [ - { - "id": 712150, - "name": "PS-LATENCY-NETWORK-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1457, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae14.111", - "bundle": [], - "bundle-parents": [ - "et-1/1/5", - "et-8/0/2", - "et-8/1/2", - "et-8/1/5" - ], - "description": "SRV_L3VPN CUSTOMER RENATER #RENATER-AP2-IPv4-LHCONE $GS-00855 | ASN2200", - "circuits": [ - { - "id": 733481, - "name": "RENATER-AP2-IPV4-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1381, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:cp-1125", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET INTERNET2 #IMINDS-00681 $GS-00681", - "circuits": [ - { - "id": 744066, - "name": "IMINDS-00681", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-bw-lis-pt.geant.org pS BWCTL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 701, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-3/0/0", - "xe-3/0/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-por-pt $GS-00158 | SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 712190, - "name": "EX3400-MANAGEMENT-POR-PT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 590, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.1337", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SURF SCION #ams-gen-SCION-SURF-SCION-23012 $GS-02263 |", - "circuits": [ - { - "id": 726378, - "name": "AMS-GEN-SCION-SURF-SCION-23012", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1120, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae14", - "bundle": [ - "et-4/0/0", - "et-10/1/2" - ], - "bundle-parents": [ - "et-4/0/0", - "et-10/1/2" - ], - "description": "LAG PUBLIC DE-CIX SRF9943055 $GA-01779 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 652, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/4.142", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER REDCLARA #gen-lis-SCION-REDCLARA $GS-02436 ", - "circuits": [ - { - "id": 732905, - "name": "GEN-LIS-SCION-REDCLARA", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1328, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-2/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No Optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1033, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 936, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 844, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c2/1", - "2/x1/1/c2/3" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-BRU-BE-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 636, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/4.1630", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRnet SCION SCION-02381 $GS-02381|", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 803, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "1/x1/1/c4/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20 | GRNET-AP1-IP4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916099, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae5.998", - "bundle": [], - "bundle-parents": [ - "xe-0/3/0", - "xe-0/3/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-mil2-it| SW2-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 726155, - "name": "EX3400-MANAGEMENT-MIL2-IT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 678, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER BELNET #BELNET-AP1-IAS $GS-00524 | ASN2611 | ", - "circuits": [ - { - "id": 744232, - "name": "BELNET-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "10", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-1/0/29", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae0 | RT1 xe-5/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 545, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE FW1-SNM", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 680, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae42.300", - "bundle": [], - "bundle-parents": [ - "xe-0/2/3", - "xe-0/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 2 - VM BGP | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1359, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 585, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae10.333", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-2/1/5", - "et-11/1/0" - ], - "description": "SRV_IAS CUSTOMER GARR #GARR-AP1-IAS IASPS $GS-00570 | ASN137", - "circuits": [ - { - "id": 660627, - "name": "GARR-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 792, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT ASREN P_AE17 SRF9943959|", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1025, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ASREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ASREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-2/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE GOOGLE P_AE12", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 709, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT ITER P_AE15 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 675, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ITER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ITER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 588, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1334, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/3.22", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | #psmp-gn-owd-lon-uk.geant.org pS OWAMP", - "circuits": [ - { - "id": 678566, - "name": "PSMP-GN-OWD-LON-UK.GEANT.ORG", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1023, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 578, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3151", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET SINGAREN #LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3151 $GS-00976 |", - "circuits": [ - { - "id": 705892, - "name": "LON-LON-GEANTOPEN-NORDUNET-SINGAREN-CAE1-19074-VL3151", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 769, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.buc.ro.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ROEDUNET P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "1/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | GEN-PAR | Connected to PAR01.GRV2 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899777, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.416", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ORACLE PIONIER SRF23002 #fra-poz-ORACLE-PIONIER-23002-VL416 $GS-02243", - "circuits": [ - { - "id": 726355, - "name": "FRA-POZ-ORACLE-PIONIER-23002-VL416", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 803, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae3", - "bundle": [ - "xe-2/0/1", - "xe-2/0/2" - ], - "bundle-parents": [ - "xe-2/0/1", - "xe-2/0/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE | MX1-SW1 (EX3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 617, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MX1-SW1 (EX3400)", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MX1-SW1 (EX3400)", - "interface_type": "AGGREGATE" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE2 | rt1-sw3 xe-1/2/0 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 671, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/2/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 601, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | LON-LON2 | TO LON02 GRV1 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899521, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-1/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC BIX P_AE18 | GEANT 100G (capped at 40G by BIX) - BIX-VI90P383", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 676, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX2-AMS-TO-SURFNET-SECONDARY | Surfnet Secondary - Service ID: 3287IR2", - "circuits": [ - { - "id": 708260, - "name": "SRX2-AMS-TO-SURFNET-SECONDARY", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 528, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-11/3/0.100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS DTN-PROJECT #DTN-PAR-100G-DATA $GS-00277 | 100G Testing CONTACT: Richard.Hughes-Jones@geant.org", - "circuits": [ - { - "id": 708301, - "name": "DTN-PAR-100G-DATA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 633, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4093", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-Premier-ExpressRoute-VLAN4093 $GS-01127 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739681, - "name": "BELNET-PREMIER-EXPRESSROUTE-VLAN4093", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1677, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "et-4/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER FCCN P_AE10 SRF21070 | FCCN AP1 100G", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 801, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae30.3002", - "bundle": [], - "bundle-parents": [ - "xe-4/0/4", - "xe-4/0/5", - "xe-4/1/2", - "xe-4/2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-latency-network-par-fr $GS-00313 | Latency network", - "circuits": [ - { - "id": 712150, - "name": "PS-LATENCY-NETWORK-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1467, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | New Leased Span Frankfurt-Poznan", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 566, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.36", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MSER-ULB-ExpressRoute-VLAN4064 $GS-02364 | ", - "circuits": [ - { - "id": 739666, - "name": "BELNET-MSER-ULB-EXPRESSROUTE-VLAN4064", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 678, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae13", - "bundle": [ - "xe-5/2/0", - "xe-11/0/3", - "xe-11/0/5" - ], - "bundle-parents": [ - "xe-5/2/0", - "xe-11/0/3", - "xe-11/0/5" - ], - "description": "LAG PRIVATE GOOGLE $TE-01943 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 998, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 579, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-BRU-IPTRUNK $GS-00008 | AMS-BRU | ", - "circuits": [ - { - "id": 744129, - "name": "AMS-BRU-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 11, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-BRU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-BRU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.106", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #QFX-Management-Par| QFX MANAGEMENT ", - "circuits": [ - { - "id": 733984, - "name": "QFX-MANAGEMENT-PAR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 710, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae4.0", - "bundle": [], - "bundle-parents": [ - "et-2/1/5", - "et-4/0/2", - "et-4/0/5", - "et-4/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-MAR-IPTRUNK $GS-00038| GEN-MAR | ", - "circuits": [ - { - "id": 739738, - "name": "GEN-MAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 620, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/14", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 530, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "irb.532", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #tools-access-LON2-UK-VRF-VLAN532 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 866, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae48.720", - "bundle": [], - "bundle-parents": [ - "et-10/0/5", - "et-10/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #A10-DDOS-SCRUBBING-FRA-Dirty-Traffic $GS-00088| Dirty-Traffic CONTACT: SOC@geant.org IMPLEMENTED: 20240701", - "circuits": [ - { - "id": 741338, - "name": "A10-DDOS-SCRUBBING-FRA-DIRTY-TRAFFIC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1615, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BIL-MAD |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 674, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.1002", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET TEIN #lon-lon-GEANTOpen-NORDUNET-TEIN-17026 $GS-00977 |", - "circuits": [ - { - "id": 705906, - "name": "LON-LON-GEANTOPEN-NORDUNET-TEIN-17026", - "type": "GEANT OPEN CROSS CONNECT", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1272, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TEIN", - "interface_type": "LOGICAL" - }, - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/4.1726", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION KAUST #gen-ams-KAUST-SCION $GS-02418| ", - "circuits": [ - { - "id": 732831, - "name": "AMS-GEN-KAUST-SCION", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1316, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KAUST", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.1391", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER SWITCH #PAR-PAR-GRID5000-RENATER-SWITCH-20026 $GS-00750 |", - "circuits": [ - { - "id": 714182, - "name": "PAR-PAR-GRID5000-RENATER-SWITCH-20026", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 874, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae11.353", - "bundle": [], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER DFN SINET #fra-par-JAXA-DFN-SINET-14005 $GS-00703 |", - "circuits": [ - { - "id": 706059, - "name": "FRA-PAR-JAXA-DFN-SINET-14005", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 913, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "LOGICAL" - }, - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 550, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER KIAE P_AE16 | Digital Realty CID: NL144294 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 667, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KIAE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KIAE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #2 FOR NORDUNET P_AE34 | Interxion CID: DE131269-2 | GEANT-FRA32-09XGMR-CIS-2-SEC-12062019", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 885, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae1.23", - "bundle": [], - "bundle-parents": [ - "xe-2/1/7", - "xe-2/2/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-gen-ch-idrac |perfSONAR iDRAC LHCONE", - "circuits": [ - { - "id": 740083, - "name": "PS-GEN-CH-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1472, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-8/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Needs optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1591, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-4/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 994, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.3005", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02643 $GS-02643 |", - "circuits": [ - { - "id": 712147, - "name": "RARE-PAR-RENATER", - "type": "L2SERVICES", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 628, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10", - "bundle": [ - "xe-0/1/0" - ], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE#2 | GEANT-EXR02-AMS21-SEC-06162020 $GA-02034", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 581, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "2/x1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | BUD-ZAG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178498, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUD-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/4.1623", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #par-par-SCION-INTERNET2-SCION-2 $GS-02309 |", - "circuits": [ - { - "id": 736659, - "name": "PAR-PAR-SCION-INTERNET2-SCION-2", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1254, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.980", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET REDIRIS #HAM-MAD-02516 $GS-02516", - "circuits": [ - { - "id": 747543, - "name": "HAM-MAD-02516", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 903, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae22.100", - "bundle": [], - "bundle-parents": [ - "xe-10/0/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT WACREN #UK-WACREN $GS-00910 | ASN37288 |", - "circuits": [ - { - "id": 661300, - "name": "UK-WACREN", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1336, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3179", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINGAREN SINGAREN #lon-lon2-GEANT2-SingAREN-SingAREN-17085 $GS-00724 |", - "circuits": [ - { - "id": 726769, - "name": "LON-LON2-GEANT2-SINGAREN-SINGAREN-17085", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 581, - "dashboards": [ - "CAE1", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.45", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSECREDENDO-02654 $GS-02654", - "circuits": [ - { - "id": 747544, - "name": "MSECREDENDO-02654", - "type": "EXPRESS ROUTE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1769, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 568, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.2010", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon-GEANTOpen-ESnet-NORDUNET-15039-2 $GS-00964 |", - "circuits": [ - { - "id": 738645, - "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-2", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1273, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-1/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 531, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 589, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/0/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-vie-at-owamp new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 734087, - "name": "PS-VIE-AT-OWAMP", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1000, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.15", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-NOAA2 $GS-01087", - "circuits": [ - { - "id": 732675, - "name": "GRE-MULTICAST-TUNNEL-NOAA2", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1218, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/0/2.106", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE WP7T2SF SRF21106 $GS-00687 | #BUD-PRA-RARE-BMS9", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1155, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-22.111", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c2/1" - ], - "description": "SRV_L3VPN CUSTOMER GRNET #GRNET-ATH-LHCONE $GS-00827 | ASN5408 | ", - "circuits": [ - { - "id": 745496, - "name": "GRNET-ATH-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "8", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "ae1.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-BRA-IPTRUNK $GS-01205| BRA-BRA", - "circuits": [ - { - "id": 731789, - "name": "BRA-BRA-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 600, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/2/9", - "bundle": [], - "bundle-parents": [], - "description": "SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 601, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "2/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | BUD-ZAG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178497, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUD-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "ae2", - "bundle": [ - "xe-0/1/0" - ], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-02047 | rt2-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 586, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER CESNET #ams-pra-IX-CESNET-AMS-18088 $GS-00787|", - "circuits": [ - { - "id": 720236, - "name": "AMS-PRA-IX-CESNET-AMS-18088", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1308, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | DUB-LON | to MX1.DUB et-9/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "DUB-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "DUB-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "1/1/c11/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-9 | BUD-VIE | to MX1.BUD et-8/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900161, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUD-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2643", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO.T13 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 820, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-11/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GARR P_AE10 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 733, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-10/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE FACEBOOK P_AE18 SRF9934787 | FB ID: FC-26603", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 905, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-2/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 635, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/3.141", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER REDCLARA #lis-par-SCION-REDCLARA $GS-02435 |", - "circuits": [ - { - "id": 732906, - "name": "LIS-PAR-SCION-REDCLARA", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 564, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "xe-3/0/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 662, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.3250", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #ams-lon-GEANTOpen-JISC-NETHERLIGHT $GS-02400 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1753, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "1/1/c27/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER PIONIER P_lag-22 | PIONIER-AP2-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610901185, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae6", - "bundle": [ - "et-5/1/5" - ], - "bundle-parents": [ - "et-5/1/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02634 | LIS-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 542, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LIS-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.610", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT REDCLARA #FR-CLARA $GS-00883 | ASN27750 |", - "circuits": [ - { - "id": 660557, - "name": "FR-CLARA", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1071, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE FW1-SNM", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1596, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae13.111", - "bundle": [], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "SRV_L3VPN RE_INTERCONNECT ESNET #ESNET-LON-LHCONE $GS-00821 | ASN293", - "circuits": [ - { - "id": 730146, - "name": "ESNET-LON-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 970, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae10.1947", - "bundle": [], - "bundle-parents": [ - "et-4/1/2" - ], - "description": "SRV_GCS CUSTOMER FCCN MICROSOFT #FCCN-IPP-ExpressRoute-Vlan1947 $GS-01141 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707124, - "name": "FCCN-IPP-EXPRESSROUTE-VLAN1947", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 749, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 609, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE |DDOS SERVER 2 10Gb_1 | P_ae22", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1055, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "lag-6", - "bundle": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01827 | FRA-PRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177286, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-PRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "FRA-PRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/2/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 601, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-owd-ams.nl.geant.org pS OWAMP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1454, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae1.519", - "bundle": [], - "bundle-parents": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #snm-server-mgmt $GS-00151 | IT Refresh SERVER MGMT", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 833, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae1.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #CHI-CHI-IPTRUNK $GS-00028 | CHI-CHI |", - "circuits": [ - { - "id": 713273, - "name": "CHI-CHI-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 549, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-CHI", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CHI-CHI", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae12.1100", - "bundle": [], - "bundle-parents": [ - "et-4/0/5", - "et-8/0/5", - "et-11/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER GARR CERN #gen-gen-GARR-CERNlight-CERN-GARR-16011 $GS-00708 |", - "circuits": [ - { - "id": 707040, - "name": "GEN-GEN-GARR-CERNLIGHT-CERN-GARR-16011", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 765, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - }, - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "ae2", - "bundle": [ - "xe-0/1/0" - ], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-02039 | rt2-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 586, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "2/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | PRA-VIE | to MX1.VIE et-1/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162113, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "2/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | LON2-LON2 | TO MX1.LON2.UK-et-3/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162817, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.103", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-FRA-DE $GS-00117| ", - "circuits": [ - { - "id": 729104, - "name": "DCN-MANAGEMENT-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 970, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-3/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | FRA-FRA | TO RT0.FRA.DE- 1/1/c19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 649, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae20.100", - "bundle": [], - "bundle-parents": [ - "et-1/0/2", - "et-1/0/5" - ], - "description": "SRV_IAS PUBLIC DE-CIX #IX-Peerings-in-DE-CIX-FRA $GS-00947 |", - "circuits": [ - { - "id": 730796, - "name": "IX-PEERINGS-IN-DE-CIX-FRA", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 668, - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "DE-CIX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DE-CIX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.101", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MAEEN INTERNET2 #LON-PAR-GEANTOpen-MAEEN-INTERNET2-21086 $GS-00728 | ", - "circuits": [ - { - "id": 736648, - "name": "LON-PAR-GEANTOPEN-MAEEN-INTERNET2-21086", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1132, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MAEEN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "MAEEN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4088", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-UCLOUVAIN-ExpressRoute-VLAN4088 $GS-02161 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739665, - "name": "BELNET-UCLOUVAIN-EXPRESSROUTE-VLAN4088", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1672, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ACONET P_AE15 SRF20026 | ACONET ID: Linz-Wien EP 36 (0203/1702673)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 628, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ACONET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ACONET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 560, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-3", - "bundle": [ - "1/x1/1/c8/1", - "1/x1/1/c8/2" - ], - "bundle-parents": [ - "1/x1/1/c8/1", - "1/x1/1/c8/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02368 | SOF-ZAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-ZAG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SOF-ZAG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10.1955", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KIFU GEANT #bud-bud-KIFU-RARE-200100 $GS-00683 | ", - "circuits": [ - { - "id": 705914, - "name": "BUD-BUD-KIFU-RARE-200100", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 814, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.24", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET_MICROSOFT_ExpressRoute_VLAN_4083 $GS-01128 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739677, - "name": "BELNET-STADKORTRIJK-EXPRESSROUTE-VLAN-4083", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 605, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-lhc-bw-par-fr.geant.org pS BWCTL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1202, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 536, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23.100", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_GLOBAL CUSTOMER SWITCH #SWITCH-AP1 $GS-00514 | ASN559 |", - "circuits": [ - { - "id": 663078, - "name": "SWITCH-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1271, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 597, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae19", - "bundle": [ - "et-1/0/2" - ], - "bundle-parents": [ - "et-1/0/2" - ], - "description": "LAG CUSTOMER UOM SRF19046 $GA-02163 | #UOM-AP2-100G-LAG | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 622, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "UOM", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "UOM", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SRX1-to-SRX2-AMS", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 514, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "lag-4", - "bundle": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02268 | AMS-LON", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-8/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE AKAMAI P_AE27 | Interxion ID: DP76931", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 996, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-7/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | LON-LON | to RT0.LON 2/1/c19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1390, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae15", - "bundle": [ - "xe-2/1/0" - ], - "bundle-parents": [ - "xe-2/1/0" - ], - "description": "LAG RE_INTERCONNECT MARWAN $GA-02449 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 801, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "MARWAN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MARWAN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS | EX1 MGMT - ex1.lon2.uk.geant.net", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 523, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:3060", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET ORACLE #OFCFODMOB-02630 $GS-02630", - "circuits": [ - { - "id": 744345, - "name": "OFCFODMOB-02630", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "1/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to LON01.GRV1 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899777, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-2/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | DDOS Mitigation Server 1 DATA link | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 931, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae3", - "bundle": [ - "et-4/0/2", - "et-4/0/5" - ], - "bundle-parents": [ - "et-4/0/2", - "et-4/0/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01787 | LIS-POR |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 539, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-POR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LIS-POR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.2733", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE SAO-DUB | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 810, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 527, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-2/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | BUC-CHI | ROEDUNET CID: BUC-CHI-040-4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 556, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c6/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | MIL2-THE | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916226, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-THE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-THE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "xe-0/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENAM P_AE10 SRF21066 | RENAM ID: MX240 xe-2/0/2-AP2-L2 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 562, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 603, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "xe-0/1/3.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER RENAM #buc-chi-RENAM-ROEDUNET-240752 $GS-02576 |", - "circuits": [ - { - "id": 743607, - "name": "BUC-CHI-RENAM-ROEDUNET-240752", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 539, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-3", - "bundle": [ - "1/1/c13/1" - ], - "bundle-parents": [ - "1/1/c13/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-50068 | LON2-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX2-SRX1-AMS-OFFICE |", - "circuits": [ - { - "id": 708319, - "name": "SRX2-SRX1-AMS-OFFICE", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 522, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "2/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | PAR-PAR | TO MX1.PAR.FR et-9/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162817, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PAR-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PAR-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae16.100", - "bundle": [], - "bundle-parents": [ - "xe-1/2/1", - "xe-1/2/3", - "xe-2/0/7", - "xe-2/1/2" - ], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #GEANT-Slough-Access $GS-00469 | Fortigate WAN GEANT-IT", - "circuits": [ - { - "id": 661315, - "name": "GEANT-SLOUGH-ACCESS", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1037, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 561, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-11/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GARR P_AE12 SRF21107 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1214, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-22.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER CARNET #CARNET-AP1 $GS-00440 | ASN2108 | ", - "circuits": [ - { - "id": 747838, - "name": "CARNET-AP1", - "type": "GEANT IP", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "15", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1337, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "lag-6.0", - "bundle": [], - "bundle-parents": [ - "1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #DUB-LON-IPTRUNK $GS-00031 | DUB-LON | ", - "circuits": [ - { - "id": 747278, - "name": "DUB-LON-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "DUB-LON", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DUB-LON", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.908", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #AMS-PAR-MISC-GEANT-INTERNET2-9940543 $GS-00654 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1738, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.207", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT SINET #FR-SINET $GS-00885 | ASN2907 | MANLAN ID: 207", - "circuits": [ - { - "id": 661583, - "name": "FR-SINET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 869, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae2.998", - "bundle": [], - "bundle-parents": [ - "xe-3/2/2", - "xe-3/2/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-lis-pt $GS-00153 | SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 679551, - "name": "EX3400-MANAGEMENT-LIS-PT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 736, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/3/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 610, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #SOF-THE-IPTRUNK $GS-02424 | SOF-THE | ", - "circuits": [ - { - "id": 745269, - "name": "SOF-THE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 8, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-THE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SOF-THE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "ae3", - "bundle": [ - "et-0/0/0" - ], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02040 | CHI-KIE |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 587, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-KIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CHI-KIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-22:1630", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET SCION #SCION-02381 $GS-02381", - "circuits": [ - { - "id": 745491, - "name": "SCION-02381", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c12/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900226, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae13", - "bundle": [ - "et-3/0/4" - ], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "LAG RE_INTERCONNECT ESNET $GA-01549 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 703, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-1", - "bundle": [ - "1/x1/1/c8/1", - "1/x1/1/c8/2", - "1/x1/1/c9/1" - ], - "bundle-parents": [ - "1/x1/1/c8/1", - "1/x1/1/c8/2", - "1/x1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01741 | LJU-MIL2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-MIL2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LJU-MIL2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12", - "bundle": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "LAG CUSTOMER RENATER $GA-01816 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 678, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae11.333", - "bundle": [], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "SRV_IAS CUSTOMER DFN #DFN-AP1-IAS IASPS $GS-00566 | ASN680 |", - "circuits": [ - { - "id": 743293, - "name": "DFN-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 784, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "DFN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "lag-7.0", - "bundle": [], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #POZ-PRA-IPTRUNK $GS-02407 | POZ-PRA | ", - "circuits": [ - { - "id": 740495, - "name": "POZ-PRA-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-PRA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "POZ-PRA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae20.111", - "bundle": [], - "bundle-parents": [ - "xe-2/0/3", - "xe-2/1/1" - ], - "description": "SRV_L3VPN RE_INTERCONNECT NKN #NKN-GEN-LHCONE $GS-00833 | ASN9885", - "circuits": [ - { - "id": 678079, - "name": "NKN-GEN-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 897, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "NKN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NKN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "et-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | BUC-CHI | Connected to GRV02 1/1/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 593, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae11.3061", - "bundle": [], - "bundle-parents": [ - "xe-0/1/1" - ], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET ORACLE #OFCFODMOB-02631 $GS-02631", - "circuits": [ - { - "id": 744387, - "name": "OFCFODMOB-02631", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 690, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ORACLE", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae2.103", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-CHI1-MD $GS-00127 | DCN MANAGEMENT ", - "circuits": [ - { - "id": 713270, - "name": "DCN-MANAGEMENT-CHI1-MD", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 550, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY To Switch Cluster vme.0", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 518, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "lag-5", - "bundle": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01961 | FRA-GEN", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177285, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/2/4.1629", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #gen-par-SCION-SCION-INTERNET2-2 $GS-02311 |", - "circuits": [ - { - "id": 736653, - "name": "GEN-PAR-SCION-SCION-INTERNET2-2", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1262, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae5", - "bundle": [ - "et-0/0/0" - ], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02018 | BUC-CHI", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 613, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER URAN SRF21-059 P_AE10 | URAN Circuit ID:GEANT-POZ-IEV-1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 560, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae16", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01704 | LON2-PRD-ESX10 VM TRAFFIC LAG", - "circuits": [ - { - "id": 658674, - "name": "LON2-PRD-ESX10-VM-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 604, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-20.12", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER HEANET #HEANET-AP1 $GS-00473 | ASN1213 | ", - "circuits": [ - { - "id": 747282, - "name": "HEANET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.100", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #CAM-OFFICE-TO-AMS-OFFICE-L2CIRCUIT |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1547, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-2/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC VIX P_AE10 | DR ID: AT275860 | VIX ID: 1298-1761569", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 926, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3240", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET HARNET #lon-lon-GEANTOpen-HARNET-NORDUNET $GS-02606 | ", - "circuits": [ - { - "id": 742671, - "name": "LON-LON-GEANTOPEN-HARNET-NORDUNET", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 631, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "HARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.938", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CESNET #pra-ams-CESNET-SURF-FABRIC $GS-02649 |", - "circuits": [ - { - "id": 747231, - "name": "PRA-AMS-CESNET-SURF-FABRIC", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1763, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/3.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #par-fra-SUPERPOP-QFX-GEANT $GS-00078 |", - "circuits": [ - { - "id": 729477, - "name": "FRA-PAR-SUPERPOP-QFX-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1121, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae15", - "bundle": [ - "et-3/1/5" - ], - "bundle-parents": [ - "et-3/1/5" - ], - "description": "LAG PRIVATE GOOGLE $GA-02247 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 769, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-1/3/0.2100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER AARNET NETHERLIGHT #lon-lon-GEANTOpen-AARNET-NETHERLIGHT-21003 $GS-00284 |", - "circuits": [ - { - "id": 709856, - "name": "LON-LON-GEANTOPEN-AARNET-NETHERLIGHT-21003", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 662, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-2/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GARR P_AE10 SRF9926135 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 712, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "et-7/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE7 | AMT RELAY LINK #1 | TO AMT1.LON2.UK et-0/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 893, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-4/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 992, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-1", - "bundle": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02469 | LON2-LON2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-LON2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LON2-LON2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-7/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE T-SYSTEMS P_AE21 SRF22104 |T-systems CID:237419053/230216-2621", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 544, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "et-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | CHI-CHI |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 594, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-CHI", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CHI-CHI", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-101", - "bundle": [ - "1/x1/1/c2/2", - "1/x1/1/c2/3" - ], - "bundle-parents": [ - "1/x1/1/c2/2", - "1/x1/1/c2/3" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-1/3/0.3101", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SURF AARNET #lon-lon-SURF-AARNET-23009 $GS-02249 |", - "circuits": [ - { - "id": 726158, - "name": "LON-LON-SURF-AARNET-23009", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1141, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - }, - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/3/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 624, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.26", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-MULTICAST-TUNNEL-UTWENTE $GS-02448", - "circuits": [ - { - "id": 736888, - "name": "GRE-MULTICAST-TUNNEL-UTWENTE", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1585, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.13", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET_ICT_ExpressRoute_Vlan4091 $GS-01125 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739679, - "name": "BELNET-ICT-EXPRESSROUTE-VLAN4091", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 596, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "2/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | GEN-PAR | connected to GEN01.GRV5 port 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162049, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 622, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae1.27", - "bundle": [], - "bundle-parents": [ - "xe-3/0/4", - "xe-3/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PRA-DTN-SERVER-1-iDRAC", - "circuits": [ - { - "id": 725644, - "name": "PRA-DTN-SERVER-1-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 958, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/2/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-vie-at-bwctl new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 723851, - "name": "PS-VIE-AT-OWAMP-NEW", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 912, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:1006", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET GRNET #FED4FIRE-00669 $GS-00669", - "circuits": [ - { - "id": 747356, - "name": "FED4FIRE-00669", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MAD-MAR | connected to MAR01-GRV1 1/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 679, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 605, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae11.100", - "bundle": [], - "bundle-parents": [ - "et-9/1/5" - ], - "description": "SRV_GLOBAL CUSTOMER UOM #UOM-AP1 $GS-00519 | ASN12046 | ", - "circuits": [ - { - "id": 722110, - "name": "UOM-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 650, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "UOM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "UOM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.7", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-IMEC-ExpressRoute-VLAN4085 $GS-02091 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739663, - "name": "BELNET-IMEC-EXPRESSROUTE-VLAN4085", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 590, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/5.2100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT HBKU #FR-HBKU $GS-00879 | ASN34945 |", - "circuits": [ - { - "id": 661713, - "name": "FR-HBKU", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1526, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "HBKU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HBKU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.3003", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER LAT SURF #EVLBI-JIVE-00662 $GS-00662", - "circuits": [ - { - "id": 745967, - "name": "EVLBI-JIVE-00662", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1125, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - }, - { - "name": "LAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.2200", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER GEANT #AMS-PAR-RENATER-RARE-20070 $GS-00657 |", - "circuits": [ - { - "id": 736080, - "name": "AMS-PAR-RENATER-RARE-20070", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1082, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-6", - "bundle": [ - "2/1/c11/1" - ], - "bundle-parents": [ - "2/1/c11/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02635 | LIS-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177286, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LIS-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/5.2369", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT RE_INTERCONNECT UBUNTUNET ESNET #lon-par-ESnet-ubuntunet-14020 $GS-00737 |", - "circuits": [ - { - "id": 706028, - "name": "LON-PAR-ESNET-UBUNTUNET-14020", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1495, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "1/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | AMS-LON | to LON01.GRV1 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899905, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-LON", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 520, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae5.0", - "bundle": [], - "bundle-parents": [ - "et-7/0/4", - "et-7/1/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK $GS-02458| AMS-AMS | AMS-AMS-NOKIA", - "circuits": [ - { - "id": 735616, - "name": "AMS-AMS-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1326, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 637, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-20.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1" - ], - "description": "SRV_GLOBAL CUSTOMER BREN #BREN-AP1 $GS-00438 | ASN6802 | ", - "circuits": [ - { - "id": 744953, - "name": "BREN-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "8", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "1/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | GEN-GEN | to MX1.GEN.CH et-7/0/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900673, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO SINGAREN #SingAREN-GEO-UK-1 $GA-02230| SRF19075 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1579, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.351", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON-PAR-FR-IDRAC | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", - "circuits": [ - { - "id": 739098, - "name": "FLOWMON-PAR-FR-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1363, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae10", - "bundle": [ - "xe-0/1/1", - "xe-0/1/2" - ], - "bundle-parents": [ - "xe-0/1/1", - "xe-0/1/2" - ], - "description": "LAG CUSTOMER URAN SRF21-056 $GA-02024 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 582, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT MARWAN P_ae15 SRF23094 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1573, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "MARWAN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MARWAN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "irb.518", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #CORIANT-MGMT-LON2-UK-VRF-VLAN518 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 817, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae7", - "bundle": [ - "et-7/0/5" - ], - "bundle-parents": [ - "et-7/0/5" - ], - "description": "LAG INFRASTRUCTURE ACCESS $GA-02301 | LON2-AMT |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 624, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.204", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT CANARIE #FR-CANARIE-vlan204 $GS-00881 | ASN6509 | MANLAN ID: 204", - "circuits": [ - { - "id": 660638, - "name": "FR-CANARIE-VLAN204", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 877, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae12.1006", - "bundle": [], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT CSTNET #FR-IC1-CSTNET-QUINARY $GS-02362 | ASN7497 | ", - "circuits": [ - { - "id": 729006, - "name": "FR-IC1-CSTNET-QUINARY", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 636, - "dashboards": [ - "IC1", - "RE_PEER" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-2", - "bundle": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "bundle-parents": [ - "1/1/c1/1", - "1/1/c5/1", - "1/1/c7/1", - "1/1/c10/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01761 | LON-LON2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-5", - "bundle": [ - "1/x1/1/c6/2" - ], - "bundle-parents": [ - "1/x1/1/c6/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02608 | MIL2-THE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177285, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-THE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MIL2-THE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "et-0/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | KIE-KIE | KIE-KIE-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 536, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-KIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KIE-KIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21.110", - "bundle": [], - "bundle-parents": [ - "1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER EUMETSAT-SVALBARD #EUMET-SVALBARD-HAM-MONITORINGVLAN $GS-02155 | NU-S800116 | - Monitoring Link 1", - "circuits": [ - { - "id": 747590, - "name": "EUMET-SVALBARD-HAM-MONITORINGVLAN", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "14", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "EUMETSAT-SVALBARD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EUMETSAT-SVALBARD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 667, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/3/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | perfSONAR iDRAC", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 563, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae14.116", - "bundle": [], - "bundle-parents": [ - "et-1/1/5", - "et-8/0/2", - "et-8/1/2", - "et-8/1/5" - ], - "description": "SRV_L3VPN CUSTOMER RENATER #RENATER-AP2-IPv6-LHCONE $GS-00856 | ASN2200", - "circuits": [ - { - "id": 733483, - "name": "RENATER-AP2-IPV6-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1383, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1048, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae30", - "bundle": [ - "et-3/0/4" - ], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "LAG RE_INTERCONNECT ESNET $GA-01594 | AMS-ESNET-400G", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1002, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae10.1944", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_GCS CUSTOMER FCCN MICROSOFT #FCCN-NoveSBE-ExpressRoute-Vlan1944 $GS-01144 | MANUALLY MIGRATED FROM MX1.LIS 25/08/21", - "circuits": [ - { - "id": 706526, - "name": "FCCN-NOVESBE-EXPRESSROUTE-VLAN1944", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 613, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae1", - "bundle": [ - "et-0/0/2" - ], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02148 | BRA-BRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 595, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BRA-BRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae44", - "bundle": [ - "et-5/1/0" - ], - "bundle-parents": [ - "et-5/1/0" - ], - "description": "LAG PRIVATE GOOGLE $GA-02225 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1004, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-7/0/5", - "et-7/1/2", - "et-7/1/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #POZ-POZ-IPTRUNK $GS-02528| POZ-POZ | POZ-POZ-MGMT", - "circuits": [ - { - "id": 740149, - "name": "POZ-POZ-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 855, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-POZ", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "POZ-POZ", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "xe-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | BUC-CHI | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 560, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-CHI", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COLT P_AE28 | COLT ID: 444162877", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1042, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COLT - VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COLT - VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-10/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1564, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-5/0/8", - "xe-5/0/9" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-buc-ro| SW2-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 728006, - "name": "EX3400-MANAGEMENT-BUC-RO", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 894, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:705", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET GRNET #FED4FIRE-00668 $GS-00668", - "circuits": [ - { - "id": 745508, - "name": "FED4FIRE-00668", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER AMS #ams-pra-IX-CESNET-AMS-18088 $GS-00787|", - "circuits": [ - { - "id": 720236, - "name": "AMS-PRA-IX-CESNET-AMS-18088", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 928, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "AMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae10.333", - "bundle": [], - "bundle-parents": [ - "et-7/0/2" - ], - "description": "SRV_IAS CUSTOMER LITNET #LITNET-AP2-IAS IASGWS $GS-00535 | ASN2847 |", - "circuits": [ - { - "id": 745338, - "name": "LITNET-AP2-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 882, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "LITNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LITNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "lag-4", - "bundle": [ - "1/1/c5/1" - ], - "bundle-parents": [ - "1/1/c5/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01854 | MIL2-VIE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-VIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MIL2-VIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 845, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c5/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | LON-LON2 | TO LON02 GRV1 1/3/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899777, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4066", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ONDD-ExpressRoute-Vlan4066 $GS-02390 | ", - "circuits": [ - { - "id": 739660, - "name": "BELNET-ONDD-EXPRESSROUTE-VLAN4066", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1660, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.411", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_GCS CUSTOMER RedIRIS Microsoft #RedIRIS-UCLM-ExpressRoute-Vlan411 $GS-01166 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 706055, - "name": "REDIRIS-UCLM-EXPRESSROUTE-VLAN411", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 829, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 850, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-1/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 673, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30.3001", - "bundle": [], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-CONTROL-FRANKFURT-VRF-VLAN3001 $GS-00861 | NAGIOS gateway for taas-control VRF", - "circuits": [ - { - "id": 733003, - "name": "TAAS-CONTROL-FRANKFURT-VRF-VLAN3001", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1129, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.52", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "PHY INFRASTRUCTURE ACCESS FLOWMON SRF0000001 | FlowMon2 Collector Interface CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20170708", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 688, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/8.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DTN-PRA-10G-DATA $GS-02354", - "circuits": [ - { - "id": 727980, - "name": "DTN-PRA-10G-DATA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 959, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "irb.500", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #RE-LON2-UK-VRF-VLAN500 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 812, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae1.0", - "bundle": [], - "bundle-parents": [ - "et-1/0/5", - "et-1/1/2", - "et-1/1/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAR-MIL2-IPTRUNK $GS-01185| MAR-MIL2 | MAR-MIL2", - "circuits": [ - { - "id": 746147, - "name": "MAR-MIL2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 685, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MIL2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MAR-MIL2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10.2804", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KIFU REDIRIS #SZTAKI-KIFU-RedIRIS-SLICES-UC3M $GS-02512|", - "circuits": [ - { - "id": 738341, - "name": "SZTAKI-KIFU-REDIRIS-SLICES-UC3M", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 873, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "KIFU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - { - "name": "KIFU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:3903", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01151 $GS-01151", - "circuits": [ - { - "id": 747628, - "name": "AMS-HAM-MSE-01151", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "2/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | HAM-TAR | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178497, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-TAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HAM-TAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE6 | LON2-PRD-ESX10 NIC2 PORT1", - "circuits": [ - { - "id": 717189, - "name": "LON2-PRD-ESX10-NIC2-PORT1", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 658, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CERN P_AE17 SRF23043-1| fc:33:42:d1:f6:d0 547 E513-E-RJUXM-1.cern.ch ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1333, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-1", - "bundle": [ - "1/1/c9/2" - ], - "bundle-parents": [ - "1/1/c9/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02349 | HAM-TAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-TAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "HAM-TAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.111", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L3VPN RE_INTERCONNECT KREONET #NL-KREONET-LHCONE $GS-00837 | ASN17579", - "circuits": [ - { - "id": 734566, - "name": "NL-KREONET-LHCONE", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1113, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "KREONET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KREONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1050, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 519, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae33.2013", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_L3VPN CUSTOMER NORDUNET #NL-NORDUNET-LHCONE-IPV4 $GS-00838 | ASN2603 |", - "circuits": [ - { - "id": 740767, - "name": "NL-NORDUNET-LHCONE-IPV4", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1693, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/2/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS BENOCS #BENOCS-FRA $GS-02434 | ASN209039", - "circuits": [ - { - "id": 731223, - "name": "BENOCS-FRA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1003, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:cp-300", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET INTERNET2 #GENI-00628 $GS-00628", - "circuits": [ - { - "id": 744064, - "name": "GENI-00628", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT ASREN SRF19049 $GA-01315 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1024, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ASREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ASREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-7/0/4", - "et-7/1/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-GEN-IPTRUNK $GS-02464| GEN-GEN | RT0.GEN to MX1.GEN", - "circuits": [ - { - "id": 739713, - "name": "GEN-GEN-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1459, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-GEN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEN-GEN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 927, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-11/2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 867, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon.uk.geant.net", - "name": "lag-6", - "bundle": [ - "1/1/c8/1" - ], - "bundle-parents": [ - "1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02006 | DUB-LON", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177286, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "DUB-LON", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "DUB-LON", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-2", - "bundle": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01774 | GEN-MIL2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MIL2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GEN-MIL2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "1/x1/1/c26/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RASH P_lag-24", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917505, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RASH", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RASH", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-0/0/40", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN | pS Throughtput Tester Interface", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 542, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "ae1.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #CHI-CHI-IPTRUNK $GS-00028 | CHI-CHI|", - "circuits": [ - { - "id": 713273, - "name": "CHI-CHI-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 605, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-CHI", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CHI-CHI", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-101", - "bundle": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-11/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO TENET #TENET-GEO-UK | P_AE28 SRF21083 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1653, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae1.32", - "bundle": [], - "bundle-parents": [ - "xe-2/1/7", - "xe-2/2/7" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #ESNET-GEN-773-OOB $GS-00877 | ASN293 |", - "circuits": [ - { - "id": 708223, - "name": "ESNET-GEN-773-OOB", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1488, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c26/1" - ], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "LAG CUSTOMER LAT | $GA-02073 | #LAT-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LAT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/0/6.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon-uk-psmp-bwctl | psmp-gn-bw-lon-uk.geant.org pS BWCTL", - "circuits": [ - { - "id": 708187, - "name": "PS-LON-UK-PSMP-BWCTL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1477, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1342, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-22.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/2" - ], - "description": "SRV_IAS CUSTOMER MARNET #MARNET-AP1-IAS IASGWS $GS-00536 | ASN44224 | ", - "circuits": [ - { - "id": 744958, - "name": "MARNET-AP1-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "5", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "MARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-5/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BIL-MAD |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 933, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.991", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access PARIS #PAR-TNMS | Internal network", - "circuits": [ - { - "id": 739097, - "name": "PAR-TNMS", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1226, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/26", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX03 NIC2 PORT3 - VSAN PORT", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 674, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae1", - "bundle": [ - "et-0/0/3" - ], - "bundle-parents": [ - "et-0/0/3" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02023 | KIE-KIE|", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 579, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-KIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KIE-KIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae15", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01703 | LON2-SEC-ESX21 VM Traffic LAG - No LACP", - "circuits": [ - { - "id": 658690, - "name": "LON2-SEC-ESX21-VM-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 603, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae18.551", - "bundle": [], - "bundle-parents": [ - "et-8/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RESTENA RENATER #fra-par-SLICES-RESTENA-RENATER-VL551 $GS-02485 | ", - "circuits": [ - { - "id": 737780, - "name": "FRA-PAR-SLICES-RESTENA-RENATER-VL551", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1604, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - { - "name": "RESTENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "1/x1/1/c4/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916099, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/40", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | pS Throughtput Tester Interface (em3 on psmp-gn-mgmt-lon2-uk.geant.org)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 540, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c2/1" - ], - "bundle-parents": [ - "1/x1/1/c2/1" - ], - "description": "LAG CUSTOMER BREN | $GA-01291 | #BREN-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BREN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BREN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE16 | QFX.LON2.UK xe-1/0/46", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1022, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was PSMP Server", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 605, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae32.0", - "bundle": [], - "bundle-parents": [ - "xe-11/0/2", - "xe-11/2/3" - ], - "description": "SRV_IAS UPSTREAM COGENT #COGENT-GWS-FRA $GS-00066 | ASN174", - "circuits": [ - { - "id": 731788, - "name": "COGENT-GWS-FRA", - "type": "GWS - UPSTREAM", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1028, - "dashboards": [ - "IAS_UPSTREAM" - ], - "dashboard_info": { - "name": "COGENT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COGENT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 812, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 527, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE ORACLE P_AE23 | GEANT-Interxion-AMS8 1-1 | Digital Realty CID: NL159411", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 669, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "1/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | GEN-PAR | Connected to PAR01.GRV2 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899905, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae15.989", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ESNET RENATER #gen-mar-ESNET-RENATER-24038 $GS-02504 |", - "circuits": [ - { - "id": 738302, - "name": "GEN-MAR-ESNET-RENATER-24038", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 728, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP P_AE30 | QFX xe-1/0/18", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1265, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "irb.532", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #tools-access-LON2-UK-VRF-VLAN532 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1659, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "1/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915970, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 596, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-23", - "bundle": [ - "1/x1/1/c27/1", - "2/x1/1/c26/1" - ], - "bundle-parents": [ - "1/x1/1/c27/1", - "2/x1/1/c26/1" - ], - "description": "LAG CUSTOMER ULAKBIM | $GA-01962| #ULAKBIM-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177303, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "2/1/c10/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | GEN-PAR | connected to GEN01.GRV5 port 1/1/9", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162241, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c26/1" - ], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "LAG CUSTOMER EENET | $GA-02053 | EENET-AP1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "EENET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "EENET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae20", - "bundle": [ - "et-1/1/5" - ], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "LAG PUBLIC MIX SRF9929723 $GA-01772 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 694, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "2/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | LON2-PAR | TO PAR.GRV3 - 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162049, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-1/3/0.3920", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER AARNET SINGAREN #AMS-LON-AARNET-SINGAREN-23049 $GS-02342 |", - "circuits": [ - { - "id": 728403, - "name": "AMS-LON-AARNET-SINGAREN-23049", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1257, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "LOGICAL" - }, - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.28", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ONDD-ExpressRoute-Vlan4066 $GS-02390 | ", - "circuits": [ - { - "id": 739660, - "name": "BELNET-ONDD-EXPRESSROUTE-VLAN4066", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 608, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1565, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 533, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 670, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.141", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER REDCLARA #lis-par-SCION-REDCLARA $GS-02435 ", - "circuits": [ - { - "id": 732906, - "name": "LIS-PAR-SCION-REDCLARA", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 675, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.952", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET REDIRIS #SLCUTH-02499 $GS-02499|", - "circuits": [ - { - "id": 745434, - "name": "SLCUTH-02499", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 913, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1458, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "xe-0/1/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER RENAM #chi-kie-EAP-RENAM-URAN-22087 $GS-02212|", - "circuits": [ - { - "id": 723461, - "name": "CHI-KIE-EAP-RENAM-URAN-22087", - "type": "GEANT - GBS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 593, - "dashboards": [ - "EAP", - "GBS_10G" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 519, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.3004", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #AMS-LON-EXPRES-NETHERLIGHT-JISC-18009 $GS-00644 |", - "circuits": [ - { - "id": 734615, - "name": "AMS-LON-EXPRES-NETHERLIGHT-JISC-18009", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1126, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "1/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915972, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae11.600", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-2/1/5" - ], - "description": "SRV_GLOBAL CUSTOMER CESNET #CESNET-AP1 $GS-00444 | ASN2852 |", - "circuits": [ - { - "id": 725106, - "name": "CESNET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 936, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae10", - "bundle": [ - "et-2/0/2", - "et-2/1/5" - ], - "bundle-parents": [ - "et-2/0/2", - "et-2/1/5" - ], - "description": "LAG PUBLIC VIX SRF9923739 $GA-01867 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 690, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-2/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 727, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "lag-6", - "bundle": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "bundle-parents": [ - "1/1/c8/1", - "1/1/c8/2", - "1/1/c9/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01944 | FRA-PRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177286, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-PRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "FRA-PRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae10.700", - "bundle": [], - "bundle-parents": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC INTERNET2 #LON-PAR-SYNGENTA-JISC-INTERNET2-17052 $GS-00730 |", - "circuits": [ - { - "id": 736674, - "name": "LON-PAR-SYNGENTA-JISC-INTERNET2-17052", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1233, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - }, - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae10.25", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-2/1/5", - "et-11/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER GARR UBUNTUNET #lon-mil2-ASI-BSC-to-Fucino-Ubuntunet-GARR-20007 $GS-00735 |", - "circuits": [ - { - "id": 705891, - "name": "LON-MIL2-ASI-BSC-TO-FUCINO-UBUNTUNET-GARR-20007", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 790, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "et-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENAM P_AE10 | RENAM ID: TBC", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 623, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae1", - "bundle": [ - "et-1/0/5", - "et-1/1/2", - "et-1/1/5" - ], - "bundle-parents": [ - "et-1/0/5", - "et-1/1/2", - "et-1/1/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02164 | MAR-MIL2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 684, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAR-MIL2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MAR-MIL2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-21", - "bundle": [ - "1/x1/1/c18/1" - ], - "bundle-parents": [ - "1/x1/1/c18/1" - ], - "description": "LAG CUSTOMER AMRES | $GA-01902 | #AMRES-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177301, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "AMRES", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMRES", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-22.111", - "bundle": [], - "bundle-parents": [ - "1/1/c27/1" - ], - "description": "SRV_L3VPN CUSTOMER PIONIER #PIONIER-AP2-LHCONE $GS-00843 | ASN8501 | ", - "circuits": [ - { - "id": 747600, - "name": "PIONIER-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "10", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-SOF-BG-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "11", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | GEN-MIL2 | to RT1.MIL2 et-9/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899970, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.1237", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KREONET RARE #AMS-AMS-KREONET-RARE-22097 $GS-02218 | ", - "circuits": [ - { - "id": 736100, - "name": "AMS-AMS-KREONET-RARE-22097", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1119, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "KREONET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "KREONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/3.1640", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRnet SCION SCION-02382 $GS-02382", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1126, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.1916", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE INTERNET2 RNP #AMS-PAR-RARE-INTERNET2-RNP-20061 $GS-00655 |", - "circuits": [ - { - "id": 736072, - "name": "AMS-PAR-RARE-INTERNET2-RNP-20061", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1537, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "2/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-22 | GRNET-LHCONE-IP1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178113, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "1/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | AMS-AMS | to RT1.AMS et-7/0/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900673, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae31", - "bundle": [ - "xe-4/3/5", - "xe-8/0/0" - ], - "bundle-parents": [ - "xe-4/3/5", - "xe-8/0/0" - ], - "description": "LAG INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 711, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 613, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-10/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | NORDUNET AP UPGRADE | LR4 Installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1560, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 601, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.3020", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-PAR-SINET-SD-WAN-SINET-SINET-17090 $GS-00659 |", - "circuits": [ - { - "id": 736070, - "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17090", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1080, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.612", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-PAR-COPERNICUS $GS-00849 | ASN27750", - "circuits": [ - { - "id": 736650, - "name": "REDCLARA-PAR-COPERNICUS", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1136, - "dashboards": [ - "COPERNICUS", - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "1/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | to AMS01-GRV1 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899521, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/16", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE17 | LON2-PRD-ESX11 NIC2 PORT2", - "circuits": [ - { - "id": 658557, - "name": "LON2-PRD-ESX11-NIC2-PORT2", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 667, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 534, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ge-0/0/36", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX01 IDRAC", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 553, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE3 | LON2-PRD-ESX03 NIC2 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 657, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/1/5.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER JISC #ams-lon-LOFAR-NETHERLIGHT-JISC-10007 $GS-00783", - "circuits": [ - { - "id": 711990, - "name": "AMS-LON-LOFAR-NETHERLIGHT-JISC-10007", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 773, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE DTN-Project #HAM-DTN-10G-DATA $GA-02286", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899587, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c24/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ARNES P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917378, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae7.10", - "bundle": [], - "bundle-parents": [ - "et-8/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FRA-FRA-AMT-RELAYLINK $GS-02306 | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1713, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4070", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEFEDPOL-02524 $GS-02524", - "circuits": [ - { - "id": 744256, - "name": "MSEFEDPOL-02524", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-4/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE- WAS FRA-GEN", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1439, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/3/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 611, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/3/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 610, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-5/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 | QFX xe-1/0/29", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 823, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "1/1/c8/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRU-PAR-IPTRUNK $GS-02280 | BRU-PAR | ", - "circuits": [ - { - "id": 744055, - "name": "BRU-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 6, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRU-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BRU-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "2/x1/1/c2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-9 | BRU-BRU | to RT1.BRU xe0-0/1/7", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178116, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRU-BRU", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRU-BRU", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | NEMO DDOS SERVER link 1 Node 1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1281, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 520, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/1/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 535, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 925, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "et-1/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC MIX P_AE20 SRF9949654 | MIX ID: XCID202001-019", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 662, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | BRA-BRA-MGMT | to RT0.BRA.SK 1/X1/1/C2/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 563, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA-MGMT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BRA-MGMT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-21.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1", - "1/x1/1/c26/2" - ], - "description": "SRV_IAS CUSTOMER ULAKBIM #ULAKBIM-AP1-IAS IASPS $GS-00591 | ASN8517 | ", - "circuits": [ - { - "id": 745293, - "name": "ULAKBIM-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "11", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER PIONIER SRF9915527 $GA-01372 | Connection to Pionier Project Switch", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 572, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 528, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 929, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ge-0/0/33", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik A IPMI", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 550, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.3005", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02640 $GS-02640 |", - "circuits": [ - { - "id": 732564, - "name": "RARE-P4-B1-FRA", - "type": "L2SERVICES", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1438, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/15", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE16 | LON2-PRD-ESX10 NIC2 PORT2", - "circuits": [ - { - "id": 658650, - "name": "LON2-PRD-ESX10-NIC2-PORT2", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 666, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO ESnet #ESnet-GEO-UK-1 $GA-01449 | Lon-ESnet-OPEN-400G", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 870, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-20.111", - "bundle": [], - "bundle-parents": [ - "1/1/c11/1", - "1/1/c11/2", - "1/1/c12/1", - "1/1/c12/2" - ], - "description": "SRV_L3VPN CUSTOMER JISC #JISC-AP2-LHCONE $GS-02474 | ASN786 | ", - "circuits": [ - { - "id": 743311, - "name": "JISC-AP2-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "7", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | psmp-gn-owd-lon-uk.geant.org pS OWAMP", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 759, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/35", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik D Data Port 1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 733, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "et-5/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 799, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.300", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET INTERNET2 #GENI-00628 $GS-00628", - "circuits": [ - { - "id": 744064, - "name": "GENI-00628", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 903, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-8.0", - "bundle": [], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON2-PAR-IPTRUNK $GS-00053 | LON2-PAR | ", - "circuits": [ - { - "id": 739436, - "name": "LON2-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY to Virgin Media NTU", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 517, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "1/x1/1/c26/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ARNES P_lag-20", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610917506, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.43", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-HoGENT-ExpressRoute-VLAN4070 $GS-02574 | ", - "circuits": [ - { - "id": 741111, - "name": "BELNET-HOGENT-EXPRESSROUTE-VLAN4070", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 688, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae10.1931", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_GLOBAL CUSTOMER FCCN #FCCN-AP2 $GS-00460 | ASN1930", - "circuits": [ - { - "id": 712362, - "name": "FCCN-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 608, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "2/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | GEN-PAR | connected to GEN01.GRV5 port 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611161665, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae21.4003", - "bundle": [], - "bundle-parents": [ - "et-7/1/0" - ], - "description": "SRV_L3VPN CUSTOMER T-SYSTEMS #DE-T-SYSTEMS-COPERNICUS $GS-02332 | ASN6878", - "circuits": [ - { - "id": 727979, - "name": "DE-T-SYSTEMS-COPERNICUS", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 716, - "dashboards": [ - "COPERNICUS", - "NREN" - ], - "dashboard_info": { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "1/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | FRA-FRA | TO RT1.FRA.DE-et-3/0/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900673, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "irb.519", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SERVER-MGMT-LON2-UK-VRF-VLAN519 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 830, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-21.111", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c25/1" - ], - "description": "SRV_L3VPN CUSTOMER ARNES #ARNES-AP1-LHCONE $GS-00807 | ASN2107 | ", - "circuits": [ - { - "id": 747535, - "name": "ARNES-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "10", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae13.106", - "bundle": [], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #UK-ESNET-IPV6 $GS-00916 | ASN293 | Lon-ESnet-IPv6-400G", - "circuits": [ - { - "id": 730142, - "name": "UK-ESNET-IPV6", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 969, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "1/1/c1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | To FRA01-GRV2- 1/3/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899521, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 690, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4090", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-fgov-ExpressRoute-Vlan4090 $GS-01124 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739678, - "name": "BELNET-FGOV-EXPRESSROUTE-VLAN4090", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1674, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-4/1/4.1488", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER ESNET #lon-par-NCSA-LAAS-ESNET-RENATER-15057 $GS-00738 |", - "circuits": [ - { - "id": 738739, - "name": "LON-PAR-NCSA-LAAS-ESNET-RENATER-15057", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1517, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 584, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-3", - "bundle": [ - "1/x1/1/c8/1" - ], - "bundle-parents": [ - "1/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02385 | COR-DUB", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-DUB", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "COR-DUB", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae13", - "bundle": [ - "et-4/0/4" - ], - "bundle-parents": [ - "et-4/0/4" - ], - "description": "LAG RE_INTERCONNECT ESNET $GA-01482 | ASN293 | Lon-ESNET-400G", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 941, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae33.100", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 - DIRTY-IAS | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 815, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/16", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE17 | LON2-PRD-ESX11 NIC1 PORT2", - "circuits": [ - { - "id": 658457, - "name": "LON2-PRD-ESX11-NIC1-PORT2", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 531, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "2/1/c19/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | AMS-AMS | to RT1.AMS et-7/1/4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162817, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 850, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae10.1930", - "bundle": [], - "bundle-parents": [ - "et-4/1/2" - ], - "description": "SRV_GLOBAL CUSTOMER FCCN #FCCN-AP1 $GS-00459 | ASN1930", - "circuits": [ - { - "id": 661976, - "name": "FCCN-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 600, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/2/7.22", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-par-fr-owamp new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 722337, - "name": "PS-PAR-FR-OWAMP-NEW", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 921, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae2", - "bundle": [ - "et-4/0/0" - ], - "bundle-parents": [ - "et-4/0/0" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-50061 | BUC-BUC", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 630, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUC", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUC-BUC", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae26", - "bundle": [ - "xe-11/2/7" - ], - "bundle-parents": [ - "xe-11/2/7" - ], - "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE #1 FOR NORDUNET SRF19135 $GA-01946 | GEANT-FRA32-09XGMR-CIS-1-PRI-12062019", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1198, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-2/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 729, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae14", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01702 | LON2-SEC-ESX20 VM Traffic LAG - No LACP", - "circuits": [ - { - "id": 658686, - "name": "LON2-SEC-ESX20-VM-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 602, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1", - "bundle": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-01826 |mx1-sw2 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 685, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae18.0", - "bundle": [], - "bundle-parents": [ - "xe-0/0/0", - "xe-0/0/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | SPLUNK AMS PEER01 MGMT | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 969, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | BIL-PAR | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 677, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "et-4/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | LIS-POR | Infinera GRV1 1/1/4 Facing PORTO", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 683, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-POR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LIS-POR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 518, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae10.3260", - "bundle": [], - "bundle-parents": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC NEA3R #lon-lon-GEANTOpen-JISC-NEA3R $GS-02399 |", - "circuits": [ - { - "id": 732707, - "name": "LON-LON-GEANTOPEN-JISC-NEA3R", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1166, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NEA3R", - "interface_type": "LOGICAL" - }, - { - "name": "JISC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "et-5/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | LIS-MAD | 200G", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 773, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LIS-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.5", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01151 $GS-01151", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 588, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-10/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE APPLE-2 P_AE45 | ASN714", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 662, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 751, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 560, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-0/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 10G-LR | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 591, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae1.103", - "bundle": [], - "bundle-parents": [ - "xe-3/0/4", - "xe-3/0/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN_MANAGEMENT | ", - "circuits": [ - { - "id": 734049, - "name": "DCN_MANAGEMENT_PRA2", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 947, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-21.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1", - "1/x1/1/c26/2" - ], - "description": "SRV_GLOBAL CUSTOMER ULAKBIM #ULAKBIM-AP1 $GS-00517 | ASN8517 | ", - "circuits": [ - { - "id": 745292, - "name": "ULAKBIM-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "10", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ULAKBIM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae30.3005", - "bundle": [], - "bundle-parents": [ - "xe-5/0/2", - "xe-5/0/3", - "xe-7/0/2", - "xe-7/0/3" - ], - "description": "SRV_VPLS INFRASTRUCTURE RARE P4 #RARE-Gateway $GS-00770 | pfSense Gateway for RARE P4 Box VPLS", - "circuits": [ - { - "id": 733914, - "name": "RARE-GATEWAY", - "type": "L2SERVICES", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1133, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | VIE-VIE | to RT0.VIE 1/1/c12/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 914, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "VIE-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae13", - "bundle": [ - "et-1/0/2", - "et-10/0/2" - ], - "bundle-parents": [ - "et-1/0/2", - "et-10/0/2" - ], - "description": "LAG CUSTOMER SWITCH SRF9925393 $GA-01817 | SWITCH AP2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 684, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #bud-fra-RARE-P4-9951387 $GS-00684 | RARE P4 TESTBED", - "circuits": [ - { - "id": 708177, - "name": "BUD-FRA-RARE-P4-9951387", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1443, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.2705", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV-L2CIRCUIT CUSTOMER PIONIER KIFU #PSNC-KIFU-SLICES-SZTAKI $GS-02491|", - "circuits": [ - { - "id": 738292, - "name": "PSNC-KIFU-SLICES-SZTAKI", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 627, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL-PAR-IPTRUNK $GS-00016 | BIL-PAR | BIL-PAR", - "circuits": [ - { - "id": 739468, - "name": "BIL-PAR-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BIL-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae16", - "bundle": [ - "et-11/3/0" - ], - "bundle-parents": [ - "et-11/3/0" - ], - "description": "LAG PRIVATE FACEBOOK $GA-01863 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 696, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-5/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CERN LHCONE P_AE10 SRF22071 | B513-B513 link (FR4)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1212, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae18", - "bundle": [ - "xe-0/0/0", - "xe-0/0/1" - ], - "bundle-parents": [ - "xe-0/0/0", - "xe-0/0/1" - ], - "description": "LAG INFRASTRUCTURE ACCESS | splunk-ams-peer01-peer01.geant.org | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 962, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "et-4/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 100G LR4 CFP INSTALLED", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1010, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34", - "bundle": [ - "et-1/1/5" - ], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "LAG CUSTOMER NETHERLIGHT $GA-01593 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1546, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "NETHERLIGHT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 619, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM CenturyLink SRF19096 $GA-01651 |EAP AZSCIENCENET GWS | CL ID: 441303554 ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 904, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "CENTURYLINK - FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CENTURYLINK - FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "et-2/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CESNET P_AE11 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 896, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-2/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 632, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02190 |SCION server 2 external port", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1308, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.991", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-LON $GS-00119 |", - "circuits": [ - { - "id": 745871, - "name": "DCN-MANAGEMENT-LON", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 775, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "xe-3/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 656, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COGENT P_AE19 | Cogent ID: 1-300398288", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 926, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COGENT - BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COGENT - BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.7", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEIMEC-02092 $GS-02092", - "circuits": [ - { - "id": 744142, - "name": "MSEIMEC-02092", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1391, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-3/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 100GB LR4 CFP2 INSTALLED", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 689, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.998", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-ams-nl $GS-00147 | SW3-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 736107, - "name": "EX3400-MANAGEMENT-AMS-NL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1022, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "irb.999", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-gen-ch-mgmt-vrf-vlan999 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 678, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-20.111", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c18/2", - "1/x1/1/c24/1", - "1/x1/1/c24/2" - ], - "description": "SRV_L3VPN CUSTOMER ARNES #ARNES-AP2-LHCONE $GS-00808 | ASN2107 | ", - "circuits": [ - { - "id": 747853, - "name": "ARNES-AP2-LHCONE", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "11", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/2.401", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET CANARIE #lon-lon-MISC-UBUNTUNET-CANARIE-170351 $GS-00727 |", - "circuits": [ - { - "id": 709304, - "name": "LON-LON-MISC-UBUNTUNET-CANARIE-170351", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1565, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.buc.ro.geant.net", - "name": "lag-20.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER ROEDUNET #ROEDUNET-AP1-IAS IASPS $GS-00544 | ASN2614 | ", - "circuits": [ - { - "id": 747922, - "name": "ROEDUNET-AP1-IAS", - "type": "GEANT PEERING", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23.668", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_IAS PRIVATE EXOSCALE #CH-EXOSCALE-IAS $GS-00601 | ASN61098 |", - "circuits": [ - { - "id": 717332, - "name": "CH-EXOSCALE-IAS", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 709, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "EXOSCALE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EXOSCALE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-7/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | GEN-GEN | to RT0.GEN.CH 2/1/c19/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 836, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-GEN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-GEN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "et-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | PRA-PRA | to RT0.PRA 2/1/C9/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 898, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 10G-LR | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 590, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-par-fr $GS-00157 | SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 733985, - "name": "EX3400-MANAGEMENT-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 739, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-1", - "bundle": [ - "2/x1/1/c6/1" - ], - "bundle-parents": [ - "2/x1/1/c6/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02422 | ATH2-THE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-THE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ATH2-THE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c2/1", - "1/x1/1/c2/4", - "1/x1/1/c4/1", - "1/x1/1/c4/2", - "1/x1/1/c4/3", - "1/x1/1/c4/4" - ], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/4", - "1/x1/1/c4/1", - "1/x1/1/c4/2", - "1/x1/1/c4/3", - "1/x1/1/c4/4" - ], - "description": "LAG CUSTOMER GRNET | $GA-01794 | #GRNET-AP1 | GRNET-AP1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:3508", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET NORDUNET #BRU-HAM-02519 $GS-02519", - "circuits": [ - { - "id": 747534, - "name": "BRU-HAM-02519", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-5/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE T-SYSTEMS 100G LL1 | CID: NL222534 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 986, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-CAM-TO-SWITCHCLUSTER-VME0 | - switch chassis 0 mgmt - primary", - "circuits": [ - { - "id": 708237, - "name": "SRX1-CAM-TO-SWITCHCLUSTER-VME0", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 512, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-10/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PUBLIC DE-CIX P_AE14 | DXDB:PNI:11687 Equinix CID: 22321283 | p18 in odf3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1047, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-20:712", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER GRNET #SLCUTH-02489 $GS-02489|", - "circuits": [ - { - "id": 745413, - "name": "SLCUTH-02489", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #2 SRF20047 | GEANT-EXR02-AMS21-SEC-06162020 | Digital Realty CID: NL144337-2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 563, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae22.2703", - "bundle": [], - "bundle-parents": [ - "xe-10/0/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SCION WACREN #fra-lon-SCION-WACREN $GS-02496 | ", - "circuits": [ - { - "id": 737890, - "name": "FRA-LON-SCION-WACREN", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1482, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "et-7/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | NO QSFP OPTIC INSTALLED", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 895, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4064", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MSER-ULB-ExpressRoute-VLAN4064 $GS-02364 | ", - "circuits": [ - { - "id": 739666, - "name": "BELNET-MSER-ULB-EXPRESSROUTE-VLAN4064", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1658, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "2/x1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | COR-LON2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178498, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COR-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/3/6.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-bud-hu-owamp | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 724901, - "name": "PS-BUD-HU-OWAMP", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1177, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "xe-3/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE2 SRF0000001 | mx2-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 703, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.2015", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-PAR-LHCONE $GS-00847 | ASN27750", - "circuits": [ - { - "id": 661556, - "name": "REDCLARA-PAR-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 624, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "2/x1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | KAU-RIG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178497, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-RIG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "KAU-RIG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.505", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #ASREN-EDGE-DEVICE-VLAN505|ASREN edge-device-SSH CONTACT: matthew.dunn@geant.org IMPLEMENTED: 20190807", - "circuits": [ - { - "id": 740505, - "name": "ASREN-EDGE-DEVICE-VLAN505", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 888, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae10.111", - "bundle": [], - "bundle-parents": [ - "et-5/1/4" - ], - "description": "SRV_L3VPN CUSTOMER CERN #CERN-GEN-LHCONE $GS-00811 | ASN513", - "circuits": [ - { - "id": 663086, - "name": "CERN-GEN-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 798, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 531, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 562, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02195 |SCION server 1 internal port", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1267, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-3/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 693, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae17", - "bundle": [ - "et-1/0/2", - "et-1/1/2" - ], - "bundle-parents": [ - "et-1/0/2", - "et-1/1/2" - ], - "description": "LAG CUSTOMER CERN SRF991519 $GA-01882 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 707, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CERN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CERN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 557, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-8/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | AMS-AMS |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1269, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE1 | LON2-PRD-ESX01 NIC2 PORT1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 655, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER BASNET SRF9921827 $GA-01370 | BASNET-AP-LL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 558, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BASNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BASNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae2.998", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-chi-md $GS-00150 | SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 713271, - "name": "EX3400-MANAGEMENT-CHI-MD", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 551, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-lhc-mgmt-gen.ch.geant.org pS MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1293, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae2.0", - "bundle": [], - "bundle-parents": [ - "et-7/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-BUD-IPTRUNK $GS-02596| BUD-BUD | BUD-BUD-MGMT", - "circuits": [ - { - "id": 742924, - "name": "BUD-BUD-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 709, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-BUD", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUD-BUD", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae16.111", - "bundle": [], - "bundle-parents": [ - "xe-0/0/4", - "xe-0/1/7", - "xe-0/3/1" - ], - "description": "SRV_L3VPN RE_INTERCONNECT KIAE #NL-KIAE-LHCONE $GS-00836 | ASN57484 |", - "circuits": [ - { - "id": 734247, - "name": "NL-KIAE-LHCONE", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1054, - "dashboards": [ - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "KIAE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIAE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "ae10", - "bundle": [ - "xe-0/1/1", - "xe-0/1/2" - ], - "bundle-parents": [ - "xe-0/1/1", - "xe-0/1/2" - ], - "description": "LAG CUSTOMER URAN SRF21-056 $GA-02046 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 588, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "lag-5.0", - "bundle": [], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #PRA-VIE-IPTRUNK $GS-00059 | PRA-VIE | ", - "circuits": [ - { - "id": 740751, - "name": "PRA-VIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 3, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-VIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PRA-VIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "irb.3001", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN INFRASTRUCTURE TAAS GTS #TAAS-CONTROL-FRANKFURT-VRF-VLAN3001-LOGICAL-INTERFACE $GS-00861 | NAGIOS gateway for taas-control VRF", - "circuits": [ - { - "id": 733003, - "name": "TAAS-CONTROL-FRANKFURT-VRF-VLAN3001", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1236, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "lag-1.0", - "bundle": [], - "bundle-parents": [ - "1/1/c19/1", - "2/1/c19/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-GEN-IPTRUNK $GS-02464 | GEN-GEN | RT0.GEN to MX1.GEN", - "circuits": [ - { - "id": 739713, - "name": "GEN-GEN-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-GEN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEN-GEN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/3.902", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GEANT INTERNET2 #lon-lon-MISC-GEANT-INTERNET2-9940169 $GS-00725 |", - "circuits": [ - { - "id": 678922, - "name": "LON-LON-MISC-GEANT-INTERNET2-9940169", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1024, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/18", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE14 | LON2-PRD-ESX20 NIC2 PORT2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 533, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae1.0", - "bundle": [], - "bundle-parents": [ - "et-8/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK-2 $GS-00007 | AMS-AMS IP TRUNK", - "circuits": [ - { - "id": 735976, - "name": "AMS-AMS-IPTRUNK-2", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1624, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS IP TRUNK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS-AMS IP TRUNK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "xe-0/0/2:0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 535, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-3/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER SURF P_AE15 | Connected to SURF Asd001b-jnx-06 et-1/5/2 (port id:22557387)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 727, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-20.33", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "SRV_IAS CUSTOMER LAT #LAT-AP2-IAS IASPS $GS-00578 | ASN5538 | ", - "circuits": [ - { - "id": 746531, - "name": "LAT-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "5", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COLT | P_AE29 Interxion CID: DE201856 | COLT ID: 444032094", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 874, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COLT - FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COLT - FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae11.333", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-2/1/5" - ], - "description": "SRV_IAS CUSTOMER CESNET #CESNET-AP1-IAS IASPS $GS-00563 | ASN2852", - "circuits": [ - { - "id": 661262, - "name": "CESNET-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 935, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "et-7/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 892, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.600", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS FLOWMON | FlowMon1 Collector Interface CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160816", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 891, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "ae4.103", - "bundle": [], - "bundle-parents": [ - "xe-0/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-BRA2-SK | DCN MANAGEMENT ", - "circuits": [ - { - "id": 731653, - "name": "DCN-MANAGEMENT-BRA2-SK", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 610, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae1.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK-2 $GS-00007 | ams-ams trunk", - "circuits": [ - { - "id": 735976, - "name": "AMS-AMS-IPTRUNK-2", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 583, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ams-ams trunk", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ams-ams trunk", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.23", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-par-fr-idrac |perfSONAR iDRAC", - "circuits": [ - { - "id": 739105, - "name": "PS-PAR-FR-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1219, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | COR-LON2 | TO RT2.COR.IE-et-0/0/0", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-LON2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COR-LON2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1344, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1", - "bundle": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-02067|mx1-sw3 (ex3400)|", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 967, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE3 SRF0000001 | rt1-sw2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 663, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae13.989", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ESNET RENATER #gen-mar-ESNET-RENATER-24038 $GS-02504 |", - "circuits": [ - { - "id": 738302, - "name": "GEN-MAR-ESNET-RENATER-24038", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1438, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | RARE EDGECORE WEDGE100BF-32X xe-2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1444, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 529, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/35", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik D Data Port 2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 736, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.11", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-NMO $GS-01085", - "circuits": [ - { - "id": 732668, - "name": "GRE-MULTICAST-TUNNEL-NMO", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1214, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/47", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE31 | MX1.LON2.UK xe-4/0/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 687, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "2/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER BELNET P_lag-21", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611178114, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae1.103", - "bundle": [], - "bundle-parents": [ - "xe-5/0/8", - "xe-5/0/9" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-BUC-RO | ", - "circuits": [ - { - "id": 729934, - "name": "DCN-MANAGEMENT-BUC-RO", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 893, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae25", - "bundle": [ - "xe-0/3/0" - ], - "bundle-parents": [ - "xe-0/3/0" - ], - "description": "LAG CUSTOMER NIKS $GA-02143 | #NL-NIKS-LAG |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1329, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "NIKS", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "NIKS", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "irb.3003", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-throughput-network-fra-de $GS-00299 | Perfsonar test VMs - throughput measurement VLAN", - "circuits": [ - { - "id": 733021, - "name": "PS-THROUGHPUT-NETWORK-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1232, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENATER SRF9924903 $GA-01385 | RENATER Project Circuits ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1274, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-1/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER_GEO AARNET #AARNET-GEO-UK-1 $GA-01480 | SRF20044|", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1055, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AARNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/6.12", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #LON2-PRA-WP6-GTS-20064 $GS-00718 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 794, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-4", - "bundle": [ - "1/x1/1/c8/2" - ], - "bundle-parents": [ - "1/x1/1/c8/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02384 | COR-DUB", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-DUB", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "COR-DUB", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.360", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #RARE-BMS-Server-IDRAC", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1342, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/1/5.105", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT ASNET-TW #NL-ASNET-TW $GS-00888 | ASN9264 |", - "circuits": [ - { - "id": 742821, - "name": "NL-ASNET-TW", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1704, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ASNET-TW", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ASNET-TW", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "et-1/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 941, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.par.fr.geant.net", - "name": "1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | COR-PAR | TO RT2.COR.IE - et-0/0/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900033, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COR-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.gen.ch.geant.net", - "name": "lag-4", - "bundle": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1", - "2/1/c9/2" - ], - "bundle-parents": [ - "2/1/c8/1", - "2/1/c8/2", - "2/1/c9/1", - "2/1/c9/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01878 | GEN-MAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.333", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_IAS CUSTOMER RENATER #RENATER-AP1-IAS IASPS $GS-00583 | ASN2200", - "circuits": [ - { - "id": 661239, - "name": "RENATER-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 587, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.350", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON-PAR-FR-MANAGEMENT | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", - "circuits": [ - { - "id": 739100, - "name": "FLOWMON-PAR-FR-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1358, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "lag-8.0", - "bundle": [], - "bundle-parents": [ - "2/1/c9/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-VIE-IPTRUNK $GS-00019 | BRA-VIE | ", - "circuits": [ - { - "id": 740792, - "name": "BRA-VIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 6, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-VIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BRA-VIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | NEW Uplink for ae1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1583, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ge-1/0/38", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX12 IDRAC", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 692, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/2/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-poz-pl-owamp new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 727551, - "name": "PS-POZ-PL-OWAMP", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 830, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae10.333", - "bundle": [], - "bundle-parents": [ - "et-0/0/2" - ], - "description": "SRV_IAS CUSTOMER FCCN #FCCN-AP2-IAS IASGWS $GS-00528 | ASN1930", - "circuits": [ - { - "id": 712361, - "name": "FCCN-AP2-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 607, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.1007", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT CSTNET #UK-CAE-1-CSTNET-SECONDARY $GS-02391 | ASN7497 | ", - "circuits": [ - { - "id": 732232, - "name": "UK-CAE-1-CSTNET-SECONDARY", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1348, - "dashboards": [ - "CAE1", - "RE_PEER" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae27.4001", - "bundle": [], - "bundle-parents": [ - "et-5/0/2" - ], - "description": "SRV_IAS PRIVATE T-SYSTEMS #NL-T-SYSTEMS-IAS $GS-02271 | ASN6878 |", - "circuits": [ - { - "id": 734863, - "name": "NL-T-SYSTEMS-IAS", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1318, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "T-SYSTEMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | RARE EDGECORE WEDGE100BF-32X xe-1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1443, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.29", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-SPLUNK-SERVER2-iDRAC", - "circuits": [ - { - "id": 736106, - "name": "AMS-SPLUNK-SERVER2-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1019, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae32", - "bundle": [ - "xe-11/0/2", - "xe-11/2/3" - ], - "bundle-parents": [ - "xe-11/0/2", - "xe-11/2/3" - ], - "description": "LAG UPSTREAM COGENT $GA-01939 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1027, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-20:714", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER GRNET REDIRIS #SLCUTH-02499 $GS-02499|", - "circuits": [ - { - "id": 745434, - "name": "SLCUTH-02499", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c8/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-DUB-IPTRUNK $GS-02383 | COR-DUB | ", - "circuits": [ - { - "id": 747279, - "name": "COR-DUB-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 7, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-DUB", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COR-DUB", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.820", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT NKN #NL-NKN $GS-00899 | ASN9885 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1737, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "NKN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NKN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae22.100", - "bundle": [], - "bundle-parents": [ - "et-2/0/0" - ], - "description": "SRV_GLOBAL CUSTOMER IUCC #IUCC-AP2 $GS-00478 | ASN378 |", - "circuits": [ - { - "id": 729999, - "name": "IUCC-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 986, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "IUCC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "IUCC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/41", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE30 | 10_GBS to MX1.LON2.UK xe-2/2/6", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 681, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 576, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 521, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE IT_INFRA | to QFX xe-1/0/0", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 676, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ge-0/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 613, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae24.0", - "bundle": [], - "bundle-parents": [ - "xe-11/2/4" - ], - "description": "SRV_IAS PRIVATE EXOSCALE #DE-EXOSCALE-IAS $GS-00604 | ASN61098 |", - "circuits": [ - { - "id": 731914, - "name": "DE-EXOSCALE-IAS", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1038, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "EXOSCALE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EXOSCALE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 553, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.28", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEONDD-02389 $GS-02389", - "circuits": [ - { - "id": 744236, - "name": "MSEONDD-02389", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1410, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/0/0.200", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT CNGI-6IX #UK-CNGI-6IX-CERNET $GS-00925 | ASN23911 |", - "circuits": [ - { - "id": 661591, - "name": "UK-CNGI-6IX-CERNET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1066, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "CNGI-6IX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CNGI-6IX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was IUCC: GNT-E10-004", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 550, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae20.3020", - "bundle": [], - "bundle-parents": [ - "et-2/1/2", - "et-5/1/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SD-WAN-SINET-SINET-17084 $GS-00648 |", - "circuits": [ - { - "id": 740717, - "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17084", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1291, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.19", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-STAD-EXPRESSROUTE-VLAN4061 $GS-02246 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739667, - "name": "BELNET-STAD-EXPRESSROUTE-VLAN4060", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 665, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.250", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #VM-AMS-NL-IDRACS-250 | NEW VM IDRACS", - "circuits": [ - { - "id": 736097, - "name": "VM-AMS-NL-IDRACS-250", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1517, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-1/0/17", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 649, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/7.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-par-fr-owamp new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 734060, - "name": "PS-PAR-FR-OWAMP", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 819, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-5/0/8", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_ae1 SRF0000001 | rt1-sw2 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 682, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.240", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET TENET #lon-lon-GEANTOPEN-NORDUNET-TENET-18075 $GS-00978 |", - "circuits": [ - { - "id": 718107, - "name": "LON-LON-GEANTOPEN-NORDUNET-TENET-18075", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 943, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "LOGICAL" - }, - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-101", - "bundle": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "et-1/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER BELNET SRF19118 P_AE28| BELNET AP2 |Connected to GRV5 1/1/3| ASN2611", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1567, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "et-1/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | BUC-BUD", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 613, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BUC-BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "1/1/c11/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-7 | POZ-PRA | to RT0.POZ 2/1/c8/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900162, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/2/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | DDOS Mitigation Server link 2 Node 2 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1296, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915969, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae14.0", - "bundle": [], - "bundle-parents": [ - "et-9/1/2" - ], - "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK-32934-VIE-FC-203126784 $GS-00929 | ASN32934", - "circuits": [ - { - "id": 738664, - "name": "FACEBOOK-32934-VIE-FC-203126784", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 853, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FACEBOOK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/5.2110", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 HBKU #lon-par-GEANTOPEN-INTERNET2-HBKU-190092 $GS-00985 |", - "circuits": [ - { - "id": 709340, - "name": "LON-PAR-GEANTOPEN-INTERNET2-HBKU-190092", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1527, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "HBKU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-1/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENATER P_AE12 | RENATER-AP1-2 | DR Circuit ID: FR226645", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1151, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.the.gr.geant.net", - "name": "lag-5.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c6/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2-THE-IPTRUNK $GS-02609 | MIL2-THE | MIL2-THE", - "circuits": [ - { - "id": 745270, - "name": "MIL2-THE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 5, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-THE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-THE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.1237", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER KREONET RARE #AMS-AMS-KREONET-RARE-22097 $GS-02218 | ", - "circuits": [ - { - "id": 736100, - "name": "AMS-AMS-KREONET-RARE-22097", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1536, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "KREONET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "KREONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae17.100", - "bundle": [], - "bundle-parents": [ - "xe-0/3/6" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT UBUNTUNET #NL-UBUNTUNET $GS-00902 | ASN36944 |", - "circuits": [ - { - "id": 735726, - "name": "NL-UBUNTUNET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1344, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-20.83", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "SRV_GLOBAL CUSTOMER LAT #LAT-AP2 $GS-00485 | ASN5538 | ", - "circuits": [ - { - "id": 746529, - "name": "LAT-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae12.3242", - "bundle": [], - "bundle-parents": [ - "et-4/1/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT HARNET #FR-HARNET $GS-02538 | ASN137207 |", - "circuits": [ - { - "id": 742536, - "name": "FR-HARNET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 857, - "dashboards": [ - "IC1", - "RE_PEER" - ], - "dashboard_info": { - "name": "HARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "HARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-11/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS DTN $GA-01465 | 100G testing", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1654, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER URAN SRF-21-059 P_AE10 | URAN Circuit ID: GEANT-KIV-IEV-2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 567, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "URAN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "URAN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "ae3", - "bundle": [ - "et-0/0/0" - ], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02048 | CHI-KIE |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 587, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-KIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CHI-KIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.buc.ro.geant.net", - "name": "lag-20.111", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_L3VPN CUSTOMER ROEDUNET #ROEDUNET-AP1-LHCONE $GS-00857 | ASN2614 | ", - "circuits": [ - { - "id": 747923, - "name": "ROEDUNET-AP1-LHCONE", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": "5", - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-3.0", - "bundle": [], - "bundle-parents": [ - "1/1/c13/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON2-PAR-ROLR-IPTRUNK $GS-50066 | LON2-PAR | ", - "circuits": [ - { - "id": 746141, - "name": "LON2-PAR-ROLR-IPTRUNK$GS-50066", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 8, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-3", - "bundle": [ - "2/x1/1/c8/1", - "2/x1/1/c8/2" - ], - "bundle-parents": [ - "2/x1/1/c8/1", - "2/x1/1/c8/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01909 | BUD-ZAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUD-ZAG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUD-ZAG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.13", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEICT-01133 $GS-01133", - "circuits": [ - { - "id": 744148, - "name": "MSEICT-01133", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1397, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.1103", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_GLOBAL CUSTOMER SURF #SURF-AP1 $GS-00512 | ASN1103 |", - "circuits": [ - { - "id": 734591, - "name": "SURF-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1118, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-1/0/17", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae13 | 10_GBS to RT1.FRA.DE xe-5/0/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 635, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae1", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01673 | FRA-PRD-ESX01 ESXI Traffic LAG", - "circuits": [ - { - "id": 658529, - "name": "FRANKFURT 15-FRANKFURT 15-LAG-050(GEANT)", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 574, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae45.0", - "bundle": [], - "bundle-parents": [ - "et-2/0/5" - ], - "description": "SRV_IAS PRIVATE APPLE #FR-APPLE-IAS $GS-02397 | ASN714 |", - "circuits": [ - { - "id": 730369, - "name": "FR-APPLE-IAS", - "type": "IP PEERING - NON R&E (PRIVATE)", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 705, - "dashboards": [ - "IAS_PEERS", - "IAS_PRIVATE" - ], - "dashboard_info": { - "name": "APPLE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "APPLE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae11", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01699 | LON2-PRD-ESX01 VM Traffic LAG", - "circuits": [ - { - "id": 658519, - "name": "LON2-PRD-ESX01-VM-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 599, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.por.pt.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c9/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #POR-POR-IPTRUNK $GS-02587 | POR-POR | POR-POR", - "circuits": [ - { - "id": 742668, - "name": "POR-POR-IPTRUNK", - "type": "IP TRUNK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POR-POR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "POR-POR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 923, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae12.160", - "bundle": [], - "bundle-parents": [ - "et-1/1/2", - "et-1/1/5", - "et-3/1/0", - "et-3/1/2" - ], - "description": "SRV_GLOBAL CUSTOMER RENATER #RENATER-AP1 $GS-00505 | ASN2200 |", - "circuits": [ - { - "id": 661272, - "name": "RENATER-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 763, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT SINGAREN SRF9941158 $GA-01464 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1585, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "SINGAREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SINGAREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | NEMO DDOS SERVER link 2 Node 1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1285, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/3/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #fra-ams-IT_INFRA-QFX-GEANT $GS-02555 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1679, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "1/x1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RESTENA P_lag-22", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916417, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RESTENA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.201", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RARE REDIRIS #fra-mad-RARE-REDIRIS-23017-VL201 $GS-02274", - "circuits": [ - { - "id": 732759, - "name": "FRA-MAD-RARE-REDIRIS-23017-VL201", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 642, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "1/1/c2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899585, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.20", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEARTEV-01131 $GS-01131", - "circuits": [ - { - "id": 744265, - "name": "MSEARTEV-01131", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1403, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ge-0/3/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 603, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.105", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SPLUNK-FRA-DE | Splunk1 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160917", - "circuits": [ - { - "id": 729099, - "name": "SPLUNK-FRA-DE", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 971, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-21:3911", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER MICROSOFT NORDUNET #AMS-HAM-MSE-01150 $GS-01150", - "circuits": [ - { - "id": 747632, - "name": "AMS-HAM-MSE-01150", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "MICROSOFT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.3507", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT INFRASTRUCTURE RARE P4 #RARE-00774 $GS-00774 |", - "circuits": [ - { - "id": 747031, - "name": "RARE-00774", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 601, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae1", - "bundle": [ - "xe-3/0/0", - "xe-3/0/1" - ], - "bundle-parents": [ - "xe-3/0/0", - "xe-3/0/1" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-02027 | rt1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 576, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "xe-0/0/2:1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 533, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.kie.ua.geant.net", - "name": "ae3", - "bundle": [ - "et-0/0/0" - ], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02026 | KIE-POZ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 581, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-POZ", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KIE-POZ", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/0/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | LON2-PAR-QFX | to QFX xe-0/0/42", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1568, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-uat-mgmt-fra.de.geant.org pS MGMT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1297, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae1.24", - "bundle": [], - "bundle-parents": [ - "xe-2/1/7", - "xe-2/2/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #old-ps-gen-ch-management | OLD perfSONAR MGMT LHCONE", - "circuits": [ - { - "id": 740082, - "name": "OLD-PS-GEN-CH-MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1475, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/0/7.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lhc-gen-ch-bwctl LHC new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 723644, - "name": "PS-LHC-GEN-CH-BWCTL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1319, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae1.520", - "bundle": [], - "bundle-parents": [ - "xe-1/2/0", - "xe-1/2/4" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #snm-idrac-mgmt $GS-00151 | IT Refresh iDRAC MGMT", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 841, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:1175", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER BELNET SCION #FED4FIRE-00671 $GS-00671", - "circuits": [ - { - "id": 745340, - "name": "FED4FIRE-00671", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 587, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE NON-OPERATIONAL", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 595, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/3.1620", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #par-par-SCION-INTERNET2-SCION-1 $GS-02295 |", - "circuits": [ - { - "id": 736658, - "name": "PAR-PAR-SCION-INTERNET2-SCION-1", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1253, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "SCION", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - { - "name": "SCION", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae1.500", - "bundle": [], - "bundle-parents": [ - "xe-4/1/7" - ], - "description": "SRV_L2CIRCUIT CUSTOMER CESNET #pra-vie-CESNET-AP1-CESNET-AP2 $GS-02344 |", - "circuits": [ - { - "id": 728645, - "name": "PRA-VIE-CESNET-AP1-CESNET-AP2", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 678, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-10/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER SURF P_AE11 | 200GB AP2 2_2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 914, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-0/0/41", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE30 | 10_GBS to MX1.LON2.UK xe-2/0/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 541, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.13", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-ECMWF $GS-01076", - "circuits": [ - { - "id": 732667, - "name": "GRE-MULTICAST-TUNNEL-ECMWF", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1216, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "lag-4.0", - "bundle": [], - "bundle-parents": [ - "1/1/c5/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2-VIE-IPTRUNK $GS-00057 | MIL2-VIE | ", - "circuits": [ - { - "id": 740950, - "name": "MIL2-VIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MIL2-VIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MIL2-VIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae1", - "bundle": [ - "xe-3/0/0", - "xe-3/0/1" - ], - "bundle-parents": [ - "xe-3/0/0", - "xe-3/0/1" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-02070 |rt1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 514, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/2/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1054, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-2/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SUPERPOP | LON2-FRA-QFX | to QFX-2 xe-1/0/41", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1586, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.34", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT SWITCH #AMS-GEN-SCION-NETHERLIGHT-SWITCH-20018 $GS-00639 |", - "circuits": [ - { - "id": 734612, - "name": "AMS-GEN-SCION-NETHERLIGHT-SWITCH-20018", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1111, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-1", - "bundle": [ - "1/x1/1/c2/1" - ], - "bundle-parents": [ - "1/x1/1/c2/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02617 | COR-COR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177281, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "COR-COR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "COR-COR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "et-0/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | BIL-POR | Infinera POR01-GRV2 1/1/4 facing Bilbao", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 555, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BIL-POR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BIL-POR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-0/0/41", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE13 | 10_GBS to MX1.PAR.FR xe-4/1/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 543, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "xe-0/0/28", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae0 | RT1 xe-7/0/3", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 647, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae18.53", - "bundle": [], - "bundle-parents": [ - "et-2/0/2" - ], - "description": "SRV_GLOBAL CUSTOMER ACONET #ACONET-AP2 $GS-00423 | ASN1853 |", - "circuits": [ - { - "id": 661508, - "name": "ACONET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 805, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ACONET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ACONET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "ae3", - "bundle": [ - "et-0/0/5", - "et-0/1/2" - ], - "bundle-parents": [ - "et-0/0/5", - "et-0/1/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02029 | LIS-POR |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 578, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-POR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LIS-POR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.521", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #snm-switch-mgmt | IT Refresh QFX MGMT", - "circuits": [ - { - "id": 736102, - "name": "SNM-SWITCH-MGMT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1613, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "xe-3/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P4", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 533, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | GEN-MIL2 | to RT0.GEN.CH 1/1/c9/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900033, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GEN-MIL2", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.chi.md.geant.net", - "name": "ae10.110", - "bundle": [], - "bundle-parents": [ - "et-0/0/1" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RENAM ARELION #bud-chi-EAP-RENAM-ARELION-24033 $GS-02110 | ", - "circuits": [ - { - "id": 738245, - "name": "BUD-CHI-EAP-RENAM-ARELION-24033", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 564, - "dashboards": [ - "EAP", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "et-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BRA-BUD", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 594, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.8", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-AALTO-ExpressRoute-VLAN3906 $GS-01155 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 706994, - "name": "NORDUNET-AALTO-EXPRESSROUTE-VLAN3906", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1392, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/0/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER GEANT-IT #fra-lon2-SUPERPOP-QFX-2-GEANT $GS-00077 |", - "circuits": [ - { - "id": 729418, - "name": "FRA-LON2-SUPERPOP-QFX-2-GEANT", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1072, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT-IT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "gr-4/0/0.1", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L3VPN INFRASTRUCTURE ACCESS #TUNNEL-FORTIGATE-AMSTERDAM $GS-01113| TUNNEL TO FORTIGATE AM", - "circuits": [ - { - "id": 736088, - "name": "TUNNEL-FORTIGATE-AMSTERDAM", - "type": "L3-VPN", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1522, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.930", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS JISC #LON-MAD-GOTO-REDIRIS-JISC-16018 $GS-00734 |", - "circuits": [ - { - "id": 719523, - "name": "LON-MAD-GOTO-REDIRIS-JISC-16018", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1083, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.350", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #RARE-BMS-Server-IDRAC", - "circuits": [ - { - "id": 736781, - "name": "RARE-BMS-SERVER-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1649, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/12", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 528, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1341, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.666", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_L3VPN CUSTOMER SURF #SURF-AP1-LHCONE-2 $GS-00793 | ASN1103 |", - "circuits": [ - { - "id": 734592, - "name": "SURF-AP1-LHCONE-2", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1115, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/2/0.100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS DTN-PROJECT #DTN-PAR-10G-DATA $GS-02375 | 10G Testing CONTACT: Richard.Hughes-Jones@geant.org", - "circuits": [ - { - "id": 678071, - "name": "DTN-PAR-10G-DATA", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 983, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC BOD SRF9925119 $GA-01454 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1463, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-1/0/42", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE14 | 10_GBS to MX1.PAR.FR xe-11/2/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 657, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.54", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS GEANT IT #DataDomain-01-IDRAC PORT |", - "circuits": [ - { - "id": 745867, - "name": "DATADOMAIN-01-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 700, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae35", - "bundle": [ - "et-2/1/2" - ], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "LAG PRIVATE CLOUDFERRO SRF19094 $GA-01966 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1030, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | MAD-MAD | to RT0.MAD 1/x1/1/c2/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 778, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae3", - "bundle": [ - "et-0/0/5", - "et-0/1/5" - ], - "bundle-parents": [ - "et-0/0/5", - "et-0/1/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01935 | BUC-SOF", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 670, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-SOF", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUC-SOF", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-20.33", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_IAS CUSTOMER LAT #LAT-AP1-IAS IASPS $GS-00577 | ASN5538 | ", - "circuits": [ - { - "id": 745986, - "name": "LAT-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "7", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "LAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "LAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "et-5/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | No Optic", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 850, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-23", - "bundle": [ - "2/x1/1/c2/3" - ], - "bundle-parents": [ - "2/x1/1/c2/3" - ], - "description": "LAG CUSTOMER CYNET | $GA-01640 | #CYNET-GRIX | CYNET-GRIX", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1342177303, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CYNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CYNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae18.854", - "bundle": [], - "bundle-parents": [ - "et-8/0/2" - ], - "description": "SRV_L2CIRCUIT CUSTOMER RESTENA RENATER #fra-par-MISC-RESTENA-RENATER-20030 $GS-00704 |", - "circuits": [ - { - "id": 733000, - "name": "FRA-PAR-MISC-RESTENA-RENATER-20030", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1161, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RESTENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RESTENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "et-4/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER REDIRIS P_AE15 SRF23023", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 878, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.43", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEHOGENT-02573 $GS-02573", - "circuits": [ - { - "id": 744239, - "name": "MSEHOGENT-02573", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1702, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae22.1", - "bundle": [], - "bundle-parents": [ - "xe-10/0/0" - ], - "description": "PHY CUSTOMER_GEO WACREN #WACREN-GEO-UK-1 | SRF43753 P_AE22 | ID: SN-20858588|", - "circuits": [ - { - "id": 719823, - "name": "WACREN-GEO-UK-1", - "type": "GEANT OPEN PORT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1170, - "dashboards": [ - "GEANTOPEN" - ], - "dashboard_info": { - "name": "WACREN", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "WACREN", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae24", - "bundle": [ - "xe-11/2/4" - ], - "bundle-parents": [ - "xe-11/2/4" - ], - "description": "LAG PRIVATE EXOSCALE SRF9934309 $GA-01948 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1037, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae15", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01687 | FRA-PRD-ESX05 ESXI Traffic LAG", - "circuits": [ - { - "id": 658662, - "name": "FRANKFURT 15-FRANKFURT 15-LAG-053(GEANT)", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 584, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.26", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-det1-par-fr-idrac | NEMO DDOS Detection 1 iDRAC", - "circuits": [ - { - "id": 739103, - "name": "DDOS-DET1-PAR-FR-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1221, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae1.27", - "bundle": [], - "bundle-parents": [ - "xe-4/0/1", - "xe-4/0/2", - "xe-4/0/7", - "xe-4/1/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-det2-par-fr-idrac | NEMO DDOS Detection 2 iDRAC", - "circuits": [ - { - "id": 739094, - "name": "DDOS-DET2-PAR-FR-IDRAC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1222, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RARE EDGECORE WEDGE100BF-32X xe-0", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1260, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae15.668", - "bundle": [], - "bundle-parents": [ - "et-9/1/5" - ], - "description": "SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-MAD-COPERNICUS $GS-00850 | ASN27750", - "circuits": [ - { - "id": 713845, - "name": "REDCLARA-MAD-COPERNICUS", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 821, - "dashboards": [ - "COPERNICUS", - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/3/2.801", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET INTERNET2 #lon-lon-MISC-UBUNTUNET-INTERNET2-170341 $GS-00729 |", - "circuits": [ - { - "id": 709301, - "name": "LON-LON-MISC-UBUNTUNET-INTERNET2-170341", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1566, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CANARIE", - "interface_type": "LOGICAL" - }, - { - "name": "UBUNTUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ge-0/2/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 597, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-10/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 903, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21", - "bundle": [ - "xe-0/1/3" - ], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE #1 SRF20047 $GA-01911 |GEANT-EXR01-AMS21-PRI-06162020", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1385, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.3", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER REDIRIS MICROSOFT #REDIRIS-UCLM-ExpressRoute-VLAN412 $GS-01164 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707138, - "name": "REDIRIS-UCLM-EXPRESSROUTE-VLAN412", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 586, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-7/1/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 826, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1046, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 575, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "ae12", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01700 | LON2-PRD-ESX02 VM Traffic LAG", - "circuits": [ - { - "id": 658523, - "name": "LON2-PRD-ESX02-VM-TRAFFIC", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 600, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "lag-3", - "bundle": [ - "1/1/c13/1" - ], - "bundle-parents": [ - "1/1/c13/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-50067 | LON2-PAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "et-0/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | CHI-KIE | RETN CID: OC-904687-3.MD.CSN.TRB-UA.KIV.KPI-50GHZ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 617, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-KIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CHI-KIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/0/5.3912", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #Nordunet-TUNI-ExpressRoute-Vlan3912 $GS-01162 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707047, - "name": "NORDUNET-TUNI-EXPRESSROUTE-VLAN3912", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1205, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-4/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 993, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11.142", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER REDCLARA #gen-lis-SCION-REDCLARA $GS-02436 |", - "circuits": [ - { - "id": 732905, - "name": "GEN-LIS-SCION-REDCLARA", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 678, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/7.3004", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #AMS-LON-EXPRES-NETHERLIGHT-JISC-18009 $GS-00644 |", - "circuits": [ - { - "id": 734615, - "name": "AMS-LON-EXPRES-NETHERLIGHT-JISC-18009", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1507, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - }, - { - "name": "NETHERLIGHT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bra.sk.geant.net", - "name": "lag-2", - "bundle": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02601 | BRA-BRA", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177282, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BRA-BRA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae17", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01689 | FRA-PRD-ESX05 VM Traffic LAG", - "circuits": [ - { - "id": 658654, - "name": "FRANKFURT 15-FRANKFURT 15-LAG-051(GEANT)", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 585, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "2/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-5 | PRA-VIE | to MX1.VIE et-1/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162177, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-VIE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.10", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER FCCN MICROSOFT #FCCN_IPP_ExpressRoute_Vlan1947 $GS-01141 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707124, - "name": "FCCN-IPP-EXPRESSROUTE-VLAN1947", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 593, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "FCCN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FCCN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | LR optic connected", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1311, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae17.200", - "bundle": [], - "bundle-parents": [ - "xe-11/3/4" - ], - "description": "SRV_GLOBAL CUSTOMER ASNET-AM #ASNET-AM-AP1 $GS-00430 | ASN47623 |", - "circuits": [ - { - "id": 732136, - "name": "ASNET-AM-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1169, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "xe-2/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | BUC-CHI | ROEDUNET CID: BUC-CHI-040-1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 551, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 763, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae34.1303", - "bundle": [], - "bundle-parents": [ - "et-1/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KREONET SWITCH #ams-par-SCION-KREONET-SWITCH $GS-02291 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 1741, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-8/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | DDOS Mitigation Server link 2 Node 1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 987, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.3102", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L3VPN RE_INTERCONNECT AARNET #AARNET-LON-LHCONE $GS-00805 | ASN7575", - "circuits": [ - { - "id": 661897, - "name": "AARNET-LON-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 682, - "dashboards": [ - "CAE1", - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "AARNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AARNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/0.10", - "bundle": [], - "bundle-parents": [], - "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX2-AMS-Infrastructure-Management |", - "circuits": [ - { - "id": 663187, - "name": "SRX2-AMS-INFRASTRUCTURE-MANAGEMENT", - "type": "CORPORATE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 556, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-101.103", - "bundle": [], - "bundle-parents": [ - "2/x1/1/c2/1", - "2/x1/1/c2/3" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-BRU-BE-VRF-VLAN103 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "5", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae10.333", - "bundle": [], - "bundle-parents": [ - "et-2/0/2", - "et-5/0/2", - "et-9/0/5", - "et-11/1/5" - ], - "description": "SRV_IAS CUSTOMER JISC #JISC-AP1-IAS IASPS $GS-00574 | ASN786", - "circuits": [ - { - "id": 661497, - "name": "JISC-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 781, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bra.sk.geant.net", - "name": "1/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | BRA-BRA-MGMT | to RT1.BRA XE-0/1/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915970, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-BRA-MGMT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "BRA-BRA-MGMT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-20.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/4", - "1/x1/1/c4/1", - "1/x1/1/c4/2", - "1/x1/1/c4/3", - "1/x1/1/c4/4" - ], - "description": "SRV_IAS CUSTOMER GRNET #GRNET-AP1-IAS IASGWS $GS-00530 | ASN5408 | ", - "circuits": [ - { - "id": 745494, - "name": "GRNET-AP1-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "5", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae27", - "bundle": [ - "et-5/0/2" - ], - "bundle-parents": [ - "et-5/0/2" - ], - "description": "LAG PRIVATE T-SYSTEMS $GA-02270 | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1317, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-22:3015", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER JISC #JISC-13015 $GS-00690", - "circuits": [ - { - "id": 747357, - "name": "JISC-13015", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae23", - "bundle": [ - "et-3/1/4" - ], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "LAG CUSTOMER SWITCH AP1 SRF19136 $GA-01880 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 713, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae26.3260", - "bundle": [], - "bundle-parents": [ - "et-1/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC NEA3R #lon-lon-GEANTOpen-JISC-NEA3R $GS-02399 |", - "circuits": [ - { - "id": 732707, - "name": "LON-LON-GEANTOPEN-JISC-NEA3R", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1183, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NEA3R", - "interface_type": "LOGICAL" - }, - { - "name": "JISC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/2/3.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR # psmp-lhc-bw-par-fr new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 720347, - "name": "PSMP-LHC-BW-PAR-FR", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 818, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/0/2.702", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #LON-AMS-DTN-GENERATOR $GS-00722 | RARE P4 TESTBED", - "circuits": [ - { - "id": 736105, - "name": "LON-AMS-DTN-GENERATOR", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 986, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-22", - "bundle": [ - "1/1/c27/1" - ], - "bundle-parents": [ - "1/1/c27/1" - ], - "description": "LAG CUSTOMER PIONIER | $GA-01892 | PIONIER LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177302, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae7", - "bundle": [ - "et-9/0/2", - "et-9/0/5" - ], - "bundle-parents": [ - "et-9/0/2", - "et-9/0/5" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01906 | BUC-BUD", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 847, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-BUD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BUC-BUD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "1/x1/1/c2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915971, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.2709", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER GRNET #SLCUTH-02490 $GS-02490|", - "circuits": [ - { - "id": 745409, - "name": "SLCUTH-02490", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 614, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 900, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "xe-1/2/2.3015", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX-LON2-MGMT | Infoblox NS01 MGMT", - "circuits": [ - { - "id": 729163, - "name": "INFOBLOX-LON2-MGMT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 600, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-4/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1066, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.3220", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER SINGAREN #lon-poz-GEANTOpen-SINGAREN-CAE1-19113-VL3220-PIONIER $GS-00986 |", - "circuits": [ - { - "id": 707007, - "name": "LON-POZ-GEANTOPEN-SINGAREN-CAE1-19113-VL3220-PIONIER", - "type": "GEANT OPEN CROSS CONNECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 678, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae15.333", - "bundle": [], - "bundle-parents": [ - "et-3/1/4" - ], - "description": "SRV_IAS CUSTOMER SURF #SURF-AP1-IAS IASPS $GS-00587 | ASN1103 |", - "circuits": [ - { - "id": 734590, - "name": "SURF-AP1-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1114, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "SURF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SURF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-11/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER ROEDUNET P_AE21 SRF20069 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 864, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ROEDUNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ROEDUNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "xe-3/0/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Patched to GEANT ODF P7", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 660, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.mil2.it.geant.net", - "name": "lag-3", - "bundle": [ - "2/1/c9/1", - "2/1/c11/1", - "2/1/c11/2" - ], - "bundle-parents": [ - "2/1/c9/1", - "2/1/c11/1", - "2/1/c11/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01775 | LJU-MIL2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-MIL2", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "LJU-MIL2", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.mad.es.geant.net", - "name": "1/x1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-1 | MAD-MAD | to MX1.MAD xe-7/0/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610915970, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MAD-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 795, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "1/1/c2/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_lag-101 | rt0-sw1-1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899586, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-0/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02197 |SCION server 2 internal port", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1283, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 827, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10.2803", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER KIFU #PSNC-KIFU-SLICES-SZTAKI $GS-02491|", - "circuits": [ - { - "id": 738292, - "name": "PSNC-KIFU-SLICES-SZTAKI", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 869, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PRO-M/NIIF", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-4/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | psmp-gn-bw-par-fr-bwctl.geant.org pS BWCTL", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1284, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae17.220", - "bundle": [], - "bundle-parents": [ - "xe-11/3/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER ASNET-AM ASNET-AM #fra-fra-EAP-ASNET-AM-CL-190891 $GS-00696 |", - "circuits": [ - { - "id": 732138, - "name": "FRA-FRA-EAP-ASNET-AM-CL-190891", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1170, - "dashboards": [ - "EAP", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ASNET-AM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 639, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-101", - "bundle": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN | rt0-sw1 (ex3400)", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177381, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.212", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #FR-ESNET $GS-00878 | ASN293 | MANLAN ID: 212", - "circuits": [ - { - "id": 661489, - "name": "FR-ESNET", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 871, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "ESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 666, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae1.103", - "bundle": [], - "bundle-parents": [ - "xe-4/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-VIE-AT |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 715, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "et-5/1/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | LIS-PAR | LIS-PAR 100G | COLT CID: 446504605 ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 800, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LIS-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | HAM-POZ | to RT0.HAM.DE 2/1/c9/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610900033, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "Reserved for New EX | 10G-LR |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 589, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "irb.520", - "bundle": [], - "bundle-parents": [], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #IDRAC-MGMT-LON2-UK-VRF-VLAN520 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 829, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae1.25", - "bundle": [], - "bundle-parents": [ - "xe-5/1/1", - "xe-5/1/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-gw-drac-bud-hu| perfSONAR iDRAC", - "circuits": [ - { - "id": 739310, - "name": "PSMP-GW-DRAC-BUD-HU", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 894, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.408", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_GCS CUSTOMER RedIRIS Microsoft $GS-01165 | #RedIRIS-USC-ExpressRoute-Vlan408 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707129, - "name": "REDIRIS-USC-EXPRESSROUTE-VLAN408", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 832, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae20.420", - "bundle": [], - "bundle-parents": [ - "xe-2/0/3", - "xe-2/1/1" - ], - "description": "SRV_L2CIRCUIT CUSTOMER DFN NKN SRF22079 #FRA-GEN-DFN-NKN-22079 $GS-02210 |", - "circuits": [ - { - "id": 724886, - "name": "FRA-GEN-DFN-NKN-22079", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 659, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "DFN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NKN", - "interface_type": "LOGICAL" - }, - { - "name": "DFN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae33", - "bundle": [ - "xe-4/2/6", - "xe-4/3/2" - ], - "bundle-parents": [ - "xe-4/2/6", - "xe-4/3/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS | NEMO DDOS Detection 1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 977, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-21.1", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c9/2" - ], - "description": "SRV_GLOBAL CUSTOMER AMRES #AMRES-AP2 $GS-02240 | ASN13092 | ", - "circuits": [ - { - "id": 744955, - "name": "AMRES-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "6", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "AMRES", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMRES", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae14", - "bundle": [ - "et-5/1/5" - ], - "bundle-parents": [ - "et-5/1/5" - ], - "description": "LAG CUSTOMER SWITCH $GA-01912 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1038, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SWITCH", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SWITCH", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "1/1/c8/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-6 | FRA-PRA | to RT0.FRA 1/1/C8/1", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899969, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "FRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ae11", - "bundle": [ - "et-3/3/0" - ], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "LAG RE_INTERCONNECT BELLA SRF21059 $GA-02075 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 571, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "BELLA", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BELLA", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/3/9", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | Was PSMP Server", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 652, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-7/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 825, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.am.office.geant.net", - "name": "ge-0/0/14", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 530, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae1.30", - "bundle": [], - "bundle-parents": [ - "xe-4/1/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-mit1-vie-at-idrac | NEMO DDOS Mitigation 1 iDRAC | Primay.nemo", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 666, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "et-1/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | 100GB LR4 CFP2 INSTALLED", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 681, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #CHI-KIE-IPTRUNK $GS-00029 | CHI-KIE IP TRUNK", - "circuits": [ - { - "id": 713101, - "name": "CHI-KIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 607, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "CHI-KIE IP TRUNK", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CHI-KIE IP TRUNK", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.bra.sk.geant.net", - "name": "ae13.420", - "bundle": [], - "bundle-parents": [ - "et-0/0/0" - ], - "description": "SRV_GLOBAL CUSTOMER SANET #SANET-AP1 $GS-00511 | ASN2607 |", - "circuits": [ - { - "id": 719686, - "name": "SANET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 615, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "SANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "SANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae7.10", - "bundle": [], - "bundle-parents": [ - "et-1/0/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-AMS-AMT-RELAYLINK $GS-02305 | ", - "circuits": [ - { - "id": 744359, - "name": "AMS-AMS-AMT-RELAYLINK", - "type": "SERVER LINK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1709, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1338, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae1.106", - "bundle": [], - "bundle-parents": [ - "xe-5/2/3", - "xe-11/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #QFX-Management-Fra| QFX MANAGEMENT", - "circuits": [ - { - "id": 729097, - "name": "QFX-MANAGEMENT-FRA", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 972, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-9/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE FACEBOOK P_AE14 | Digital Reality CID: AT227158 | FB ID: FC-203126784", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 570, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx2.ch.office.geant.net", - "name": "ge-0/0/13", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 529, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "irb.999", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-par-fr-mgmt-vrf-vlan999|", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 738, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4089", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MOBILIT-ExpressRoute-VLAN4089 $GS-02170 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 739664, - "name": "BELNET-MOBILIT-EXPRESSROUTE-VLAN4089", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1673, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.102", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #FR-INTERNET2-2 $GS-00920 | ASN11537 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 576, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-2/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE GTS SRF0000001 | GTS link to Server 2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 579, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/2/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | New Leased Span Poznan-Vienna", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 567, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae1.103", - "bundle": [], - "bundle-parents": [ - "xe-3/0/0", - "xe-3/0/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-BIL-ES $GS-00116| ", - "circuits": [ - { - "id": 709868, - "name": "DCN-MANAGEMENT-BIL-ES", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 521, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.111", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L3VPN CUSTOMER REDIRIS #REDIRIS-AP1-LHCONE $GS-00852 | ASN766", - "circuits": [ - { - "id": 719492, - "name": "REDIRIS-AP1-LHCONE", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1060, - "dashboards": [ - "LHCONE", - "LHCONE_CUST", - "NREN" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.24", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL RE_INTERCONNECT KANREN #GRE-MULTICAST-TUNNEL-KANREN $GS-02377 | ASN2495", - "circuits": [ - { - "id": 732676, - "name": "GRE-MULTICAST-TUNNEL-KANREN", - "type": "IP PEERING - R&E", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1227, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "KANREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KANREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "ae5.103", - "bundle": [], - "bundle-parents": [ - "xe-0/3/0", - "xe-0/3/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN_MANAGEMENT | ", - "circuits": [ - { - "id": 726154, - "name": "DCN_MANAGEMENT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 677, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28.4063", - "bundle": [], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-JUST-ExpressRoute-VLAN4063 $GS-02319 | ", - "circuits": [ - { - "id": 739662, - "name": "BELNET-JUST-EXPRESSROUTE-VLAN4063", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1657, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.fra.de.geant.net", - "name": "lag-5.0", - "bundle": [], - "bundle-parents": [ - "2/1/c1/1", - "2/1/c5/1", - "2/1/c7/1", - "2/1/c10/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-GEN-IPTRUNK $GS-00034 | FRA-GEN | ", - "circuits": [ - { - "id": 739737, - "name": "FRA-GEN-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 4, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "FRA-GEN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "FRA-GEN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae10.0", - "bundle": [], - "bundle-parents": [ - "et-2/0/2", - "et-2/1/5" - ], - "description": "SRV_IAS PUBLIC VIX #IX-Peerings-in-VIX $GS-00954 |", - "circuits": [ - { - "id": 708175, - "name": "IX-PEERINGS-IN-VIX", - "type": "IP PEERING - NON R&E (PUBLIC)", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 661, - "dashboards": [ - "IAS_PEERS", - "IAS_PUBLIC" - ], - "dashboard_info": { - "name": "VIX", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "VIX", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ge-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 608, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae47", - "bundle": [ - "et-2/0/2" - ], - "bundle-parents": [ - "et-2/0/2" - ], - "description": "LAG PRIVATE FACEBOOK $GA-02482 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1607, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-3/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-0", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 749, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM ARELION SRF24033 $GA-02111 | EAP RENAM GWS | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 912, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "ARELION - BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "ARELION - BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-4", - "bundle": [ - "2/x1/1/c8/1" - ], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02021 | KAU-RIG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-RIG", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KAU-RIG", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.bil.es.geant.net", - "name": "ae15.3005", - "bundle": [], - "bundle-parents": [ - "et-0/0/2", - "et-1/0/2", - "et-2/0/5", - "et-4/1/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02644 $GS-02644 |", - "circuits": [ - { - "id": 726619, - "name": "RARE-BIL-REDIRIS", - "type": "L2SERVICES", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 830, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae19.700", - "bundle": [], - "bundle-parents": [ - "et-3/0/4" - ], - "description": "SRV_L2CIRCUIT CUSTOMER JISC INTERNET2 #LON-PAR-SYNGENTA-JISC-INTERNET2-17052 $GS-00730 |", - "circuits": [ - { - "id": 736674, - "name": "LON-PAR-SYNGENTA-JISC-INTERNET2-17052", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1139, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "LOGICAL" - }, - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae16.300", - "bundle": [], - "bundle-parents": [ - "xe-1/2/1", - "xe-1/2/3", - "xe-2/0/7", - "xe-2/1/2" - ], - "description": "SRV_CORPORATE CUSTOMER GEANT-IT #LONDON2-CORPORATE-NETWORK-SERVICES $GS-00824 | Firewall Access for Internal", - "circuits": [ - { - "id": 661549, - "name": "LONDON2-CORPORATE-NETWORK-SERVICES", - "type": "CORPORATE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1161, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.519", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #snm-server-mgmt | IT Refresh SERVER MGMT", - "circuits": [ - { - "id": 736090, - "name": "SNM-SERVER-MGMT", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1602, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ge-0/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 524, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae20.200", - "bundle": [], - "bundle-parents": [ - "xe-11/2/3" - ], - "description": "SRV_GLOBAL CUSTOMER GRENA #GRENA-AP1 $GS-01178 | ASN20545 |", - "circuits": [ - { - "id": 718130, - "name": "GRENA-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 965, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRENA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GRENA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.tar.ee.geant.net", - "name": "lag-20.100", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "SRV_GLOBAL CUSTOMER EENET #EENET-AP1 $GS-00454 | ASN3221 | ", - "circuits": [ - { - "id": 746455, - "name": "EENET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "4", - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "EENET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EENET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "lag-24", - "bundle": [ - "1/x1/1/c26/1" - ], - "bundle-parents": [ - "1/x1/1/c26/1" - ], - "description": "LAG CUSTOMER RASH | $GA-01768 | #RASH-AP2-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177304, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RASH", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "RASH", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11", - "bundle": [ - "et-3/3/0" - ], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "LAG CUSTOMER PIONIER SRF9927597 $GA-01811 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 616, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-KAU-MGMT-IPTRUNK $GS-50063 | KAU-KAU | KAU-KAU-MGMT", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 2, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KAU-KAU", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KAU-KAU", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "et-5/1/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY RESERVED | NORDUNET AP UPGRADE | LR4 INSTALLED", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1265, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae16", - "bundle": [ - "xe-1/2/1", - "xe-1/2/3", - "xe-2/0/7", - "xe-2/1/2" - ], - "bundle-parents": [ - "xe-1/2/1", - "xe-1/2/3", - "xe-2/0/7", - "xe-2/1/2" - ], - "description": "LAG CUSTOMER GEANT SRF0000000 $GA-01759 | GEANT-IT", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 633, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GEANT", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GEANT", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae14.161", - "bundle": [], - "bundle-parents": [ - "et-1/1/5", - "et-8/0/2", - "et-8/1/2", - "et-8/1/5" - ], - "description": "SRV_GLOBAL CUSTOMER RENATER #RENATER-RTBH-GENEVA $GS-00504 | ASN2200 | RTBH", - "circuits": [ - { - "id": 662958, - "name": "RENATER-RTBH-GENEVA", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 916, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ae11.3506", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER RARE #RARE-02643 $GS-02643 |", - "circuits": [ - { - "id": 745530, - "name": "RARE-02643", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 901, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae14.333", - "bundle": [], - "bundle-parents": [ - "xe-3/0/2" - ], - "description": "SRV_IAS CUSTOMER CYNET #CYNET-AP1-IAS IASGWS $GS-02442 | ASN3268", - "circuits": [ - { - "id": 733815, - "name": "CYNET-AP1-IAS", - "type": "GWS - INDIRECT", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 721, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "CYNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CYNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "lag-3", - "bundle": [ - "1/1/c8/1" - ], - "bundle-parents": [ - "1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01922 | AMS-BRU", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177283, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-BRU", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-BRU", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 569, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-8/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 995, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/3.2200", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RENATER GEANT #AMS-PAR-RENATER-RARE-20070 $GS-00657 |", - "circuits": [ - { - "id": 736080, - "name": "AMS-PAR-RENATER-RARE-20070", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1538, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae4", - "bundle": [ - "et-2/1/5", - "et-4/0/2", - "et-4/0/5", - "et-4/1/2" - ], - "bundle-parents": [ - "et-2/1/5", - "et-4/0/2", - "et-4/0/5", - "et-4/1/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02207 | GEN-MAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 617, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "GEN-MAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "GEN-MAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "xe-0/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS P_AE2 SRF0000001 | rt2-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 563, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae2.108", - "bundle": [], - "bundle-parents": [ - "xe-0/3/5", - "xe-0/3/7", - "xe-9/0/0", - "xe-9/2/0" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT EUMETSAT #AMS-EUMETSAT-SERVER-DATA-TRAFFIC $GS-02312 | AMS-EUMETSAT-1G", - "circuits": [ - { - "id": 736093, - "name": "AMS-EUMETSAT-SERVER-DATA-TRAFFIC", - "type": "IP PEERING - R&E", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1021, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "EUMETSAT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/3/7.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-bud-hu-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 724902, - "name": "PS-BUD-HU-BWCTL", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1178, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.ams.nl.geant.net", - "name": "ae10.22", - "bundle": [], - "bundle-parents": [ - "xe-0/1/0" - ], - "description": "SRV_GCS CUSTOMER GARR MICROSOFT #GARR_ROMA_ExpressRoute_Vlan4089 $GS-01145 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", - "circuits": [ - { - "id": 707342, - "name": "GARR-ROMA-EXPRESSROUTE-VLAN4089", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 603, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ge-0/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 608, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "ge-0/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 592, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "ae28", - "bundle": [ - "et-1/1/2" - ], - "bundle-parents": [ - "et-1/1/2" - ], - "description": "LAG CUSTOMER BELNET SRF9927563 $GA-01842 | BELNET AP2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1653, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.242", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON-SINET-HOST-DEVICE-IDRAC | SINET HOST-IDRAC", - "circuits": [ - { - "id": 740703, - "name": "LON-SINET-HOST-DEVICE-IDRAC", - "type": "SERVER LINK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 652, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae12.112", - "bundle": [], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "SRV_L3VPN RE_INTERCONNECT CSTNET #CSTNET-LON-LHCONE-SECONDARY $GS-02380 | ASN7497 ", - "circuits": [ - { - "id": 730081, - "name": "CSTNET-LON-LHCONE-SECONDARY", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 653, - "dashboards": [ - "CAE1", - "LHCONE", - "LHCONE_PEER", - "RE_PEER" - ], - "dashboard_info": { - "name": "CSTNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CSTNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE | SPLUNK AMS PEER02 link 1 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 632, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.por.pt.geant.net", - "name": "et-1/1/5", - "bundle": [], - "bundle-parents": [], - "description": "Reserved for FCCN | QSFP SR4 optic installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 559, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.vie.at.geant.net", - "name": "lag-8", - "bundle": [ - "2/1/c9/2" - ], - "bundle-parents": [ - "2/1/c9/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-01868 | BRA-VIE", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177288, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BRA-VIE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "BRA-VIE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.dub.ie.geant.net", - "name": "lag-101.991", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/1", - "1/x1/1/c2/2" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #OPTICAL-MGMT-DUB-IE-VRF-VLAN991 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "2", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae22", - "bundle": [ - "et-2/1/2" - ], - "bundle-parents": [ - "et-2/1/2" - ], - "description": "LAG PUBLIC DE-CIX $GA-02205 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 735, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 635, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "xe-8/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 989, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "et-3/1/0", - "bundle": [], - "bundle-parents": [], - "description": "Reserved for FCCN | CFP2 LR4 optic installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 699, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "xe-3/0/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 660, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/0/0.100", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL CUSTOMER BASNET #BASNET-AP1 $GS-00434 | ASN21274 | ", - "circuits": [ - { - "id": 661600, - "name": "BASNET-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 624, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "BASNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BASNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.lon2.uk.geant.net", - "name": "2/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | LON2-PAR | TO GRV2.LON2 - 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162049, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LON2-PAR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae10.2801", - "bundle": [], - "bundle-parents": [ - "et-3/3/0" - ], - "description": "SRV_L2CIRCUIT CUSTOMER KIFU BELNET #SLCIMEC-02511 $GS-02511", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 871, - "dashboards": [ - "L2_CIRCUIT" - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "ae21.0", - "bundle": [], - "bundle-parents": [ - "xe-5/0/5", - "xe-5/0/6" - ], - "description": "SRV_IAS UPSTREAM COLT #COLT-GWS-BUD $GS-00068 | ASN3356 ", - "circuits": [ - { - "id": 728441, - "name": "COLT-GWS-BUD", - "type": "GWS - UPSTREAM", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 826, - "dashboards": [ - "IAS_UPSTREAM" - ], - "dashboard_info": { - "name": "COLT", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "COLT", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-21:3504", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER PIONIER BELNET #SLCIMEC-02487 $GS-02487", - "circuits": [ - { - "id": 745329, - "name": "SLCIMEC-02487", - "type": "GEANT PLUS", - "status": "installed" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae2.3021", - "bundle": [], - "bundle-parents": [ - "xe-3/3/4", - "xe-3/3/6" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON-SINET-INTERNET-ACCESS | SINET Internet access", - "circuits": [ - { - "id": 740701, - "name": "LON-SINET-INTERNET-ACCESS", - "type": "SERVER LINK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 675, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 813, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.poz.pl.geant.net", - "name": "2/1/c11/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-3 | POZ-POZ | to MX1.POZ.PL et-7/1/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162306, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "POZ-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "et-5/0/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE | LR4 installed", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 814, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae24", - "bundle": [ - "et-2/1/5" - ], - "bundle-parents": [ - "et-2/1/5" - ], - "description": "LAG RE_INTERCONNECT TENET SRF21084 $GA-02142 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 970, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "TENET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "TENET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.bra.sk.geant.net", - "name": "xe-0/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 566, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "srx1.am.office.geant.net", - "name": "ge-0/0/11", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 527, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.mar.fr.geant.net", - "name": "ae21.100", - "bundle": [], - "bundle-parents": [ - "et-2/0/2" - ], - "description": "SRV_GLOBAL CUSTOMER IUCC #IUCC-AP1 $GS-00477 | ASN378 |", - "circuits": [ - { - "id": 730578, - "name": "IUCC-AP1", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 710, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "IUCC", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "IUCC", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.kau.lt.geant.net", - "name": "lag-101.998", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c2/3", - "1/x1/1/c2/4" - ], - "description": "SNM_MGMT INFRASTRUCTURE ACCESS #SWITCH-MGMT-KAU-LT-VRF-VLAN998 |", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "10", - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae1", - "bundle": [ - "xe-7/0/0", - "xe-7/0/1" - ], - "bundle-parents": [ - "xe-7/0/0", - "xe-7/0/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02591 | MAD-MAD", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 981, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "MAD-MAD", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "MAD-MAD", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "xe-3/0/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_10GGBS CUSTOMER AMS #ams-pra-IX-CESNET-AMS-12016 $GS-00786 |", - "circuits": [ - { - "id": 720237, - "name": "AMS-PRA-IX-CESNET-AMS-12016", - "type": "GEANT - GBS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 929, - "dashboards": [ - "GBS_10G" - ], - "dashboard_info": { - "name": "AMS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "AMS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.rig.lv.geant.net", - "name": "lag-4", - "bundle": [ - "2/x1/1/c8/1" - ], - "bundle-parents": [ - "2/x1/1/c8/1" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02346 | RIG-TAR", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177284, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "RIG-TAR", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "RIG-TAR", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "et-9/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER CESNET P_AE23 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 565, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae20", - "bundle": [ - "et-2/1/2", - "et-5/1/2" - ], - "bundle-parents": [ - "et-2/1/2", - "et-5/1/2" - ], - "description": "LAG RE_INTERCONNECT SINET $GA-01916 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1281, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "SINET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "SINET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae19", - "bundle": [ - "xe-2/2/4", - "xe-2/3/3" - ], - "bundle-parents": [ - "xe-2/2/4", - "xe-2/3/3" - ], - "description": "LAG INFRASTRUCTURE ACCESS | splunk-lon2-peer02.geant.org | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 636, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/0/0.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RENAM ARELION #bud-chi-EAP-RENAM-ARELION-24033 $GS-02110 | ", - "circuits": [ - { - "id": 738245, - "name": "BUD-CHI-EAP-RENAM-ARELION-24033", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 866, - "dashboards": [ - "EAP", - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.bru.be.geant.net", - "name": "lag-20:4087", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSEICT-01133 $GS-01133", - "circuits": [ - { - "id": 744148, - "name": "MSEICT-01133", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/3/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 600, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.buc.ro.geant.net", - "name": "ae3.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/5", - "et-0/1/5" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-SOF-IPTRUNK $GS-00024| BUC-SOF | ", - "circuits": [ - { - "id": 744991, - "name": "BUC-SOF-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 671, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "BUC-SOF", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BUC-SOF", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "et-8/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | LIS-MAD | 200G", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1140, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LIS-MAD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LIS-MAD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/2/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER JISC SRF9925217 $GA-01457 | GEANT+ 1", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1467, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "JISC", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "JISC", - "interface_type": "PHYSICAL" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.mil2.it.geant.net", - "name": "xe-0/1/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 570, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "ae16.947", - "bundle": [], - "bundle-parents": [ - "et-5/0/5", - "et-8/1/2", - "et-8/1/5", - "et-10/1/5" - ], - "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET REDIRIS #HAM-MAD-02183 $GS-02183", - "circuits": [ - { - "id": 747550, - "name": "HAM-MAD-02183", - "type": "GEANT PLUS", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1121, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "NORDUNET", - "interface_type": "LOGICAL" - }, - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-1/0/41", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_AE13 | 10_GBS to MX1.PAR.FR xe-4/3/6", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 656, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-21", - "bundle": [ - "2/x1/1/c2/2" - ], - "bundle-parents": [ - "2/x1/1/c2/2" - ], - "description": "LAG CUSTOMER CYNET | $GA-01928 | CYNET-AP2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177301, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CYNET", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "CYNET", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "xe-11/2/1.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-par-fr-management-new| perfSONAR MGMT", - "circuits": [ - { - "id": 721158, - "name": "PS-PAR-FR-MANAGEMENT-NEW", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 815, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "xe-2/1/7", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 | mx1-sw1 (ex3400)", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1303, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.pra.cz.geant.net", - "name": "ae1", - "bundle": [ - "xe-3/0/4", - "xe-3/0/5" - ], - "bundle-parents": [ - "xe-3/0/4", - "xe-3/0/5" - ], - "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 | rt1-sw2 (ex3400) | ", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 946, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/3/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 851, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.poz.pl.geant.net", - "name": "xe-1/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 573, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1460, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae1.998", - "bundle": [], - "bundle-parents": [ - "xe-2/1/7", - "xe-2/2/7" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-gen-ch| SW1-EX3400 MANAGEMENT", - "circuits": [ - { - "id": 740011, - "name": "EX3400-MANAGEMENT-GEN-CH", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1466, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.42", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER REDIRIS MICROSOFT #REDIRIS-ICN2-ExpressRoute-VLAN691 $GS-02559 | ", - "circuits": [ - { - "id": 740766, - "name": "REDIRIS-ICN2-EXPRESSROUTE-VLAN691", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1690, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "REDIRIS", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDIRIS", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "ae14.333", - "bundle": [], - "bundle-parents": [ - "et-1/1/5", - "et-8/0/2", - "et-8/1/2", - "et-8/1/5" - ], - "description": "SRV_IAS CUSTOMER RENATER #RENATER-AP2-IAS IASPS $GS-00584 | ASN2200", - "circuits": [ - { - "id": 678048, - "name": "RENATER-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 895, - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "lag-2.0", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c6/1" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-MIL2-IPTRUNK $GS-00014 | ATH2-MIL2 | ", - "circuits": [ - { - "id": 745507, - "name": "ATH2-MIL2-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 9, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "ATH2-MIL2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "ATH2-MIL2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "gr-3/0/0.25", - "bundle": [], - "bundle-parents": [], - "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-UNI-OF-CHILE $GS-02447", - "circuits": [ - { - "id": 733837, - "name": "GRE-MULTICAST-TUNNEL-UNI-OF-CHILE", - "type": "EUMETSAT GRE", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1584, - "dashboards": [], - "port_type": "SERVICE" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae28.2063", - "bundle": [], - "bundle-parents": [ - "et-11/0/5" - ], - "description": "SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-TENET-LON-COPERNICUS $GS-02168| ASN27750", - "circuits": [ - { - "id": 720026, - "name": "REDCLARA-TENET-LON-COPERNICUS", - "type": "L3-VPN", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1244, - "dashboards": [ - "COPERNICUS", - "RE_PEER" - ], - "dashboard_info": { - "name": "REDCLARA", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "REDCLARA", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.sof.bg.geant.net", - "name": "1/x1/1/c9/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | SOF-THE | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916417, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "SOF-THE", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "SOF-THE", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ath2.gr.geant.net", - "name": "1/x1/1/c4/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GRNET P_lag-20 | GRNET-AP1-IP5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916100, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GRNET", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GRNET", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-3/1/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1461, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/2/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 829, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt2.kie.ua.geant.net", - "name": "ae1.0", - "bundle": [], - "bundle-parents": [ - "et-0/0/3" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KIE-KIE-IPTRUNK $GS-00045 | KIE-KIE |", - "circuits": [ - { - "id": 713325, - "name": "KIE-KIE-IPTRUNK", - "type": "IP TRUNK", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 606, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "KIE-KIE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "KIE-KIE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-11/3/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #1 FOR NORDUNET P_AE26 | Interxion CID: DE133662-1 | GEANT-FRA32-09XGMR-CIS-1-PRI-12062019", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 897, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "MICROSOFT", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae5", - "bundle": [ - "xe-0/0/18", - "xe-1/0/18" - ], - "bundle-parents": [ - "xe-0/0/18", - "xe-1/0/18" - ], - "description": "LAG INFRASTRUCTURE LAN | qfx1.ams.nl AE5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 712, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx2.lis.pt.geant.net", - "name": "ge-0/2/6", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 552, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ge-0/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 645, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.lon2.uk.geant.net", - "name": "xe-1/0/31", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_-- | Brik B Data Port 2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 679, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.fra.de.geant.net", - "name": "ae2", - "bundle": [], - "bundle-parents": [], - "description": "LAG INFRASTRUCTURE LAN $GA-01678 | FRA-PRD-ESX02 ESXI Traffic LAG", - "circuits": [ - { - "id": 658663, - "name": "FRANKFURT 15-FRANKFURT 15-LAG-054(GEANT)", - "type": "POP LAN LINK", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": 575, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "1/x1/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | LJU-ZAG | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610916354, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "LJU-ZAG", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "LJU-ZAG", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae23.600", - "bundle": [], - "bundle-parents": [ - "et-9/0/5", - "et-10/1/5" - ], - "description": "SRV_GLOBAL CUSTOMER CESNET #CESNET-AP2 $GS-00445 | ASN2852 |", - "circuits": [ - { - "id": 731676, - "name": "CESNET-AP2", - "type": "GEANT IP", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1100, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "CESNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "CESNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "ae15.102", - "bundle": [], - "bundle-parents": [ - "et-1/0/5" - ], - "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #FR-INTERNET2 $GS-00884 | ASN11537 | MANLAN ID: 102", - "circuits": [ - { - "id": 661992, - "name": "FR-INTERNET2", - "type": "IP PEERING - R&E", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 875, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "INTERNET2", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "INTERNET2", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "srx1.ch.office.geant.net", - "name": "ge-0/0/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY #SRX1-SRX2-CH-OFFICE |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 514, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.cor.ie.geant.net", - "name": "lag-20:1214", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER HEANET RARE #ams-cor-00633 $GS-00633", - "circuits": [ - { - "id": 747413, - "name": "AMS-COR-00633", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "ACCESS", - "snmp-index": -1, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "HEANET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - }, - { - "name": "HEANET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "mx1.bud.hu.geant.net", - "name": "xe-5/3/4", - "bundle": [], - "bundle-parents": [], - "description": "PHY UPSTREAM COGENT P_AE19 | Cogent ID: 1-300398286", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 940, - "dashboards": [ - "GWS_PHY_UPSTREAM" - ], - "dashboard_info": { - "name": "COGENT - BUD", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "COGENT - BUD", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.lju.si.geant.net", - "name": "lag-20", - "bundle": [ - "1/x1/1/c26/1", - "1/x1/1/c26/2" - ], - "bundle-parents": [ - "1/x1/1/c26/1", - "1/x1/1/c26/2" - ], - "description": "LAG CUSTOMER ARNES | $GA-01742 | #ARNES-AP1-LAG", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1342177300, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "ARNES", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "ARNES", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt2.chi.md.geant.net", - "name": "ae10", - "bundle": [ - "xe-0/1/6", - "xe-0/1/7" - ], - "bundle-parents": [ - "xe-0/1/6", - "xe-0/1/7" - ], - "description": "LAG CUSTOMER RENAM SRF21066 $GA-02038 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 588, - "dashboards": [ - "EAP", - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENAM", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "RENAM", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/0/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE ACCESS SUPERPOP P_AE30 | QFX xe-1/0/28", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 542, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.mad.es.geant.net", - "name": "xe-7/1/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 809, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.fra.de.geant.net", - "name": "xe-7/2/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-fra-de-owamp LHC new | BWCTL CONTACT: ivan.garnizov@fau.de", - "circuits": [ - { - "id": 729061, - "name": "PS-FRA-DE-OWAMP-LHC", - "type": "SERVER LINK", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 548, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon2.uk.geant.net", - "name": "ae32.303", - "bundle": [], - "bundle-parents": [ - "et-1/0/0", - "et-5/0/0" - ], - "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IT REFRESH | T0 EXTERNAL PEERINGS", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": 857, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.ams.nl.geant.net", - "name": "1/1/c7/1", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-8 | AMS-FRA | to AMS01-GRV1 1/1/8", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1610899905, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "AMS-FRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/0/2.0", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #AMS-POZ-RARE-P4-9951379 $GS-00661 | RARE P4 TESTBED", - "circuits": [ - { - "id": 736091, - "name": "AMS-POZ-RARE-P4-9951379", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1527, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-9/1/3.101", - "bundle": [], - "bundle-parents": [], - "description": "SRV_L2CIRCUIT CUSTOMER RARE GEANT #AMS-AMS-WP7TSF-RARE-200105-AMS", - "circuits": [ - { - "id": 736083, - "name": "AMS-AMS-WP7TSF-RARE-200105-AMS", - "type": "GEANT PLUS", - "status": "non-monitored" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1568, - "dashboards": [ - "L2_CIRCUIT" - ], - "dashboard_info": { - "name": "RARE", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "RARE", - "interface_type": "LOGICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.vie.at.geant.net", - "name": "ae22", - "bundle": [ - "xe-4/2/1", - "xe-4/2/2" - ], - "bundle-parents": [ - "xe-4/2/1", - "xe-4/2/2" - ], - "description": "LAG INFRASTRUCTURE ACCESS $GA-01859| NEMO DDOS Detection 2", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 702, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae21.19", - "bundle": [], - "bundle-parents": [ - "xe-0/1/3" - ], - "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #MSESTAD-02245 $GS-02245", - "circuits": [ - { - "id": 744266, - "name": "MSESTAD-02245", - "type": "EXPRESS ROUTE", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": 1402, - "dashboards": [ - "GCS" - ], - "dashboard_info": { - "name": "BELNET", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "BELNET", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "2/1/c8/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-4 | HAM-POZ | to MX1.POZ et-7/1/2", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162114, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "HAM-POZ", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.gen.ch.geant.net", - "name": "et-4/0/5", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER GARR P_AE12 |", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1436, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "GARR", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "GARR", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "ae17", - "bundle": [ - "et-9/1/5" - ], - "bundle-parents": [ - "et-9/1/5" - ], - "description": "LAG PRIVATE FACEBOOK SRF9935089 $GA-01841 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 713, - "dashboards": [], - "port_type": "ACCESS" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae16", - "bundle": [ - "xe-0/0/4", - "xe-0/1/7", - "xe-0/3/1" - ], - "bundle-parents": [ - "xe-0/0/4", - "xe-0/1/7", - "xe-0/3/1" - ], - "description": "LAG CUSTOMER KIAE $GA-01918 |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1052, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "KIAE", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "KIAE", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "rt0.zag.hr.geant.net", - "name": "lag-24.333", - "bundle": [], - "bundle-parents": [ - "1/x1/1/c4/2" - ], - "description": "SRV_IAS CUSTOMER MREN #MREN-AP1-IAS IASPS $GS-00538 | ASN40981 | ", - "circuits": [], - "vlan_type": "VLAN", - "snmp-index": "21", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "MREN", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "MREN", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt0.ham.de.geant.net", - "name": "lag-22.334", - "bundle": [], - "bundle-parents": [ - "1/1/c27/1" - ], - "description": "SRV_IAS CUSTOMER PIONIER #PIONIER-AP2-IAS IASPS $GS-00580 | ASN8501 | ", - "circuits": [ - { - "id": 747602, - "name": "PIONIER-AP2-IAS", - "type": "GEANT PEERING", - "status": "operational" - } - ], - "vlan_type": "VLAN", - "snmp-index": "11", - "dashboards": [ - "IAS_CUSTOMER", - "NREN" - ], - "dashboard_info": { - "name": "PIONIER", - "interface_type": "LOGICAL" - }, - "dashboards_info": [ - { - "name": "PIONIER", - "interface_type": "LOGICAL" - } - ], - "port_type": "SERVICE" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/3/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY RE_INTERCONNECT NIKS P_AE25 | Digital Realty CID: NL189891 | ", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 666, - "dashboards": [ - "RE_PEER" - ], - "dashboard_info": { - "name": "NIKS", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "NIKS", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "ae1", - "bundle": [ - "et-8/0/2" - ], - "bundle-parents": [ - "et-8/0/2" - ], - "description": "LAG INFRASTRUCTURE BACKBONE $GA-02013 | AMS-AMS |", - "circuits": [], - "vlan_type": "TRUNK", - "snmp-index": 1622, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "AMS-AMS", - "interface_type": "AGGREGATE" - }, - "dashboards_info": [ - { - "name": "AMS-AMS", - "interface_type": "AGGREGATE" - } - ], - "port_type": "ACCESS" - }, - { - "router": "mx1.par.fr.geant.net", - "name": "et-3/1/0", - "bundle": [], - "bundle-parents": [], - "description": "PHY CUSTOMER RENATER P_AE12 | RENATER-AP1-3 | DR Circuit ID: FR112754", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 842, - "dashboards": [ - "NREN", - "RE_CUST" - ], - "dashboard_info": { - "name": "RENATER", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "RENATER", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "mx1.lon.uk.geant.net", - "name": "xe-1/0/3", - "bundle": [], - "bundle-parents": [], - "description": "PHY SPARE", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 850, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt0.pra.cz.geant.net", - "name": "2/1/c9/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE BACKBONE P_lag-2 | PRA-PRA | to RT1.PRA et-0/1/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 1611162178, - "dashboards": [ - "INFRASTRUCTURE_BACKBONE" - ], - "dashboard_info": { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - }, - "dashboards_info": [ - { - "name": "PRA-PRA", - "interface_type": "PHYSICAL" - } - ], - "port_type": "UNKNOWN" - }, - { - "router": "qfx.par.fr.geant.net", - "name": "xe-1/0/18", - "bundle": [], - "bundle-parents": [], - "description": "PHY INFRASTRUCTURE LAN P_ae0 | MX xe-4/0/5", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 650, - "dashboards": [], - "port_type": "UNKNOWN" - }, - { - "router": "rt1.ams.nl.geant.net", - "name": "xe-0/3/2", - "bundle": [], - "bundle-parents": [], - "description": "PHY PRIVATE GOOGLE P_AE11 | Digital Reality CID: NL246373", - "circuits": [], - "vlan_type": "ACCESS", - "snmp-index": 668, - "dashboards": [], - "port_type": "UNKNOWN" - } -] diff --git a/test/test_inventory.py b/test/test_inventory.py index ee205c7f6ef00b58b813ec0861d8001502a9ac62..c7e685713b8187be0535d3312ec30b11e87d7850 100644 --- a/test/test_inventory.py +++ b/test/test_inventory.py @@ -16,11 +16,6 @@ def test_inventory_service_download(): inventory_base_uri = 'https://dummy-hostname.dummy.domain' reporting_base_uri = 'https://another-dummy-hostname.dummy.domain' - # responses.add( - # method=responses.GET, - # url=f'{inventory_base_uri}/poller/interfaces', - # json=load_test_data('poller-interfaces.json') - # ) responses.add( method=responses.GET, url=f'{reporting_base_uri}/scid/current', @@ -39,11 +34,6 @@ def test_inventory_service_download(): inventory_base_uri=inventory_base_uri, reporting_base_uri=reporting_base_uri) - # assert os.path.exists(os.path.join(tmp_dir, services.POLLER_INTERFACES_CACHE_FILENAME)) - - # cached_data = cache.get(inventory.INPROV_POLLER_INTERFACES_CACHE_FILENAME) - # assert cached_data == load_test_data('poller-interfaces.json') - cached_data = cache.get(inventory.INPROV_EQUIPMENT_CACHE_FILENAME) assert cached_data == load_test_data('inprov-equipment.json') diff --git a/test/test_map_endpoints.py b/test/test_map_endpoints.py index a8bd3956560da3c652a231daf3924e00ce8a3808..ede29b4544244fb0d75df48718b239ea4c1e8fb7 100644 --- a/test/test_map_endpoints.py +++ b/test/test_map_endpoints.py @@ -40,13 +40,6 @@ def test_get_equipment(client): @responses.activate def test_get_trunks(client): - - responses.add( - method=responses.GET, - url=re.compile(r'.*/map/services.*'), - json=load_test_data('inprov-services.json') - ) - rv = client.get("/map/trunks") assert rv.status_code == 200 service_list = ServiceList.model_validate(rv.json())