diff --git a/MANIFEST.in b/MANIFEST.in index 5adb2b83cf466768d3165102fcdc58db524e6e4e..c237ef1fc70d369dca3c1ed19743a9f418f3d755 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include brian_polling_manager/logging_default_config.json +include **/*.jinja2 \ No newline at end of file diff --git a/brian_polling_manager/error_report/cli.py b/brian_polling_manager/error_report/cli.py index af27f2d8aa0a81dc6c5a856623cb5ac596b06f07..305da32a8d689bdd277662d1c73f175acdf03230 100644 --- a/brian_polling_manager/error_report/cli.py +++ b/brian_polling_manager/error_report/cli.py @@ -1,32 +1,34 @@ +from datetime import datetime +import json import logging +import os import pathlib from typing import Sequence from brian_polling_manager.interface_stats.services import influx_client from brian_polling_manager.inventory import load_interfaces from influxdb import InfluxDBClient from brian_polling_manager.error_report.config import load +from brian_polling_manager.error_report.mailer import render_html logger = logging.getLogger(__name__) -SEND_FROM = "ne@geant.org" -REPLY_TO = "noreply@geant.org" -SEND_TO = "pelle.koster@geant.org" CONFIG_FILE = "/home/pellek/develop/klanten/geant/error_report-config.json" -TIME_WINDOW_TODAY = "time > now() - 1d" -TIME_WINDOW_YESTERDAY = "time > now() - 2d and time < now() - 1d" - -# The desired error fields vs their field name in the influx query -ERROR_FIELDS = [ - ("framing-errors", "last_input_framing_errors"), - ("bit-error-seconds", "last_bit_error_seconds"), - ("errored-blocks-seconds", "last_errored_blocks_seconds"), - ("input-crc-errors", "last_input_crc_errors"), - ("input-total-errors", "last_input_total_errors"), - ("input-discards", "last_input_discards"), - ("input-drops", "last_input_drops"), - ("output-drops", "last_output_drops"), -] +INFLUX_TIME_WINDOW_TODAY = "time > now() - 1d" +INFLUX_TIME_WINDOW_YESTERDAY = "time < now() - 1d and time > now() - 2d" + +# The error field names in the influx query vs their reporting name +ERROR_FIELDS = { + "last_input_framing_errors": "framing-errors", + "last_bit_error_seconds": "bit-error-seconds", + "last_errored_blocks_seconds": "errored-blocks-seconds", + "last_input_crc_errors": "input-crc-errors", + "last_input_total_errors": "input-total-errors", + "last_input_discards": "input-discards", + "last_input_drops": "input-drops", + "last_output_drops": "output-drops", +} + PROCESSED_ERROR_COUNTERS_SCHEMA = { "$schema": "https://json-schema.org/draft/2020-12/schema", @@ -72,60 +74,89 @@ PROCESSED_ERROR_COUNTERS_SCHEMA = { }, "type": "object", "properties": { - "counters": { + "interfaces": { "type": "array", "item": {"$ref": "#/definitions/interface_error_counters"}, }, - "excluded_counters": { + "excluded_interfaces": { "type": "array", "item": {"$ref": "#/definitions/excluded_interface_error_counters"}, }, }, - "required": ["counters", "excluded_counters"], + "required": ["interfaces", "excluded_interfaces"], "additionalProperties": False, } -email_config = { - "counters": [ - { - "router": "rt1.some.router.geant.net", - "interface": "ef-0/1/1", - "description": "SOME DESCRIPTION", - "error_counters": {"output-drops": 1}, - "diff": {"output-drops": 1}, - "has_new_errors": True, +LOGGING_DEFAULT_CONFIG = { + "version": 1, + "disable_existing_loggers": False, + "formatters": {"simple": {"format": "%(asctime)s - %(levelname)s - %(message)s"}}, + "handlers": { + "console": { + "class": "logging.StreamHandler", + "level": "INFO", + "formatter": "simple", + "stream": "ext://sys.stderr", }, - ], - "excluded_counters": [ - { - "router": ..., - "interface": ..., - "description": ..., - "error_counters": ..., - }, - ], + }, + "loggers": { + "brian_polling_manager": { + "level": "INFO", + "handlers": ["console"], + "propagate": False, + } + }, + "root": {"level": "INFO", "handlers": ["console"]}, } +def setup_logging(): + """ + set up logging using the configured filename + + if LOGGING_CONFIG is defined in the environment, use this for + the filename, otherwise use LOGGING_DEFAULT_CONFIG + """ + logging_config = LOGGING_DEFAULT_CONFIG + if "LOGGING_CONFIG" in os.environ: + filename = os.environ["LOGGING_CONFIG"] + with open(filename) as f: + logging_config = json.loads(f.read()) + + logging.config.dictConfig(logging_config) + + def get_error_points(client: InfluxDBClient, time_window: str): + """Get the last value for every error field for every (router, interface) + + :param client: an `InfluxDBCLient`_ + :param time_window: an influx time window such as `INFLUX_TIME_WINDOW_TODAY` or + `INFLUX_TIME_WINDOW_YESTERDAY_ + :returns: a dict {(router, interface): error_point } were error_point is a dict + with all the error field values for that respective interface + """ raw_data = client.query( # This query may actually return values from mulitple different points if # some values are missing for the last point. But it's close enough. ( - "SELECT last(*) FROM errors " - f"WHERE {time_window} " - "group by hostname, interface_name order by time desc;" + f"SELECT last(*) FROM errors WHERE {time_window} " + "group by hostname, interface_name;" ) ) return { - (tags["hostname"], tags["interface_name"]): next(points) + (tags["hostname"], tags["interface_name"]): next(points, {}) for (_, tags), points in raw_data.items() } +def select_error_fields(errors, mapping): + # the extra `or 0` is for substituting None values + return {tgt: errors.get(src, 0) or 0 for src, tgt in mapping.items()} + + def interface_errors( - client: InfluxDBClient, interface_info, errors, exclusions, raise_on_errors=False + client: InfluxDBClient, interface_info, errors, exclusions=(), raise_on_errors=False ): """ Retrieves error counters from influx @@ -133,14 +164,20 @@ def interface_errors( :param client: InfluxDBClient for connecting to influx :param interface_info: a dict of {(router, interface): info_dict} with interface information coming from invprov (ie. the output from `get_relevant_interfaces`_) - :param errors: A list of (result_field, input_data_field) for every error to report + :param errors: A dict of (input_data_field: result_field) for every error to report on (see `ERROR_FIELDS`_) :param raise_on_errors: raise when certain exceptions occur (useful for testing) :result: an instance of PROCESSED_ERROR_COUNTERS_SCHEMA """ - todays_data = get_error_points(client, TIME_WINDOW_TODAY) - yesterdays_data = get_error_points(client, TIME_WINDOW_YESTERDAY) + todays_data = { + key: select_error_fields(val, mapping=errors) + for key, val in get_error_points(client, INFLUX_TIME_WINDOW_TODAY).items() + } + yesterdays_data = { + key: select_error_fields(val, mapping=errors) + for key, val in get_error_points(client, INFLUX_TIME_WINDOW_YESTERDAY).items() + } result = {"interfaces": [], "excluded_interfaces": []} for (router, ifc), info in interface_info.items(): @@ -151,28 +188,45 @@ def interface_errors( if raise_on_errors: raise continue + + if not any(err > 0 for err in today.values()): + # skip interfaces without any errors + continue + yesterday = yesterdays_data.get((router, ifc), {}) counters = { - "error_counters": {err[0]: (today[err[1]] or 0) for (err) in errors}, "router": router, "interface": ifc, + "error_counters": today, "description": info["description"], } if not is_excluded_interface(info["description"], exclusions): - counters["diff"] = { - err[0]: (today[err[1]] or 0) - (yesterday.get(err[1], 0) or 0) - for err in errors - } - # This is strictly not the most correct way to determine whether we have - # new errors (During the day the error count may have reset, some diffs may - # actually be negative), but it is (mostly) how it was determined previously - counters["has_new_errors"] = bool( - sum(v for v in counters["diff"].values() if v > 0) - ) + nonzero_errors = {err: val for err, val in today.items() if val > 0} + counters["error_counters"] = nonzero_errors + + if any(yesterday.values()): + # we have existing errors + + # This is strictly not the most correct way to determine differences. + # during the day the error count may have reset and diffs may actually + # be negative, but we ignore those because that is (mostly) how it was + # done in the orginal bash script + diff = { + err: (val - yesterday[err]) + for err, val in nonzero_errors.items() + if (val - yesterday[err]) > 0 + } + if not diff: + # Skip interface if it does not have any increased error counters + continue + + counters["diff"] = diff + result["interfaces"].append(counters) else: + logger.info(f"Found excluded interface {router} - {ifc}") result["excluded_interfaces"].append(counters) return result @@ -184,31 +238,40 @@ def is_excluded_interface(description: str, exclusions: Sequence[str]): return any(excl.lower() in description.lower() for excl in exclusions) -def get_relevant_interfaces(hosts, load_interfaces_=load_interfaces): - """Get interface info from inventory provider. Some interfaces are not considered - based on there description""" +def get_relevant_interfaces(hosts): + """Get interface info from inventory provider. Some interfaces are considered + irrelevant based on there description""" + return _filter_and_convert_interfaces(load_interfaces(hosts)) + + +def _filter_and_convert_interfaces(interfaces): # We may want to put this logic inside inventory provider and serve from a new # endpoint - return { - (i["router"], i["name"]): i - for i in load_interfaces_(hosts) - if all( - ( - "PHY" in i["description"].upper(), - "SPARE" not in i["description"].upper(), - "NON-OPERATIONAL" not in i["description"].upper(), - "RESERVED" not in i["description"].upper(), - "TEST" not in i["description"].upper(), + return dict( + sorted( + ((i["router"], i["name"]), i) + for i in interfaces + if all( + ( + "PHY" in i["description"].upper(), + "SPARE" not in i["description"].upper(), + "NON-OPERATIONAL" not in i["description"].upper(), + "RESERVED" not in i["description"].upper(), + "TEST" not in i["description"].upper(), + "dsc." not in i["name"].lower(), + "fxp" not in i["name"].lower(), + ) ) ) - } + ) def main(): + setup_logging() config = load(config_file=pathlib.Path(CONFIG_FILE)) - client = influx_client(config["influx"]) all_interfaces = get_relevant_interfaces(config["inventory"]) + client = influx_client(config["influx"]) with client: all_error_counters = interface_errors( client, @@ -216,6 +279,11 @@ def main(): errors=ERROR_FIELDS, exclusions=config["exclude-interfaces"], ) + body = render_html( + all_error_counters, + date=datetime.utcnow().strftime("%a %d %b %H:%M:%S UTC %Y"), + ) + print(body) # TODO: ensure data is from the day that we're interested in (today or yesterday) # TODO: send script failures to admin email diff --git a/brian_polling_manager/error_report/email.jinja2 b/brian_polling_manager/error_report/email.jinja2 deleted file mode 100644 index 3a2ebc950aea85b9eda2ec864ed97c0716d33867..0000000000000000000000000000000000000000 --- a/brian_polling_manager/error_report/email.jinja2 +++ /dev/null @@ -1,16 +0,0 @@ -<html> -<body> -<pre> -{%- if interfaces %} -{%- for ifc in interfaces %} -================================= -{{ ifc.router }} -================================= - {{ ifc.interface }} {{ ifc.description }} - - {%- for %} - output-drops 1746 Diff: 626 -{%- endfor %} -</pre> -</body> -</html> diff --git a/brian_polling_manager/error_report/error_report.html.jinja2 b/brian_polling_manager/error_report/error_report.html.jinja2 new file mode 100644 index 0000000000000000000000000000000000000000..808e8ade7eeafe708b4084f9a7186171ba8dd42f --- /dev/null +++ b/brian_polling_manager/error_report/error_report.html.jinja2 @@ -0,0 +1,33 @@ +<html> +<body> +<pre> +{%- for ifc in interfaces %} +================================= +{{ ifc.router }} +================================= + {{ ifc.interface }} {{ ifc.description }} + {%- if ifc.diff %} + {%- for err, diff in ifc.diff.items() %} + {{ err }}{{ " " if err == "framing-errors" else "" }} {{ ifc.error_counters[err] }} Diff: {{ diff }} + {%- endfor %} + {%- else %} + {%- for err, val in ifc.error_counters.items() %} + {{ err }}{{ " " if err == "framing-errors" else "" }} {{ val }} + {%- endfor %} + {%- endif %} +{{ '' }} +{%- endfor %} + +{%- if excluded_interfaces %} +ROUTER,INTERFACE,FRAMING ERRORS,BIT ERROR SECONDS,ERRORED BLOCKS SECONDS,CRC ERRORS,TOTAL ERRORS,INPUT DISCARDS,INPUT DROPS,OUTPUT DROPS +{%- for ifc in excluded_interfaces %} +{{ifc.router}},{{ifc.interface}},{{ ifc.error_counters.values() | join(',') }},{{ifc.description}} +{%- endfor %} +{%- endif %} + + + +Generated {{ date }} +</pre> +</body> +</html> diff --git a/brian_polling_manager/error_report/mailer.py b/brian_polling_manager/error_report/mailer.py index 2b051ad89f136a5b70af9c9a56d0fd9134b76a49..32f797c633418bcd4a49cf3a4bf63bacf45388e8 100644 --- a/brian_polling_manager/error_report/mailer.py +++ b/brian_polling_manager/error_report/mailer.py @@ -1,11 +1,26 @@ +import pathlib +import jinja2 + +THIS_DIR = pathlib.Path(__file__).parent + def send_email(errors, config): pass -def render_body(errors, template_file): - pass +def render_html(errors, date): + """ + Render error struct to email body + + :param errors: an instance of `PROCESSED_ERROR_COUNTERS_SCHEMA` + :param template_file: a jinja2 templat to rende + """ + env = jinja2.Environment( + loader=jinja2.FileSystemLoader(THIS_DIR), newline_sequence='\r\n' + ) + template = env.get_template("error_report.html.jinja2") + return template.render(**errors, date=date) + if __name__ == "__main__": pass - diff --git a/test/error_report/data/full-inventory.json b/test/error_report/data/full-inventory.json new file mode 100644 index 0000000000000000000000000000000000000000..386f8f30fb771c70ad3001c4b4c677b6e1790121 --- /dev/null +++ b/test/error_report/data/full-inventory.json @@ -0,0 +1,82550 @@ +[ + { + "router": "mx1.lon.uk.geant.net", + "name": "et-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | JISC AP Upgrade 400GB | LR4 Optic Installed", + "circuits": [], + "snmp-index": 1557, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-1/0/0.200", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT TEIN #UK-TEIN-BJ-ORIENTplus $GS-00925 | ASN23911 |", + "circuits": [ + { + "id": 661591, + "name": "UK-TEIN-BJ-ORIENTPLUS", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 1066, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "TEIN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "TEIN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-0/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 547, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "lt-10/1/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-lon2-uk-RE-IAS| BGP Peering - RE Side", + "circuits": [], + "snmp-index": 1004, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae13.104", + "bundle": [], + "bundle-parents": [ + "et-4/0/4" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #UK-ESNET-EEX-IPV4 $GS-00915 | ASN293 | Lon-EEX-ESnet-IPv4-400G", + "circuits": [ + { + "id": 730143, + "name": "UK-ESNET-EEX-IPV4", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 964, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF0000001 | LON201-DTNX10-1 XCM 2", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "ae10", + "bundle": [ + "xe-0/1/0", + "xe-0/1/1" + ], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1" + ], + "description": "LAG CUSTOMER LITNET AP1 #LITNET-AP1-LAG $GA-02042 |", + "circuits": [], + "snmp-index": 587, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LITNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "LITNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 769, + "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": "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" + } + ], + "snmp-index": 1211, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.4", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-LAUREA-ExpressRoute-VLAN3900 $GS-01158 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 706058, + "name": "NORDUNET-LAUREA-EXPRESSROUTE-VLAN3900", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1025, + "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": "xe-3/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER JISC SRF9925217 $GA-01457 | GEANT+ 1", + "circuits": [], + "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": "mx1.bud.hu.geant.net", + "name": "xe-5/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY UPSTREAM COLT P_ae21 | COLT ID: 444031977 # DX9403226 ", + "circuits": [], + "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": "mx1.lon.uk.geant.net", + "name": "ae28.100", + "bundle": [], + "bundle-parents": [ + "et-4/1/1" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT TENET #UK-TENET $GS-01192 | ASN2018", + "circuits": [ + { + "id": 717803, + "name": "UK-TENET", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 1007, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "TENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "TENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 762, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-7/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS AMT RELAY MX204 ROUTER Link1", + "circuits": [], + "snmp-index": 549, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 594, + "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-7/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 825, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 637, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "xe-0/0/0:1", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 542, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | was EXFO management", + "circuits": [], + "snmp-index": 594, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae16.740", + "bundle": [], + "bundle-parents": [ + "xe-0/0/4", + "xe-0/1/0", + "xe-0/1/2", + "xe-0/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #A10-DDOS-SCRUBBING-FRA-Clean-traffic $GS-00087 | Clean-Traffic CONTACT: SOC@geant.org IMPLEMENTED: 20170831", + "circuits": [ + { + "id": 732513, + "name": "A10-DDOS-SCRUBBING-FRA-CLEAN-TRAFFIC", + "type": "SERVER LINK", + "status": "operational" + } + ], + "snmp-index": 1401, + "dashboards": [], + "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" + } + ], + "snmp-index": 829, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "et-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | BIL-PAR | Infinera BIL-GRV2 Facing PAR-GRV1 1/1/4", + "circuits": [], + "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.mar.fr.geant.net", + "name": "xe-3/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 666, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1287, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 780, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1352, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.310", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DTN-PROJECT-VLAN310 $GS-00142 | DTN-Project CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20171206", + "circuits": [ + { + "id": 661669, + "name": "DTN-PROJECT-VLAN310", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 729, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_ae3 SRF0000001 | rt1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 545, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/2.30", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-mit1-vie-at-idrac | NEMO DDOS Mitigation 1 iDRAC | ", + "circuits": [ + { + "id": 727795, + "name": "DDOS-MIT1-VIE-AT-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 784, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1461, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/14", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 530, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/10", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 524, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "rt1.bru.be.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | BELNET GRID5000_1", + "circuits": [], + "snmp-index": 567, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/11", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae11 | PAR-PRD-ESX3 SLOT4 PORT3 VMNIC6", + "circuits": [ + { + "id": 658471, + "name": "730XD-3-SLOT4-PORT3-VMNIC6-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CESNET P_AE13 SRF9939551|", + "circuits": [], + "snmp-index": 674, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CESNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "CESNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1052, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 533, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1058, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 928, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 651, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 882, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | GRNET AP2_4 |", + "circuits": [], + "snmp-index": 538, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH2-VIE | OTEGlobe CID: 1-94LW1M7", + "circuits": [], + "snmp-index": 1050, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-10/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MIL2-VIE |Connected to VIE01-GRV2.AT.GEANT.NET 1/1/4", + "circuits": [], + "snmp-index": 567, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + } + ], + "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": 727354, + "name": "BELNET-PREMIER-EXPRESSROUTE-VLAN4093", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 600, + "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": "so-1/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 733, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae2", + "bundle": [ + "et-3/1/1" + ], + "bundle-parents": [ + "et-3/1/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02279 | BRU-PAR |", + "circuits": [], + "snmp-index": 632, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-PAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BRU-PAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 550, + "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": "730XD-4-ESXI-TRAFFIC-LAG", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 577, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-1/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 571, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "lt-10/1/0.71", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT #VRF-CONNECTION-LON2-UK-VLAN71 | L2Circuit into VRF (VRF Side)", + "circuits": [], + "snmp-index": 1006, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "lt-1/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #ATH-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 626, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-1/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | RARE EDGECORE WEDGE100BF-32X xe-2", + "circuits": [], + "snmp-index": 884, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-5/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ARNES P_AE10 | ARNES AP2-100G LL2 (ZAG01-GRV1) 1/1/4", + "circuits": [], + "snmp-index": 1014, + "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": "ae18", + "bundle": [ + "xe-2/2/0" + ], + "bundle-parents": [ + "xe-2/2/0" + ], + "description": "LAG PUBLIC CIXP SRF9930443 $GA-01881 |", + "circuits": [], + "snmp-index": 708, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "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": "mx1.bud.hu.geant.net", + "name": "et-3/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER KIFU P_AE10 SRF19047 |", + "circuits": [], + "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.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" + } + ], + "snmp-index": 605, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae16.333", + "bundle": [], + "bundle-parents": [ + "et-3/0/5" + ], + "description": "SRV_IAS CUSTOMER AMRES #AMRES-AP2-IAS IASGWS $GS-02241 | ASN13092 |", + "circuits": [ + { + "id": 732623, + "name": "AMRES-AP2-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 770, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "AMRES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMRES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-9/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | FRA-PRA2", + "circuits": [], + "snmp-index": 656, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 1049, + "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" + } + ], + "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": "rt1.cor.ie.geant.net", + "name": "ae10.2715", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE SAO-DUB | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 639, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "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" + } + ], + "snmp-index": 1200, + "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": "xe-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS AMT RELAY MX204 ROUTER Link1", + "circuits": [], + "snmp-index": 665, + "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": [], + "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.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" + } + ], + "snmp-index": 1183, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-2/2/7.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #par-lon2-SUPERPOP-QFX-2-GEANT $GS-00081 |", + "circuits": [ + { + "id": 729417, + "name": "PAR-LON2-SUPERPOP-QFX-2-GEANT", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 613, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": "operational" + } + ], + "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": "rt1.fra.de.geant.net", + "name": "ae30.3000", + "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 #VM-Datanetwork-Fra $GS-00084 | VM DATA network", + "circuits": [ + { + "id": 733005, + "name": "VM-DATANETWORK-FRA", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1128, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 560, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 607, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/2.500", + "bundle": [], + "bundle-parents": [], + "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" + } + ], + "snmp-index": 967, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "CESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "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": [], + "snmp-index": 902, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "rt1.fra.de.geant.net", + "name": "ae19.683", + "bundle": [], + "bundle-parents": [ + "xe-11/1/3", + "xe-11/1/4" + ], + "description": " SRV_L2CIRCUIT CUSTOMER ORACLE REDIRIS SRF21051 #bil-fra-ORACLE-REDIRIS-21051-VL683 $GS-00701", + "circuits": [ + { + "id": 719124, + "name": "BIL-FRA-ORACLE-REDIRIS-21051-VL683", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1056, + "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": "mx1.vie.at.geant.net", + "name": "xe-4/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1049, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "rt1.lju.si.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.28", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ONDD-ExpressRoute-Vlan4065 $GS-02389 | ", + "circuits": [ + { + "id": 730047, + "name": "BELNET-ONDD-EXPRESSROUTE-VLAN4065", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 605, + "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": "ae23", + "bundle": [ + "et-3/1/4" + ], + "bundle-parents": [ + "et-3/1/4" + ], + "description": "LAG CUSTOMER SWITCH AP1 SRF19136 $GA-01880 |", + "circuits": [], + "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.buc.ro.geant.net", + "name": "ae9", + "bundle": [ + "et-4/0/0" + ], + "bundle-parents": [ + "et-4/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01994 | BUC-FRA |", + "circuits": [], + "snmp-index": 547, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-FRA", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BUC-FRA", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 979, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 815, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-3/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 734, + "dashboards": [], + "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": 712096, + "name": "KIE-POZ-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "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.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" + } + ], + "snmp-index": 1158, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "NEA3R", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "NEA3R", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae12 | PAR-PRD-ESX4 SLOT4 PORT2 VMNIC5", + "circuits": [ + { + "id": 658432, + "name": "730XD-4-SLOT4-PORT2-VMNIC5-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 523, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1451, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.75", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AAI-AMS-NL-VLAN75 | AAI", + "circuits": [ + { + "id": 663224, + "name": "AAI-AMS-NL-VLAN75", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 759, + "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-EEX-IPV4 $GS-00872 | ASN293 | IPv4", + "circuits": [ + { + "id": 730102, + "name": "CH-ESNET-EEX-IPV4", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 1280, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.18", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-PREMIER-ExpressRoute-VLAN4089 $GS-01137 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711866, + "name": "BELNET-PREMIER-EXPRESSROUTE-VLAN4089", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1454, + "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": "ae16.0", + "bundle": [], + "bundle-parents": [ + "xe-0/1/1", + "xe-4/3/6", + "xe-7/1/0" + ], + "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK-32934-VIE-FC-26606 $GS-00930 | ASN32934", + "circuits": [ + { + "id": 708224, + "name": "FACEBOOK-32934-VIE-FC-26606", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "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": "mx1.poz.pl.geant.net", + "name": "et-7/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1052, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | COR-COR", + "circuits": [], + "snmp-index": 598, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-COR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "COR-COR", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-3/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | CYNET NEW 10G", + "circuits": [], + "snmp-index": 602, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.1500", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "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": "non-monitored" + } + ], + "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": "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": [], + "snmp-index": 674, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.104", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #JUNOSSPACE-R720-NEBACKUP-PAR-FR | JUNOSSPACE R720 - NEBACKUP VM", + "circuits": [ + { + "id": 661517, + "name": "JUNOSSPACE-R720-NEBACKUP-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 913, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 563, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 646, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/8.12", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #GEANT-CORPORATE-ViaVodafone-VRF-TEST | GEANT Corporate to mx1.lon - Via Vodafone - DASHBOARD BGP TEST VLAN", + "circuits": [ + { + "id": 678920, + "name": "GEANT-CORPORATE-VIAVODAFONE-VRF-TEST", + "type": "CORPORATE", + "status": "non-monitored" + } + ], + "snmp-index": 522, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-11/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 860, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 736, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 931, + "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" + } + ], + "snmp-index": 1089, + "dashboards": [ + "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": "mx2.zag.hr.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 568, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 922, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT ESNET SRF9927961 AMS-EEX-ESNET-1G OOB $GA-01591", + "circuits": [], + "snmp-index": 636, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "et-3/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #HAM-TAR-IPTRUNK $GS-02348| HAM-TAR", + "circuits": [ + { + "id": 729018, + "name": "HAM-TAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 807, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-TAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HAM-TAR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4065", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ONDD-ExpressRoute-Vlan4065 $GS-02389 | ", + "circuits": [ + { + "id": 730047, + "name": "BELNET-ONDD-EXPRESSROUTE-VLAN4065", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 702, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.2200", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RENATER GEANT #AMS-PAR-RENATER-RARE-20070 $GS-00657 |", + "circuits": [ + { + "id": 705912, + "name": "AMS-PAR-RENATER-RARE-20070", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 988, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENATER", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/0/1.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER CERN #ams-gen-LHC-CERN-ASGC-07014 $GS-00780 | ", + "circuits": [ + { + "id": 734565, + "name": "AMS-GEN-LHC-CERN-ASGC-07014", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 644, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "CERN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CERN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-1/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 552, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/0/1:3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-4/0/2", + "et-4/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU01-ZAG-IPTRUNK $GS-02372| LJU01-ZAG", + "circuits": [ + { + "id": 729571, + "name": "LJU01-ZAG-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 814, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-ZAG", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-ZAG", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "ae10.333", + "bundle": [], + "bundle-parents": [ + "xe-0/1/6", + "xe-0/1/7" + ], + "description": "SRV_IAS CUSTOMER RENAM #RENAM-AP1-IAS IASGWS $GS-00541 | ASN9199", + "circuits": [ + { + "id": 714070, + "name": "RENAM-AP1-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 566, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "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" + } + ], + "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.buc.ro.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-buc-ro-RE-IAS | BGP PEERING - RE SIDE", + "circuits": [], + "snmp-index": 658, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/2/0.60", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-buc-ro-vlan60| KVMoIP - sw1 port 6", + "circuits": [ + { + "id": 663076, + "name": "KVMOIP-BUC-RO-VLAN60", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 599, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-5/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER SURF P_AE15 | Connected to SURF Asd001B-JNX-06 et-2/3/0 (1384112b)", + "circuits": [], + "snmp-index": 988, + "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-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_AE3 | LON2-PRD-ESX03 NIC2 PORT1", + "circuits": [], + "snmp-index": 657, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 754, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.11", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER GEANT | Nordunet_LTU_ExpressRoute_Vlan3908 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731511, + "name": "NORDUNET-LTU-EXPRESSROUTE-VLAN3908", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 1087, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.888", + "bundle": [], + "bundle-parents": [], + "description": "SRV_TAAS INFRASTRUCTURE GTS #TAAS-CONTROL-AMSTERDAM | TAAS CONTROL", + "circuits": [ + { + "id": 663222, + "name": "TAAS-CONTROL-AMSTERDAM", + "type": "GTS", + "status": "non-monitored" + } + ], + "snmp-index": 933, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS AMT RELAY MX204 ROUTER Link1", + "circuits": [], + "snmp-index": 1565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX01 SLOT0 PORT1 VMNIC0", + "circuits": [ + { + "id": 658614, + "name": "730XD-1-SLOT0-PORT1-VMNIC0", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 571, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-1/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Was IUCC: GNT-E10-004", + "circuits": [], + "snmp-index": 550, + "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" + } + ], + "snmp-index": 747, + "dashboards": [], + "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": [], + "snmp-index": 582, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.95", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DANTE-TECHNICAL-CUSTOMER-SUPPORT | DANTE Technical Customer Support n", + "circuits": [ + { + "id": 661576, + "name": "DANTE-TECHNICAL-CUSTOMER-SUPPORT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 813, + "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" + } + ], + "snmp-index": 632, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 526, + "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": [], + "snmp-index": 1576, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1457, + "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": [], + "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": "rt1.mil2.it.geant.net", + "name": "ae7", + "bundle": [ + "xe-0/0/2", + "xe-0/0/3", + "xe-0/0/4", + "xe-0/0/5" + ], + "bundle-parents": [ + "xe-0/0/2", + "xe-0/0/3", + "xe-0/0/4", + "xe-0/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01777 | ATH-MIL |", + "circuits": [], + "snmp-index": 749, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH-MIL", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae30.0", + "bundle": [], + "bundle-parents": [ + "et-9/1/5" + ], + "description": "SRV_IAS PRIVATE VERIZON #VIENNA-VERIZON-2-15133-AT-1 $GS-02224 | ASN15133", + "circuits": [ + { + "id": 724380, + "name": "VIENNA-VERIZON-2-15133-AT-1", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "snmp-index": 626, + "dashboards": [ + "IAS_PEERS", + "IAS_PRIVATE" + ], + "dashboard_info": { + "name": "VERIZON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "VERIZON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | PRA-VIE", + "circuits": [], + "snmp-index": 922, + "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": "ae13", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG CUSTOMER SANET SRF24007 $GA-02437 |", + "circuits": [], + "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.mil2.it.geant.net", + "name": "ae3.0", + "bundle": [], + "bundle-parents": [ + "et-4/0/2", + "et-4/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU01-MIL2-IPTRUNK $GS-00051| LJU01-MIL2", + "circuits": [ + { + "id": 729572, + "name": "LJU01-MIL2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 692, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-MIL2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-MIL2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0-RT1 TRUNK 20GB 2_2 | Needs LR SFP+", + "circuits": [], + "snmp-index": 556, + "dashboards": [], + "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" + } + ], + "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.poz.pl.geant.net", + "name": "lt-3/3/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-poz-pl-RE-IAS| BGP Peering - RE Side", + "circuits": [], + "snmp-index": 663, + "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": [], + "snmp-index": 942, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 611, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 509, + "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": [], + "snmp-index": 1296, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/1.21", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-ath-gr-drac | HADES drac", + "circuits": [ + { + "id": 661381, + "name": "PSMP-ATH-GR-DRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 659, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 544, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "gr-3/0/0.21", + "bundle": [], + "bundle-parents": [], + "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-IMO $GS-02097", + "circuits": [ + { + "id": 732659, + "name": "GRE-MULTICAST-TUNNEL-IMO", + "type": "EUMETSAT GRE", + "status": "non-monitored" + } + ], + "snmp-index": 1224, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae10 | PAR-PRD-ESX2 SLOT4 PORT3 VMNIC6", + "circuits": [ + { + "id": 658365, + "name": "730XD-2-SLOT4-PORT3-VMNIC6-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 639, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.333", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_IAS CUSTOMER HEANET #HEANET-AP2-IAS IASPS $GS-00573 | ASN1213", + "circuits": [ + { + "id": 732240, + "name": "HEANET-AP2-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 630, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #THE-THE-IPTRUNK $GS-02427| THE-THE", + "circuits": [ + { + "id": 734325, + "name": "THE-THE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 602, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "THE-THE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "THE-THE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 753, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-11/1/2", + "et-11/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-MAR-IPTRUNK $GS-00038 | #GEN-MAR-IPTRUNK ", + "circuits": [ + { + "id": 719622, + "name": "GEN-MAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 661, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "#GEN-MAR-IPTRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "#GEN-MAR-IPTRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 963, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-3/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 739, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-11/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE GOOGLE P_AE44 | Interxion CID DE236899", + "circuits": [], + "snmp-index": 868, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 538, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CERN #ams-gen-LHC-CERN-ASGC-07014 | Digital Realty CID: NL172398-2", + "circuits": [], + "snmp-index": 637, + "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": "et-8/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | POZ-PRA", + "circuits": [], + "snmp-index": 1049, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 594, + "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" + } + ], + "snmp-index": 1167, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "ae10.111", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_L3VPN CUSTOMER EENET #EENET-AP2-LHCONE $GS-00819 | ASN3221", + "circuits": [ + { + "id": 661487, + "name": "EENET-AP2-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 614, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "EENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 657, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae8.0", + "bundle": [], + "bundle-parents": [ + "et-9/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRA-VIE-IPTRUNK-100G $GS-00019 | BRA-VIE |", + "circuits": [ + { + "id": 728897, + "name": "BRA-VIE-IPTRUNK-100G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 753, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRA-VIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BRA-VIE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 927, + "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": [], + "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": "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": [], + "snmp-index": 1020, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | CONNECTED TO SW3-FPC1-Xe-0/0/0", + "circuits": [], + "snmp-index": 671, + "dashboards": [], + "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": 705907, + "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17091", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "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.buc.ro.geant.net", + "name": "ae3", + "bundle": [ + "xe-1/1/0", + "xe-1/1/1", + "xe-1/2/0", + "xe-1/2/1" + ], + "bundle-parents": [ + "xe-1/1/0", + "xe-1/1/1", + "xe-1/2/0", + "xe-1/2/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02003 | BUC-CHI |", + "circuits": [], + "snmp-index": 541, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-CHI", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BUC-CHI", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/11", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae11 | FRA-PRD-ESX03 SLOT4 PORT3 VMNIC6", + "circuits": [ + { + "id": 658610, + "name": "730XD-3-SLOT4-PORT3-VMNIC6", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ae12.37", + "bundle": [], + "bundle-parents": [ + "et-8/1/2" + ], + "description": "SRV_MDVPN CUSTOMER CARNET #CARNET-BGP-LU-COC-AP2 $GS-01000 | MDVPN COC - CARNET AP2", + "circuits": [ + { + "id": 730101, + "name": "CARNET-BGP-LU-COC-AP2", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 842, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "CARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CARNET", + "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": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.23", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PS-AMS-NL-IDRAC2 | PERFSONAR IDRAC", + "circuits": [ + { + "id": 663033, + "name": "PS-AMS-NL-IDRAC2", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 798, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/0/1:0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.189", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mad-Fed4FIRE-BELNET-RedIRIS-14013 $GS-00677 |", + "circuits": [ + { + "id": 719544, + "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14013", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1068, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae10.2009", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER LAT SURF #AMS-RIG-LOFAR-LAT-SURF-19052 $GS-00663 |", + "circuits": [ + { + "id": 714165, + "name": "AMS-RIG-LOFAR-LAT-SURF-19052", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 608, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURFNET", + "interface_type": "LOGICAL" + }, + { + "name": "LAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 599, + "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" + } + ], + "snmp-index": 557, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae11 | PAR-PRD-ESX3 SLOT0 PORT2 VMNIC1", + "circuits": [ + { + "id": 658598, + "name": "730XD-3-SLOT0-PORT2-VMNIC1-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 521, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 548, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.3610", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT KAUST #NL-KAUST $GS-00895 | ASN50999 |", + "circuits": [ + { + "id": 734575, + "name": "NL-KAUST", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1151, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "KAUST", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KAUST", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 524, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3919", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GCS Customer Nordunet MICROSOFT #Nordunet-MSER-ExpressRoute-Vlan3919 $GS-02412 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 732193, + "name": "NORDUNET-MSER-EXPRESSROUTE-VLAN3919", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 974, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1175", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET SCION #BRU-GEN-FED4FIRE-SCION-9928774 $GS-00671 |", + "circuits": [ + { + "id": 714186, + "name": "BRU-GEN-FED4FIRE-SCION-9928774", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 660, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FED4FIRE", + "interface_type": "LOGICAL" + }, + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae2", + "bundle": [ + "xe-0/1/7" + ], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 601, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 673, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ae8", + "bundle": [ + "et-4/0/4", + "et-4/1/4" + ], + "bundle-parents": [ + "et-4/0/4", + "et-4/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE #LON2-PAR-800G-LAG $GA-01762 | LON2-PAR", + "circuits": [], + "snmp-index": 625, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON2-PAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "LON2-PAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "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": "mx2.ath.gr.geant.net", + "name": "xe-3/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 738, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae9", + "bundle": [ + "et-2/0/2", + "et-2/0/5" + ], + "bundle-parents": [ + "et-2/0/2", + "et-2/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01853 | BUD-VIE |", + "circuits": [], + "snmp-index": 689, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUD-VIE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BUD-VIE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae7", + "bundle": [ + "et-2/0/2", + "et-2/0/5", + "et-2/1/2" + ], + "bundle-parents": [ + "et-2/0/2", + "et-2/0/5", + "et-2/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02409 | POZ-PRA", + "circuits": [], + "snmp-index": 975, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-PRA", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "POZ-PRA", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 1261, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 598, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "lt-1/1/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-par-fr-RE-IAS| BGP PEERING - RE SIDE", + "circuits": [], + "snmp-index": 1500, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-1/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae15.333", + "bundle": [], + "bundle-parents": [ + "xe-2/1/5" + ], + "description": "SRV_IAS CUSTOMER MREN #MREN-AP1-IAS IASGWS $GS-00538 | ASN40981 |", + "circuits": [ + { + "id": 732440, + "name": "MREN-AP1-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 865, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "MREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 735, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "ae3", + "bundle": [ + "xe-0/1/7" + ], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt2-sw1 (ex3400)", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/45", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 545, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "et-4/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | GEN-MAR01 | ", + "circuits": [], + "snmp-index": 579, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-MAR01", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEN-MAR01", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.103", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #JUNOSSPACE-R720-VCENTRE-PAR-FR | JUNOSSPACE R720 - VCENTER VM", + "circuits": [ + { + "id": 661998, + "name": "JUNOSSPACE-R720-VCENTRE-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 905, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4.991", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-GEN-CH | | DCN MANAGEMENT", + "circuits": [ + { + "id": 707223, + "name": "DCN-MANAGEMENT-GEN-CH", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 628, + "dashboards": [], + "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": [], + "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": "mx1.bud.hu.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN | bud hu POP LAN", + "circuits": [], + "snmp-index": 608, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 748, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER BELNET SRF19118 P_AE16 | BELNET AP2 | ASN2611", + "circuits": [], + "snmp-index": 595, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "srx1.ch.office.geant.net", + "name": "lo0.0", + "bundle": [], + "bundle-parents": [], + "description": "Router Loopback", + "circuits": [], + "snmp-index": 16, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae38.333", + "bundle": [], + "bundle-parents": [ + "xe-11/0/6" + ], + "description": "SRV_IAS CUSTOMER CYNET #CYNET-AP2-IAS IASGWS $GS-00525 | ASN3268", + "circuits": [ + { + "id": 732140, + "name": "CYNET-AP2-IAS", + "type": "GWS - INDIRECT", + "status": "non-monitored" + } + ], + "snmp-index": 1149, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CYNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-11/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE - WAS SWITCH", + "circuits": [], + "snmp-index": 1231, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/0.210", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #mdvpn-securityTool-dub-ie-vlan210 | MDVPN security tool CONTACT: IT IMPLEMENTED:20150901", + "circuits": [ + { + "id": 663191, + "name": "MDVPN-SECURITYTOOL-DUB-IE-VLAN210", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 629, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 649, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4.24", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #old-ps-gen-ch-management | OLD perfSONAR MGMT LHCONE", + "circuits": [ + { + "id": 663242, + "name": "OLD-PS-GEN-CH-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 769, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "so-1/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 937, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 590, + "dashboards": [], + "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": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "et-2/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | NO OPTIC INSTALLED", + "circuits": [], + "snmp-index": 700, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae27.100", + "bundle": [], + "bundle-parents": [ + "et-2/1/5" + ], + "description": "SRV_GLOBAL CUSTOMER ULAKBIM #ULAKBIM-AP2 $GS-00518 | ASN8517 |", + "circuits": [ + { + "id": 663056, + "name": "ULAKBIM-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 741, + "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": "et-2/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER DFN P_AE11 SRF21078 | DFN AP1 Migration 1_3", + "circuits": [], + "snmp-index": 680, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "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": "mx1.poz.pl.geant.net", + "name": "xe-1/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 573, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1862, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 730043, + "name": "BELNET-ONDD-EXPRESSROUTE-VLAN4066", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 608, + "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/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER PIONIER SRF9915527 $GA-01372 | Connection to Pionier Project Switch", + "circuits": [], + "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.lon.uk.geant.net", + "name": "ge-0/3/3.1114", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2Circuit Infrastructure GEANT GEANT #UAT-Test-Infrastructure $GS-11114 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 719629, + "name": "UAT-TEST-INFRASTRUCTURE", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1446, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.936", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS GEANT #AMS-BIL-REDIRIS-RARE $GS-02287 |", + "circuits": [ + { + "id": 726618, + "name": "AMS-BIL-REDIRIS-RARE", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1339, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-1/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 553, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae18.2603", + "bundle": [], + "bundle-parents": [ + "et-11/1/0" + ], + "description": "SRV_GLOBAL CUSTOMER RESTENA #RESTENA-AP2 $GS-00508 | ASN2602 |", + "circuits": [ + { + "id": 661531, + "name": "RESTENA-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 749, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RESTENA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RESTENA", + "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": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/9.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS WP6 Netronome server # Netronome-MANAGEMENT-LON2-UK |SRV MGMT CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180502", + "circuits": [ + { + "id": 708241, + "name": "NETRONOME-MANAGEMENT-LON2-UK", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1175, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 601, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.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" + } + ], + "snmp-index": 1137, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.902", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 GEANT #lon-lon-MISC-GEANT-INTERNET2-9940169 $GS-00725 |", + "circuits": [ + { + "id": 678922, + "name": "LON-LON-MISC-GEANT-INTERNET2-9940169", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 677, + "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": "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": [], + "snmp-index": 1358, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "et-5/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | SINES DF JAN 2023 - QSFP LR4 optic installed", + "circuits": [], + "snmp-index": 800, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 542, + "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": [], + "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": "mx1.ath2.gr.geant.net", + "name": "ae12", + "bundle": [ + "xe-1/0/0" + ], + "bundle-parents": [ + "xe-1/0/0" + ], + "description": "LAG CUSTOMER CYNET SRF9943225 $GA-01928 |", + "circuits": [], + "snmp-index": 546, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "CYNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 681, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 767, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 610, + "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" + } + ], + "snmp-index": 639, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SURF", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | buc ro POP LAN", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", + "circuits": [], + "snmp-index": 581, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/14", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX04 SLOT4 PORT1 VMNIC4 - VSAN PORT", + "circuits": [ + { + "id": 658611, + "name": "730XD-4-SLOT4-PORT1-VMNIC4", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 510, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-4/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1043, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1099, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "CESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1007", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET JISC #bru-lon-Fed4FIRE-BELNET-JISC-14023 $GS-00672 |", + "circuits": [ + { + "id": 727506, + "name": "BRU-LON-FED4FIRE-BELNET-JISC-14023", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 657, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + }, + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 957, + "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 | Tamares CID: XXXXXX", + "circuits": [], + "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": "rt1.bru.be.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE2 | rt1-sw2(ex3400)", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE FACEBOOK P_AE16 SRF9950491 | FB ID: AT134908-1", + "circuits": [], + "snmp-index": 1068, + "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": [], + "snmp-index": 1266, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.por.pt.geant.net", + "name": "xe-3/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to GEANT ODF P7", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE ORANGE BUSINESS SYSTEMS P_AE22 | Digital Realty -CID NL183414 | ", + "circuits": [], + "snmp-index": 648, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "xe-5/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | No optic present", + "circuits": [], + "snmp-index": 600, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Was PSMP Server", + "circuits": [], + "snmp-index": 580, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/0/5.3803", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NETHERLIGHT #NORDU-TO-NETHERLIGHT-TEST $GS-00742 | Nordu-to-Netherlight test 1/12/2014", + "circuits": [ + { + "id": 719129, + "name": "NORDU-TO-NETHERLIGHT-TEST", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1279, + "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/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | OLD PSMP BWCTL", + "circuits": [], + "snmp-index": 930, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-3/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER SWITCH P_AE23 |", + "circuits": [], + "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": "mx1.mad.es.geant.net", + "name": "xe-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | MAD GTS Server #1", + "circuits": [], + "snmp-index": 578, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-11/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE Verizon P_AE12 | FRANKFURT-VERIZON-1-LL-3 | Interxion CID: DE236887 | VERIZON CID: GEANT-FRM-EU-05-PX", + "circuits": [], + "snmp-index": 900, + "dashboards": [], + "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": [], + "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": "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": [], + "snmp-index": 851, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "NEA3R", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "NEA3R", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 873, + "dashboards": [], + "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" + } + ], + "snmp-index": 1467, + "dashboards": [], + "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": [], + "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": "rt2.ams.nl.geant.net", + "name": "ae2.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS2-LON-IPTRUNK-100G $GS-00012 | AMS-LON |Coriant G30 100G", + "circuits": [ + { + "id": 708739, + "name": "AMS2-LON-IPTRUNK-100G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 584, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "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": [], + "snmp-index": 659, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-3/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #SOF-THE-IPTRUNK $GS-02424| SOF-THE", + "circuits": [ + { + "id": 733010, + "name": "SOF-THE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 775, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-THE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SOF-THE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 592, + "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" + } + ], + "snmp-index": 739, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae2.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-BRU1-BE | DCN MANAGEMENT ", + "circuits": [ + { + "id": 727156, + "name": "DCN-MANAGEMENT-BRU1-BE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to REDIRIS via MMR", + "circuits": [], + "snmp-index": 572, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 638, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.334", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS PRIVATE NORDUNET #NL-NORDUNET-IX-2603 $GS-00939 | ASN2603 |", + "circuits": [ + { + "id": 734557, + "name": "NL-NORDUNET-IX-2603", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "non-monitored" + } + ], + "snmp-index": 1133, + "dashboards": [ + "IAS_PEERS", + "IAS_PRIVATE" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 777, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE GOOGLE P_AE12", + "circuits": [], + "snmp-index": 709, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "SPARE", + "circuits": [], + "snmp-index": 592, + "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" + } + ], + "snmp-index": 521, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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": "operational" + } + ], + "snmp-index": 621, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae7", + "bundle": [ + "xe-7/2/0" + ], + "bundle-parents": [ + "xe-7/2/0" + ], + "description": "LAG INFRASTRUCTURE ACCESS | AMT RELAY MX204 ROUTER FRA-FRA ", + "circuits": [], + "snmp-index": 587, + "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" + } + ], + "snmp-index": 1006, + "dashboards": [ + "IAS_UPSTREAM" + ], + "dashboard_info": { + "name": "COLT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COLT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "rt1.fra.de.geant.net", + "name": "xe-11/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE Verizon P_AE12 | FRANKFURT-VERIZON-1-LL-2 | Interxion CID: DE236885 | VERIZON CID: GEANT-FRM-EU-04-PX", + "circuits": [], + "snmp-index": 888, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ath2.gr.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-ATH2-IPTRUNK $DS-00099| ATH2-ATH2", + "circuits": [ + { + "id": 734099, + "name": "ATH2-ATH2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 597, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-ATH2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-ATH2", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 845, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER LITNET P_AE10 SRF21091 | ", + "circuits": [], + "snmp-index": 563, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LITNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LITNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-3/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 768, + "dashboards": [], + "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": [], + "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.ams.nl.geant.net", + "name": "et-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED PCNL-90556235| PHY PUBLIC AMS-IX P_AE12 SRF9942425 | INTERXION ID: NL102081 AMS-IX ID: mym6-mem-1540-6399 ===MX1.AMS et-4/0/2", + "circuits": [], + "snmp-index": 951, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-11/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP7T2SF SRF0000001 | AMS BMS Server #5 (Reserved for SWD/IT)", + "circuits": [], + "snmp-index": 1239, + "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" + } + ], + "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.dub.ie.geant.net", + "name": "ae5.0", + "bundle": [], + "bundle-parents": [ + "et-4/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-DUB-IPTRUNK $GS-02383| COR-DUB", + "circuits": [ + { + "id": 729955, + "name": "COR-DUB-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 712, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-DUB", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COR-DUB", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-7/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | AMS-LON", + "circuits": [], + "snmp-index": 1390, + "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": "ge-0/2/9.30", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #EXFO-MANAGEMENT-VLAN30 | EXFO Management VLAN 30", + "circuits": [ + { + "id": 709297, + "name": "EXFO-MANAGEMENT-VLAN30", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 890, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae3", + "bundle": [ + "xe-0/1/0" + ], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-02032 | rt1-sw1 (ex4300)", + "circuits": [], + "snmp-index": 587, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 678, + "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" + } + ], + "snmp-index": 1154, + "dashboards": [ + "IAS_UPSTREAM" + ], + "dashboard_info": { + "name": "COLT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COLT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/6.3005", + "bundle": [], + "bundle-parents": [], + "description": "SRV_VPLS INFRASTRUCTURE #RARE-P4-MANAGEMENT-VLAN3005 | RARE P4 b1.bud MGMT CONTACT: mian.usman@geant.org IMPLEMENTED: 20200116", + "circuits": [ + { + "id": 663084, + "name": "RARE-P4-MANAGEMENT-VLAN3005", + "type": "L2SERVICES", + "status": "operational" + } + ], + "snmp-index": 772, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-1/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC MIX P_AE11 SRF9949654 | MIX ID: XCID202001-019", + "circuits": [], + "snmp-index": 662, + "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-EEX-ESNET-400G", + "circuits": [], + "snmp-index": 1002, + "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": "ae14", + "bundle": [ + "xe-4/0/0", + "xe-4/3/7", + "xe-7/0/0" + ], + "bundle-parents": [ + "xe-4/0/0", + "xe-4/3/7", + "xe-7/0/0" + ], + "description": "LAG PRIVATE FACEBOOK SRF9933143 $GA-01852 |", + "circuits": [], + "snmp-index": 694, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | COLT GWS Upstream 1_2", + "circuits": [], + "snmp-index": 937, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 875, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae11.500", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "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" + } + ], + "snmp-index": 964, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "CESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-2", + "circuits": [], + "snmp-index": 687, + "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" + } + ], + "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": "rt1.mil2.it.geant.net", + "name": "ae2.0", + "bundle": [], + "bundle-parents": [ + "et-9/0/2", + "et-9/0/5", + "et-9/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN1-MIL2-IPTRUNK $GS-00039 | GEN1-MIL2 IP TRUNK", + "circuits": [ + { + "id": 718618, + "name": "GEN1-MIL2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 851, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN1-MIL2 IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEN1-MIL2 IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | RIG-TAR", + "circuits": [], + "snmp-index": 595, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-TAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RIG-TAR", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "ae0", + "bundle": [ + "et-0/0/2" + ], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02405 |COR-COR", + "circuits": [], + "snmp-index": 607, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-COR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "COR-COR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 530, + "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" + } + ], + "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": "rt1.fra.de.geant.net", + "name": "ae19.682", + "bundle": [], + "bundle-parents": [ + "xe-11/1/3", + "xe-11/1/4" + ], + "description": "SRV_L2CIRCUIT CUSTOMER ORACLE REDIRIS SRF21051 #fra-mad-ORACLE-REDIRIS-21051-VL682 $GS-00702", + "circuits": [ + { + "id": 719538, + "name": "FRA-MAD-ORACLE-REDIRIS-21051-VL682", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1055, + "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": "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" + } + ], + "snmp-index": 603, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GARR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GARR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "mx1.poz.pl.geant.net", + "name": "xe-2/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 730, + "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": [], + "snmp-index": 703, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-LR | ", + "circuits": [], + "snmp-index": 690, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/0.22", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lon2-uk-management |perfSONAR MGMT", + "circuits": [ + { + "id": 661735, + "name": "PS-LON2-UK-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 681, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae15.1125", + "bundle": [], + "bundle-parents": [ + "et-1/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET INTERNET2 #bru-par-GENI-iMinds-Internet2-15008 $GS-00681 |", + "circuits": [ + { + "id": 706950, + "name": "BRU-PAR-GENI-IMINDS-INTERNET2-15008", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 889, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "IMINDS", + "interface_type": "LOGICAL" + }, + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "ae10.333", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1" + ], + "description": "SRV_IAS CUSTOMER LITNET #LITNET-AP1-IAS IASGWS $GS-00534 | ASN2847 |", + "circuits": [ + { + "id": 715806, + "name": "LITNET-AP1-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 611, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "LITNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LITNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "et-8/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE6 | KAU-POZ | Coriant G30 link 1", + "circuits": [], + "snmp-index": 1048, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-POZ", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "KAU-POZ", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-2/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE 10GGBS $GA-01325 | EXFO-10G-GBS-TEST - EXFO Tester data port", + "circuits": [], + "snmp-index": 1582, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.300", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #dtn-project-par-fr $GS-00145 | DTN-Project CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20171205", + "circuits": [ + { + "id": 661644, + "name": "DTN-PROJECT-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1243, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ae11.334", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-2/0/1", + "xe-2/0/2" + ], + "description": "SRV_IAS CUSTOMER RENAM #RENAM-AP3-IAS $GS-00543 IASGWS | ASN9199", + "circuits": [ + { + "id": 662955, + "name": "RENAM-AP3-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 747, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.991", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #LON-Groove | LON Groove G30", + "circuits": [ + { + "id": 707238, + "name": "LON-GROOVE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 711, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | gen ch POP LAN", + "circuits": [], + "snmp-index": 620, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "ae1", + "bundle": [ + "et-0/0/3" + ], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02049 | RIG-RIG |", + "circuits": [], + "snmp-index": 585, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-RIG", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "RIG-RIG", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "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.mad.es.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 588, + "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" + } + ], + "snmp-index": 1407, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-LR | ", + "circuits": [], + "snmp-index": 688, + "dashboards": [], + "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" + } + ], + "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.ams.nl.geant.net", + "name": "xe-9/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | psmp-gn-mgmt-ams-nl.geant.org pS MGMT", + "circuits": [], + "snmp-index": 742, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER LITNET P_AE10 SRF21091 | ", + "circuits": [], + "snmp-index": 562, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LITNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LITNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1343, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "lt-8/1/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-gen-ch-RE-IAS| BGP PEERING - RE SIDE", + "circuits": [], + "snmp-index": 1605, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | WAS ORANGE", + "circuits": [], + "snmp-index": 584, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | FORTIGATE CLUSTER AMS-1 2_2", + "circuits": [], + "snmp-index": 577, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae12 | FRA-PRD-ESX04 SLOT4 PORT2 VMNIC5", + "circuits": [ + { + "id": 658643, + "name": "730XD-4-SLOT4-PORT2-VMNIC5", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 523, + "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" + } + ], + "snmp-index": 686, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1354, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 554, + "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": [], + "snmp-index": 849, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "qfx.lon2.uk.geant.net", + "name": "ge-0/0/38", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX03 IDRAC", + "circuits": [], + "snmp-index": 555, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-5/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE T-SYSTEMS 100G LL1 | CID: NL222534 ", + "circuits": [], + "snmp-index": 986, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1342, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "HBKU", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HBKU", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae10.333", + "bundle": [], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "SRV_IAS CUSTOMER HEANET #HEANET-AP1-IAS IASPS $GS-00572 | ASN1213", + "circuits": [ + { + "id": 663018, + "name": "HEANET-AP1-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 585, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae8.0", + "bundle": [], + "bundle-parents": [ + "et-1/0/2", + "et-1/0/5", + "et-1/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-HAM-IPTRUNK $GS-00010 | AMS-HAM-IPTRUNK", + "circuits": [ + { + "id": 728442, + "name": "AMS-HAM-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 799, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-HAM-IPTRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-HAM-IPTRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 518, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 769, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae9 | FRA-PRD-ESX01 SLOT4 PORT3 VMNIC6", + "circuits": [ + { + "id": 658381, + "name": "730XD-1-SLOT4-PORT3-VMNIC6", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 525, + "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": [], + "snmp-index": 538, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 812, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE FACEBOOK P_AE14 SRF9950493 | FB ID: AT134908-2", + "circuits": [], + "snmp-index": 1069, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9927005 | PSMP2 DATA", + "circuits": [], + "snmp-index": 681, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-2/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 635, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-4/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1035, + "dashboards": [], + "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": [], + "snmp-index": 683, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 890, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.bud.hu.geant.net", + "name": "xe-5/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY UPSTREAM COGENT SRF22038 $GA-02111 | EAP RENAM GWS |", + "circuits": [], + "snmp-index": 919, + "dashboards": [ + "GWS_PHY_UPSTREAM" + ], + "dashboard_info": { + "name": "COGENT - BUD", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "COGENT - BUD", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 754, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae2.0", + "bundle": [], + "bundle-parents": [ + "et-3/1/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRU-PAR-IPTRUNK $GS-02280 | BRU-PAR IP TRUNK", + "circuits": [ + { + "id": 727154, + "name": "BRU-PAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1255, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-PAR IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BRU-PAR IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-3/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CARNET P_AE12 SRF9926991 | CARNet AP1 #1 part of ae12", + "circuits": [], + "snmp-index": 1007, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CARNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "CARNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/13", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "et-8/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 | GEN-PAR-800G | to PAR-GRV2 1/3/8", + "circuits": [], + "snmp-index": 958, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-PAR-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEN-PAR-800G", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 1225, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919785 | AMS01-DTNX10-1 XCM 1", + "circuits": [], + "snmp-index": 627, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "mx1.vie.at.geant.net", + "name": "xe-4/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1064, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 566, + "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": [], + "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.mad.es.geant.net", + "name": "xe-7/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 778, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1059, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 552, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 602, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-4/0/2", + "et-4/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-MAR01-IPTRUNK $GS-00038 | #GEN-MAR01-IPTRUNK ", + "circuits": [ + { + "id": 719622, + "name": "GEN-MAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 620, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "#GEN-MAR01-IPTRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "#GEN-MAR01-IPTRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-4/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": [], + "snmp-index": 508, + "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" + } + ], + "snmp-index": 554, + "dashboards": [], + "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": [], + "snmp-index": 714, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "et-2/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 649, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.3806", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT #WIX-TO-NETHERLIGHT-TEST1 $GS-00767 | WIX-to-Netherlight test 03/12/2014", + "circuits": [ + { + "id": 719123, + "name": "WIX-TO-NETHERLIGHT-TEST1", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 987, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "WIX", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "WIX", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 580, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "xe-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER AMS", + "circuits": [], + "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": "mx1.gen.ch.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915891 | GEN01-DTNX10-1 XCM 2", + "circuits": [], + "snmp-index": 619, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "et-9/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | BUC-BUD 300Gb 3_3 GRV5 1/1/5 - QSFP SR4 optic installed", + "circuits": [], + "snmp-index": 1136, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 597, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.2707", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO.T4 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "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.sof.bg.geant.net", + "name": "xe-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 656, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 604, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-11/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE CLOUDFERRO P_AE35 | Interxion CID: DE132127 | ASN200999", + "circuits": [], + "snmp-index": 867, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-4/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC AMS-IX P_AE12 SRF9942425 | INTERXION ID: NL102081 AMS-IX ID: mym6-mem-1540-6399", + "circuits": [], + "snmp-index": 1384, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_AE23 | Uplink to sw4.lon.uk.geant.net - xe-0/2/1", + "circuits": [], + "snmp-index": 752, + "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": [], + "snmp-index": 1283, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "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": "mx1.lon2.uk.geant.net", + "name": "ae6", + "bundle": [ + "et-7/1/5" + ], + "bundle-parents": [ + "et-7/1/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02388 | COR-LON2", + "circuits": [], + "snmp-index": 898, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-LON2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "COR-LON2", + "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-lon-SCION-SCION-INTERNET2-2 $GS-02310 |", + "circuits": [ + { + "id": 732703, + "name": "FRA-LON-SCION-SCION-INTERNET2-2", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1331, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "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" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "et-2/0/5.3880", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT #WIX-TO-NETHERLIGHT-TEST $GS-00766 | WIX-to-Netherlight test 02/12/2014", + "circuits": [ + { + "id": 719133, + "name": "WIX-TO-NETHERLIGHT-TEST", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1597, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "WIX", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "WIX", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.550", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OPERATIONS-AMS-NL-VLAN550 | OPERATIONS", + "circuits": [ + { + "id": 663233, + "name": "OPERATIONS-AMS-NL-VLAN550", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 790, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 605, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-11/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH2-VIE | OTEGlobe CID: 1-4XPLWF2", + "circuits": [], + "snmp-index": 866, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX3 SLOT0 PORT1 VMNIC0", + "circuits": [ + { + "id": 658567, + "name": "730XD-3-SLOT0-PORT1-VMNIC0-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 633, + "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" + } + ], + "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": "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": [], + "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": "mx1.par.fr.geant.net", + "name": "et-10/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | BIL-PAR | Infinera BIL-GRV1 Facing PAR-GRV1 1/1/4", + "circuits": [], + "snmp-index": 1003, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BIL-PAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BIL-PAR", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-2/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | ATH-MIL | OTEGLOBE CID: 1-4XPLWG5 ", + "circuits": [], + "snmp-index": 645, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.11", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-TNMS-PAR-FR | ne-esxi-prod-par-1 TNMS-VMs Portgroup", + "circuits": [ + { + "id": 679318, + "name": "NE-ESXI-TNMS-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1077, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1311, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae8", + "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-01896 | AMS-HAM-IPTRUNK", + "circuits": [], + "snmp-index": 798, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-HAM-IPTRUNK", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-HAM-IPTRUNK", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 539, + "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" + } + ], + "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": "mx1.par.fr.geant.net", + "name": "ae30.3000", + "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 #VM-Datanetwork-Par $GS-00085 | VM DATA network", + "circuits": [ + { + "id": 712149, + "name": "VM-DATANETWORK-PAR", + "type": "POP LAN LINK", + "status": "operational" + } + ], + "snmp-index": 1026, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "et-7/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BRA-BUD", + "circuits": [], + "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": "mx1.ams.nl.geant.net", + "name": "ae21.17", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ARPGAN-ExpressRoute-VLAN4081 $GS-01130 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711862, + "name": "BELNET-ARPGAN-EXPRESSROUTE-VLAN4081", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 814, + "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/34", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | Brik D IPMI", + "circuits": [], + "snmp-index": 731, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.lon2.uk.geant.net", + "name": "xe-1/0/45", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 685, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1234, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.3001", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT QNREN #lon-lon-GEANTOpen-Netherlight-QNREN-15032 $GS-00972 |", + "circuits": [ + { + "id": 661767, + "name": "LON-LON-GEANTOPEN-NETHERLIGHT-QNREN-15032", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 960, + "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": "mx1.bud.hu.geant.net", + "name": "et-7/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | BUD-ZAG 200Gb 1_2 BUD01-GRV1 1/1/3", + "circuits": [], + "snmp-index": 1133, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.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" + } + ], + "snmp-index": 1050, + "dashboards": [], + "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" + } + ], + "snmp-index": 605, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | PRA-VIE", + "circuits": [], + "snmp-index": 914, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "PRA-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "PRA-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 562, + "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" + } + ], + "snmp-index": 623, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ae11.111", + "bundle": [], + "bundle-parents": [ + "et-3/1/0" + ], + "description": "SRV_L3VPN CUSTOMER ULAKBIM #ULAKBIM-AP1-LHCONE $GS-00868 | ASN8517 |", + "circuits": [ + { + "id": 715088, + "name": "ULAKBIM-AP1-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 770, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "ULAKBIM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ULAKBIM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ae12.0", + "bundle": [], + "bundle-parents": [ + "et-10/0/2", + "et-10/0/5", + "et-10/1/2" + ], + "description": "SRV_GLOBAL CUSTOMER JISC #JISC-AP2 $GS-00480 | ASN786 |", + "circuits": [ + { + "id": 660631, + "name": "JISC-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 714, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "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/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" + } + ], + "snmp-index": 1011, + "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": [], + "snmp-index": 513, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-10/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 910, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 755, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.333", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_IAS CUSTOMER BELNET #BELNET-AP2-IAS IASPS $GS-00523 | ASN2611", + "circuits": [ + { + "id": 727356, + "name": "BELNET-AP2-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 616, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | AMS-AMS", + "circuits": [], + "snmp-index": 939, + "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-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE SCION SRF22066 $GA-02198 |SCION server 2 external port", + "circuits": [], + "snmp-index": 1266, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER DFN P_AE10 SRF21078 | DFN-AP2-LL3", + "circuits": [], + "snmp-index": 925, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-3/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 769, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SRX1-to-SRX2-AMS", + "circuits": [], + "snmp-index": 514, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access | To GTS EX P15", + "circuits": [], + "snmp-index": 833, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 556, + "dashboards": [], + "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": [], + "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": "qfx.par.fr.geant.net", + "name": "xe-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae10 | PAR-PRD-ESX2 SLOT0 PORT2 VMNIC1", + "circuits": [ + { + "id": 658507, + "name": "730XD-2-SLOT0-PORT2-VMNIC1-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 632, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | dub ie POP LAN", + "circuits": [], + "snmp-index": 593, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE SRF00001 #Test-Interface-for-GCSTesting $GA-01468 connected to ge-0/3/2", + "circuits": [], + "snmp-index": 605, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "xe-3/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to GEANT ODF P6", + "circuits": [], + "snmp-index": 659, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae10.2112", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER LAT EENet #rig-tar-Genomics-LAT-EENet-21034 $GS-00752 |", + "circuits": [ + { + "id": 709306, + "name": "RIG-TAR-GENOMICS-LAT-EENET-21034", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 609, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RENAM P_AE10 SRF21066 | RENAM ID: MX240 xe-1/0/0-AP1-L2", + "circuits": [], + "snmp-index": 562, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 1000, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-1/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH-ATH2 | GRNET CID: GRNET ATH-ATH2 DWDM-3 #CH48 ", + "circuits": [], + "snmp-index": 573, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 590, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | ATH-MIL | OTEGLOBE CID: 1-6RK0GC7", + "circuits": [], + "snmp-index": 569, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 1200, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-lis2-pt-RE-IAS | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 650, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1024, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 822, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-7/0/4", + "et-7/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-LON-IPTRUNK $GS-02269 | AMS-LON", + "circuits": [ + { + "id": 731411, + "name": "AMS-LON-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1241, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 1201, + "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": "non-monitored" + } + ], + "snmp-index": 1287, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1166, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ARN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ARN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "rt1.sof.bg.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 636, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4092", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-IMEC-ExpressRoute-VLAN4092 $GS-02092 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 717899, + "name": "BELNET-IMEC-EXPRESSROUTE-VLAN4092", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 649, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "irb.999", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-zag-hr-mgmt-vrf-vlan999", + "circuits": [], + "snmp-index": 674, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 671, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "ae3", + "bundle": [ + "et-1/0/2", + "et-1/0/5" + ], + "bundle-parents": [ + "et-1/0/2", + "et-1/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01741 | LJU01-MIL2", + "circuits": [], + "snmp-index": 797, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-MIL2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "LJU01-MIL2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.2500", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO3 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 632, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "rt1.ams.nl.geant.net", + "name": "xe-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED QFX.AMS xe-0/0/0", + "circuits": [], + "snmp-index": 672, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/18", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.3695", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER DFN SURF #AMS-FRA-DFN-SURF-21092 $GS-00634 |", + "circuits": [ + { + "id": 715058, + "name": "AMS-FRA-DFN-SURF-21092", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1153, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURFNET", + "interface_type": "LOGICAL" + }, + { + "name": "DFN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 612, + "dashboards": [], + "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": [], + "snmp-index": 1299, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 1575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | GRNET AP Migration from ATH1_4 | ", + "circuits": [], + "snmp-index": 538, + "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": "non-monitored" + } + ], + "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": "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" + } + ], + "snmp-index": 648, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GRNET P_AE10 | GRNET-AP1-LL4", + "circuits": [], + "snmp-index": 731, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "ae4", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02346 | RIG-TAR", + "circuits": [], + "snmp-index": 617, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-TAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "RIG-TAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 788, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1306, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | vie at POP LAN", + "circuits": [], + "snmp-index": 645, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "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" + } + ], + "snmp-index": 550, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 553, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.100", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #JUNOSSPACE-R720-DRAC-PAR-FR | JUNOSSPACE R720 DRAC", + "circuits": [ + { + "id": 661292, + "name": "JUNOSSPACE-R720-DRAC-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 864, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-3/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | MAR-MIL2 |", + "circuits": [], + "snmp-index": 836, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MAR-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MAR-MIL2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae16", + "bundle": [ + "xe-0/1/1", + "xe-4/3/6", + "xe-7/1/0" + ], + "bundle-parents": [ + "xe-0/1/1", + "xe-4/3/6", + "xe-7/1/0" + ], + "description": "LAG PRIVATE FACEBOOK SRF9933351 $GA-01863 |", + "circuits": [], + "snmp-index": 696, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae14.100", + "bundle": [], + "bundle-parents": [ + "et-3/1/5" + ], + "description": "SRV_GLOBAL CUSTOMER CARNET #CARNET-AP1 $GS-00440 | ASN2108 |", + "circuits": [ + { + "id": 730176, + "name": "CARNET-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 834, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CARNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 512, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 608, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER EENET P_AE10 | EENET AP2", + "circuits": [], + "snmp-index": 593, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "EENET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "EENET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 913, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 605, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1227, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "KANREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KANREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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": "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": [], + "snmp-index": 636, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.500", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL CUSTOMER INTERNET2 #INTERNET2-WIXRTT-TEST $GS-00476 | TEST VLAN FOR WIX RTT", + "circuits": [ + { + "id": 677839, + "name": "INTERNET2-WIXRTT-TEST", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 673, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae8", + "bundle": [ + "et-4/1/0" + ], + "bundle-parents": [ + "et-4/1/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01834 | AMS-LON-AW |", + "circuits": [], + "snmp-index": 704, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON-AW", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-LON-AW", + "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": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "730XD-5-ESXI-TRAFFIC-LAG", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 584, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae3.103", + "bundle": [], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-HAM-DE | ", + "circuits": [ + { + "id": 729130, + "name": "DCN-MANAGEMENT-HAM-DE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 815, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-0/0/2.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #HAM-DTN-10G-DATA $GS-02433", + "circuits": [ + { + "id": 732827, + "name": "HAM-DTN-10G-DATA", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1021, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae30.104", + "bundle": [], + "bundle-parents": [ + "et-3/0/4" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #NL-EEX-ESNET-IPV4 $GS-00889 | ASN293 | AMS-EEX-ESNET-400G", + "circuits": [ + { + "id": 734112, + "name": "NL-EEX-ESNET-IPV4", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "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.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" + } + ], + "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.pra.cz.geant.net", + "name": "ae7.0", + "bundle": [], + "bundle-parents": [ + "et-2/0/2", + "et-2/0/5", + "et-2/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #POZ-PRA-IPTRUNK $GS-02407| POZ-PRA", + "circuits": [ + { + "id": 731195, + "name": "POZ-PRA-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 979, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-PRA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "POZ-PRA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1134, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 604, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "ae10.34", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GCS Customer Nordunet MICROSOFT #Nordunet-GEO-ExpressRoute-Vlan3917 $GS-02308 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731506, + "name": "NORDUNET-GEO-EXPRESSROUTE-VLAN3917", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 669, + "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/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE 10GGBS $GA-01328 | EXFO-10G-GBS-TEST - EXFO Tester hairpin to DTNX", + "circuits": [], + "snmp-index": 1583, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED QFX.AMS xe-0/0/1", + "circuits": [], + "snmp-index": 676, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "xe-5/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | No optic present", + "circuits": [], + "snmp-index": 599, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-11/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL | ", + "circuits": [], + "snmp-index": 1234, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 656, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ARN", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ARN", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae17", + "bundle": [ + "xe-11/0/1" + ], + "bundle-parents": [ + "xe-11/0/1" + ], + "description": "LAG RE_INTERCONNECT UBUNTUNET SRF9915025 $GA-01917 |", + "circuits": [], + "snmp-index": 724, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "UBUNTUNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "UBUNTUNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 849, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/8.11", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT-INTERNAL #GEANT-CORPORATE-ViaVodafone-VRF | GEANT Corporate to SRX2.CH - Via Vodafone - for VRF", + "circuits": [ + { + "id": 712144, + "name": "GEANT-CORPORATE-VIAVODAFONE-VRF", + "type": "CORPORATE", + "status": "operational" + } + ], + "snmp-index": 845, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "ae3.106", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VEEAMServer-Bra-IDRAC | SuperPOP Backup Node iDRAC", + "circuits": [ + { + "id": 731617, + "name": "VEEAMSERVER-BRA-IDRAC", + "type": "POP LAN LINK", + "status": "operational" + } + ], + "snmp-index": 613, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.am.office.geant.net", + "name": "fxp0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE MANAGEMENT | AM SRX-2 Router", + "circuits": [], + "snmp-index": 1, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | COR-DUB", + "circuits": [], + "snmp-index": 595, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-DUB", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "COR-DUB", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1278, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae8", + "bundle": [ + "et-3/0/4", + "et-3/1/4" + ], + "bundle-parents": [ + "et-3/0/4", + "et-3/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01945 | AMS-FRA |", + "circuits": [], + "snmp-index": 1006, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-FRA", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-FRA", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GRNET P_AE10 SRF9912270 | GRNET-AP1-LL2", + "circuits": [], + "snmp-index": 519, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "PHYSICAL" + } + ], + "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 | ROEDUNET CID: BUC-CHI-040-4", + "circuits": [], + "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.lon.uk.geant.net", + "name": "et-9/1/5.2021", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET WIX #NORDU-TO-WIX-2021 $GS-00743 | NORDU-to-WIX 2021", + "circuits": [ + { + "id": 661399, + "name": "NORDU-TO-WIX-2021", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 777, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "WIX", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 673, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", + "circuits": [], + "snmp-index": 619, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "et-4/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | KIE-POZ | RETN CID: OC-904687-1.PL.POZ.PCS-UA.KIV.KPI-50GHz", + "circuits": [], + "snmp-index": 748, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KIE-POZ", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "KIE-POZ", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-2/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | FORTIGATE CLUSTER LON2-2 1_2 | No optic installed", + "circuits": [], + "snmp-index": 1595, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "ae10.333", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1" + ], + "description": "SRV_IAS CUSTOMER LITNET #LITNET-AP2-IAS IASGWS $GS-00535 | ASN2847 |", + "circuits": [ + { + "id": 715798, + "name": "LITNET-AP2-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 613, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "LITNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LITNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED|Reserved for GCS Testing", + "circuits": [], + "snmp-index": 614, + "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": [], + "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": "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" + } + ], + "snmp-index": 670, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/0.120", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #rhps02-dub-ie-vlan120 | POP VLAN 120 pS-rhps02", + "circuits": [ + { + "id": 662936, + "name": "RHPS02-DUB-IE-VLAN120", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 627, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-COR-IPTRUNK $GS-02403| COR-COR", + "circuits": [ + { + "id": 730602, + "name": "COR-COR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 612, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-COR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COR-COR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 694, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.38", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1471, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.22", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PS-AMS-NL-MANAGEMENT-VLAN22 | PERFSONAR MGMT", + "circuits": [ + { + "id": 663036, + "name": "PS-AMS-NL-MANAGEMENT-VLAN22", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 754, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | RARE EDGECORE WEDGE100BF-32X xe-1", + "circuits": [], + "snmp-index": 883, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/0/2:0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/1/3.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #par-fra-SUPERPOP-QFX-GEANT $GS-00078 |", + "circuits": [ + { + "id": 729477, + "name": "FRA-PAR-SUPERPOP-QFX-GEANT", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 1121, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "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" + } + ], + "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": "mx2.ath.gr.geant.net", + "name": "ge-2/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 673, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1043, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | Splunk Server 1_1 - XFP LR installed", + "circuits": [], + "snmp-index": 568, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-11/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP7T2SF SRF0000001 | AMS BMS Server #7 (Reserved for SWD/IT)", + "circuits": [], + "snmp-index": 1238, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 528, + "dashboards": [], + "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-fra-de $GS-00151 | SW3-EX3400 MANAGEMENT", + "circuits": [], + "snmp-index": 810, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4067", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-RVA-ONEM-ExpressRoute-VLAN4067 $GS-02432 | ", + "circuits": [ + { + "id": 732777, + "name": "BELNET-RVA-ONEM-EXPRESSROUTE-VLAN4067", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 677, + "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": "et-1/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | QSFP SR4 optic installed", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "lt-4/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 612, + "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": [], + "snmp-index": 668, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 547, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 |", + "circuits": [], + "snmp-index": 671, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1341, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "et-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": " PHY INFRASTRUCTURE BACKBONE P_AE1 | RIG-RIG | RIG-RIG-LL1", + "circuits": [], + "snmp-index": 595, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-RIG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RIG-RIG", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to REDIRIS via MMR", + "circuits": [], + "snmp-index": 581, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "et-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | POZ-PRA", + "circuits": [], + "snmp-index": 890, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", + "circuits": [], + "snmp-index": 581, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "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": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "mx1.bud.hu.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 657, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-LR | ", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae1.998", + "bundle": [], + "bundle-parents": [ + "xe-0/0/2", + "xe-0/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex4300-management-sof-bg| SW2-EX3400 MANAGEMENT | ", + "circuits": [ + { + "id": 733738, + "name": "EX4300-MANAGEMENT-SOF-BG", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 717, + "dashboards": [], + "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": [], + "snmp-index": 631, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RENATER", + "circuits": [], + "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": "mx1.lon.uk.geant.net", + "name": "et-5/0/5.3916", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GCS Customer Nordunet MICROSOFT #Nordunet-GEO-ExpressRoute-Vlan3916 $GS-02307 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727431, + "name": "NORDUNET-GEO-EXPRESSROUTE-VLAN3916", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1249, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 569, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-10/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | SUSPECTED FAULTY SLOT", + "circuits": [], + "snmp-index": 911, + "dashboards": [], + "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 #bru-par-GRID5K-BELNET-RENATER $GS-02234", + "circuits": [ + { + "id": 727381, + "name": "BRU-PAR-GRID5K-BELNET-RENATER", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "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": "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": [], + "snmp-index": 538, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/13", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae14.246", + "bundle": [], + "bundle-parents": [ + "xe-0/1/2", + "xe-0/1/3" + ], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET RESTENA #bru-par-BELNET-RESTENA $GS-02333", + "circuits": [ + { + "id": 728443, + "name": "BRU-PAR-BELNET-RESTENA", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 697, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + { + "name": "RESTENA", + "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" + } + ], + "snmp-index": 710, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE2 | rt1-sw1(ex3400) ", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1169, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "AARNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 1067, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "CANARIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CANARIE", + "interface_type": "LOGICAL" + }, + { + "name": "SURFNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER MARNET P_AE11 SRF23054 | Circuit ID: CIETH3N00004", + "circuits": [], + "snmp-index": 544, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MARNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MARNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "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" + } + ], + "snmp-index": 785, + "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/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" + } + ], + "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.lon.uk.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | was LON TAAS 01", + "circuits": [], + "snmp-index": 597, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX03 SLOT0 PORT1 VMNIC0", + "circuits": [ + { + "id": 658453, + "name": "730XD-3-SLOT0-PORT1-VMNIC0", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 621, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1449, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "snmp-index": 929, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "AMS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-10/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 | BUC-FRA | TTI CID: WL078541", + "circuits": [], + "snmp-index": 650, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-FRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BUC-FRA", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 846, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae1 | PAR-PRD-ESX1 SLOT0 PORT4 VMNIC3", + "circuits": [ + { + "id": 658362, + "name": "730XD-1-SLOT0-PORT4-VMNIC3-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 526, + "dashboards": [], + "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" + } + ], + "snmp-index": 1474, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae30.991", + "bundle": [], + "bundle-parents": [ + "xe-4/0/4", + "xe-4/0/5", + "xe-4/1/2", + "xe-4/2/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #CORIANT-LIBRENMS-ACCESS-PAR-FR $GS-00109 | CORIANT LIBRENMS ACCESS", + "circuits": [ + { + "id": 712146, + "name": "CORIANT-LIBRENMS-ACCESS-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 764, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.25", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SCION-par-fr | SCION SERVERS", + "circuits": [ + { + "id": 721152, + "name": "SCION-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 614, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae12.2", + "bundle": [], + "bundle-parents": [ + "xe-0/0/4" + ], + "description": "SRV_MDVPN CUSTOMER BREN #BREN-BGP-LU-COC-AP2 $GS-00999 | MDVPN CoC - BREN AP2", + "circuits": [ + { + "id": 731985, + "name": "BREN-BGP-LU-COC-AP2", + "type": "MD-VPN (NATIVE)", + "status": "non-monitored" + } + ], + "snmp-index": 758, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "BREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 991, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + { + "name": "SINGAREN", + "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" + } + ], + "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": "ge-0/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 611, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae4", + "bundle": [ + "et-0/0/1" + ], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02347 | RIG-TAR", + "circuits": [], + "snmp-index": 599, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-TAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "RIG-TAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 1058, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 569, + "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" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | Splunk Server 1_2 - XFP LR installed", + "circuits": [], + "snmp-index": 569, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 851, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.3", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_MDVPN CUSTOMER BELNET #BELNET-BGP-LU-COC-AP1 $GS-00998 | MDVPN COC - BELNET AP1", + "circuits": [ + { + "id": 727288, + "name": "BELNET-BGP-LU-COC-AP1", + "type": "MD-VPN (NATIVE)", + "status": "non-monitored" + } + ], + "snmp-index": 619, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 653, + "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" + } + ], + "snmp-index": 1035, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "AZSCIENCENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AZSCIENCENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.lon2.uk.geant.net", + "name": "xe-1/0/44", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | ", + "circuits": [], + "snmp-index": 684, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "ae15", + "bundle": [ + "et-0/0/2", + "et-1/0/2", + "et-4/1/0" + ], + "bundle-parents": [ + "et-0/0/2", + "et-1/0/2", + "et-4/1/0" + ], + "description": "LAG CUSTOMER REDIRIS SRF21114$GA-01780 |", + "circuits": [], + "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": "mx1.lon.uk.geant.net", + "name": "et-2/0/5.3810", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT #WIX-TO-NETHERLIGHT-TEST3 $GS-00769 | WIX-to-Netherlight test 03/12/2014", + "circuits": [ + { + "id": 719130, + "name": "WIX-TO-NETHERLIGHT-TEST3", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1596, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "WIX", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "WIX", + "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" + } + ], + "snmp-index": 1409, + "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": [], + "snmp-index": 682, + "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": [], + "snmp-index": 561, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "lt-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 622, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "ae3", + "bundle": [ + "xe-0/1/7" + ], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt2-sw1 (ex3400)", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | LJU01-MIL2", + "circuits": [], + "snmp-index": 763, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-MIL2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "xe-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS P_ae1 SRF0000001 | rt1-sw2 (ex3400)", + "circuits": [], + "snmp-index": 661, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-1/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to REDIRIS via MMR", + "circuits": [], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS FLOWMON-DDOS | FlowMon Management CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20171010", + "circuits": [], + "snmp-index": 595, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.1303", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER KREONET SWITCH #ams-par-SCION-KREONET-SWITCH $GS-02291 |", + "circuits": [ + { + "id": 727383, + "name": "AMS-PAR-SCION-KREONET-SWITCH", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1140, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SWITCH", + "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": [], + "snmp-index": 1291, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/15", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX3 SLOT4 PORT1 VMNIC4 - VSAN PORT", + "circuits": [ + { + "id": 658438, + "name": "730XD-3-SLOT4-PORT1-VMNIC4-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 647, + "dashboards": [], + "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" + } + ], + "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.lon.uk.geant.net", + "name": "ae10.4006", + "bundle": [], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/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" + } + ], + "snmp-index": 1186, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + }, + { + "name": "NKN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.37", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MSER-NCCN-ExpressRoute-VLAN4064 $GS-02370 | ", + "circuits": [ + { + "id": 729639, + "name": "BELNET-MSER-NCCN-EXPRESSROUTE-VLAN4064", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1452, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 556, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 576, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.190", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mad-Fed4FIRE-BELNET-RedIRIS-14014 $GS-00678 |", + "circuits": [ + { + "id": 719532, + "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14014", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1070, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae28.201", + "bundle": [], + "bundle-parents": [ + "et-4/1/1" + ], + "description": "SRV_L2CIRCUIT CUSTOMER TENET ESNET #lon-lon-GEANTOpen-Esnet-TENET-180871 $GS-00966 |", + "circuits": [ + { + "id": 718088, + "name": "LON-LON-GEANTOPEN-ESNET-TENET-180871", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 644, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "TENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + { + "name": "TENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "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": [], + "snmp-index": 868, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRENA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GRENA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | ATH2-VIE | OTEGLOBE CID: 1-94LW1M7 | OVERSUB-RISK-MPC3E", + "circuits": [], + "snmp-index": 591, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/6.7", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NTP4.GEANT.NET", + "circuits": [ + { + "id": 663169, + "name": "NTP4.GEANT.NET", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 774, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae0", + "bundle": [ + "et-4/1/2", + "et-4/1/5" + ], + "bundle-parents": [ + "et-4/1/2", + "et-4/1/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-T33322 | AMS-AMS", + "circuits": [], + "snmp-index": 1473, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-AMS", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-AMS", + "interface_type": "AGGREGATE" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-3/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER DFN P_AE10 SRF9929765 | DFN-AP2-LL1", + "circuits": [], + "snmp-index": 929, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 728, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ROEDUNET P_AE11 SRF9915022 |RoEduNet te-0/6/0/12", + "circuits": [], + "snmp-index": 528, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ROEDUNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ROEDUNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae23.11", + "bundle": [], + "bundle-parents": [ + "xe-3/2/0", + "xe-3/2/1" + ], + "description": "PHY INFRASTRUCTURE ACCESS FLOWMON SRF0000001 | FlowMon2 Management + FanOut CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20170708", + "circuits": [], + "snmp-index": 1015, + "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": [], + "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.lon.uk.geant.net", + "name": "et-9/1/5.220", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 TENET #lon-lon-GEANTOPEN-INTERNET2-TENET-19004 $GS-00970 |", + "circuits": [ + { + "id": 718086, + "name": "LON-LON-GEANTOPEN-INTERNET2-TENET-19004", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 669, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "TENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 925, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1048, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 563, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae38.100", + "bundle": [], + "bundle-parents": [ + "xe-11/0/6" + ], + "description": "SRV_GLOBAL CUSTOMER CYNET #CYNET-AP2 $GS-00450 | ASN3268 |", + "circuits": [ + { + "id": 732144, + "name": "CYNET-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 1148, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CYNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/2.302", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #VIE-Groove-1-Management | VIE Groove 1 Direct Management", + "circuits": [ + { + "id": 661557, + "name": "VIE-GROOVE-1-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1189, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-1/0/2", + "et-1/0/5", + "et-1/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2-VIE-IPTRUNK $GS-00057 | MIL2-VIE IP TRUNK", + "circuits": [ + { + "id": 725172, + "name": "MIL2-VIE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 668, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MIL2-VIE IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MIL2-VIE IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | BIL-PAR | Infinera BIL-GRV2 Facing PAR-GRV1 1/1/3", + "circuits": [], + "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": "mx1.buc.ro.geant.net", + "name": "xe-2/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | For RENAM GWS", + "circuits": [], + "snmp-index": 770, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-2/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT SINGAREN SRF9941158 $GA-01464 |", + "circuits": [], + "snmp-index": 1585, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae19.0", + "bundle": [], + "bundle-parents": [ + "et-9/1/2" + ], + "description": "SRV_IAS PRIVATE VERIZON #VIENNA-VERIZON-1-15133-AT-1 $GS-00945 | ASN15133", + "circuits": [ + { + "id": 708295, + "name": "VIENNA-VERIZON-1-15133-AT-1", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "snmp-index": 813, + "dashboards": [ + "IAS_PEERS", + "IAS_PRIVATE" + ], + "dashboard_info": { + "name": "VERIZON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "VERIZON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.ath2.gr.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "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" + } + ], + "snmp-index": 969, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1012, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NEA3R", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURFNET", + "interface_type": "LOGICAL" + }, + { + "name": "NEA3R", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 582, + "dashboards": [], + "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" + } + ], + "snmp-index": 1205, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 861, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae10 | FRA-PRD-ESX02 SLOT0 PORT2 VMNIC1", + "circuits": [ + { + "id": 658642, + "name": "730XD-2-SLOT0-PORT1-VMNIC0", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 519, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-10/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | A10 DDOS 100G #1", + "circuits": [], + "snmp-index": 651, + "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" + } + ], + "snmp-index": 600, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "ae3.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-RIG1-LV DCN MANAGEMENT ", + "circuits": [ + { + "id": 734080, + "name": "DCN-MANAGEMENT-RIG1-LV", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 567, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "rt1.lju.si.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | ARNES COLT GWS MIGRATION", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 612, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "ae14", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01686 | QFX.LON2.UK AE30", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "ae12", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01726 | PAR-PRD-ESX4 VM Traffic LAG", + "circuits": [ + { + "id": 658693, + "name": "730XD-4-VM-TRAFFIC-LAG-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 591, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 574, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 722, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "NEA3R", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "NEA3R", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "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" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.102", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER MAEEN ESNET #LON-LON-GEANTOpen-MAEEN-ESNET-22004 $GS-00464 | ", + "circuits": [ + { + "id": 718108, + "name": "LON-LON-GEANTOPEN-MAEEN-ESNET-22004", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 616, + "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": "et-4/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RASH P_AE16 100G | to MIX MMR ODF MOD5 P01 ", + "circuits": [], + "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": "rt1.mil2.it.geant.net", + "name": "et-11/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GARR P_AE10 |", + "circuits": [], + "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": "rt1.buc.ro.geant.net", + "name": "et-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | ROEDUNET 100G AP upgrade - CFP2 present | ", + "circuits": [], + "snmp-index": 629, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 660, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae17.333", + "bundle": [], + "bundle-parents": [ + "xe-2/0/0" + ], + "description": "SRV_IAS CUSTOMER MARNET #MARNET-AP2-IAS IASGWS $GS-00537 | ASN44224", + "circuits": [ + { + "id": 661313, + "name": "MARNET-AP2-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 857, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "MARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MARNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 584, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1272, + "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" + } + ], + "snmp-index": 1171, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "ASNET-AM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ASNET-AM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.2637", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE Test Connection | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 804, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.110", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GLOBAL CUSTOMER EUMETSAT-SVALBARD #EUMET-SVALBARD-HAM $GS-02155 | NU-S800116 | - Monitoring Link 1", + "circuits": [ + { + "id": 731425, + "name": "EUMET-SVALBARD-HAM", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 955, + "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.ath2.gr.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 540, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "et-8/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | no optic installed", + "circuits": [], + "snmp-index": 1149, + "dashboards": [], + "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": [], + "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": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-1/0/2", + "et-1/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK $GS-T33320| AMS-AMS", + "circuits": [ + { + "id": 732702, + "name": "AMS-AMS-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 950, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-AMS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-AMS", + "interface_type": "LOGICAL" + } + ], + "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": [], + "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.mil2.it.geant.net", + "name": "xe-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 | ATH-MIL | OTEGLOBE CID: 1-94LW1NA", + "circuits": [], + "snmp-index": 552, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/0/7.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER ASGC #ams-gen-LHC-CERN-ASGC-07014 $GS-00780 | ", + "circuits": [ + { + "id": 734565, + "name": "AMS-GEN-LHC-CERN-ASGC-07014", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 1056, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "ASGC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ASGC", + "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": 728914, + "name": "FRA-TAR-SCION-EENET", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1337, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EENET", + "interface_type": "LOGICAL" + }, + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.por.pt.geant.net", + "name": "xe-3/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to GEANT ODF P4", + "circuits": [], + "snmp-index": 533, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "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" + } + ], + "snmp-index": 773, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 775, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "xe-0/1/1.3015", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER JISC JISC #DUB-LON-NRENBBEXT-JISC-13015 $GS-00690 | backup for niran ", + "circuits": [ + { + "id": 732288, + "name": "DUB-LON-NRENBBEXT-JISC-13015", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 716, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 592, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | LON2 POP LAN sw1.lon2.uk g0/3", + "circuits": [], + "snmp-index": 517, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 946, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1458, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY UPSTREAM COLT $GA-02099 |COLT ID 444246144", + "circuits": [], + "snmp-index": 743, + "dashboards": [ + "GWS_PHY_UPSTREAM" + ], + "dashboard_info": { + "name": "COLT - ZAG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "COLT - ZAG", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "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": "non-monitored" + } + ], + "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.lon2.uk.geant.net", + "name": "xe-2/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | SPLUNK LON2 PEER02 link Slot4 P1 | ", + "circuits": [], + "snmp-index": 1584, + "dashboards": [], + "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" + } + ], + "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": "rt2.ath2.gr.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 692, + "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": "operational" + } + ], + "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": "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" + } + ], + "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": "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": [], + "snmp-index": 543, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae11", + "bundle": [ + "et-0/0/2" + ], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "LAG CUSTOMER CESNET SRF9927551 $GA-01829 | CESNET AP", + "circuits": [], + "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": "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" + } + ], + "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": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/2.505", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER CYNET GRNET #ath2-ath2-CYNET-GRNET-18063 $GS-00667 | OVERSUB-RISK-MPC3E", + "circuits": [ + { + "id": 706046, + "name": "ATH2-ATH2-CYNET-GRNET-18063", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 559, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + { + "name": "CYNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.142", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "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" + } + ], + "snmp-index": 678, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDCLARA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDCLARA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/21", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae17 | PAR-PRD-ESX5 SLOT? PORT2 VMNIC9", + "circuits": [ + { + "id": 658402, + "name": "730XD-5-VMNIC9-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 652, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae6", + "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-01827 | FRA-PRA2 | ", + "circuits": [], + "snmp-index": 914, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-PRA2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "FRA-PRA2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 551, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.bud.hu.geant.net", + "name": "ge-0/3/6.93", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #gidp-bud-hu-vlan93| GIDP", + "circuits": [ + { + "id": 663172, + "name": "GIDP-BUD-HU-VLAN93", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 762, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.7", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NTP6.GEANT.NET |", + "circuits": [ + { + "id": 663123, + "name": "NTP6.GEANT.NET", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 807, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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.bud.hu.geant.net", + "name": "xe-3/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 690, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae4", + "bundle": [ + "et-7/0/4", + "et-7/1/4" + ], + "bundle-parents": [ + "et-7/0/4", + "et-7/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02268 | AMS-LON", + "circuits": [], + "snmp-index": 1238, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/0.250", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #vm-lon2-uk-idracs-250| NEW VM iDRACs", + "circuits": [ + { + "id": 661196, + "name": "VM-LON2-UK-IDRACS-250", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 677, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1161, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "xe-5/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | No optic present", + "circuits": [], + "snmp-index": 677, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ae11", + "bundle": [ + "et-3/1/0" + ], + "bundle-parents": [ + "et-3/1/0" + ], + "description": "LAG CUSTOMER ULAKBIM SRF9926155 $GA-01904 | ULAKBIM-AP1-LAG", + "circuits": [], + "snmp-index": 643, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ULAKBIM", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ULAKBIM", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 584, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "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": [], + "snmp-index": 1572, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 933, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 613, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae1", + "bundle": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01776 | MAR01-MIL2 |", + "circuits": [], + "snmp-index": 842, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MAR01-MIL2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "MAR01-MIL2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 563, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "et-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ARNES P_AE11 SRF9950483 | ARNES AP1 LL1", + "circuits": [], + "snmp-index": 769, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ARNES", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ARNES", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.612", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-LON-COPERNICUS $GS-00849 | ASN27750", + "circuits": [ + { + "id": 715809, + "name": "REDCLARA-LON-COPERNICUS", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 675, + "dashboards": [ + "COPERNICUS", + "RE_PEER" + ], + "dashboard_info": { + "name": "REDCLARA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDCLARA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Was PSMP Server", + "circuits": [], + "snmp-index": 564, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | MIL2-VIE |Connected to MIL02-GRV1 1/1/5", + "circuits": [], + "snmp-index": 660, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-9/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | GEN-MIL2 |GRV2 1/1/4 (Facing GEN GRV1 1/1/4)", + "circuits": [], + "snmp-index": 827, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEN-MIL2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 576, + "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" + } + ], + "snmp-index": 522, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 678, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "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" + } + ], + "snmp-index": 713, + "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": [], + "snmp-index": 979, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "et-3/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | CFP2 LR4 optic installed", + "circuits": [], + "snmp-index": 699, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1300, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "ae2.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-THE-GR | DCN MANAGEMENT ", + "circuits": [ + { + "id": 732807, + "name": "DCN-MANAGEMENT-THE-GR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 610, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae3.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-RIG1-LV DCN MANAGEMENT ", + "circuits": [ + { + "id": 721431, + "name": "DCN-MANAGEMENT-RIG1-LV-", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 614, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | HAM-TAR", + "circuits": [], + "snmp-index": 595, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-TAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HAM-TAR", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "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.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": [], + "snmp-index": 1271, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP6 Netronome server SRF0000001 | SRV MGMT CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180502", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae11 | PAR-PRD-ESX3 SLOT4 PORT2 VMNIC5", + "circuits": [ + { + "id": 658599, + "name": "730XD-3-SLOT4-PORT2-VMNIC5-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 637, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-2/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | SPLUNK LON2 PEER01 link Slot7 P1 | ", + "circuits": [], + "snmp-index": 1574, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae23.10", + "bundle": [], + "bundle-parents": [ + "xe-3/2/0", + "xe-3/2/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #InBand-management-sw4.lon.uk $GS-00199 | In-band Management for sw4.lon.uk.geant.net", + "circuits": [ + { + "id": 661609, + "name": "INBAND-MANAGEMENT-SW4.LON.UK", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 932, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 564, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "ae12", + "bundle": [ + "xe-0/1/5", + "xe-0/1/6" + ], + "bundle-parents": [ + "xe-0/1/5", + "xe-0/1/6" + ], + "description": "LAG INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 $GA-01754 | BRA SK VEEAM BACKUP", + "circuits": [], + "snmp-index": 598, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access", + "circuits": [], + "snmp-index": 598, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1006", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET GRNET #bru-ath-Fed4FIRE-BELNET-GRnet-14015 $GS-00669 |", + "circuits": [ + { + "id": 727516, + "name": "BRU-ATH-FED4FIRE-BELNET-GRNET-14015", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 665, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 851, + "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": [], + "snmp-index": 817, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 661, + "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": [], + "snmp-index": 663, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH-ATH2 | GRNET CID: GRNET ATH-ATH2 DWDM-2 #CH46 ", + "circuits": [], + "snmp-index": 516, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.lon2.uk.geant.net", + "name": "xe-0/0/45", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 546, + "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" + } + ], + "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": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT MANLAN P_AE15 SRF21042 | Paris-NewYork ANA Link - GTT/002228864", + "circuits": [], + "snmp-index": 1150, + "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": [], + "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": "mx1.lon2.uk.geant.net", + "name": "xe-2/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP6T3 SRF20064 $GA-01318 | Formally JRA4T2 Server", + "circuits": [], + "snmp-index": 1570, + "dashboards": [], + "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": [], + "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": "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": [], + "snmp-index": 1279, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 855, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 675, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF0000001 | LON201-DTNX10-1 XCM 1", + "circuits": [], + "snmp-index": 518, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ae1", + "bundle": [ + "xe-2/0/0", + "xe-2/0/1", + "xe-2/0/3", + "xe-3/0/0" + ], + "bundle-parents": [ + "xe-2/0/0", + "xe-2/0/1", + "xe-2/0/3", + "xe-3/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01930 | ATH2-VIE |", + "circuits": [], + "snmp-index": 576, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": 718108, + "name": "LON-LON-GEANTOPEN-MAEEN-ESNET-22004", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "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": "mx1.lon2.uk.geant.net", + "name": "et-5/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | JISC AP Upgrade | CFP2 LR4 optic installed", + "circuits": [], + "snmp-index": 747, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/3/3.1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER_GEO PIONIER #PIONIER-GEO-UK-1 | SRF9941269 | PIONIER 10G access to GeO", + "circuits": [ + { + "id": 719824, + "name": "PIONIER-GEO-UK-1", + "type": "GEANT OPEN PORT", + "status": "operational" + } + ], + "snmp-index": 1179, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 538, + "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" + } + ], + "snmp-index": 593, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "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": [], + "snmp-index": 536, + "dashboards": [], + "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" + } + ], + "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.lon.uk.geant.net", + "name": "ae20", + "bundle": [ + "et-11/0/2" + ], + "bundle-parents": [ + "et-11/0/2" + ], + "description": "LAG PUBLIC LINX SRF9929379 $GA-01839 |", + "circuits": [], + "snmp-index": 716, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/15", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.26", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-det1-par-fr-idrac | NEMO DDOS Detection 1 iDRAC", + "circuits": [ + { + "id": 721449, + "name": "DDOS-DET1-PAR-FR-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 974, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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 GEANT #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" + } + ], + "snmp-index": 563, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "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" + } + ], + "snmp-index": 927, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-3/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 695, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 671, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT NIKS P_AE25 SRF21113 | ", + "circuits": [], + "snmp-index": 877, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "ae10.14", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GCS CUSTOMER GEANT | #Nordunet_TUNI_ExpressRoute_Vlan3913 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731507, + "name": "NORDUNET-TUNI-EXPRESSROUTE-VLAN3913", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 597, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae11.3695", + "bundle": [], + "bundle-parents": [ + "et-2/1/0", + "et-2/1/1", + "et-2/1/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER DFN SURF SRF21092 #AMS-FRA-DFN-SURF-21092 $GS-00634 |", + "circuits": [ + { + "id": 715058, + "name": "AMS-FRA-DFN-SURF-21092", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 917, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURFNET", + "interface_type": "LOGICAL" + }, + { + "name": "DFN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.300", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT ENSTINET #NL-ENSTINET-AP1 $GS-00892 | ASN6879 | AP1", + "circuits": [ + { + "id": 734576, + "name": "NL-ENSTINET-AP1", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1130, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ENSTINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ENSTINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "lt-0/0/0.13", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE MDVPN | GN PE to VPN-Proxy for IBGP", + "circuits": [], + "snmp-index": 1120, + "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-200G $GS-00048 | LIS-MAD 200G |", + "circuits": [ + { + "id": 712769, + "name": "LIS-MAD-IPTRUNK-200G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "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": "qfx.fra.de.geant.net", + "name": "xe-0/0/23", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae15 | FRA-PRD-ESX05 SLOT? PORT4 VMNIC7", + "circuits": [ + { + "id": 658613, + "name": "730XD-5-VMNIC6", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 685, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae23.350", + "bundle": [], + "bundle-parents": [ + "et-3/1/4" + ], + "description": "SRV_L2CIRCUIT CUSTOMER SWITCH INTERNET2 #gen-par-SYNGENTA-SWITCH-INTERNET2-17045 $GS-00715 |", + "circuits": [ + { + "id": 705424, + "name": "GEN-PAR-SYNGENTA-SWITCH-INTERNET2-17045", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1274, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "SWITCH", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX04 SLOT0 PORT1 VMNIC0", + "circuits": [ + { + "id": 658547, + "name": "730XD-4-SLOT0-PORT1-VMNIC0", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 522, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 591, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "snmp-index": 1308, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "CESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "mx1.buc.ro.geant.net", + "name": "xe-1/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | BUC-CHI | ROEDUNET CID: BUC-CHI-040-3", + "circuits": [], + "snmp-index": 674, + "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": "ge-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1336, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "WACREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "WACREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae8.0", + "bundle": [], + "bundle-parents": [ + "et-7/0/4", + "et-7/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-FRA-IPTRUNK $GS-00009| AMS-FRA", + "circuits": [ + { + "id": 731640, + "name": "AMS-FRA-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 607, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-FRA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-FRA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae2.0", + "bundle": [], + "bundle-parents": [ + "et-8/0/4", + "et-8/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON-LON2-800G-IPTRUNK $GS-00052 | LON2-LON |Coriant G30 800G", + "circuits": [ + { + "id": 719902, + "name": "LON-LON2-800G-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1191, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON2-LON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LON2-LON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 1283, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-8/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RENATER P_AE14 | RENATER-100GB-LL2", + "circuits": [], + "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": "rt2.ams.nl.geant.net", + "name": "ae10.5", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GCS CUSTOMER GEANT | #NORDUNET_JYV_ExpressRoute_VLAN3903 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731513, + "name": "NORDUNET-JYV-EXPRESSROUTE-VLAN3903", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 588, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 673, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-11/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ROEDUNET P_AE21 SRF20069 |", + "circuits": [], + "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": "mx1.lon2.uk.geant.net", + "name": "xe-2/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-LR", + "circuits": [], + "snmp-index": 1588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "xe-2/0/6", + "xe-2/0/7", + "xe-2/0/8", + "xe-3/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH-ATH2-IPTRUNK $GS-00013 | ATH-ATH2 |", + "circuits": [ + { + "id": 708778, + "name": "ATH-ATH2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 575, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 848, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "ae15.411", + "bundle": [], + "bundle-parents": [ + "et-0/0/2", + "et-1/0/2", + "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" + } + ], + "snmp-index": 829, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "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": [], + "snmp-index": 895, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 592, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "so-1/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 729, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae2", + "bundle": [ + "et-9/0/2", + "et-9/0/5", + "et-9/1/2" + ], + "bundle-parents": [ + "et-9/0/2", + "et-9/0/5", + "et-9/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01774 | GEN-MIL2 | ", + "circuits": [], + "snmp-index": 850, + "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": "ae2", + "bundle": [ + "et-8/0/4", + "et-8/1/4" + ], + "bundle-parents": [ + "et-8/0/4", + "et-8/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE | #LON-LON2-800G-LAG $GA-01846 | LON-LON2 ", + "circuits": [], + "snmp-index": 1190, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "#LON-LON2-800G-LAG $GA-01846", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "#LON-LON2-800G-LAG $GA-01846", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/1/4.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER ARNES COLT #zag-zag-ARNES-COLT-22026 $GS-02098 |", + "circuits": [ + { + "id": 730789, + "name": "ZAG-ZAG-ARNES-COLT-22026", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1052, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "ARNES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COLT", + "interface_type": "LOGICAL" + }, + { + "name": "ARNES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/6.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SINGAREN #OOB-SINGAREN-LON2-UK | LON2-SingAREN-1G OOB", + "circuits": [ + { + "id": 708165, + "name": "OOB-SINGAREN-LON2-UK", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1058, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-4/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | QSFP-100GBASE-SR4 installed", + "circuits": [], + "snmp-index": 1011, + "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": [], + "snmp-index": 1362, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-1/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1040, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 968, + "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": [], + "snmp-index": 837, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | KAU-RIG", + "circuits": [], + "snmp-index": 548, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-RIG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "KAU-RIG", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS MDVPN | MDVPN VRR", + "circuits": [], + "snmp-index": 784, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE - WAS CESNET", + "circuits": [], + "snmp-index": 576, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "rt2.rig.lv.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 564, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-4/1/2", + "et-4/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK $GS-T33320| AMS-AMS", + "circuits": [ + { + "id": 732702, + "name": "AMS-AMS-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1482, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-AMS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-AMS", + "interface_type": "LOGICAL" + } + ], + "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": [], + "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.poz.pl.geant.net", + "name": "ae7", + "bundle": [ + "et-8/0/5", + "et-8/1/2", + "et-8/1/5" + ], + "bundle-parents": [ + "et-8/0/5", + "et-8/1/2", + "et-8/1/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02408 | POZ-PRA", + "circuits": [], + "snmp-index": 611, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-PRA", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "POZ-PRA", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "et-5/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | QSFP SR4 optic installed", + "circuits": [], + "snmp-index": 939, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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.gen.ch.geant.net", + "name": "xe-2/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1339, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/4.19", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN19-CH |", + "circuits": [ + { + "id": 709123, + "name": "VIRGIN_MEDIA_EX1_LON2_TO_CAM_SRX_VLAN19-CH", + "type": "CORPORATE", + "status": "non-monitored" + } + ], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-POZ-IPTRUNK $GS-00043 | POZ-KAU |", + "circuits": [ + { + "id": 728647, + "name": "KAU-POZ-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 549, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-KAU", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "POZ-KAU", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "irb.3000", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VM-Datanetwork-Fra-IRB $GS-00084 | VM DATA network", + "circuits": [ + { + "id": 733005, + "name": "VM-DATANETWORK-FRA", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1230, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae0", + "bundle": [ + "et-1/0/2", + "et-1/0/5" + ], + "bundle-parents": [ + "et-1/0/2", + "et-1/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-T33321 | AMS-AMS", + "circuits": [], + "snmp-index": 949, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-AMS", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-AMS", + "interface_type": "AGGREGATE" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | POP LAN via CISCO", + "circuits": [], + "snmp-index": 633, + "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" + } + ], + "snmp-index": 1216, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "ae10", + "bundle": [ + "xe-3/0/7", + "xe-3/2/2" + ], + "bundle-parents": [ + "xe-3/0/7", + "xe-3/2/2" + ], + "description": "LAG INFRASTRUCTURE ACCESS SUPERPOP SRF0000001 | VEEAM backup-2.mar.fr.geant.net", + "circuits": [], + "snmp-index": 610, + "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" + } + ], + "snmp-index": 1330, + "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": [], + "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": "mx1.mad.es.geant.net", + "name": "ge-0/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 610, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae11.600", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_GLOBAL CUSTOMER CESNET #CESNET-AP1 $GS-00444 | ASN2852 |", + "circuits": [ + { + "id": 725106, + "name": "CESNET-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "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": "mx2.ath.gr.geant.net", + "name": "xe-3/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 735, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae11.353", + "bundle": [], + "bundle-parents": [ + "et-2/1/0", + "et-2/1/1", + "et-2/1/2" + ], + "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" + } + ], + "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.fra.de.geant.net", + "name": "ae12", + "bundle": [ + "xe-11/2/1", + "xe-11/2/2", + "xe-11/3/6" + ], + "bundle-parents": [ + "xe-11/2/1", + "xe-11/2/2", + "xe-11/3/6" + ], + "description": "LAG PRIVATE Verizon Digital $GA-01951 | FRANKFURT-VERIZON-1-LAG", + "circuits": [], + "snmp-index": 1012, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/2.26", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-det2-vie-at-idrac | NEMO DDOS Detection 2 iDRAC", + "circuits": [ + { + "id": 718926, + "name": "DDOS-DET2-VIE-AT-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 974, + "dashboards": [], + "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": 727352, + "name": "BELNET-MOBILIT-EXPRESSROUTE-VLAN4089", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 610, + "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": "et-1/1/5.3611", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT MAEEN #NL-MAEEN $GS-00898 | ASN8895 |", + "circuits": [ + { + "id": 734556, + "name": "NL-MAEEN", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1152, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "MAEEN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MAEEN", + "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" + } + ], + "snmp-index": 1015, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1301, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.100", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #CAM-OFFICE-TO-AMS-OFFICE-L2CIRCUIT |", + "circuits": [ + { + "id": 663022, + "name": "CAM-OFFICE-TO-AMS-OFFICE-L2CIRCUIT", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1128, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae12 | FRA-PRD-ESX04 SLOT0 PORT2 VMNIC1", + "circuits": [ + { + "id": 658616, + "name": "730XD-4-SLOT0-PORT2-VMNIC1", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 623, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae28.2061", + "bundle": [], + "bundle-parents": [ + "et-4/1/1" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT REDCLARA #UK-REDCLARA $GS-02166| ASN27750 |", + "circuits": [ + { + "id": 720021, + "name": "UK-REDCLARA", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 1216, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "REDCLARA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDCLARA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.ath2.gr.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "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": [], + "snmp-index": 562, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0-RT1 TRUNK 20GB 1_2", + "circuits": [], + "snmp-index": 554, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "rt1.fra.de.geant.net", + "name": "xe-11/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0 MGMT TRUNK 1_2", + "circuits": [], + "snmp-index": 850, + "dashboards": [], + "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": [], + "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": "mx1.vie.at.geant.net", + "name": "xe-4/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1039, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 693, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae2.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRU-PAR-IPTRUNK $GS-02280 | BRU-PAR IP TRUNK", + "circuits": [ + { + "id": 727154, + "name": "BRU-PAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 610, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-PAR IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BRU-PAR IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae9.0", + "bundle": [], + "bundle-parents": [ + "et-11/0/5", + "et-11/1/2", + "et-11/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-LON-IPTRUNK-300G $GS-00011 | AMS-LON |Coriant G30 300G", + "circuits": [ + { + "id": 708724, + "name": "AMS-LON-IPTRUNK-300G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1675, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae12.3554", + "bundle": [], + "bundle-parents": [ + "et-2/1/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER CSTNET CERN #gen-lon-IHEP-CERN-CSTNET $GS-02415 |", + "circuits": [ + { + "id": 732308, + "name": "GEN-LON-IHEP-CERN-CSTNET", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1359, + "dashboards": [ + "CAE1", + "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": "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": [], + "snmp-index": 702, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1003, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "et-5/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | DUB-LON", + "circuits": [], + "snmp-index": 946, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "DUB-LON", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "DUB-LON", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 625, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/0/2:3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-7/0/0.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #fra-lon2-SUPERPOP-QFX-GEANT $GS-00076 |", + "circuits": [ + { + "id": 729416, + "name": "FRA-LON2-SUPERPOP-QFX-GEANT", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 1071, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-3/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | MAR-MIL2 |", + "circuits": [], + "snmp-index": 831, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MAR-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MAR-MIL2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ae11.20", + "bundle": [], + "bundle-parents": [ + "et-3/3/0" + ], + "description": "SRV_MDVPN CUSTOMER PIONIER #PIONIER-BGP-LU-COC-AP1 $GS-01055 | MDVPN CoC - PIONIER AP1", + "circuits": [ + { + "id": 661961, + "name": "PIONIER-BGP-LU-COC-AP1", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 782, + "dashboards": [ + "MDVPN_CUSTOMERS", + "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": "ge-0/3/3.1113", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GCS Customer GEANT GEANT #UAT-Test-MS-Express-Route $GS-11113 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 719669, + "name": "UAT-TEST-MS-EXPRESS-ROUTE", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 1445, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 749, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4.25", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #SCION-gen-ch | SCION SERVERS", + "circuits": [ + { + "id": 719998, + "name": "SCION-GEN-CH", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 680, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "lt-0/0/0.13", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FOD-R&E-ENDPOINT-MIL2-IT | FOD R&E endpoint", + "circuits": [], + "snmp-index": 686, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-1/0/5", + "et-1/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL-PAR-IPTRUNK $GS-00016 | BIL-PAR |", + "circuits": [ + { + "id": 709873, + "name": "BIL-PAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "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.vie.at.geant.net", + "name": "xe-8/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 995, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "ae10.33", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_IAS CUSTOMER LAT #LAT-AP2-IAS IASPS $GS-00578 | ASN5538 |", + "circuits": [ + { + "id": 679358, + "name": "LAT-AP2-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 569, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER NETHERLIGHT | Digital Realty CID: NL172398-4", + "circuits": [], + "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": "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": [], + "snmp-index": 547, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER | RARE EDGECORE WEDGE100BF-32X xe-1", + "circuits": [], + "snmp-index": 1261, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "|", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "|", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 732, + "dashboards": [], + "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" + } + ], + "snmp-index": 658, + "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": 707052, + "name": "LON-AMS-DTN-GENERATOR", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 986, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae36.0", + "bundle": [], + "bundle-parents": [ + "xe-11/1/0", + "xe-11/3/1", + "xe-11/3/5" + ], + "description": "SRV_IAS PRIVATE VERIZON #FRANKFURT-VERIZON-2-15133-DE-2 $GS-00933 | ASN15133", + "circuits": [ + { + "id": 731620, + "name": "FRANKFURT-VERIZON-2-15133-DE-2", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "snmp-index": 1018, + "dashboards": [ + "IAS_PEERS", + "IAS_PRIVATE" + ], + "dashboard_info": { + "name": "VERIZON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "VERIZON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 518, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1305, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae10.3003", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER LAT SURF #AMS-RIG-EVLBI-JIVE-SURF-LAT-15056 $GS-00662 |", + "circuits": [ + { + "id": 705462, + "name": "AMS-RIG-EVLBI-JIVE-SURF-LAT-15056", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 610, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURF", + "interface_type": "LOGICAL" + }, + { + "name": "LAT", + "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": [], + "snmp-index": 533, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 790, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "ae10", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG CUSTOMER EENET SRF9912865 $GA-01737 | EENET AP2", + "circuits": [], + "snmp-index": 608, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "EENET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "EENET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae6", + "bundle": [ + "et-9/0/2", + "et-9/0/5", + "et-9/1/2" + ], + "bundle-parents": [ + "et-9/0/2", + "et-9/0/5", + "et-9/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01944 | FRA-PRA2 | ", + "circuits": [], + "snmp-index": 592, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-PRA2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "FRA-PRA2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": 661327, + "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-3", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1276, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 602, + "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" + } + ], + "snmp-index": 912, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.20", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-par-fr-drac | psmp drac", + "circuits": [ + { + "id": 661419, + "name": "PSMP-PAR-FR-DRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1041, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-2/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ULAKBIM P_AE27 SRF21024 | ULAKBIM-AP2-LL1 | VIVACOM CID: VL.1172592", + "circuits": [], + "snmp-index": 689, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ULAKBIM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ULAKBIM", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4084", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-STADKORTRIJK-ExpressRoute-VLAN4084 $GS-01138 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711864, + "name": "BELNET-STADKORTRIJK-EXPRESSROUTE-VLAN4084", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 641, + "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/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 550, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae12.20", + "bundle": [], + "bundle-parents": [ + "et-2/1/5" + ], + "description": "SRV_MDVPN CUSTOMER PIONIER #PIONIER-BGP-LU-COC-AP2 $GS-01056 | MDVPN CoC - PIONIER AP2", + "circuits": [ + { + "id": 732598, + "name": "PIONIER-BGP-LU-COC-AP2", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 1011, + "dashboards": [ + "MDVPN_CUSTOMERS", + "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": "xe-3/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER JISC SRF9925215 $GA-01456 | GEANT+ 2", + "circuits": [], + "snmp-index": 1466, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae25", + "bundle": [ + "xe-5/0/1" + ], + "bundle-parents": [ + "xe-5/0/1" + ], + "description": "LAG CUSTOMER NIKS SRF21113 $GA-02143 | #NL-NIKS-LAG |", + "circuits": [], + "snmp-index": 732, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "NIKS", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "NIKS", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "et-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BIL-MAD | 200G", + "circuits": [], + "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.dub.ie.geant.net", + "name": "ae14", + "bundle": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "description": "LAG PUBLIC INEX SRF9930763 $GA-01924 |", + "circuits": [], + "snmp-index": 556, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/2/0.124", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-buc-ro-vlan124 | Ps", + "circuits": [ + { + "id": 663152, + "name": "PSMP-BUC-RO-VLAN124", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 618, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Was PSMP Server", + "circuits": [], + "snmp-index": 581, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4089", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MOBILIT-ExpressRoute-VLAN4089 $GS-02170 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727352, + "name": "BELNET-MOBILIT-EXPRESSROUTE-VLAN4089", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 639, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae17.402", + "bundle": [], + "bundle-parents": [ + "xe-11/0/1" + ], + "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET CANARIE #AMS-LON-MISC-UBUNTUNET-CANARIE-170352 $GS-00646 |", + "circuits": [ + { + "id": 709295, + "name": "AMS-LON-MISC-UBUNTUNET-CANARIE-170352", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1050, + "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.ams.nl.geant.net", + "name": "ae2.108", + "bundle": [], + "bundle-parents": [ + "xe-5/0/2", + "xe-5/0/3" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT EUMETSAT #AMS-EUMETSAT-SERVER-DATA-TRAFFIC $GS-02312 | AMS-EUMETSAT-1G", + "circuits": [ + { + "id": 726644, + "name": "AMS-EUMETSAT-SERVER-DATA-TRAFFIC", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1342, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "EUMETSAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EUMETSAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-2/0/5.4020", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT WIX #lon-lon-GEANTOpen-Internet2-Netherlight-15034 $GS-00968 |", + "circuits": [ + { + "id": 706967, + "name": "LON-LON-GEANTOPEN-INTERNET2-NETHERLIGHT-15034", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "xe-10/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 903, + "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": [], + "snmp-index": 524, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 847, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 678, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae5", + "bundle": [ + "et-9/0/2", + "et-9/0/5", + "et-9/1/2" + ], + "bundle-parents": [ + "et-9/0/2", + "et-9/0/5", + "et-9/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02010 | MAD-MAR01 |", + "circuits": [], + "snmp-index": 619, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MAD-MAR01", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "MAD-MAR01", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-11/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE Verizon P_AE12 | FRANKFURT-VERIZON-1-LL-1 | Interxion CID: DE236882 | VERIZON CID: GEANT-FRM-EU-03-PX", + "circuits": [], + "snmp-index": 887, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 816, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "KIFU", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KIFU", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3913", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #Nordunet-TUNI-ExpressRoute-Vlan3913 $GS-01154 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731507, + "name": "NORDUNET-TUNI-EXPRESSROUTE-VLAN3913", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 966, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.ath2.gr.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-MIL2-IPTRUNK $DS-000199| ATH2-MIL2", + "circuits": [ + { + "id": 734736, + "name": "ATH2-MIL2-IPTRUNK", + "type": "IP TRUNK", + "status": "non-monitored" + } + ], + "snmp-index": 603, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-MIL2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-MIL2", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "lt-1/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-ath2-gr-RE-IAS| BGP PEERING - RE SIDE", + "circuits": [], + "snmp-index": 625, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 680, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.197", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mad-OFELIA-Belnet-RedIRIS-14001 $GS-00679 |", + "circuits": [ + { + "id": 719498, + "name": "BRU-MAD-OFELIA-BELNET-REDIRIS-14001", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 650, + "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": "et-7/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | AMS-FRA", + "circuits": [], + "snmp-index": 551, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-FRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-FRA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae11 | FRA-PRD-ESX03 SLOT4 PORT2 VMNIC5", + "circuits": [ + { + "id": 658385, + "name": "730XD-3-SLOT4-PORT2-VMNIC5", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 625, + "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": 661399, + "name": "NORDU-TO-WIX-2021", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1274, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "WIX", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ae10.100", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-1/0/1", + "xe-3/0/0" + ], + "description": "SRV_GLOBAL CUSTOMER GRNET #GRNET-AP1 $GS-00471 | ASN5408 |", + "circuits": [ + { + "id": 661424, + "name": "GRNET-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 578, + "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": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-8/0/2", + "et-8/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LIS-MAD-IPTRUNK-200G $GS-00048 | LIS-MAD 200G |", + "circuits": [ + { + "id": 712769, + "name": "LIS-MAD-IPTRUNK-200G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "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": "mx1.vie.at.geant.net", + "name": "xe-4/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY UPSTREAM COLT | COLT ID: 444162876", + "circuits": [], + "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": "mx1.lon.uk.geant.net", + "name": "ge-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "SPARE", + "circuits": [], + "snmp-index": 602, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.lon2.uk.geant.net", + "name": "ae29", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN P_-- | QFX.PAR.FR AE14", + "circuits": [], + "snmp-index": 607, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | WAS KIAE", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | OLD PSMP OWAMP", + "circuits": [], + "snmp-index": 600, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.1237", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER KREONET RARE #AMS-AMS-KREONET-RARE-22097 $GS-02218 | ", + "circuits": [ + { + "id": 734545, + "name": "AMS-AMS-KREONET-RARE-22097", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1119, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "KREONET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KREONET", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.ath2.gr.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 540, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae17.100", + "bundle": [], + "bundle-parents": [ + "xe-2/0/0" + ], + "description": "SRV_GLOBAL CUSTOMER MARNET #MARNET-AP2 $GS-00490 | ASN44224 | backup", + "circuits": [ + { + "id": 660630, + "name": "MARNET-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 856, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MARNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #ZAG-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 714, + "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" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.702", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #LON-AMS-DTN-GENERATOR $GS-00722 | RARE P4 TESTBED", + "circuits": [ + { + "id": 707052, + "name": "LON-AMS-DTN-GENERATOR", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 987, + "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": "et-4/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 | AMS-LON | AMS-LON-AW-TRUNK", + "circuits": [], + "snmp-index": 917, + "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-11/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0 MGMT TRUNK 2_2 | PCDE-90606669 DE.FRA.FRA15.L3.043.R56.B01.U46 front.X48 | SFP+-10G-LR INSTALLED", + "circuits": [], + "snmp-index": 901, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "lt-0/3/10.31", + "bundle": [], + "bundle-parents": [], + "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN | VRR to GEANT", + "circuits": [], + "snmp-index": 714, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4090", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ARTEV-ExpressRoute-VLAN4090 $GS-01131 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711863, + "name": "BELNET-ARTEV-EXPRESSROUTE-VLAN4090", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 647, + "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-0/0/25", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX02 NIC1 PORT3 - VSAN PORT", + "circuits": [], + "snmp-index": 644, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 569, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 577, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-9/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | FRA-PRA2", + "circuits": [], + "snmp-index": 664, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 655, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "rt1.bil.es.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 665, + "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": [], + "snmp-index": 1021, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BOD TestPort $GA-01586 | connected to ge-0/3/7", + "circuits": [], + "snmp-index": 676, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | CONNECTED TO SW3-FPC0 xe-/0/0/3", + "circuits": [], + "snmp-index": 675, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae8", + "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-01923 | AMS-HAM-IPTRUNK", + "circuits": [], + "snmp-index": 1430, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-HAM-IPTRUNK", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-HAM-IPTRUNK", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/6.25", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-gw-drac-bud-hu| perfSONAR iDRAC", + "circuits": [ + { + "id": 724530, + "name": "PSMP-GW-DRAC-BUD-HU", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1175, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "et-10/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BIL-MAD | 200G", + "circuits": [], + "snmp-index": 1046, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BIL-MAD", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BIL-MAD", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "lt-2/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-dub-ie-RE-IAS| BGP PEERING - RE SIDE", + "circuits": [], + "snmp-index": 690, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae1 | PAR-PRD-ESX1 SLOT0 PORT3 VMNIC2", + "circuits": [ + { + "id": 658569, + "name": "730XD-1-SLOT0-PORT3-VMNIC2-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 638, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.472", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER CERN RARE SRF223010 #AMS-GEN-CERN-RARE-123010 $GS-02262 |", + "circuits": [ + { + "id": 726345, + "name": "AMS-GEN-CERN-RARE-123010", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1315, + "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": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1003", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mad-Fed4FIRE-BELNET-RedIRIS-14012 $GS-00676 |", + "circuits": [ + { + "id": 719493, + "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14012", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 654, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 804, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/0/1:2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 533, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 751, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "SINGAREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINGAREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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 #BRU-PAR-FED4FIRE-SCION-9951467 $GS-00682 |", + "circuits": [ + { + "id": 714190, + "name": "BRU-PAR-FED4FIRE-SCION-9951467", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 735, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + }, + { + "name": "BELNET", + "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": [], + "snmp-index": 1267, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-7/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 | GEN-PAR-800G | to GEN-GRV5 1/3/8", + "circuits": [], + "snmp-index": 812, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-PAR-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEN-PAR-800G", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 1587, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/7.79", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GCS Customer r1 r2 #uat-rr-20230713-2 $GS-T123 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 1449, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "R1", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "R1", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/23", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae15 | PAR-PRD-ESX5 SLOT? PORT2 VMNIC5", + "circuits": [ + { + "id": 658632, + "name": "730XD-5-VMNIC5-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 540, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | ATH2-THE", + "circuits": [], + "snmp-index": 593, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-THE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-THE", + "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": "730XD-3-ESXI-TRAFFIC-LAG", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 576, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/0/1:2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 530, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-8/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 992, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9926075 | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150806", + "circuits": [], + "snmp-index": 580, + "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" + } + ], + "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": "mx1.gen.ch.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 602, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-2/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 729, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae11.1700", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "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" + } + ], + "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.bud.hu.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT UTIC P_AE20 SRF22101 | UTIC/BH-Telecom ID: DM/UTIC/UNSA", + "circuits": [], + "snmp-index": 595, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4.21", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-gen-ch-DRAC | HADES DRAC", + "circuits": [ + { + "id": 663119, + "name": "HADES-GEN-CH-DRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 813, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ath2.gr.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | ATH2-MIL2", + "circuits": [], + "snmp-index": 591, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-MIL2", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 633, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1451, + "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": "ae23.991", + "bundle": [], + "bundle-parents": [ + "xe-3/2/0", + "xe-3/2/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-LON $GS-00119 |", + "circuits": [ + { + "id": 713897, + "name": "DCN-MANAGEMENT-LON", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 918, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Was PSMP Server", + "circuits": [], + "snmp-index": 594, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/14", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 530, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "ae10.100", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1" + ], + "description": "SRV_GLOBAL CUSTOMER LITNET #LITNET-AP2 $GS-00487 | ASN2847 |", + "circuits": [ + { + "id": 715802, + "name": "LITNET-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 610, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LITNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LITNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 624, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.991", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE | AMS GROOVE G30", + "circuits": [ + { + "id": 707227, + "name": "AMS-GROOVE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 977, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE3 | rt2-sw2(ex3400) ", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | AMS-AMS | BRK4 - P 1A1", + "circuits": [], + "snmp-index": 635, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-AMS", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-AMS", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4083", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-STADKORTRIJK-ExpressRoute-VLAN-4083 $GS-01128 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727328, + "name": "BELNET-STADKORTRIJK-EXPRESSROUTE-VLAN-4083", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 627, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae2.998", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-tar-ee| SW1-EX3400 MANAGEMENT", + "circuits": [ + { + "id": 729773, + "name": "EX3400-MANAGEMENT-TAR-EE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 628, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-5/0/1.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #fra-par-SUPERPOP-QFX-2-GEANT $GS-00079 |", + "circuits": [ + { + "id": 729480, + "name": "FRA-PAR-SUPERPOP-QFX-2-GEANT", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 978, + "dashboards": [ + "GBS_10G" + ], + "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.310", + "bundle": [], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER JISC SWITCH #GEN-LON-SYNGENTA-SWITCH-JISC-17041 $GS-00712 |", + "circuits": [ + { + "id": 705461, + "name": "GEN-LON-SYNGENTA-SWITCH-JISC-17041", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1217, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae44.0", + "bundle": [], + "bundle-parents": [ + "xe-5/2/1", + "xe-11/1/6", + "xe-11/1/7" + ], + "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" + } + ], + "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": "rt2.rig.lv.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RIG-RIG-IPTRUNK $GS-00060 | RIG-RIG |", + "circuits": [ + { + "id": 708715, + "name": "RIG-RIG-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 545, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-RIG", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RIG-RIG", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "lt-8/1/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #GEN-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 1606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "mx1.mad.es.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Reserved for GTS Expansion", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 933, + "dashboards": [ + "CAE1", + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + { + "name": "SURF", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE - TESTING", + "circuits": [], + "snmp-index": 591, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae10.340", + "bundle": [], + "bundle-parents": [ + "et-5/0/2", + "et-5/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER ARNES COLT #zag-zag-ARNES-COLT-22026 $GS-02098 | ", + "circuits": [ + { + "id": 730789, + "name": "ZAG-ZAG-ARNES-COLT-22026", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 852, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "ARNES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COLT", + "interface_type": "LOGICAL" + }, + { + "name": "ARNES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-2/0/0.695", + "bundle": [], + "bundle-parents": [], + "description": "SRV_MDVPN CUSTOMER GRNET #GRNET-BGP-LU-COC $GS-01007 | MDVPN CoC - GRNET", + "circuits": [ + { + "id": 660642, + "name": "GRNET-BGP-LU-COC", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 688, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae17", + "bundle": [ + "xe-2/0/0" + ], + "bundle-parents": [ + "xe-2/0/0" + ], + "description": "LAG CUSTOMER MARNET AP2 SRF9917449 $GA-01862 |", + "circuits": [], + "snmp-index": 624, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MARNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "MARNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "ae11", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01725 | PAR-PRD-ESX3 VM Traffic LAG", + "circuits": [ + { + "id": 658697, + "name": "730XD-3-VM-TRAFFIC-LAG-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 590, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "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": "mx1.ath2.gr.geant.net", + "name": "ge-1/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.102", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #AMS-PAR-RARE-RARE-21101 $GS-00656 |", + "circuits": [ + { + "id": 716208, + "name": "AMS-PAR-RARE-RARE-21101", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1311, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 633, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "et-3/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 753, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | FORTIGATE CLUSTER AMS-2 2_2", + "circuits": [], + "snmp-index": 739, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4082", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ZWEV-ExpressRoute-VLAN4082 $GS-01129 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727349, + "name": "BELNET-ZWEV-EXPRESSROUTE-VLAN4082", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 625, + "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": "ae28.2063", + "bundle": [], + "bundle-parents": [ + "et-4/1/1" + ], + "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" + } + ], + "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": "rt1.rig.lv.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 563, + "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": [], + "snmp-index": 669, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.111", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L3VPN CUSTOMER REDIRIS #REDIRIS-AP1-LHCONE $GS-00852 | ASN766", + "circuits": [ + { + "id": 719492, + "name": "REDIRIS-AP1-LHCONE", + "type": "L3-VPN", + "status": "non-monitored" + } + ], + "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.mar.fr.geant.net", + "name": "xe-3/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE3 SRF0000001 | rt1-sw2 (ex3400)", + "circuits": [], + "snmp-index": 661, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 567, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 724, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/2.22", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP-VIE-AT | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150810", + "circuits": [ + { + "id": 661652, + "name": "OWAMP-VIE-AT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 783, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | GRNET AP2_1 |", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-5/1/2", + "et-5/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #SOF-ZAG-IPTRUNK $GS-02367| SOF-ZAG", + "circuits": [ + { + "id": 729384, + "name": "SOF-ZAG-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 593, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-ZAG", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SOF-ZAG", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ae11.100", + "bundle": [], + "bundle-parents": [ + "xe-2/0/4", + "xe-2/0/5", + "xe-2/0/9", + "xe-3/0/2" + ], + "description": "SRV_GLOBAL CUSTOMER GRNET #GRNET-AP2 $GS-00472 | ASN5408 |", + "circuits": [ + { + "id": 663168, + "name": "GRNET-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 611, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae10 | FRA-PRD-ESX02 SLOT4 PORT3 VMNIC6", + "circuits": [ + { + "id": 658645, + "name": "730XD-2-SLOT4-PORT3-VMNIC6", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 627, + "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": [], + "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.pra.cz.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 519, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.87", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/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" + } + ], + "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": "rt2.kie.ua.geant.net", + "name": "xe-0/0/1:1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 850, + "dashboards": [], + "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": [], + "snmp-index": 650, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 733011, + "name": "DUB-FRA-HEANET-RARE-20062", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1450, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 668, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.23", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon-uk-psmp-bwctl-vlan23 |psmp-lhc-drac-lon-uk.geant.org pS iDRAC", + "circuits": [ + { + "id": 661620, + "name": "PS-LON-UK-PSMP-BWCTL-VLAN23", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 620, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-11/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP7T2SF SRF0000001 | AMS BMS Server #4", + "circuits": [], + "snmp-index": 1236, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "ae17", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01730 | PAR-PRD-ESX5 VM Traffic LAG", + "circuits": [], + "snmp-index": 595, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 549, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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 | AMS-LON-AW |", + "circuits": [], + "snmp-index": 580, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON-AW", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-LON-AW", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 593, + "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" + } + ], + "snmp-index": 596, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 1154, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.2500", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO2 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 814, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae17.802", + "bundle": [], + "bundle-parents": [ + "xe-11/0/1" + ], + "description": "SRV_L2CIRCUIT CUSTOMER UBUNTUNET INTERNET2 #AMS-LON-MISC-UBUNTUNET-INTERNET2-170342 $GS-00647 |", + "circuits": [ + { + "id": 709296, + "name": "AMS-LON-MISC-UBUNTUNET-INTERNET2-170342", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1114, + "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.buc.ro.geant.net", + "name": "et-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | RoEduNET AP upgrade - CFP2 LR4 optic installed", + "circuits": [], + "snmp-index": 715, + "dashboards": [], + "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" + } + ], + "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": "qfx.par.fr.geant.net", + "name": "xe-0/0/15", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX2 SLOT4 PORT1 VMNIC4 - VSAN PORT", + "circuits": [ + { + "id": 658363, + "name": "730XD-2-SLOT4-PORT1-VMNIC4-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.315", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SURF HEANET #AMS-DUB-KNMI-ME-1-SURF-HEANET-20045 $GS-00631 |", + "circuits": [ + { + "id": 705896, + "name": "AMS-DUB-KNMI-ME-1-SURF-HEANET-20045", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1132, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURF", + "interface_type": "LOGICAL" + }, + { + "name": "HEANET", + "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" + } + ], + "snmp-index": 1236, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 612, + "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" + } + ], + "snmp-index": 1457, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 634, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CYNET P_AE12 SRF9948497 | BEZEQ: E-LAN-18-8419", + "circuits": [], + "snmp-index": 568, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "CYNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH-ATH2 | GRNET CID: GRNET ATH-ATH2 DWDM-1 #CH48", + "circuits": [], + "snmp-index": 631, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 1589, + "dashboards": [], + "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": [], + "snmp-index": 655, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 799, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-1/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 574, + "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": [], + "snmp-index": 678, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "ae3", + "bundle": [ + "xe-0/1/0" + ], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001| rt2-sw1 (ex4300)", + "circuits": [], + "snmp-index": 587, + "dashboards": [], + "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" + } + ], + "snmp-index": 945, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.lon2.uk.geant.net", + "name": "ge-1/0/36", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX10 IDRAC", + "circuits": [], + "snmp-index": 689, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 | BUD-VIE | BUD-VIE-100G-IP2", + "circuits": [], + "snmp-index": 927, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUD-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BUD-VIE", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 1132, + "dashboards": [], + "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": [], + "snmp-index": 514, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED PCNL-90556238| PHY RE_INTERCONNECT NIKS P_AE25 SRF21113 | ==MX1.AMS xe-5/0/1", + "circuits": [], + "snmp-index": 666, + "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" + } + ], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "xe-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER BREN SRF21043 P_AE12 | BREN AP2 | ", + "circuits": [], + "snmp-index": 662, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BREN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BREN", + "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": [], + "snmp-index": 866, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "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" + } + ], + "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": "mx2.lis.pt.geant.net", + "name": "ae11.2695", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE HEAnet-DC-RNP-build7 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 822, + "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": "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" + } + ], + "snmp-index": 773, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "SINGAREN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SINGAREN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae9 | FRA-PRD-ESX01 SLOT4 PORT2 VMNIC5", + "circuits": [ + { + "id": 658419, + "name": "730XD-1-SLOT4-PORT2-VMNIC5", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 624, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae18.246", + "bundle": [], + "bundle-parents": [ + "et-11/1/0" + ], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET RESTENA #bru-par-BELNET-RESTENA $GS-02333", + "circuits": [ + { + "id": 728443, + "name": "BRU-PAR-BELNET-RESTENA", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1325, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + { + "name": "RESTENA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": "non-monitored" + } + ], + "snmp-index": 572, + "dashboards": [ + "CAE1", + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "LOGICAL" + }, + { + "name": "SINGAREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/13", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae4 | PAR-PRD-ESX4 SLOT0 PORT3 VMNIC2", + "circuits": [ + { + "id": 658398, + "name": "730XD-4-SLOT0-PORT3-VMNIC2-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 530, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.2031", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon-GEANTOpen-Esnet-NORDUNET-15039-3 $GS-00965 |", + "circuits": [ + { + "id": 661327, + "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-3", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1290, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CYNET SRF9943103 $GA-01640 | GRNET ID: IDC-PRIV-5168 | OVERSUB-RISK-MPC3E", + "circuits": [], + "snmp-index": 625, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "CYNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.36", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MSER-ULB-ExpressRoute-VLAN4063 $GS-02363 | ", + "circuits": [ + { + "id": 729793, + "name": "BELNET-MSER-ULB-EXPRESSROUTE-VLAN4063", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1458, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 540, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae2.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-TARTU | DCN MANAGEMENT ", + "circuits": [ + { + "id": 729774, + "name": "DCN-MANAGEMENT-TARTU-EE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 627, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 687, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS FLOWMON-DDOS | FlowMon NetFlow-Interface CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20171010", + "circuits": [], + "snmp-index": 604, + "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" + } + ], + "snmp-index": 615, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/8.12", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT-INTERNAL #GEANT-CORPORATE-ViaVodafone-VRF-TEST | GEANT Corporate to SRX2.CH - Via Vodafone - Dashboard BGP Test VLAN", + "circuits": [ + { + "id": 678920, + "name": "GEANT-CORPORATE-VIAVODAFONE-VRF-TEST", + "type": "CORPORATE", + "status": "non-monitored" + } + ], + "snmp-index": 700, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.202", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #LON-Groove-1-Management | LON Groove 1 Direct Management", + "circuits": [ + { + "id": 661881, + "name": "LON-GROOVE-1-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 993, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "mx1.ams.nl.geant.net", + "name": "ae21.15", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-NCCN-ExpressRoute-VLAN4088 $GS-01136 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711865, + "name": "BELNET-NCCN-EXPRESSROUTE-VLAN4088", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1316, + "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/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | LIS-POR | Infinera GRV1 1/1/4 Facing PORTO", + "circuits": [], + "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.mad.es.geant.net", + "name": "ae16.196", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS JISC #lon-mad-OFELIA-JISC-RedIRIS-13013 $GS-00733 |", + "circuits": [ + { + "id": 719488, + "name": "LON-MAD-OFELIA-JISC-REDIRIS-13013", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1072, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + }, + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae10.2112", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_L2CIRCUIT CUSTOMER EENet LAT #rig-tar-Genomics-LAT-EENet-21034 $GS-00752 |", + "circuits": [ + { + "id": 709306, + "name": "RIG-TAR-GENOMICS-LAT-EENET-21034", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 619, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1344, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "et-9/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 | MAD-MAR |", + "circuits": [], + "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": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.3020", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-PAR-SINET-SD-WAN-SINET-SINET-17090 $GS-00659 |", + "circuits": [ + { + "id": 705908, + "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17090", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1123, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 640, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.111", + "bundle": [], + "bundle-parents": [ + "et-2/1/0", + "et-2/1/1", + "et-2/1/2" + ], + "description": "SRV_L3VPN CUSTOMER DFN #DFN-AP1-LHCONE $GS-00816 | ASN680", + "circuits": [ + { + "id": 728418, + "name": "DFN-AP1-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "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": "mx1.poz.pl.geant.net", + "name": "ae7.0", + "bundle": [], + "bundle-parents": [ + "et-8/0/5", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #POZ-PRA-IPTRUNK $GS-02407| POZ-PRA", + "circuits": [ + { + "id": 731195, + "name": "POZ-PRA-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1076, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-PRA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "POZ-PRA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 523, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "ae1", + "bundle": [ + "et-0/0/3" + ], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02020 | KAU-KAU |", + "circuits": [], + "snmp-index": 585, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-KAU", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "KAU-KAU", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 591, + "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": 708194, + "name": "AMS-FRA-RARE-P4-9951375", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "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.vie.at.geant.net", + "name": "et-10/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MIL2-VIE |Connected to VIE01-GRV2.AT.GEANT.NET 1/1/3 ", + "circuits": [], + "snmp-index": 566, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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.ath2.gr.geant.net", + "name": "ge-1/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 861, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae14.550", + "bundle": [], + "bundle-parents": [ + "xe-0/1/2", + "xe-0/1/3" + ], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET RENATER #bru-par-GRID5K-BELNET-RENATER $GS-02234", + "circuits": [ + { + "id": 727381, + "name": "BRU-PAR-GRID5K-BELNET-RENATER", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 628, + "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": "rt2.tar.ee.geant.net", + "name": "et-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | TAR-TAR", + "circuits": [], + "snmp-index": 597, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "TAR-TAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "TAR-TAR", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 997, + "dashboards": [ + "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": "mx2.zag.hr.geant.net", + "name": "ge-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 602, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae9", + "bundle": [ + "et-10/0/2", + "et-10/0/5", + "et-10/1/2" + ], + "bundle-parents": [ + "et-10/0/2", + "et-10/0/5", + "et-10/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01914 | AMS-LON |", + "circuits": [], + "snmp-index": 707, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.27", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-det2-par-fr-idrac | NEMO DDOS Detection 2 iDRAC", + "circuits": [ + { + "id": 721448, + "name": "DDOS-DET2-PAR-FR-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 975, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 566, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae0", + "bundle": [ + "et-5/1/2", + "et-5/1/5" + ], + "bundle-parents": [ + "et-5/1/2", + "et-5/1/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02369 | SOF-ZAG", + "circuits": [], + "snmp-index": 584, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-ZAG", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "SOF-ZAG", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "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": "mx1.dub.ie.geant.net", + "name": "lt-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 687, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 852, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "et-3/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER PIONIER P_AE11 SRF9937611 |", + "circuits": [], + "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.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" + } + ], + "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": "rt2.tar.ee.geant.net", + "name": "ae1", + "bundle": [ + "et-0/0/1" + ], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02350 | HAM-TAR", + "circuits": [], + "snmp-index": 602, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-TAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "HAM-TAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-1/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 680, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "irb.998", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #qfx-management-dub-ie| EXFO management", + "circuits": [], + "snmp-index": 960, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae10.315", + "bundle": [], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER SURF HEANET #AMS-DUB-KNMI-ME-1-SURF-HEANET-20045 $GS-00631 |", + "circuits": [ + { + "id": 705896, + "name": "AMS-DUB-KNMI-ME-1-SURF-HEANET-20045", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 707, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURF", + "interface_type": "LOGICAL" + }, + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "ae10.110", + "bundle": [], + "bundle-parents": [ + "xe-0/1/6", + "xe-0/1/7" + ], + "description": "SRV_L2CIRCUIT CUSTOMER RENAM COGENT #bud-chi-EAP-RENAM-COGENT-22038 $GS-02110", + "circuits": [ + { + "id": 721471, + "name": "BUD-CHI-EAP-RENAM-COGENT-22038", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 564, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + { + "name": "COGENT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/10", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae2 | PAR-PRD-ESX2 SLOT0 PORT4 VMNIC3", + "circuits": [ + { + "id": 658600, + "name": "730XD-2-SLOT0-PORT4-VMNIC3-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 640, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae3.998", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex4300-management-rig-lv| SW1-EX4300 MANAGEMENT", + "circuits": [ + { + "id": 721430, + "name": "EX4300-MANAGEMENT-RIG-LV", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 605, + "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": [], + "snmp-index": 1055, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/7.1115", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2Circuit Infrastructure GEANT GEANT #UAT-Test-Interconnect $GS-11115 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 724242, + "name": "UAT-TEST-INTERCONNECT", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1060, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-7/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 100GB LR4 GEN1 CFP INSTALLED", + "circuits": [], + "snmp-index": 584, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-1/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC BIX P_AE18 SRF9949020 | GEANT 10G #2 | VH-NX7710-1 Eth1/32", + "circuits": [], + "snmp-index": 675, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 607, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae1 | FRA-PRD-ESX01 SLOT0 PORT4 VMNIC3", + "circuits": [ + { + "id": 658452, + "name": "730XD-1-SLOT0-PORT4-VMNIC3", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 526, + "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": [], + "snmp-index": 555, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "ae3", + "bundle": [ + "xe-0/1/7" + ], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt2-sw1 (ex3400)", + "circuits": [], + "snmp-index": 592, + "dashboards": [], + "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": [], + "snmp-index": 538, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 1566, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RENAM P_AE10 SRF21066 | RENAM ID: MX240 xe-1/0/7-AP1-L1", + "circuits": [], + "snmp-index": 561, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "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": [], + "snmp-index": 573, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-LR | ", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae7.0", + "bundle": [], + "bundle-parents": [ + "et-8/0/4", + "et-8/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-PAR-800G-IPTRUNK $GS-00040 | GEN-PAR | Coriant G30 800G", + "circuits": [ + { + "id": 721721, + "name": "GEN-PAR-800G-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1053, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-PAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEN-PAR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT UBUNTUNET SRF0000001 $GA-01452 | GEANT+", + "circuits": [], + "snmp-index": 1465, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 673, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 679, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/22", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae17 | FRA-PRD-ESX05 SLOT? PORT2 VMNIC9", + "circuits": [ + { + "id": 658548, + "name": "730XD-5-VMNIC9", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 538, + "dashboards": [], + "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" + } + ], + "snmp-index": 610, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-4/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1044, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1302, + "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 $GA-02002 | LIS-MAD | 200G", + "circuits": [], + "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": "mx1.buc.ro.geant.net", + "name": "ae11", + "bundle": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-2/0/1", + "xe-2/0/2" + ], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-2/0/1", + "xe-2/0/2" + ], + "description": "LAG CUSTOMER ROEDUNET SRF998829 $GA-01934 |", + "circuits": [], + "snmp-index": 549, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ROEDUNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ROEDUNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.4005", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN CUSTOMER NORDUNET #NL-NORDUNET-LHCONE-IPV6 $GS-00839 | ASN2603 |", + "circuits": [ + { + "id": 734550, + "name": "NL-NORDUNET-LHCONE-IPV6", + "type": "L3-VPN", + "status": "non-monitored" + } + ], + "snmp-index": 1156, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/24", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX05 SLOT? PORT1 VMNIC8 - VSAN PORT", + "circuits": [ + { + "id": 658644, + "name": "730XD-5-VMNIC8", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 539, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE2 | rt1-sw1(ex3400) | ", + "circuits": [], + "snmp-index": 541, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "rt2.bru.be.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 936, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae4", + "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-01769 | MIL2-VIE |", + "circuits": [], + "snmp-index": 667, + "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": "ae16.197", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mad-OFELIA-BELnet-RedIRIS-14001 $GS-00679 |", + "circuits": [ + { + "id": 719498, + "name": "BRU-MAD-OFELIA-BELNET-REDIRIS-14001", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1074, + "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": "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" + } + ], + "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.ams.nl.geant.net", + "name": "et-7/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | AMS-HAM", + "circuits": [], + "snmp-index": 1391, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-HAM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-HAM", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1293, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/10", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae2 | FRA-PRD-ESX02 SLOT0 PORT4 VMNIC3", + "circuits": [ + { + "id": 658617, + "name": "730XD-2-SLOT0-PORT4-VMNIC3", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 628, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 844, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 814, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "KIFU", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KIFU", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "et-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | RIG-RIG | RIG-RIG-LL1", + "circuits": [], + "snmp-index": 627, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-RIG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RIG-RIG", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "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": "mx1.buc.ro.geant.net", + "name": "xe-2/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 772, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/3/2.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-ams-nl-bwctl new | BWCTL CONTACT: ivan.garnizov@fau.de", + "circuits": [ + { + "id": 708155, + "name": "PS-AMS-NL-BWCTL", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 926, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 934, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.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" + } + ], + "snmp-index": 1154, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + { + "name": "SINGAREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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.dub.ie.geant.net", + "name": "ae10.2281", + "bundle": [], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER HEANET NETHERLIGHT #AMS-DUB-LOFAR-HEANET-NETHERLIGHT-17003 $GS-00632 |", + "circuits": [ + { + "id": 734624, + "name": "AMS-DUB-LOFAR-HEANET-NETHERLIGHT-17003", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 695, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "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-MAR01 |", + "circuits": [], + "snmp-index": 580, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-MAR01", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEN-MAR01", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae10.100", + "bundle": [], + "bundle-parents": [ + "et-5/0/2", + "et-5/0/5" + ], + "description": "SRV_GLOBAL CUSTOMER ARNES #ARNES-AP2 $GS-00427 | ASN2107 | ARNES AP2", + "circuits": [ + { + "id": 730328, + "name": "ARNES-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 846, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ARNES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ARNES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 587, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1048, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "et-1/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ARNES P_AE11 SRF9950483 | ARNES AP1 LL2", + "circuits": [], + "snmp-index": 771, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ARNES", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ARNES", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "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": "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" + } + ], + "snmp-index": 832, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "ae3", + "bundle": [ + "xe-0/1/7" + ], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 587, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1061, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae19", + "bundle": [ + "et-9/1/2" + ], + "bundle-parents": [ + "et-9/1/2" + ], + "description": "LAG PRIVATE Verizon Digital SRF9942909 $GA-01851 | VIENNA-VERIZON-1-LAG", + "circuits": [], + "snmp-index": 699, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae6", + "bundle": [ + "et-10/0/2", + "et-10/0/5" + ], + "bundle-parents": [ + "et-10/0/2", + "et-10/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02204 | BIL-MAD | 200G", + "circuits": [], + "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": "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" + } + ], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-9/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RESTENA P_AE18 | FRA-LUX-LEASEDSPAN| Interxion CID: DE129379 |COLT CID:441284192 ", + "circuits": [], + "snmp-index": 666, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RESTENA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RESTENA", + "interface_type": "PHYSICAL" + } + ], + "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 #ams-bru-GENI-BELNET-I2-13012 $GS-00628 |", + "circuits": [ + { + "id": 706804, + "name": "AMS-BRU-GENI-BELNET-I2-13012", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "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": "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" + } + ], + "snmp-index": 1590, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 669, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-1/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 569, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 579, + "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" + } + ], + "snmp-index": 564, + "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": "ge-0/2/1.132", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ocvm-lon-uk-esxi | OC VM ESXi", + "circuits": [ + { + "id": 660431, + "name": "OCVM-LON-UK-ESXI", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1437, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae23", + "bundle": [ + "xe-3/2/0", + "xe-3/2/1" + ], + "bundle-parents": [ + "xe-3/2/0", + "xe-3/2/1" + ], + "description": "LAG INFRASTRUCTURE LAN $GA-01837 | Uplink LAG to sw4.lon.uk.geant.net", + "circuits": [], + "snmp-index": 719, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1053, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.2669", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO.T4 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 637, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "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": [], + "snmp-index": 539, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-1/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 850, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/3/3.1000", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT GEANT #ams-lon-TEST-INTERFACE-FOR-GCSTESTING-AMS $GS-02219|", + "circuits": [ + { + "id": 723849, + "name": "ETHS-MX1.AMS.NL_GE-0/3/6.1000-MX1.LON.UK_GE-0/3/2.1000", + "type": "GEANT - GBS", + "status": "non-monitored" + } + ], + "snmp-index": 1423, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "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": [], + "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": "srx2.ch.office.geant.net", + "name": "ge-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 521, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "ae10.83", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_GLOBAL CUSTOMER LAT #LAT-AP2 $GS-00485 | ASN5538 |", + "circuits": [ + { + "id": 679357, + "name": "LAT-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 570, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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": "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" + } + ], + "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": "rt1.mil2.it.geant.net", + "name": "ae7.0", + "bundle": [], + "bundle-parents": [ + "xe-0/0/2", + "xe-0/0/3", + "xe-0/0/4", + "xe-0/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH-MIL2-IPTRUNK $GS-00014 | ATH-MIL2 |", + "circuits": [ + { + "id": 708731, + "name": "ATH-MIL2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 754, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH-MIL2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae2.28", + "bundle": [], + "bundle-parents": [ + "xe-5/0/2", + "xe-5/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-SPLUNK-SERVER1-iDRAC", + "circuits": [ + { + "id": 733020, + "name": "AMS-SPLUNK-SERVER1-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1493, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/22", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae15 | FRA-PRD-ESX05 SLOT? PORT3 VMNIC6", + "circuits": [], + "snmp-index": 642, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 750, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-0", + "circuits": [], + "snmp-index": 682, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.402", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #LON-Groove-2-Management | LON Groove 2 Direct Management", + "circuits": [ + { + "id": 661594, + "name": "LON-GROOVE-2-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1431, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.1008", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT CSTNET #NL-NETHERLIGHT-CSTNET-KAUST-1 $GS-02392 | ASN7497 | ", + "circuits": [ + { + "id": 734555, + "name": "NL-NETHERLIGHT-CSTNET-KAUST-1", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1138, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "CSTNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CSTNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "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": [], + "snmp-index": 1586, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 569, + "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": [], + "snmp-index": 943, + "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" + } + ], + "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": "mx1.par.fr.geant.net", + "name": "ge-0/3/2.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON-PAR-FR-NETFLOW | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", + "circuits": [ + { + "id": 708261, + "name": "FLOWMON-PAR-FR-NETFLOW", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1206, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "ae10.100", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL CUSTOMER EENET #EENET-AP2 $GS-00455 | ASN3221 |", + "circuits": [ + { + "id": 661642, + "name": "EENET-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 613, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "EENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | EEnet AP2", + "circuits": [], + "snmp-index": 567, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "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" + } + ], + "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": "rt1.pra.cz.geant.net", + "name": "et-2/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | CESNET AP upgrade#2", + "circuits": [], + "snmp-index": 896, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919783 | PAR01-DTNX10-1 XCM 2", + "circuits": [], + "snmp-index": 602, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX02 SLOT0 PORT1 VMNIC0", + "circuits": [ + { + "id": 658549, + "name": "730XD-2-SLOT0-PORT2-VMNIC1", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 620, + "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": [], + "snmp-index": 1266, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ae0", + "bundle": [ + "xe-0/0/0", + "xe-0/0/1", + "xe-1/1/0", + "xe-3/0/1" + ], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1", + "xe-1/1/0", + "xe-3/0/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01796 | ATH-ATH2 |", + "circuits": [], + "snmp-index": 520, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 676, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | MAR-MIL2 | ", + "circuits": [], + "snmp-index": 830, + "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": "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": "non-monitored" + } + ], + "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.cor.ie.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.498", + "bundle": [], + "bundle-parents": [], + "description": "SRV_EUMET-INT CUSTOMER EUMETSAT #EUMET-JEUNO-LON-CLPK-16027 $GS-01092 | EUMETSAT 5G link to NOAA College Park", + "circuits": [ + { + "id": 661180, + "name": "EUMET-JEUNO-LON-CLPK-16027", + "type": "EUMETSAT INTERNATIONAL", + "status": "operational" + } + ], + "snmp-index": 671, + "dashboards": [], + "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": [], + "snmp-index": 543, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae5.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-DUB-IPTRUNK $GS-02383| COR-DUB", + "circuits": [ + { + "id": 729955, + "name": "COR-DUB-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 607, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-DUB", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COR-DUB", + "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": [], + "snmp-index": 553, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 607, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | MAR-MIL2 | ", + "circuits": [], + "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.ams.nl.geant.net", + "name": "xe-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | SPLUNK AMS PEER02 link 2 | ", + "circuits": [], + "snmp-index": 633, + "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": [], + "snmp-index": 995, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 1025, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 684, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-11/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP7T2SF SRF0000001 | PAR BMS Server #4", + "circuits": [], + "snmp-index": 1194, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "xe-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to GEANT ODF P3", + "circuits": [], + "snmp-index": 656, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "lt-11/1/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #VIE-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 960, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 697, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-10/1/2", + "et-10/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL-PAR-IPTRUNK $GS-00016 | BIL-PAR |", + "circuits": [ + { + "id": 709873, + "name": "BIL-PAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 803, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BIL-PAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BIL-PAR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT ARN SRF22085 | ES-ARN-AP1-LL1", + "circuits": [], + "snmp-index": 794, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 510, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 727336, + "name": "BELNET-STAD-EXPRESSROUTE-VLAN4060", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 665, + "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": "lt-10/1/0.17", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT #VRF-CONNECTION-LON2-UK-VLAN17 $GS-00107 | L2Circuit into VRF (R&E Side)", + "circuits": [ + { + "id": 663022, + "name": "CAM-OFFICE-TO-AMS-OFFICE-L2CIRCUIT", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1005, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae4", + "bundle": [ + "et-2/0/2", + "et-2/0/5", + "et-2/1/2" + ], + "bundle-parents": [ + "et-2/0/2", + "et-2/0/5", + "et-2/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02340 | HAM-POZ-IPTRUNK", + "circuits": [], + "snmp-index": 800, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-POZ-IPTRUNK", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "HAM-POZ-IPTRUNK", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 924, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/16", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 533, + "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" + } + ], + "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": "mx2.lis.pt.geant.net", + "name": "ge-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 556, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/12", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1340, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 815, + "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": [], + "snmp-index": 1067, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-11/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | GEN-MAR |", + "circuits": [], + "snmp-index": 1219, + "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": "ae16.201", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/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" + } + ], + "snmp-index": 642, + "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": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 779, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae35.0", + "bundle": [], + "bundle-parents": [ + "xe-11/1/5" + ], + "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" + } + ], + "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": "qfx.lon2.uk.geant.net", + "name": "ge-1/0/37", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX11 IDRAC", + "circuits": [], + "snmp-index": 691, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae16.1", + "bundle": [], + "bundle-parents": [ + "et-3/1/2" + ], + "description": "SRV_GLOBAL CUSTOMER AMRES #AMRES-AP1 $GS-00425 | ASN13092 |", + "circuits": [ + { + "id": 725486, + "name": "AMRES-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 1048, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "AMRES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMRES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "rt1.mil2.it.geant.net", + "name": "xe-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0-RT1 TRUNK 20GB 1_2", + "circuits": [], + "snmp-index": 572, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #AMS2-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 624, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae12.100", + "bundle": [], + "bundle-parents": [ + "et-4/0/2" + ], + "description": "SRV_IAS PUBLIC AMS-IX #IX-PEERINGS-IN-AMS-IX $GS-00955 |", + "circuits": [], + "snmp-index": 1143, + "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.ams.nl.geant.net", + "name": "et-1/1/5.1726", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SCION KAUST #ams-gen-KAUST-SCION $GS-02418| ", + "circuits": [ + { + "id": 732831, + "name": "AMS-GEN-KAUST-SCION", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1143, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + }, + { + "name": "KAUST", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 670, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1022, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.333", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "description": "SRV_IAS CUSTOMER SURF #SURF-AP1-IAS IASPS $GS-00587 | ASN1103 |", + "circuits": [ + { + "id": 734590, + "name": "SURF-AP1-IAS", + "type": "GEANT PEERING", + "status": "non-monitored" + } + ], + "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": "rt1.lju.si.geant.net", + "name": "ae11.333", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-1/1/5" + ], + "description": "SRV_IAS CUSTOMER ARNES #ARNES-AP1-IAS IASPS $GS-00552 | ASN2107", + "circuits": [ + { + "id": 730044, + "name": "ARNES-AP1-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 585, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "ARNES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ARNES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/1/7.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #par-lon2-SUPERPOP-QFX-GEANT $GS-00080 |", + "circuits": [ + { + "id": 729412, + "name": "PAR-LON2-SUPERPOP-QFX-GEANT", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 1120, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | THE-THE", + "circuits": [], + "snmp-index": 594, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "THE-THE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "THE-THE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.2", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GLOBAL CUSTOMER BELNET #BELNET-AP1 $GS-00437 | ASN2611 |", + "circuits": [ + { + "id": 727380, + "name": "BELNET-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 618, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS VEEAM SRF0000001 | R730xd port2", + "circuits": [], + "snmp-index": 665, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 886, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 549, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/0/2:2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.510", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #NL-INTERNET2-VLAN510 $GS-00894 | ASN11537 |", + "circuits": [ + { + "id": 734549, + "name": "NL-INTERNET2-VLAN510", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1135, + "dashboards": [ + "RE_PEER" + ], + "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/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1345, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae8", + "bundle": [ + "et-9/0/4", + "et-9/1/4" + ], + "bundle-parents": [ + "et-9/0/4", + "et-9/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE #LON2-PAR-800G-LAG $GA-01824 | LON2-PAR", + "circuits": [], + "snmp-index": 666, + "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": "et-2/0/1.3694", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA | deltaId+be3bfccb-3b34-42b2-b14b-0a46598ed466:uuid+f93c260a-73c7-4797-90d8-8ddcd173b117 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 1021, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3915", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GCS CUSTOMER NORDUNet MICROSOFT #NORDUNet-SUNET-ExpressRoute-VLAN3915 $GS-01161 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731508, + "name": "NORDUNET-SUNET-EXPRESSROUTE-VLAN3915", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 967, + "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": "ge-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS amt1.lon2.uk FXP interface", + "circuits": [], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "et-1/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 681, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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 | 200G", + "circuits": [], + "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": "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": [], + "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.lon.uk.geant.net", + "name": "xe-1/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Was IUCC: GNT-E10-005", + "circuits": [], + "snmp-index": 551, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/0.111", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lhcone-bud-hu-data| Test PerfSonar LHCONE - data", + "circuits": [ + { + "id": 663002, + "name": "PS-LHCONE-BUD-HU-DATA", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 626, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "ae2.998", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-ath2-gr | SW1-EX3400 MANAGEMENT", + "circuits": [ + { + "id": 734149, + "name": "EX3400-MANAGEMENT-ATH2-GR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 604, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 566, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "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": [], + "snmp-index": 517, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae10", + "bundle": [ + "et-5/0/2", + "et-5/0/5" + ], + "bundle-parents": [ + "et-5/0/2", + "et-5/0/5" + ], + "description": "LAG CUSTOMER ARNES $GA-01866 | ARNES-AP2-LAG", + "circuits": [], + "snmp-index": 845, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ARNES", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ARNES", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "ae15.88", + "bundle": [], + "bundle-parents": [ + "et-0/0/2", + "et-1/0/2", + "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" + } + ], + "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": "rt1.mar.fr.geant.net", + "name": "xe-3/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 669, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "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" + } + ], + "snmp-index": 1847, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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.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" + } + ], + "snmp-index": 1219, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-3/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER DFN P_AE10 SRF9943111 | DFN-AP2-LL2", + "circuits": [], + "snmp-index": 927, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 601, + "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" + } + ], + "snmp-index": 1129, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.102", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE-1-MANAGEMENT | AMS GROOVE 1 DIRECT MANAGEMENT", + "circuits": [ + { + "id": 662934, + "name": "AMS-GROOVE-1-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1080, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 679, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 522, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4064", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MSER-NCCN-ExpressRoute-VLAN4064 $GS-02370 | ", + "circuits": [ + { + "id": 729639, + "name": "BELNET-MSER-NCCN-EXPRESSROUTE-VLAN4064", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 698, + "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": "fxp0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE MANAGEMENT | AM SRX-1 Router", + "circuits": [], + "snmp-index": 1, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | HAM-POZ", + "circuits": [], + "snmp-index": 785, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-POZ", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HAM-POZ", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1077, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "EUMETSAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EUMETSAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 1295, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | SOF-THE", + "circuits": [], + "snmp-index": 595, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-THE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SOF-THE", + "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": [], + "snmp-index": 974, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4081", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ARPGAN-ExpressRoute-VLAN4081 $GS-01130 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711862, + "name": "BELNET-ARPGAN-EXPRESSROUTE-VLAN4081", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 636, + "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": "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": "non-monitored" + } + ], + "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": "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": [], + "snmp-index": 769, + "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": [], + "snmp-index": 819, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "ae3.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT2-THE-GR | DCN MANAGEMENT ", + "circuits": [ + { + "id": 732799, + "name": "DCN-MANAGEMENT2-THE-GR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/2/3.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER ROEDUNET #buc-chi-EAP-RENAM-ROEDUNET-22088 $GS-02213 |", + "circuits": [ + { + "id": 724164, + "name": "BUC-CHI-EAP-RENAM-ROEDUNET-22088", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 799, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "ROEDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ROEDUNET", + "interface_type": "LOGICAL" + } + ], + "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": [], + "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.lon2.uk.geant.net", + "name": "xe-2/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | FORTIGATE CLUSTER LON2-2 2_2 | No optic installed", + "circuits": [], + "snmp-index": 1596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "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" + } + ], + "snmp-index": 798, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.409", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/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" + } + ], + "snmp-index": 1091, + "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": "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" + } + ], + "snmp-index": 1140, + "dashboards": [ + "IAS_UPSTREAM" + ], + "dashboard_info": { + "name": "COGENT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COGENT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 1308, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | DDOS Mitigation Server 1 DATA link | ", + "circuits": [], + "snmp-index": 931, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CESNET P_AE11 SRF9922157 | ", + "circuits": [], + "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": "mx2.zag.hr.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 653, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 516, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-0/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 548, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-2/0/0.1640", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER GRnet SCION #ath-par-SCION-GRNET-SCION-223079 $GS-02382 |", + "circuits": [ + { + "id": 729936, + "name": "ATH-PAR-SCION-GRNET-SCION-223079", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 711, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + }, + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.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" + } + ], + "snmp-index": 959, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1232, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "et-3/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | LON1-LON2-800G | to LON02-GRV1 1/3/9", + "circuits": [], + "snmp-index": 680, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON1-LON2-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LON1-LON2-800G", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS | QFX2 C0 MGMT", + "circuits": [], + "snmp-index": 526, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/0/2:3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 538, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.333", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_IAS CUSTOMER BELNET #BELNET-AP1-IAS IASPS $GS-00524 | ASN2611 |", + "circuits": [ + { + "id": 727291, + "name": "BELNET-AP1-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 620, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "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.25", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GCS CUSTOMER NORDUNet SUNET | #NORDUNet-SUNET-ExpressRoute-VLAN3915 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731508, + "name": "NORDUNET-SUNET-EXPRESSROUTE-VLAN3915", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 606, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "et-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | Potential ITER 2nd 100G | LR4 Installed", + "circuits": [], + "snmp-index": 698, + "dashboards": [], + "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" + } + ], + "snmp-index": 999, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access | To GTS EX P13", + "circuits": [], + "snmp-index": 743, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/6.60", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-bud-hu| KVMoIP", + "circuits": [ + { + "id": 663025, + "name": "KVMOIP-BUD-HU", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 759, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae10.100", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL CUSTOMER EENET #EENET-AP1 $GS-00454 | ASN3221 | EEnet", + "circuits": [ + { + "id": 661933, + "name": "EENET-AP1", + "type": "GEANT IP", + "status": "non-monitored" + } + ], + "snmp-index": 616, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "EENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EENET", + "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": [ + { + "id": 712144, + "name": "GEANT-CORPORATE-VIAVODAFONE-VRF", + "type": "CORPORATE", + "status": "operational" + } + ], + "snmp-index": 545, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 993, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4.202", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #GEN-Groove-1-Management | GEN Groove 1 Direct Management", + "circuits": [ + { + "id": 663059, + "name": "GEN-GROOVE-1-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1451, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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.par.fr.geant.net", + "name": "ae15.498", + "bundle": [], + "bundle-parents": [ + "et-1/0/5" + ], + "description": "SRV_EUMET-INT CUSTOMER EUMETSAT #EUMET-JEUNO-PAR-DENV-16026 $GS-00456 | EUMETSAT 5G link to NOAA Denver", + "circuits": [ + { + "id": 661318, + "name": "EUMET-JEUNO-PAR-DENV-16026", + "type": "EUMETSAT INTERNATIONAL", + "status": "operational" + } + ], + "snmp-index": 828, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 610, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 569, + "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" + } + ], + "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.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" + } + ], + "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": "rt1.bru.be.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.820", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT NKN #NL-NKN $GS-00899 | ASN9885 |", + "circuits": [ + { + "id": 734561, + "name": "NL-NKN", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1136, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "NKN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NKN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "et-11/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RESTENA AP2 P_AE18 SRF19026 |", + "circuits": [], + "snmp-index": 1198, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RESTENA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RESTENA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/17", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.1916", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RARE INTERNET2 RNP #AMS-PAR-RARE-INTERNET2-RNP-20061 $GS-00655 |", + "circuits": [ + { + "id": 705913, + "name": "AMS-PAR-RARE-INTERNET2-RNP-20061", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1024, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "et-3/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | BRU-PAR |", + "circuits": [], + "snmp-index": 844, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-PAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BRU-PAR", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/10", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 525, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 599, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/2/0.21", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #psmp-buc-ro-drac| HADES DRAC", + "circuits": [ + { + "id": 662935, + "name": "PSMP-BUC-RO-DRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 595, + "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": [], + "snmp-index": 971, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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.lon.uk.geant.net", + "name": "et-4/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER JISC P_AE10 SRF18084 | JISC-AP1-LL2 | JISC ID: TCF:21304-23275", + "circuits": [], + "snmp-index": 867, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae3.27", + "bundle": [], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #HAM-DTN-SERVER-1-iDRAC", + "circuits": [ + { + "id": 732834, + "name": "HAM-DTN-SERVER-1-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1018, + "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" + } + ], + "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": "qfx.par.fr.geant.net", + "name": "ae14", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN | QFX.LON2.UK AE29", + "circuits": [], + "snmp-index": 593, + "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" + } + ], + "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": "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": [], + "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": "mx1.lon.uk.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 594, + "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" + } + ], + "snmp-index": 974, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.673", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT KREONET #NL-KREONET $GS-00897 | ASN17579 |", + "circuits": [ + { + "id": 734548, + "name": "NL-KREONET", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1116, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "KREONET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KREONET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/8.105", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT ASGC #NL-ASGC $GS-00888 | ASN9264 |", + "circuits": [ + { + "id": 663171, + "name": "NL-ASGC", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1126, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ASGC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ASGC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 1590, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae12.0", + "bundle": [], + "bundle-parents": [ + "xe-2/1/0" + ], + "description": "SRV_IAS PRIVATE SETCOR #SETCOR-HR-61211 $GS-00942 | ASN 61211", + "circuits": [ + { + "id": 712554, + "name": "SETCOR-HR-61211", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "snmp-index": 715, + "dashboards": [ + "IAS_PEERS", + "IAS_PRIVATE" + ], + "dashboard_info": { + "name": "SETCOR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SETCOR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER MARNET P_AE17 |Neotel ID: CIETH3N00005", + "circuits": [], + "snmp-index": 731, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MARNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MARNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 579, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ae12", + "bundle": [ + "et-10/0/2", + "et-10/0/5", + "et-10/1/2" + ], + "bundle-parents": [ + "et-10/0/2", + "et-10/0/5", + "et-10/1/2" + ], + "description": "LAG CUSTOMER JISC SRF9926857 $GA-01760 | #JISC-AP2-LAG | ", + "circuits": [], + "snmp-index": 629, + "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": "ge-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | GRNET AP2_2 |", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 610, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae3", + "bundle": [ + "xe-0/1/7" + ], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt2-sw2 (ex3400)", + "circuits": [], + "snmp-index": 599, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "ae0", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01714 | MX AE30", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 569, + "dashboards": [], + "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": [], + "snmp-index": 543, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 654, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/7.0", + "bundle": [], + "bundle-parents": [], + "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" + } + ], + "snmp-index": 881, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 683, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 848, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae10", + "bundle": [ + "et-0/0/2" + ], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "LAG CUSTOMER LAT $GA-02073 | LAT-AP1-LAG", + "circuits": [], + "snmp-index": 588, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 664, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1217, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "et-10/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | AKAMAI 100GB PEERING", + "circuits": [], + "snmp-index": 1048, + "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" + } + ], + "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": "rt1.mil2.it.geant.net", + "name": "xe-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 577, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-1/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-SR", + "circuits": [], + "snmp-index": 1026, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/0/1:0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae25.100", + "bundle": [], + "bundle-parents": [ + "xe-5/0/1" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT NIKS #NL-NIKS $GS-01183 | ASN3267 |SRF21113 ", + "circuits": [ + { + "id": 734865, + "name": "NL-NIKS", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1371, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "NIKS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NIKS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae10.111", + "bundle": [], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "description": "SRV_L3VPN CUSTOMER DFN #DFN-AP2-LHCONE $GS-00817 | ASN680", + "circuits": [ + { + "id": 732578, + "name": "DFN-AP2-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 999, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE OPTIMA-TELEKOM SRF9928535 $GA-01493 | ASN34594 | For Eduzone", + "circuits": [], + "snmp-index": 657, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "fxp0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE MANAGEMENT | CH SRX-1 Router", + "circuits": [], + "snmp-index": 1, + "dashboards": [], + "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": [], + "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.mad.es.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/13", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "irb.888", + "bundle": [], + "bundle-parents": [], + "description": "SRV_TAAS INFRASTRUCTURE GTS #TAAS-CONTROL-AMSTERDAM-LOGICAL-INTERFACE | TAAS CONTROL", + "circuits": [], + "snmp-index": 1170, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae11.400", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "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" + } + ], + "snmp-index": 939, + "dashboards": [ + "GCS" + ], + "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-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" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "et-5/0/5.3900", + "bundle": [], + "bundle-parents": [], + "description": " SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-LAUREA-ExpressRoute-VLAN3900 $GS-01158 |", + "circuits": [ + { + "id": 706058, + "name": "NORDUNET-LAUREA-EXPRESSROUTE-VLAN3900", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1180, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 593, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "FCCN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FCCN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT SINET P_AE20 | NII Circuit ID: NL116823-4", + "circuits": [], + "snmp-index": 955, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae1", + "bundle": [ + "xe-2/1/2", + "xe-2/1/3" + ], + "bundle-parents": [ + "xe-2/1/2", + "xe-2/1/3" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 |mx2-sw1(ex3400)", + "circuits": [], + "snmp-index": 585, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915889 | GEN01-DTNX10-1 XCM 1", + "circuits": [], + "snmp-index": 607, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-5/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT SINET P_AE20 | NII Circuit ID: NL245873", + "circuits": [], + "snmp-index": 990, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.3068", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RARE CANARIE #AMS-AMS-RARE-CANARIE-21013 $GS-00627 |", + "circuits": [ + { + "id": 734551, + "name": "AMS-AMS-RARE-CANARIE-21013", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 976, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CANARIE", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-4/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | LJU01-MIL2", + "circuits": [], + "snmp-index": 936, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-MIL2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/14", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 530, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae14.2061", + "bundle": [], + "bundle-parents": [ + "et-1/1/5", + "et-8/0/2", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_MDVPN CUSTOMER RENATER #RENATER-BGP-LU-COC-AP2 $GS-01059 | MDVPN CoC - RENATER AP2", + "circuits": [ + { + "id": 663121, + "name": "RENATER-BGP-LU-COC-AP2", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 788, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENATER", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": 727778, + "name": "BELNET-JUST-EXPRESSROUTE-VLAN4063", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 607, + "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": "et-10/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | BIL-PAR | Infinera BIL-GRV1 Facing PAR-GRV1 1/1/3", + "circuits": [], + "snmp-index": 1002, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BIL-PAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BIL-PAR", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 611, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 635, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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.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" + } + ], + "snmp-index": 1215, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-3/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 693, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae13.333", + "bundle": [], + "bundle-parents": [ + "xe-0/0/7" + ], + "description": "SRV_IAS CUSTOMER RASH #RASH-AP1-IAS IASGWS $GS-00540 | ASN57961 | default route", + "circuits": [ + { + "id": 661308, + "name": "RASH-AP1-IAS", + "type": "GWS - INDIRECT", + "status": "non-monitored" + } + ], + "snmp-index": 760, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "RASH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RASH", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae3", + "bundle": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 |mx1-sw1(ex3400)", + "circuits": [], + "snmp-index": 812, + "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" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "xe-9/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | WAS Google", + "circuits": [], + "snmp-index": 741, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.141", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "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" + } + ], + "snmp-index": 675, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDCLARA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDCLARA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 672, + "dashboards": [], + "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": [], + "snmp-index": 1299, + "dashboards": [], + "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": [], + "snmp-index": 704, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/0/2:3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 538, + "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": [], + "snmp-index": 1361, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 671, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "et-7/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | HAM-POZ", + "circuits": [], + "snmp-index": 1060, + "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": "ae10.3015", + "bundle": [], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER JISC JISC #DUB-LON-NRENBBEXT-JISC-13015 $GS-00690 | backup for niran", + "circuits": [ + { + "id": 732288, + "name": "DUB-LON-NRENBBEXT-JISC-13015", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 733, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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.vie.at.geant.net", + "name": "xe-7/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE FACEBOOK P_AE14 | FB-ID: 8644659", + "circuits": [], + "snmp-index": 824, + "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" + } + ], + "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": "rt1.ham.de.geant.net", + "name": "xe-4/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED |NOKIA RT0-RT1 TRUNK 20GB 1_2", + "circuits": [], + "snmp-index": 1033, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-7/0/5", + "et-7/1/2", + "et-7/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #HAM-POZ-IPTRUNK $GS-02339| HAM-POZ-IPTRUNK", + "circuits": [ + { + "id": 728444, + "name": "HAM-POZ-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1070, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-POZ-IPTRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HAM-POZ-IPTRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GRNET P_AE11 SRF18-058 | IDC-BBH-MMR13-PP9PA/CAS01/P1.2 | OVERSUB-RISK-MPC3E", + "circuits": [], + "snmp-index": 632, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #LIS-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 651, + "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" + } + ], + "snmp-index": 641, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "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" + } + ], + "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.lon2.uk.geant.net", + "name": "xe-2/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | SPLUNK LON2 PEER01 link Slot4 P1 | ", + "circuits": [], + "snmp-index": 1581, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3908", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #Nordunet-LTU-ExpressRoute-Vlan3908 $GS-01159 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731511, + "name": "NORDUNET-LTU-EXPRESSROUTE-VLAN3908", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 964, + "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": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 576, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED PCNL-90556228| PHY CUSTOMER MICROSOFT EXPRESSROUTE #1 SRF20047 |GEANT-EXR01-AMS21-PRI-06162020 ===MX1.AMS xe=2/2/1", + "circuits": [], + "snmp-index": 646, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.3000", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #UK-INTERNET2-WIX $GS-00920 | ASN11537 | UK-Internet2", + "circuits": [ + { + "id": 661252, + "name": "UK-INTERNET2-WIX", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 873, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 558, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | OLD PSMP OWAMP", + "circuits": [], + "snmp-index": 519, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/8.111", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN RE_INTERCONNECT ASGC #NL-ASGC-LHCONE $GS-00834 | ASN9264 |", + "circuits": [ + { + "id": 662982, + "name": "NL-ASGC-LHCONE", + "type": "L3-VPN", + "status": "non-monitored" + } + ], + "snmp-index": 1127, + "dashboards": [ + "LHCONE", + "LHCONE_PEER", + "RE_PEER" + ], + "dashboard_info": { + "name": "ASGC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ASGC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "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" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "et-10/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER SURF P_AE11 | 200GB AP2 2_2", + "circuits": [], + "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": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.3925", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT SINGAREN #NL-SINGAREN $GS-02202 | ASN23855 |", + "circuits": [ + { + "id": 734582, + "name": "NL-SINGAREN", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1155, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "SINGAREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINGAREN", + "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" + } + ], + "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": "rt1.bil.es.geant.net", + "name": "xe-3/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to GEANT ODF P4", + "circuits": [], + "snmp-index": 657, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-4/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED |NOKIA RT0-RT1 TRUNK 20GB 2_2", + "circuits": [], + "snmp-index": 1034, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #THE-THE-IPTRUNK $GS-02427| THE-THE", + "circuits": [ + { + "id": 734325, + "name": "THE-THE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 605, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "THE-THE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "THE-THE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae30", + "bundle": [ + "et-9/1/5" + ], + "bundle-parents": [ + "et-9/1/5" + ], + "description": "LAG PRIVATE Verizon Digital SRF9942909 $GA-02223 | VIENNA-VERIZON-2-LAG", + "circuits": [], + "snmp-index": 710, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1054, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae2.998", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-bru-be| SW1-EX3400 MANAGEMENT", + "circuits": [ + { + "id": 727159, + "name": "EX3400-MANAGEMENT-BRU-BE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 604, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GRNET P_AE11 SRF21030 | IDC-PRIV-5514 Ch56 Koletti ", + "circuits": [], + "snmp-index": 595, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-KAU-IPTRUNK $GS-00042 | KAU-KAU|", + "circuits": [ + { + "id": 709341, + "name": "KAU-KAU-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 606, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-KAU", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KAU-KAU", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | mx2-sw1 (ex3400)", + "circuits": [], + "snmp-index": 742, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae2", + "bundle": [ + "xe-0/1/0" + ], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN $GA-02054 | rt1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 623, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-5/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 100GB LR4 GEN1 CFP INSTALLED", + "circuits": [], + "snmp-index": 826, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae5", + "bundle": [ + "xe-0/0/5", + "xe-0/0/6" + ], + "bundle-parents": [ + "xe-0/0/5", + "xe-0/0/6" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02456 | AMS-AMS", + "circuits": [], + "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.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" + } + ], + "snmp-index": 1002, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NEA3R", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURFNET", + "interface_type": "LOGICAL" + }, + { + "name": "NEA3R", + "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": [], + "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": "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" + } + ], + "snmp-index": 1235, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae12 | PAR-PRD-ESX4 SLOT0 PORT2 VMNIC1", + "circuits": [ + { + "id": 658633, + "name": "730XD-4-SLOT0-PORT2-VMNIC1-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 635, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1125", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET INTERNET2 #bru-par-GENI-iMinds-Internet2-15008 $GS-00681 |", + "circuits": [ + { + "id": 706950, + "name": "BRU-PAR-GENI-IMINDS-INTERNET2-15008", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 659, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "IMINDS", + "interface_type": "LOGICAL" + }, + { + "name": "BELNET", + "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": [], + "snmp-index": 1446, + "dashboards": [ + "L2_CIRCUIT" + ], + "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": [], + "snmp-index": 539, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 913, + "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" + } + ], + "snmp-index": 1210, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/1/1.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER RENAM #buc-chi-EAP-RENAM-ROEDUNET-22088 $GS-02213|", + "circuits": [ + { + "id": 724164, + "name": "BUC-CHI-EAP-RENAM-ROEDUNET-22088", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 592, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.3810", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT #WIX-TO-NETHERLIGHT-TEST3 $GS-00769 | WIX-to-Netherlight test 03/12/2014", + "circuits": [ + { + "id": 719130, + "name": "WIX-TO-NETHERLIGHT-TEST3", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1049, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "WIX", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "WIX", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.30", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_MDVPN CUSTOMER HEANET AP2 #HEANET-BGP-LU-COC-AP2 $GS-01009 | MDVPN CoC - HEANET AP2", + "circuits": [ + { + "id": 732235, + "name": "HEANET-BGP-LU-COC-AP2", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 644, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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.bud.hu.geant.net", + "name": "et-8/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | BUD-VIE | GRV3 1/1/3 ", + "circuits": [], + "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": "mx2.ath.gr.geant.net", + "name": "ge-2/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 672, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS A10-DDOS-SCRUBBING P_AE15 | A10 e2 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", + "circuits": [], + "snmp-index": 1277, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae12.1001", + "bundle": [], + "bundle-parents": [ + "et-4/0/5", + "et-8/0/5", + "et-11/0/2" + ], + "description": "SRV_MDVPN CUSTOMER GARR #GARR-BGP-LU-COC-AP2 $GS-01006 | MDVPN CoC - GARR AP2", + "circuits": [ + { + "id": 663201, + "name": "GARR-BGP-LU-COC-AP2", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 886, + "dashboards": [ + "MDVPN_CUSTOMERS", + "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": "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": [], + "snmp-index": 685, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4.402", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #GEN-Groove-3-Management | GEN Groove 3 Direct Management", + "circuits": [ + { + "id": 662950, + "name": "GEN-GROOVE-3-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1455, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DTN-Project #HAM-DTN-10G-DATA $GA-02286", + "circuits": [], + "snmp-index": 552, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae5", + "bundle": [ + "et-4/0/4", + "et-4/1/4" + ], + "bundle-parents": [ + "et-4/0/4", + "et-4/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01961, | FRA-GEN-IPTRUNK", + "circuits": [], + "snmp-index": 940, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/0/1:1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 532, + "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" + } + ], + "snmp-index": 761, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINGAREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINGAREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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.lon2.uk.geant.net", + "name": "xe-2/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | SPLUNK LON2 PEER02 link Slot7 P1 | ", + "circuits": [], + "snmp-index": 1592, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-5/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE- WAS SINET", + "circuits": [], + "snmp-index": 885, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.40", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "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" + } + ], + "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": "rt1.rig.lv.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "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": [], + "snmp-index": 542, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ROEDUNET", + "circuits": [], + "snmp-index": 771, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ROEDUNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ROEDUNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae23.21", + "bundle": [], + "bundle-parents": [ + "xe-3/2/0", + "xe-3/2/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS GEANT IT #DataDomain-01-DATA PORT |", + "circuits": [ + { + "id": 729862, + "name": "DATADOMAIN-01-DATA", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 640, + "dashboards": [], + "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 | 200G", + "circuits": [], + "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": "mx1.mad.es.geant.net", + "name": "ae16.186", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mad-Fed4FIRE-BELNET-RedIRIS-14010 $GS-00674 |", + "circuits": [ + { + "id": 719548, + "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14010", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1062, + "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/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | mx1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 1262, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-3/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER AMRES P_AE16 SRF22095 |To Node:ZAG01-GRV6 1/1/3", + "circuits": [], + "snmp-index": 1006, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "AMRES", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMRES", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "xe-4/1/4", + "xe-8/0/3", + "xe-11/2/1", + "xe-11/2/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-VIE-IPTRUNK $GS-00015 | ATH2-VIE |", + "circuits": [ + { + "id": 708735, + "name": "ATH2-VIE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 685, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13", + "bundle": [ + "et-0/0/1" + ], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "LAG CUSTOMER BELNET SRF19078 $GA-01913 | BELNET AP1", + "circuits": [], + "snmp-index": 613, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4064", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MSER-ULB-ExpressRoute-VLAN4064 $GS-02364 | ", + "circuits": [ + { + "id": 729794, + "name": "BELNET-MSER-ULB-EXPRESSROUTE-VLAN4064", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 674, + "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-10/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | CFP1 LR4 optic installed", + "circuits": [], + "snmp-index": 905, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16", + "bundle": [ + "et-0/0/1" + ], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "LAG CUSTOMER BELNET SRF9927563 $GA-01842 | BELNET AP2", + "circuits": [], + "snmp-index": 611, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ae18", + "bundle": [ + "xe-1/0/3", + "xe-5/1/0" + ], + "bundle-parents": [ + "xe-1/0/3", + "xe-5/1/0" + ], + "description": "LAG PUBLIC BIX SRF9946209 $GA-01900 |", + "circuits": [], + "snmp-index": 655, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-KAU-IPTRUNK $GS-00042 | KAU-KAU|", + "circuits": [ + { + "id": 709341, + "name": "KAU-KAU-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 608, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-KAU", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KAU-KAU", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/12", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 528, + "dashboards": [], + "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": [], + "snmp-index": 962, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 605, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.2009", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER LAT SURF #AMS-RIG-LOFAR-LAT-SURF-19052 $GS-00663 |", + "circuits": [ + { + "id": 714165, + "name": "AMS-RIG-LOFAR-LAT-SURF-19052", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1123, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURFNET", + "interface_type": "LOGICAL" + }, + { + "name": "LAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER_GEO Internet2 #Internet2-GEO-UK-1 | SRF9928239 | ANA-100G to WIX", + "circuits": [ + { + "id": 719690, + "name": "INTERNET2-GEO-UK-1", + "type": "GEANT OPEN PORT", + "status": "operational" + } + ], + "snmp-index": 645, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.1009", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT CSTNET #NL-NETHERLIGHT-CSTNET-KAUST-2 $GS-02393 | ASN7497 | ", + "circuits": [ + { + "id": 734574, + "name": "NL-NETHERLIGHT-CSTNET-KAUST-2", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1139, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "CSTNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CSTNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-7/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE FACEBOOK P_AE16 | FB-ID: 8644660", + "circuits": [], + "snmp-index": 827, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | BELNET AP1 100G", + "circuits": [], + "snmp-index": 595, + "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": [], + "snmp-index": 1289, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 1412, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | ATH2-THE", + "circuits": [], + "snmp-index": 595, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-THE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-THE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-1/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 518, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/3/3.1640", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER GRnet SCION #ath-par-SCION-GRNET-SCION-223079 $GS-02382 |", + "circuits": [ + { + "id": 729936, + "name": "ATH-PAR-SCION-GRNET-SCION-223079", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1126, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + }, + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1403, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/2.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_TAAS INFRASTRUCTURE GTS #TAAS-CONTROL-AMSTERDAM-VLAN0 | TAAS CONTROL", + "circuits": [], + "snmp-index": 1066, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | to ge1.hr.geant.net - a Cisco 3524 in Rack 10", + "circuits": [], + "snmp-index": 578, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "et-7/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | COR-LON2", + "circuits": [], + "snmp-index": 896, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-LON2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "COR-LON2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-0", + "circuits": [], + "snmp-index": 749, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-1/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 678, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ae6", + "bundle": [ + "et-8/0/2" + ], + "bundle-parents": [ + "et-8/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01812 | KAU-POZ |", + "circuits": [], + "snmp-index": 604, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-POZ", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "KAU-POZ", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 655, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "et-4/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | QSFP SR4 optic installed", + "circuits": [], + "snmp-index": 941, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER URAN", + "circuits": [], + "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": "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": "non-monitored" + } + ], + "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": "mx1.bud.hu.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 594, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access", + "circuits": [], + "snmp-index": 599, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-1/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT ASREN SRF19049 $GA-01315 |", + "circuits": [], + "snmp-index": 1024, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "et-4/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | QSFP-100GBASE-SR4 INSTALLED", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 929, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 581, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 706056, + "name": "LON-PAR-NCSA-LAAS-ESNET-RENATER-15057", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 937, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + { + "name": "ESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-2/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC VIX P_AE10 SRF9911147 | VIX ID: AT188495", + "circuits": [], + "snmp-index": 935, + "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": [], + "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": "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" + } + ], + "snmp-index": 935, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "MAEEN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MAEEN", + "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" + } + ], + "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": "rt2.ath2.gr.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | CYNET AP | ", + "circuits": [], + "snmp-index": 536, + "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" + } + ], + "snmp-index": 548, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "operational" + } + ], + "snmp-index": 983, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 530, + "dashboards": [], + "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": [], + "snmp-index": 1001, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SURF", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 1176, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | MAD GTS Server #3", + "circuits": [], + "snmp-index": 582, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.por.pt.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", + "circuits": [], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX1 SLOT0 PORT1 VMNIC0", + "circuits": [ + { + "id": 658437, + "name": "730XD-1-SLOT0-PORT1-VMNIC0-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 630, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae14.0", + "bundle": [], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "description": "SRV_IAS PUBLIC INEX #IX-Peerings-in-INEX $GS-00950 |", + "circuits": [ + { + "id": 708176, + "name": "IX-PEERINGS-IN-INEX", + "type": "IP PEERING - NON R&E (PUBLIC)", + "status": "operational" + } + ], + "snmp-index": 702, + "dashboards": [ + "IAS_PEERS", + "IAS_PUBLIC" + ], + "dashboard_info": { + "name": "INEX", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INEX", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "fxp0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE MANAGEMENT | CH SRX-2 Router", + "circuits": [], + "snmp-index": 1, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 691, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae4", + "bundle": [ + "et-4/0/4", + "et-4/1/4" + ], + "bundle-parents": [ + "et-4/0/4", + "et-4/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02267 | AMS-LON", + "circuits": [], + "snmp-index": 609, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-2/0/0.111", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN CUSTOMER GRNET #GRNET-ATH-LHCONE $GS-00827 | ASN8581", + "circuits": [ + { + "id": 661771, + "name": "GRNET-ATH-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 686, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "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": [], + "snmp-index": 687, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "MANLAN", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "MANLAN", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-1/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0-RT1 TRUNK 20GB 1_2 | Currently connected to OLD PSMP NETMON", + "circuits": [], + "snmp-index": 1028, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/14", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX1 SLOT4 PORT1 VMNIC4 - VSAN PORT", + "circuits": [ + { + "id": 658601, + "name": "730XD-1-SLOT4-PORT1-VMNIC4-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 645, + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 589, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RIG-TAR-IPTRUNK $GS-02345| RIG-TAR", + "circuits": [ + { + "id": 728734, + "name": "RIG-TAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 619, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-TAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RIG-TAR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-1/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 675, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-5/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE GOOGLE P_AE44 | Interxion CID DE236896", + "circuits": [], + "snmp-index": 830, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1405, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-11/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP7T2SF SRF0000001 | PAR BMS Server #5 (Reserved for SWD/IT)", + "circuits": [], + "snmp-index": 1195, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-8/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RENATER P_AE14 | RENATER-100GB-LL1", + "circuits": [], + "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/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 | ATH-MIL | OTEGLOBE CID: 1-4XPLWIS ", + "circuits": [], + "snmp-index": 550, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.411", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER ESNET #lon-lon-GEANTOpen-Esnet-Esnet-170391 $GS-00962 |", + "circuits": [ + { + "id": 709302, + "name": "LON-LON-GEANTOPEN-ESNET-ESNET-170391", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1287, + "dashboards": [ + "L2_CIRCUIT" + ], + "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": [], + "snmp-index": 1204, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.705", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER GRNET BELNET #bru-ath-BELNET-GRNET-14016 $GS-00668 |", + "circuits": [ + { + "id": 727505, + "name": "BRU-ATH-BELNET-GRNET-14016", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 664, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1137, + "dashboards": [], + "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 AP2 SRF23077 $GA-02440 |", + "circuits": [], + "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": "rt2.rig.lv.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS P_AE3 SRF0000001 | rt1-sw1 (ex4300)", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER DFN P_AE11 SRF21078 | DFN AP1 Migration 3_3", + "circuits": [], + "snmp-index": 684, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ae11.333", + "bundle": [], + "bundle-parents": [ + "xe-2/0/4", + "xe-2/0/5", + "xe-2/0/9", + "xe-3/0/2" + ], + "description": "SRV_IAS CUSTOMER GRNET #GRNET-AP2-IAS IASGWS $GS-00531 | ASN5408 |", + "circuits": [ + { + "id": 662907, + "name": "GRNET-AP2-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 608, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | OLD PSMP BWCTL", + "circuits": [], + "snmp-index": 574, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Reserved for GTS switch - VPLS", + "circuits": [], + "snmp-index": 832, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | MIL2-VIE |Connected to MIL02-GRV1 1/1/4", + "circuits": [], + "snmp-index": 658, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-2/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | FORTIGATE CLUSTER LON2-1 2_2 | No optic installed", + "circuits": [], + "snmp-index": 1594, + "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" + } + ], + "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.ams.nl.geant.net", + "name": "ge-0/3/3.91", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #MDM-AMS-NL-VLAN91 | MDM", + "circuits": [ + { + "id": 663093, + "name": "MDM-AMS-NL-VLAN91", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 764, + "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": [], + "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.lon.uk.geant.net", + "name": "xe-3/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1474, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae2.998", + "bundle": [], + "bundle-parents": [ + "xe-5/0/2", + "xe-5/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-ams-nl $GS-00147 | SW3-EX3400 MANAGEMENT", + "circuits": [ + { + "id": 713350, + "name": "EX3400-MANAGEMENT-AMS-NL", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1164, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-2/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER PIONIER P_AE12 SRF9937197 |", + "circuits": [], + "snmp-index": 793, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CERN #ams-gen-LHC-CERN-ASGC-07014", + "circuits": [], + "snmp-index": 557, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CERN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "CERN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE3 | rt2-sw1(ex3400) ", + "circuits": [], + "snmp-index": 566, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 681, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-8/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-POZ-IPTRUNK $GS-00043 | KAU-POZ |", + "circuits": [ + { + "id": 728647, + "name": "KAU-POZ-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1072, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-POZ", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KAU-POZ", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 829, + "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": [], + "snmp-index": 1294, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 768, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.bra.sk.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | BRA-BRA", + "circuits": [], + "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": "rt2.ath2.gr.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 593, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1047, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "ae4", + "bundle": [ + "et-1/0/5", + "et-1/1/2" + ], + "bundle-parents": [ + "et-1/0/5", + "et-1/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02087 | BIL-PAR |", + "circuits": [], + "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": "mx1.gen.ch.geant.net", + "name": "et-7/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 | GEN-PAR-800G | to GEN-GRV5 1/3/9", + "circuits": [], + "snmp-index": 836, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-PAR-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEN-PAR-800G", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/14", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX01 SLOT4 PORT1 VMNIC7 - VSAN PORT", + "circuits": [ + { + "id": 658490, + "name": "730XD-1-SLOT4-PORT1-VMNIC4", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 632, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-1/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "so-1/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 726, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae3", + "bundle": [ + "et-2/0/2", + "et-2/0/5" + ], + "bundle-parents": [ + "et-2/0/2", + "et-2/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01733 | BUC-SOF", + "circuits": [], + "snmp-index": 722, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-SOF", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BUC-SOF", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0-RT1 TRUNK 20GB 2_2", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-4/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | AMS-LON", + "circuits": [], + "snmp-index": 571, + "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": "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" + } + ], + "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": "mx2.ath.gr.geant.net", + "name": "ae10", + "bundle": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-1/0/1", + "xe-3/0/0" + ], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-1/0/1", + "xe-3/0/0" + ], + "description": "LAG CUSTOMER GRNET SRF9916023 $GA-01794 | GRnet AP", + "circuits": [], + "snmp-index": 530, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 809, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "et-1/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | MAR-MIL2 |", + "circuits": [], + "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": "qfx.fra.de.geant.net", + "name": "xe-1/0/15", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX03 SLOT4 PORT1 VMNIC4 - VSAN PORT", + "circuits": [ + { + "id": 658454, + "name": "730XD-3-SLOT4-PORT1-VMNIC4", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 633, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER HEANET SRF9913941 $GA-01639 | BOD / Project Circuits", + "circuits": [], + "snmp-index": 528, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.23", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1018, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae5", + "bundle": [ + "et-9/0/4", + "et-9/1/4" + ], + "bundle-parents": [ + "et-9/0/4", + "et-9/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01888 | FRA-GEN-IPTRUNK", + "circuits": [], + "snmp-index": 654, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.3333", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT OMREN #NL-OMREN $GS-00900 | ASN206350 |", + "circuits": [ + { + "id": 734554, + "name": "NL-OMREN", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1150, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "OMREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "OMREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 645, + "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": [], + "snmp-index": 540, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "ae10.12", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GCS CUSTOMER GEANT | #Nordunet_HHU_ExpressRoute_Vlan3911 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731510, + "name": "NORDUNET-HHU-EXPRESSROUTE-VLAN3911", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 595, + "dashboards": [ + "GCS" + ], + "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/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE |DDOS SERVER 1 10Gb_2 | P_ae13", + "circuits": [], + "snmp-index": 1045, + "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" + } + ], + "snmp-index": 1445, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1008", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET RNP #bru-par-IMINDS-Belnet-RNP-1505 $GS-00680 |", + "circuits": [ + { + "id": 727507, + "name": "BRU-PAR-IMINDS-BELNET-RNP-1505", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 658, + "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": "mx1.lon2.uk.geant.net", + "name": "et-7/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | NO QSFP OPTIC INSTALLED", + "circuits": [], + "snmp-index": 893, + "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": [], + "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": "srx2.am.office.geant.net", + "name": "ge-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY To SRX2 to SRX1 |", + "circuits": [], + "snmp-index": 514, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "et-5/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | LIS-MAD | 200G", + "circuits": [], + "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": "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" + } + ], + "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": "mx1.gen.ch.geant.net", + "name": "ge-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN | to Cisco SW1.GEN.CH port 3", + "circuits": [], + "snmp-index": 616, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.2126", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER CERN CANARIE #lon-lon-Canarie-CERN-15014 $GS-00720 |", + "circuits": [ + { + "id": 661472, + "name": "LON-LON-CANARIE-CERN-15014", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 779, + "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": "mx1.vie.at.geant.net", + "name": "ae27", + "bundle": [ + "et-1/1/5" + ], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "LAG PRIVATE AKAMAI SRF9941087 $GA-01872 |", + "circuits": [], + "snmp-index": 707, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-4/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE- WAS FRA-GEN", + "circuits": [], + "snmp-index": 1439, + "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" + } + ], + "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.lon.uk.geant.net", + "name": "et-9/1/5.3807", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT #WIX-TO-NETHERLIGHT-TEST2 $GS-00768 | WIX-to-Netherlight test 03/12/2014", + "circuits": [ + { + "id": 719128, + "name": "WIX-TO-NETHERLIGHT-TEST2", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1039, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "WIX", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "WIX", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.3222", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #NL-INTERNET2-MONTREAL $GS-00893 | ASN11537 |", + "circuits": [ + { + "id": 734552, + "name": "NL-INTERNET2-MONTREAL", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 1148, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1334, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "et-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER SWITCH P_AE13 SRF19030 | SWITCH BACKUP", + "circuits": [], + "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": "rt2.the.gr.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-THE-IPTRUNK $GS-02421| ATH2-THE", + "circuits": [ + { + "id": 734116, + "name": "ATH2-THE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 522, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-THE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-THE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-11/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1240, + "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" + } + ], + "snmp-index": 766, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GARR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GARR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4061", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-STAD-EXPRESSROUTE-VLAN4061 $GS-02245 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727346, + "name": "BELNET-STAD-EXPRESSROUTE-VLAN4061", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 631, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "qfx.fra.de.geant.net", + "name": "xe-0/0/19", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae5", + "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-01830 | PRA2-VIE | ", + "circuits": [], + "snmp-index": 916, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "PRA2-VIE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "PRA2-VIE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-LR | ", + "circuits": [], + "snmp-index": 590, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | AMS-HAM", + "circuits": [], + "snmp-index": 787, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-HAM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-HAM", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 680, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae18.854", + "bundle": [], + "bundle-parents": [ + "et-9/1/5" + ], + "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" + } + ], + "snmp-index": 1161, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RESTENA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RESTENA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | ULAKBIM AP2", + "circuits": [], + "snmp-index": 596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 649, + "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 | ", + "circuits": [], + "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": "rt1.mar.fr.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 #MAD-MAR01-IPTRUNK $GS-00054 | MAD-MAR01 IP TRUNK", + "circuits": [ + { + "id": 717047, + "name": "MAD-MAR01-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 690, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MAD-MAR01 IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MAD-MAR01 IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP6 Netronome server SRF0000001 | IDRAC CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180502", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", + "circuits": [], + "snmp-index": 597, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 570, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | BRA-BRA", + "circuits": [], + "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": "mx1.lon2.uk.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-7/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-LON2-IPTRUNK $GS-02386| COR-LON2", + "circuits": [ + { + "id": 731117, + "name": "COR-LON2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 899, + "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": "et-9/1/5.1624", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #fra-lon-SCION-SCION-INTERNET2-1 $GS-02296 |", + "circuits": [ + { + "id": 726976, + "name": "FRA-LON-SCION-SCION-INTERNET2-1", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1196, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-11/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER AZSCIENCENET SRF19095 $GA-01599 | GEANT-10G-Baku-CO-Interxion|", + "circuits": [], + "snmp-index": 883, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "AZSCIENCENET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AZSCIENCENET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae10.2030", + "bundle": [], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/5" + ], + "description": "SRV_L3VPN CUSTOMER JISC #JISC-AP1-LHCONE $GS-00832 | ASN786", + "circuits": [ + { + "id": 661732, + "name": "JISC-AP1-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "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": "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" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "et-11/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE - WAS SURF", + "circuits": [], + "snmp-index": 1235, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_AE23 | Uplink to sw4.lon.uk.geant.net - xe-0/2/0", + "circuits": [], + "snmp-index": 751, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "rt2.kau.lt.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC DE-CIX P_AE13 SRF9950963 | DE-CIX ID: : DXDB:PNI:10052 / edge01.mrs1, Port Te5/1/10", + "circuits": [], + "snmp-index": 653, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 | ATH-MIL | OTEGLOBE CID: 1-4XPLWG5 ", + "circuits": [], + "snmp-index": 549, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "lt-4/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 1183, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.9", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-FGOV-ExpressRoute-VLAN4086 $GS-01132 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 706048, + "name": "BELNET-FGOV-EXPRESSROUTE-VLAN4086", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1048, + "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": "ae4", + "bundle": [ + "et-10/1/2", + "et-10/1/5" + ], + "bundle-parents": [ + "et-10/1/2", + "et-10/1/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01969 | BIL-PAR |", + "circuits": [], + "snmp-index": 801, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BIL-PAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BIL-PAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.251", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_GLOBAL CUSTOMER REDIRIS #REDIRIS-AP1 $GS-00498 | ASN766 |", + "circuits": [ + { + "id": 719144, + "name": "REDIRIS-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "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": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.2023", + "bundle": [], + "bundle-parents": [], + "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" + } + ], + "snmp-index": 1145, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "ae10.100", + "bundle": [], + "bundle-parents": [ + "xe-0/1/6", + "xe-0/1/7" + ], + "description": "SRV_GLOBAL CUSTOMER RENAM #RENAM-AP1 $GS-00500 | ASN9199 |", + "circuits": [ + { + "id": 714072, + "name": "RENAM-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 554, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 720, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4084", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-KULEUVEN-EXPRESSROUTE-4084 $GS-01135 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727353, + "name": "BELNET-KULEUVEN-EXPRESSROUTE-4084", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 629, + "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/19", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_AE15 | LON2-PRD-ESX21 NIC2 PORT4", + "circuits": [], + "snmp-index": 670, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "irb.3000", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VM-Datanetwork-Par-IRB $GS-00085| VM DATA network", + "circuits": [ + { + "id": 712149, + "name": "VM-DATANETWORK-PAR", + "type": "POP LAN LINK", + "status": "operational" + } + ], + "snmp-index": 972, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/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": [], + "snmp-index": 1061, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-3/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae1 | HAM-TAR", + "circuits": [], + "snmp-index": 931, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-TAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HAM-TAR", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 1056, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 607, + "dashboards": [], + "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" + } + ], + "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": "rt1.kau.lt.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER LITNET P_AE10 SRF21091 | ", + "circuits": [], + "snmp-index": 563, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LITNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LITNET", + "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": [], + "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.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" + } + ], + "snmp-index": 1168, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "NETHERLIGHT", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "xe-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 539, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.1338", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "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" + } + ], + "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": "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" + } + ], + "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.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" + } + ], + "snmp-index": 678, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-1/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT ASREN P_AE17 SRF9943959|", + "circuits": [], + "snmp-index": 1025, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/0.11", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #EXFO-MANAGEMENT-VLAN11 | EXFO Management VLAN 11", + "circuits": [ + { + "id": 661966, + "name": "EXFO-MANAGEMENT-VLAN11", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1131, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #HAM-TAR-IPTRUNK $GS-02348| HAM-TAR", + "circuits": [ + { + "id": 729018, + "name": "HAM-TAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 604, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-TAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HAM-TAR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "lt-11/1/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-vie-at-RE-IAS| BGP Peering - RE Side", + "circuits": [], + "snmp-index": 959, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE 1", + "circuits": [], + "snmp-index": 564, + "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": [], + "snmp-index": 1324, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 675, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1368, + "dashboards": [ + "NREN" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 588, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 610, + "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": [], + "snmp-index": 1559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-8/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | LON1-LON2-800G | to LON01-GRV2 1/3/9", + "circuits": [], + "snmp-index": 1013, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON1-LON2-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LON1-LON2-800G", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1307, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae2.29", + "bundle": [], + "bundle-parents": [ + "xe-5/0/2", + "xe-5/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-SPLUNK-SERVER2-iDRAC", + "circuits": [ + { + "id": 733016, + "name": "AMS-SPLUNK-SERVER2-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1494, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-10/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CESNET P_AE23 |", + "circuits": [], + "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": "mx2.lis.pt.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 647, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER SURF P_AE15 | Connected to SURF Asd001B-JNX-06 et-1/0/3 (F0111862)", + "circuits": [], + "snmp-index": 952, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SURF", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae12.1382", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-1/1/5", + "et-3/1/0", + "et-3/1/2" + ], + "description": "SRV_MDVPN CUSTOMER RENATER #RENATER-BGP-LU-COC-AP1 $GS-01058 | MDVPN CoC - RENATER AP1", + "circuits": [ + { + "id": 661259, + "name": "RENATER-BGP-LU-COC-AP1", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 850, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENATER", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.34", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "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" + } + ], + "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": "rt1.cor.ie.geant.net", + "name": "ae10.2553", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE TEST3 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 633, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-7/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | AMS-HAM", + "circuits": [], + "snmp-index": 1388, + "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": "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": 708713, + "name": "AMS-AMS-IPTRUNK-2", + "type": "IP TRUNK", + "status": "operational" + } + ], + "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": "rt1.chi.md.geant.net", + "name": "xe-0/0/2:1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae13", + "bundle": [ + "xe-2/1/1" + ], + "bundle-parents": [ + "xe-2/1/1" + ], + "description": "LAG CUSTOMER KREN SRF21110 $GA-02154 | #KREN-AP1-LAG | ", + "circuits": [], + "snmp-index": 620, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "KREN", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "KREN", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "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.mad.es.geant.net", + "name": "ge-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | BMS Internet Access", + "circuits": [], + "snmp-index": 599, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/23", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae15 | PAR-PRD-ESX5 SLOT? PORT1 VMNIC4", + "circuits": [ + { + "id": 658366, + "name": "730XD-5-VMNIC4-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 653, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RASH P_AE13 SRF0000001 |", + "circuits": [], + "snmp-index": 554, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RASH", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RASH", + "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": 727553, + "name": "AMS-LON-SINGAREN-RARE-123034", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "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": "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" + } + ], + "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": "mx1.par.fr.geant.net", + "name": "ge-0/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 601, + "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" + } + ], + "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": "rt1.ams.nl.geant.net", + "name": "xe-0/3/4.105", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT ASNET #NL-ASNET $GS-00888 | ASN9264 |", + "circuits": [], + "snmp-index": 1277, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ASNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ASNET", + "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": [], + "snmp-index": 1265, + "dashboards": [], + "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" + } + ], + "snmp-index": 1135, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4093", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-Premier-ExpressRoute-VLAN4093 $GS-01127 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727354, + "name": "BELNET-PREMIER-EXPRESSROUTE-VLAN4093", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 647, + "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": "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" + } + ], + "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.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" + } + ], + "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": "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" + } + ], + "snmp-index": 738, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "FCCN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FCCN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae18", + "bundle": [ + "et-11/1/0" + ], + "bundle-parents": [ + "et-11/1/0" + ], + "description": "LAG CUSTOMER RESTENA AP2 SRF19026 $GA-01818 |", + "circuits": [], + "snmp-index": 690, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RESTENA", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "RESTENA", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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 #MAR01-MIL2-IPTRUNK $GS-01185 | MAR01-MIL2 IP TRUNK", + "circuits": [ + { + "id": 718547, + "name": "MAR01-MIL2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 685, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MAR01-MIL2 IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MAR01-MIL2 IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "xe-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 541, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae10.83", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_GLOBAL CUSTOMER LAT #LAT-AP1-IPv6 $GS-00484 | ASN5538 | LAT Primary IPv6", + "circuits": [ + { + "id": 679356, + "name": "LAT-AP1-IPV6", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 604, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4060", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-STAD-EXPRESSROUTE-VLAN4060 $GS-02246 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727336, + "name": "BELNET-STAD-EXPRESSROUTE-VLAN4060", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 619, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae3.0", + "bundle": [], + "bundle-parents": [ + "et-2/0/2", + "et-2/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-SOF-IPTRUNK $GS-00024", + "circuits": [ + { + "id": 730423, + "name": "BUC-SOF-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 723, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-SOF-IPTRUNK $GS-00024", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-SOF-IPTRUNK $GS-00024", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-1/0/2", + "et-1/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #SOF-ZAG-IPTRUNK $GS-02367| SOF-ZAG", + "circuits": [ + { + "id": 729384, + "name": "SOF-ZAG-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 704, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-ZAG", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SOF-ZAG", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GRNET P_AE10 SRF9943879| GRNET-AP1-LL3", + "circuits": [], + "snmp-index": 570, + "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": "et-9/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | FRA-PRA2", + "circuits": [], + "snmp-index": 654, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0-RT1 TRUNK 20GB 2_2", + "circuits": [], + "snmp-index": 573, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-1/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-SR", + "circuits": [], + "snmp-index": 1027, + "dashboards": [], + "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" + } + ], + "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": "mx1.poz.pl.geant.net", + "name": "et-8/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | POZ-PRA", + "circuits": [], + "snmp-index": 1057, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/0/2:1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 536, + "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" + } + ], + "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.ams.nl.geant.net", + "name": "ae22", + "bundle": [ + "xe-0/1/5" + ], + "bundle-parents": [ + "xe-0/1/5" + ], + "description": "LAG PRIVATE ORANGE #NL-ORANGE-LAG-1 $GA-02141", + "circuits": [], + "snmp-index": 1009, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ae2.0", + "bundle": [], + "bundle-parents": [ + "et-4/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KIE-POZ-IPTRUNK $GS-00046 | KIE-POZ |", + "circuits": [ + { + "id": 712096, + "name": "KIE-POZ-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 800, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KIE-POZ", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KIE-POZ", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1257, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + { + "name": "SINGAREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "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": [], + "snmp-index": 887, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 605, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 726622, + "name": "BUD-ZAG-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "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": "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": [], + "snmp-index": 702, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS P_AE2 | sw1- EX3400 XE-0/2/0", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "et-9/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 | LON2-PAR-800G | to PAR-GRV3 1/3/9", + "circuits": [], + "snmp-index": 887, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON2-PAR-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LON2-PAR-800G", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae11.420", + "bundle": [], + "bundle-parents": [ + "et-2/1/0", + "et-2/1/1", + "et-2/1/2" + ], + "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" + } + ], + "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": "mx1.ath2.gr.geant.net", + "name": "ge-1/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 545, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/18", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 637, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.3003", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER SURF LAT #AMS-RIG-EVLBI-JIVE-SURF-LAT-15056 $GS-00662 |", + "circuits": [ + { + "id": 705462, + "name": "AMS-RIG-EVLBI-JIVE-SURF-LAT-15056", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1125, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURF", + "interface_type": "LOGICAL" + }, + { + "name": "LAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae10.2701", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_L2CIRCUIT CUSTOMER SCION EENET #par-tar-SCION-EENET $GS-02356 | ", + "circuits": [ + { + "id": 728913, + "name": "PAR-TAR-SCION-EENET", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 620, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EENET", + "interface_type": "LOGICAL" + }, + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 511, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "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": "rt1.the.gr.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 539, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/2.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-ams-nl-management |perfSONAR MGMT", + "circuits": [ + { + "id": 722351, + "name": "PS-AMS-NL-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 778, + "dashboards": [], + "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" + } + ], + "snmp-index": 1060, + "dashboards": [], + "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": [], + "snmp-index": 563, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.2013", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN CUSTOMER NORDUNET #NL-NORDUNET-LHCONE-IPV4 $GS-00838 | ASN2603 |", + "circuits": [ + { + "id": 734581, + "name": "NL-NORDUNET-LHCONE-IPV4", + "type": "L3-VPN", + "status": "non-monitored" + } + ], + "snmp-index": 1144, + "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": "lt-3/3/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 662, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/15", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX02 SLOT4 PORT1 VMNIC4 - VSAN PORT", + "circuits": [ + { + "id": 658612, + "name": "730XD-2-SLOT4-PORT1-VMNIC4", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 532, + "dashboards": [], + "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" + } + ], + "snmp-index": 802, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "MARWAN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MARWAN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 959, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae5.0", + "bundle": [], + "bundle-parents": [ + "et-1/0/5", + "et-1/1/2", + "et-1/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE $GS-00059 #PRA2-VIE-IPTRUNK | PRA2-VIE", + "circuits": [ + { + "id": 724547, + "name": "PRA2-VIE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 917, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "PRA2-VIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "PRA2-VIE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-1/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS | mx1-sw2-2", + "circuits": [], + "snmp-index": 1023, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-4/0/4", + "et-4/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-LON-IPTRUNK $GS-02269 | AMS-LON", + "circuits": [ + { + "id": 731411, + "name": "AMS-LON-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 610, + "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": "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" + } + ], + "snmp-index": 1404, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.2586", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO.T13 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 634, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.72", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LHCOPN-MDMSERVER-VLAN72 | LHCOP-MDM SERVER", + "circuits": [ + { + "id": 663203, + "name": "LHCOPN-MDMSERVER-VLAN72", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 758, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_ae3 | rt1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 941, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-3/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 599, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0-RT1 TRUNK 20GB 1_2", + "circuits": [], + "snmp-index": 1475, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae4", + "bundle": [ + "et-0/0/2" + ], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01792 | AMS-BRU |", + "circuits": [], + "snmp-index": 609, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-BRU", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-BRU", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "xe-5/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | No optic present", + "circuits": [], + "snmp-index": 684, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-RIG-IPTRUNK $GS-00044| KAU-RIG", + "circuits": [ + { + "id": 728946, + "name": "KAU-RIG-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 558, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-RIG", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KAU-RIG", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 579, + "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" + } + ], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-4/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | AMS-AMS", + "circuits": [], + "snmp-index": 1386, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-AMS", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-AMS", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-3/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | BUD-ZAG 200Gb 2_2 ZAG01-GRV3 1/1/4", + "circuits": [], + "snmp-index": 999, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 604, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 526, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE - WAS CESNET", + "circuits": [], + "snmp-index": 578, + "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" + } + ], + "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": "mx2.zag.hr.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 573, + "dashboards": [], + "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": [], + "snmp-index": 584, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-8/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 989, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-11/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 869, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/0/2:0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 532, + "dashboards": [], + "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": [], + "snmp-index": 513, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 551, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 601, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 541, + "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": [], + "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": "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": [], + "snmp-index": 571, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ae11.200", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-2/0/1", + "xe-2/0/2" + ], + "description": "SRV_GLOBAL CUSTOMER RENAM #RENAM-AP3 $GS-00502| ASN9199 | ", + "circuits": [ + { + "id": 663023, + "name": "RENAM-AP3", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 746, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3003", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_MDVPN CUSTOMER NORDUNET #NORDUNET-BGP-LU-COC-AP2 $GS-01054 | MDVPN CoC - NORDUNET AP2", + "circuits": [ + { + "id": 731422, + "name": "NORDUNET-BGP-LU-COC-AP2", + "type": "MD-VPN (NATIVE)", + "status": "non-monitored" + } + ], + "snmp-index": 960, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "et-10/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER JISC P_AE12 SRF22040 | #JISC-AP2-LL1 | JISC ID: J/2C/0410/01/1CGE | ", + "circuits": [], + "snmp-index": 1154, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "PHYSICAL" + } + ], + "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-BMS9", + "circuits": [], + "snmp-index": 969, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1470, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/0/2.2210", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER HBKU INTERNET2 #lon-lon-GEANTOPEN-HBKU-INTERNET2-190091 $GS-00967 |", + "circuits": [ + { + "id": 661607, + "name": "LON-LON-GEANTOPEN-HBKU-INTERNET2-190091", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "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.vie.at.geant.net", + "name": "xe-4/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1062, + "dashboards": [], + "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" + } + ], + "snmp-index": 616, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CESNET", + "circuits": [], + "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.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" + } + ], + "snmp-index": 916, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 803, + "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": 660634, + "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-2", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1273, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/16", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 648, + "dashboards": [], + "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" + } + ], + "snmp-index": 893, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ae2", + "bundle": [ + "et-4/0/0" + ], + "bundle-parents": [ + "et-4/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01996 | KIE-POZ |", + "circuits": [], + "snmp-index": 797, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KIE-POZ", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "KIE-POZ", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/0/2.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-gen-ch-bwctl | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", + "circuits": [ + { + "id": 708285, + "name": "PS-GEN-CH-BWCTL", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1387, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 555, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/1.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #AMS-FRA-RARE-P4-9951375 $GS-00635 | RARE P4 TESTBED", + "circuits": [ + { + "id": 708194, + "name": "AMS-FRA-RARE-P4-9951375", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1450, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF0000001 | PSMP BWCTL", + "circuits": [], + "snmp-index": 558, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 586, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.3", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1008, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "lt-0/0/0.31", + "bundle": [], + "bundle-parents": [], + "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN | VRR to GEANT", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "lt-1/1/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE", + "circuits": [], + "snmp-index": 1497, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/1/4.1630", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SCION GRnet #ath-gen-SCION-GRNET-SCION-123079 $GS-02381 |", + "circuits": [ + { + "id": 729799, + "name": "ATH-GEN-SCION-GRNET-SCION-123079", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 803, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 600, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 892, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "NKN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NKN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.701", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "description": "SRV_L2CIRCUIT INFRASTRUCTURE RARE NETHERLIGHT #AMS-AMS-NETHERLIGHT-RARE-9952733 $GS-00626 |", + "circuits": [ + { + "id": 734553, + "name": "AMS-AMS-NETHERLIGHT-RARE-9952733", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1117, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "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": [], + "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.ams.nl.geant.net", + "name": "et-4/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE - WAS SURF", + "circuits": [], + "snmp-index": 1383, + "dashboards": [], + "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" + } + ], + "snmp-index": 1177, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ae7.0", + "bundle": [], + "bundle-parents": [ + "xe-2/0/0" + ], + "description": "PHY INFRASTRUCTURE ACCESS AMT RELAY MX204 ROUTER LON2-LON2", + "circuits": [], + "snmp-index": 732, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 593, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 597, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 898, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ASNET-AM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ASNET-AM", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "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": [], + "snmp-index": 1037, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "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.buc.ro.geant.net", + "name": "xe-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | BUC-CHI | ROEDUNET CID: BUC-CHI-040-2", + "circuits": [], + "snmp-index": 552, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae7.0", + "bundle": [], + "bundle-parents": [ + "xe-7/2/0" + ], + "description": "SRV_INFRASTRUCTURE ACCESS | #fra-fra-AMT-RELAY-MX204-ROUTER ", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/0/2:2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-3/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 601, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | TAAS CONTROL - GTS.SW2 P??", + "circuits": [], + "snmp-index": 808, + "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": [], + "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": "srx1.ch.office.geant.net", + "name": "ge-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 521, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 521, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.947", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET REDIRIS #HAM-MAD-NORDUNET-REDIRIS-22064 $GS-02183|", + "circuits": [ + { + "id": 731427, + "name": "HAM-MAD-NORDUNET-REDIRIS-22064", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1121, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "xe-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | FORTIGATE CLUSTER AMS-1 1_2", + "circuits": [], + "snmp-index": 573, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/0.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": 660719, + "name": "ASREN-EDGE-DEVICE-VLAN505", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1904, + "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": [], + "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": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | ATH2-VIE | OTEGLOBE CID: 1-4XPLWF2 | OVERSUB-RISK-MPC3E", + "circuits": [], + "snmp-index": 624, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 832, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae23.310", + "bundle": [], + "bundle-parents": [ + "et-3/1/4" + ], + "description": "SRV_L2CIRCUIT CUSTOMER SWITCH JISC #GEN-LON-SYNGENTA-SWITCH-JISC-17041 $GS-00712 |", + "circuits": [ + { + "id": 705461, + "name": "GEN-LON-SYNGENTA-SWITCH-JISC-17041", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1272, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 647, + "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": [], + "snmp-index": 1440, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 615, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "FCCN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FCCN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": 727353, + "name": "BELNET-KULEUVEN-EXPRESSROUTE-4084", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 671, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.26", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-JUST-ExpressRoute-VLAN4062 $GS-02318 | ", + "circuits": [ + { + "id": 727777, + "name": "BELNET-JUST-EXPRESSROUTE-VLAN4062", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1313, + "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.17", + "bundle": [], + "bundle-parents": [], + "description": "SRV_TUN CUSTOMER EUMETSAT #GRE-Multicast-Tunnel-IAMS $GS-01078", + "circuits": [ + { + "id": 732671, + "name": "GRE-MULTICAST-TUNNEL-IAMS", + "type": "EUMETSAT GRE", + "status": "non-monitored" + } + ], + "snmp-index": 1220, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "lt-8/1/0.2111", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN INFRASTRUCTURE ACCESS LHCONE #MASTER-instance-Peering-geneva-lhcone| MASTER instance ", + "circuits": [], + "snmp-index": 1608, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-10/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE APPLE-2 P_AE45 | ASN714", + "circuits": [], + "snmp-index": 662, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 515, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1060, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "lt-11/1/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 904, + "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" + } + ], + "snmp-index": 522, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/0.402", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #LON2-Groove-2-Management | LON2 Groove 2 Direct Management", + "circuits": [ + { + "id": 661170, + "name": "LON2-GROOVE-2-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1528, + "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" + } + ], + "snmp-index": 788, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0-RT1 TRUNK 20GB 2_2", + "circuits": [], + "snmp-index": 1476, + "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": [], + "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": "mx1.ams.nl.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE -WAS SWITCH", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/2.21", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #hades-vie-at-DRAC | Hades DRAC", + "circuits": [ + { + "id": 661748, + "name": "HADES-VIE-AT-DRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 782, + "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": 727347, + "name": "BELNET-NCCN-EXPRESSROUTE-VLAN4092", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 598, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | KAU-RIG", + "circuits": [], + "snmp-index": 544, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-RIG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "KAU-RIG", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 762, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NISN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NISN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "ae10.4", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GCS CUSTOMER GEANT | #Nordunet_Laurea_ExpressRoute_Vlan3901 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731512, + "name": "NORDUNET-LAUREA-EXPRESSROUTE-VLAN3901", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 587, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/10", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae2 | FRA-PRD-ESX02 SLOT0 PORT3 VMNIC2", + "circuits": [ + { + "id": 658416, + "name": "730XD-2-SLOT0-PORT3-VMNIC2", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "ae2.998", + "bundle": [], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-lju-si | SW1-EX3400 MANAGEMENT", + "circuits": [ + { + "id": 731211, + "name": "EX3400-MANAGEMENT-LJU-SI", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 595, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 1226, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "CAAREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CAAREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 621, + "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": [], + "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": "srx2.am.office.geant.net", + "name": "ge-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 521, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 610, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "lt-3/3/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #POZ-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 664, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4062", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-JUST-ExpressRoute-VLAN4062 $GS-02318 | ", + "circuits": [ + { + "id": 727777, + "name": "BELNET-JUST-EXPRESSROUTE-VLAN4062", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 687, + "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/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 555, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae28.200", + "bundle": [], + "bundle-parents": [ + "et-4/1/1" + ], + "description": "SRV_L2CIRCUIT CUSTOMER PIONIER TENET #lon-lon-GEANTOPEN-PIONIER-TENET-18067 $GS-00980 |", + "circuits": [ + { + "id": 718080, + "name": "LON-LON-GEANTOPEN-PIONIER-TENET-18067", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 629, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "interface_type": "LOGICAL" + }, + { + "name": "TENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED FOR DTN-Second port| Needs optic", + "circuits": [], + "snmp-index": 1567, + "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": [], + "snmp-index": 1297, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "snmp-index": 1283, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 1288, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 762, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | SPLUNK AMS PEER01 link 1 | ", + "circuits": [], + "snmp-index": 630, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "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" + } + ], + "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": "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": [], + "snmp-index": 522, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "lt-0/0/0.31", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #TUNNEL-INTERFACE-20965-21320 | 20965-TO-21320-FOD IAS endpoint", + "circuits": [], + "snmp-index": 687, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ae11.3005", + "bundle": [], + "bundle-parents": [ + "et-3/3/0" + ], + "description": "SRV_VPLS INFRASTRUCTURE RARE P4 #RARE-POZ-PIONIER $GS-00777 |", + "circuits": [ + { + "id": 712562, + "name": "RARE-POZ-PIONIER", + "type": "L2SERVICES", + "status": "non-monitored" + } + ], + "snmp-index": 801, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae10.112", + "bundle": [], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "description": "SRV_MDVPN CUSTOMER DFN #DFN-BGP-LU-COC-AP2 $GS-01002 | MDVPN CoC - DFN AP2", + "circuits": [ + { + "id": 732583, + "name": "DFN-BGP-LU-COC-AP2", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 1000, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/0/5.3003", + "bundle": [], + "bundle-parents": [], + "description": "SRV_MDVPN CUSTOMER NORDUNET #NORDUNET-BGP-LU-COC-AP1 $GS-01053 | MDVPN CoC - NORDUNET AP1", + "circuits": [ + { + "id": 661351, + "name": "NORDUNET-BGP-LU-COC-AP1", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 1277, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 664, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1130, + "dashboards": [], + "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-EEX-GEN-LHCONE $GS-00820 | ASN293", + "circuits": [ + { + "id": 730103, + "name": "ESNET-EEX-GEN-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "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": "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": [], + "snmp-index": 651, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "mx1.gen.ch.geant.net", + "name": "xe-2/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER NKN SRF19102 P_AE20 |", + "circuits": [], + "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.mad.es.geant.net", + "name": "et-8/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | LIS-MAD | 200G", + "circuits": [], + "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": "srx2.ch.office.geant.net", + "name": "ge-0/0/15", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "ae10", + "bundle": [ + "xe-0/1/0", + "xe-0/1/1" + ], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1" + ], + "description": "LAG CUSTOMER LITNET AP2 #LITNET-AP2-LAG $GA-02071 |", + "circuits": [], + "snmp-index": 588, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LITNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "LITNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "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": "qfx.par.fr.geant.net", + "name": "xe-1/0/24", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX5 SLOT? PORT1 VMNIC8 - VSAN PORT", + "circuits": [ + { + "id": 658510, + "name": "730XD-5-VMNIC8-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 655, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "lt-2/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #ATH2-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 645, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER_GEO ANKABUT #ANKABUT-GEO-UK-1 | P_AE25 SRF20079 |", + "circuits": [], + "snmp-index": 1458, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "ANKABUT", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ANKABUT", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4088", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-UCLOUVAIN-ExpressRoute-VLAN4088 $GS-02161 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727350, + "name": "BELNET-UCLOUVAIN-EXPRESSROUTE-VLAN4088", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 637, + "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": "ae13", + "bundle": [ + "xe-0/0/7" + ], + "bundle-parents": [ + "xe-0/0/7" + ], + "description": "LAG CUSTOMER RASH SRF9938973 $GA-01768 |", + "circuits": [], + "snmp-index": 758, + "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": "xe-4/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY UPSTREAM COGENT P_AE29 | Cogent ID: 3-001176140", + "circuits": [], + "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": "rt1.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-02016 |", + "circuits": [], + "snmp-index": 588, + "dashboards": [ + "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": "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" + } + ], + "snmp-index": 1169, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ASNET-AM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ASNET-AM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ae11.668", + "bundle": [], + "bundle-parents": [ + "xe-2/0/4", + "xe-2/0/5", + "xe-2/0/9", + "xe-3/0/2" + ], + "description": "SRV_L3VPN CUSTOMER GRNET #GRNET-AP2-COPERNICUS $GS-00829 | ASN5408", + "circuits": [ + { + "id": 713964, + "name": "GRNET-AP2-COPERNICUS", + "type": "L3-VPN", + "status": "non-monitored" + } + ], + "snmp-index": 679, + "dashboards": [ + "COPERNICUS", + "NREN" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 828, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "ae10.8", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GCS CUSTOMER GEANT | #Nordunet_Aalto_ExpressRoute_Vlan3907 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731509, + "name": "NORDUNET-AALTO-EXPRESSROUTE-VLAN3907", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 591, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 587, + "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" + } + ], + "snmp-index": 1161, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "mx1.vie.at.geant.net", + "name": "ge-0/3/2.991", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-VIE-AT |", + "circuits": [ + { + "id": 707244, + "name": "DCN-MANAGEMENT-VIE-AT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 659, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX03 SLOT4 PORT4 VMNIC7 - VSAN PORT", + "circuits": [ + { + "id": 658380, + "name": "730XD-3-SLOT4-PORT4-VMNIC7", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "ae15.3005", + "bundle": [], + "bundle-parents": [ + "et-0/0/2", + "et-1/0/2", + "et-4/1/0" + ], + "description": "SRV_VPLS INFRASTRUCTURE RARE P4 #RARE-BIL-REDIRIS $GS-02290 |", + "circuits": [ + { + "id": 726619, + "name": "RARE-BIL-REDIRIS", + "type": "L2SERVICES", + "status": "non-monitored" + } + ], + "snmp-index": 830, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae18.333", + "bundle": [], + "bundle-parents": [ + "et-11/1/0" + ], + "description": "SRV_IAS CUSTOMER RESTENA #RESTENA-AP2-IAS IASPS $GS-00586 | ASN2602", + "circuits": [ + { + "id": 660452, + "name": "RESTENA-AP2-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 636, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "RESTENA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RESTENA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4091", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ICT-ExpressRoute-Vlan4091 $GS-01125 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727337, + "name": "BELNET-ICT-EXPRESSROUTE-VLAN4091", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 643, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC DE-CIX P_AE13 SRF9938865 | DE-CIX ID: : MRS01B005 / edge01.mrs1, Port Gi2/1/15", + "circuits": [], + "snmp-index": 654, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS P_AE2 SRF0000001 | mx1-sw3 (ex3400)", + "circuits": [], + "snmp-index": 879, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1408, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "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" + } + ], + "snmp-index": 585, + "dashboards": [], + "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" + } + ], + "snmp-index": 1133, + "dashboards": [], + "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" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "lt-1/3/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-lon-uk-RE-IAS| BGP Peering - RE Side", + "circuits": [], + "snmp-index": 1228, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 612, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae10.700", + "bundle": [], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER JISC INTERNET2 #LON-LON-SYNGENTA-JISC-INTERNET2-17052 $GS-00730 |", + "circuits": [ + { + "id": 705922, + "name": "LON-LON-SYNGENTA-JISC-INTERNET2-17052", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1233, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1037, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.23", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-par-fr-idrac |perfSONAR iDRAC", + "circuits": [ + { + "id": 661991, + "name": "PS-PAR-FR-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 718, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.8", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1111, + "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": "ge-0/0/0.302", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #Lon2-Groove-1-Management| LON2 Groove 1 Direct Management", + "circuits": [ + { + "id": 661197, + "name": "LON2-GROOVE-1-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1053, + "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": [], + "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": "mx1.ams.nl.geant.net", + "name": "ae1", + "bundle": [ + "et-7/0/2" + ], + "bundle-parents": [ + "et-7/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02013 | AMS-AMS |", + "circuits": [], + "snmp-index": 1211, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-AMS", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-AMS", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/45", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 658, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "so-1/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 732, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.250", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #taas-gts-control-par-fr-vlan250 | TAAS GTS CONTROL |In use by RARE", + "circuits": [ + { + "id": 661601, + "name": "TAAS-GTS-CONTROL-PAR-FR-VLAN250", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 527, + "dashboards": [], + "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": [], + "snmp-index": 692, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 658, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.12", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GLOBAL CUSTOMER HEANET #HEANET-AP2 $GS-00474 | ASN1213 |", + "circuits": [ + { + "id": 732231, + "name": "HEANET-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 629, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-9/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | GEN-MIL2 |GRV2 1/1/5 (Facing GEN GRV1 1/1/5)", + "circuits": [], + "snmp-index": 834, + "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": "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": 705938, + "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17084", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1291, + "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-9/1/5" + ], + "bundle-parents": [ + "et-9/1/5" + ], + "description": "LAG CUSTOMER RESTENA SRF9922289 $GA-01952 |", + "circuits": [], + "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": "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" + } + ], + "snmp-index": 1004, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae27.333", + "bundle": [], + "bundle-parents": [ + "et-2/1/5" + ], + "description": "SRV_IAS CUSTOMER ULAKBIM #ULAKBIM-AP2-IAS IASPS $GS-00592 | ASN8517", + "circuits": [ + { + "id": 663104, + "name": "ULAKBIM-AP2-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 743, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "ULAKBIM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ULAKBIM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx1.am.office.geant.net", + "name": "fxp0.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX1-AMS-FXP0 |", + "circuits": [ + { + "id": 708164, + "name": "SRX1-AMS-FXP0", + "type": "CORPORATE", + "status": "non-monitored" + } + ], + "snmp-index": 13, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 660, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 607, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "et-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | POZ-PRA", + "circuits": [], + "snmp-index": 888, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "gr-11/1/0.1", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN INFRASTRUCTURE ACCESS #TUNNEL-FORTIGATE-AMSTERDAM $GS-01113| TUNNEL TO FORTIGATE AM", + "circuits": [ + { + "id": 717896, + "name": "TUNNEL-FORTIGATE-AMSTERDAM", + "type": "L3-VPN", + "status": "non-monitored" + } + ], + "snmp-index": 1102, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 662, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 552, + "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": [], + "snmp-index": 1282, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 587, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1459, + "dashboards": [], + "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" + } + ], + "snmp-index": 667, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "ae11.100", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-1/1/5" + ], + "description": "SRV_GLOBAL CUSTOMER ARNES #ARNES-AP1 $GS-00426 | ASN2107 | ARNES AP1", + "circuits": [ + { + "id": 730042, + "name": "ARNES-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 583, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ARNES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ARNES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae10.333", + "bundle": [], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/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" + } + ], + "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": "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": [], + "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.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": [], + "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": "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": [], + "snmp-index": 635, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 562, + "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" + } + ], + "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.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": [], + "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": "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" + } + ], + "snmp-index": 676, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 622, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 576, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1070, + "dashboards": [ + "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-1/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER_GEO AARNET #AARNET-GEO-UK-1 $GA-01480 | SRF20044|", + "circuits": [], + "snmp-index": 1055, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "AARNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 1410, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GRNET P_AE11 SRF9914707 | IDC-GRF-F11-PP1/P43-44 IDC-BBH-MMR12-PP8PA/CAS02/P19-20 | OVERSUB-RISK-MPC3E", + "circuits": [], + "snmp-index": 628, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-10/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE- WAS T-SYSTEM", + "circuits": [], + "snmp-index": 1305, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "et-2/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 647, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.lon.uk.geant.net", + "name": "ae17", + "bundle": [ + "xe-3/3/0" + ], + "bundle-parents": [ + "xe-3/3/0" + ], + "description": "LAG PRIVATE FACEBOOK SRF9935089 $GA-01841 |", + "circuits": [], + "snmp-index": 713, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "et-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | KAU-KAU |", + "circuits": [], + "snmp-index": 614, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-KAU", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "KAU-KAU", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE1 SRF0000001 | mx2-sw1 (ex3400)", + "circuits": [], + "snmp-index": 741, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae16.333", + "bundle": [], + "bundle-parents": [ + "et-3/1/2" + ], + "description": "SRV_IAS CUSTOMER AMRES #AMRES-AP1-IAS IASGWS $GS-00522 | ASN13092 |", + "circuits": [ + { + "id": 725488, + "name": "AMRES-AP1-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 1050, + "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": "xe-0/0/2:2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.4020", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT WIX #lon-lon-GEANTOpen-Internet2-Netherlight-15034 $GS-00968 |", + "circuits": [ + { + "id": 706967, + "name": "LON-LON-GEANTOPEN-INTERNET2-NETHERLIGHT-15034", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1089, + "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": "qfx.par.fr.geant.net", + "name": "xe-1/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae9 | PAR-PRD-ESX1 SLOT4 PORT2 VMNIC5", + "circuits": [ + { + "id": 658568, + "name": "730XD-1-SLOT4-PORT2-VMNIC5-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 636, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY #SRX1-SRX2-CH-OFFICE |", + "circuits": [], + "snmp-index": 514, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-4/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | GEN2 LR4 CFP INSTALLED", + "circuits": [], + "snmp-index": 1051, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GLOBAL CUSTOMER BELNET #BELNET-AP2 $GS-00436 | ASN2611 |", + "circuits": [ + { + "id": 727333, + "name": "BELNET-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 615, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "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.350", + "bundle": [], + "bundle-parents": [ + "et-1/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SWITCH #gen-par-SYNGENTA-SWITCH-INTERNET2-17045 $GS-00715 |", + "circuits": [ + { + "id": 705424, + "name": "GEN-PAR-SYNGENTA-SWITCH-INTERNET2-17045", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1099, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "SWITCH", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae18.0", + "bundle": [], + "bundle-parents": [ + "xe-10/0/2" + ], + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 782, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/24", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX5 SLOT? PORT4 VMNIC11 - VSAN PORT", + "circuits": [ + { + "id": 658506, + "name": "730XD-5-VMNIC11-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 541, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ae3", + "bundle": [ + "xe-1/0/0", + "xe-2/0/1", + "xe-2/1/0", + "xe-2/1/1" + ], + "bundle-parents": [ + "xe-1/0/0", + "xe-2/0/1", + "xe-2/1/0", + "xe-2/1/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01795 | ATH-MIL |", + "circuits": [], + "snmp-index": 523, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH-MIL", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 525, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.2", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 980, + "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": "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" + } + ], + "snmp-index": 1171, + "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": "ae15.2281", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER HEANET NETHERLIGHT #AMS-DUB-LOFAR-HEANET-NETHERLIGHT-17003 $GS-00632 |", + "circuits": [ + { + "id": 734624, + "name": "AMS-DUB-LOFAR-HEANET-NETHERLIGHT-17003", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1124, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 549, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-4/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | AMS-LON", + "circuits": [], + "snmp-index": 562, + "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": "ae13", + "bundle": [ + "et-4/0/4" + ], + "bundle-parents": [ + "et-4/0/4" + ], + "description": "LAG RE_INTERCONNECT ESNET $GA-01482 | ASN293 | Lon-EEX-ESNET-400G", + "circuits": [], + "snmp-index": 941, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "xe-0/0/2:0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/12", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae3 | FRA-PRD-ESX03 SLOT0 PORT4 VMNIC3", + "circuits": [ + { + "id": 658417, + "name": "730XD-3-SLOT0-PORT4-VMNIC3", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 914, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.tar.ee.geant.net", + "name": "ae10.111", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_L3VPN CUSTOMER EENET #EENET-AP1-LHCONE $GS-00818 | ASN3221", + "circuits": [ + { + "id": 661994, + "name": "EENET-AP1-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 617, + "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": "ge-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 605, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/21", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae17 | PAR-PRD-ESX5 SLOT? PORT3 VMNIC6", + "circuits": [ + { + "id": 658364, + "name": "730XD-5-VMNIC6-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 538, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae28.2062", + "bundle": [], + "bundle-parents": [ + "et-4/1/1" + ], + "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" + } + ], + "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": "qfx.fra.de.geant.net", + "name": "xe-1/0/19", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 639, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 538, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "et-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | LJU01-ZAG", + "circuits": [], + "snmp-index": 765, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-ZAG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-ZAG", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.3600", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA | deltaId+950fc9bf-9bb3-4f7c-83c0-8b6fde07ee93:uuid+92c7f5b3-0d45-4166-bcb5-b58dbedc7cc4 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 1261, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-2/0/5.3803", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NETHERLIGHT #NORDU-TO-NETHERLIGHT-TEST $GS-00742 | Nordu-to-Netherlight test 1/12/2014", + "circuits": [ + { + "id": 719129, + "name": "NORDU-TO-NETHERLIGHT-TEST", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1593, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.300", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET INTERNET2 #ams-bru-GENI-BELNET-I2-13012 $GS-00628 |", + "circuits": [ + { + "id": 706804, + "name": "AMS-BRU-GENI-BELNET-I2-13012", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 651, + "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": "rt1.the.gr.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #SOF-THE-IPTRUNK $GS-02424| SOF-THE", + "circuits": [ + { + "id": 733010, + "name": "SOF-THE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 602, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-THE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SOF-THE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "rt1.mil2.it.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 570, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1473, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 835, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.21", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ZWEV-ExpressRoute-VLAN4091 $GS-01139 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711856, + "name": "BELNET-ZWEV-EXPRESSROUTE-VLAN4091", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 969, + "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": "ae36", + "bundle": [ + "xe-11/1/0", + "xe-11/3/1", + "xe-11/3/5" + ], + "bundle-parents": [ + "xe-11/1/0", + "xe-11/3/1", + "xe-11/3/5" + ], + "description": "LAG PRIVATE Verizon Digital $GA-01967 | FRANKFURT-VERIZON-2-LAG", + "circuits": [], + "snmp-index": 1017, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae22.0", + "bundle": [], + "bundle-parents": [ + "xe-0/1/5" + ], + "description": "SRV_IAS PRIVATE ORANGE BUSINESS SYSTEMS #NL-ORANGE-2281 $GS-01180 | ASN2281 |", + "circuits": [ + { + "id": 733924, + "name": "NL-ORANGE-2281", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "snmp-index": 1010, + "dashboards": [ + "IAS_PEERS", + "IAS_PRIVATE" + ], + "dashboard_info": { + "name": "ORANGE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ORANGE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 965, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRENA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GRENA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | WAS KIAE", + "circuits": [], + "snmp-index": 740, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 576, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 812, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.188", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mad-Fed4FIRE-BELNET-RedIRIS-14012 $GS-00676 |", + "circuits": [ + { + "id": 719493, + "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14012", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1066, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/0/1:1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 606, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.701", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT RARE #AMS-AMS-NETHERLIGHT-RARE-9952733 $GS-00626 | ", + "circuits": [ + { + "id": 734553, + "name": "AMS-AMS-NETHERLIGHT-RARE-9952733", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1155, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/0.260", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #taas-control-lon-uk-vlan260 | TAAS GTS CONTROL", + "circuits": [ + { + "id": 661541, + "name": "TAAS-CONTROL-LON-UK-VLAN260", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 836, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae30.111", + "bundle": [], + "bundle-parents": [ + "et-3/0/4" + ], + "description": "SRV_L3VPN RE_INTERCONNECT ESNET #NL-EEX-ESNET-LHCONE $GS-00835 | ASN293 |", + "circuits": [ + { + "id": 734117, + "name": "NL-EEX-ESNET-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "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": "mx1.par.fr.geant.net", + "name": "et-11/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DTN-Project 100G $GA-01379 | Under testing ", + "circuits": [], + "snmp-index": 1203, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "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": "rt2.kau.lt.geant.net", + "name": "xe-0/0/0:3", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae0", + "bundle": [ + "et-0/0/3" + ], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02352 | TAR-TAR ", + "circuits": [], + "snmp-index": 602, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "TAR-TAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "TAR-TAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "ae15.937", + "bundle": [], + "bundle-parents": [ + "et-0/0/2", + "et-1/0/2", + "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" + } + ], + "snmp-index": 851, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE FACEBOOK P_AE16 SRF9933137 | FB ID: FC-26606", + "circuits": [], + "snmp-index": 591, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-2", + "circuits": [], + "snmp-index": 751, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1468, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae8.0", + "bundle": [], + "bundle-parents": [ + "et-9/0/4", + "et-9/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON2-PAR-800G-IPTRUNK $GS-00053 | LON2-PAR | Coriant G30 800G", + "circuits": [ + { + "id": 724532, + "name": "LON2-PAR-800G-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 838, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON2-PAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LON2-PAR", + "interface_type": "LOGICAL" + } + ], + "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": [], + "snmp-index": 661, + "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": [], + "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": "mx1.bud.hu.geant.net", + "name": "xe-5/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 939, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | Link to gts.mx1 xe-0/0/0:3", + "circuits": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "et-3/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | LON1-LON2-800G | to LON02-GRV1 1/3/8", + "circuits": [], + "snmp-index": 616, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON1-LON2-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LON1-LON2-800G", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-11/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE Verizon P_AE36 | FRANKFURT-VERIZON-2-LL-1 | Interxion CID: DE236888| VERIZON CID: GEANT-FRN-EU-03-PX", + "circuits": [], + "snmp-index": 870, + "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", + "circuits": [], + "snmp-index": 1145, + "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": [], + "snmp-index": 836, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 | ATH-MIL | OTEGLOBE CID: 1-6RK0GC7 ", + "circuits": [], + "snmp-index": 551, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 717, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0-RT1 TRUNK 20GB 1_2", + "circuits": [], + "snmp-index": 559, + "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" + } + ], + "snmp-index": 711, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", + "circuits": [], + "snmp-index": 524, + "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": [], + "snmp-index": 1450, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | OPENFLOW port for virtual switch OF control", + "circuits": [], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 611, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-COR-IPTRUNK $GS-02403| COR-COR", + "circuits": [ + { + "id": 730602, + "name": "COR-COR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 608, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-COR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COR-COR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 584, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae23.12", + "bundle": [], + "bundle-parents": [ + "xe-3/2/0", + "xe-3/2/1" + ], + "description": "PHY INFRASTRUCTURE ACCESS FLOWMON SRF0000001 | FlowMon2 Collector Interface CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20170708", + "circuits": [], + "snmp-index": 1027, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ae10.911", + "bundle": [], + "bundle-parents": [ + "et-3/3/0" + ], + "description": "SRV_MDVPN CUSTOMER KIFU #KIFU-BGP-LU-COC $GS-01010 | MDVPN CoC - KIFU", + "circuits": [ + { + "id": 663038, + "name": "KIFU-BGP-LU-COC", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 697, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "KIFU", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KIFU", + "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": [], + "snmp-index": 1292, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | Reserved for Telia/RENAM", + "circuits": [], + "snmp-index": 912, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "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": "rt1.ham.de.geant.net", + "name": "ae12.320", + "bundle": [], + "bundle-parents": [ + "et-2/1/5" + ], + "description": "SRV_GLOBAL CUSTOMER PIONIER #PIONIER-AP2 $GS-00496 | ASN8501 | PIONIER Backup", + "circuits": [ + { + "id": 663232, + "name": "PIONIER-AP2", + "type": "GEANT IP", + "status": "non-monitored" + } + ], + "snmp-index": 1013, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "qfx.par.fr.geant.net", + "name": "ae3", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01716 | PAR-PRD-ESX3 ESXI Traffic LAG", + "circuits": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-1/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS BOD SRF9923341 | Netherlight automated GOLE, belived to be no longer required by Netherlight, Partner-rel advised 12/7/21 TB", + "circuits": [], + "snmp-index": 570, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ae11.0", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-2/0/1", + "xe-2/0/2" + ], + "description": "SRV_GLOBAL CUSTOMER ROEDUNET #ROEDUNET-AP1 $GS-00509 | ASN2614 |", + "circuits": [ + { + "id": 662979, + "name": "ROEDUNET-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 640, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ROEDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ROEDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-11/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 743, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 543, + "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" + } + ], + "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": "mx1.gen.ch.geant.net", + "name": "ae10.2905", + "bundle": [], + "bundle-parents": [ + "et-5/1/4" + ], + "description": "SRV_L2CIRCUIT CUSTOMER CERN GEANT #CERN-to-SDN-BoD-CORSA-in-Paris", + "circuits": [], + "snmp-index": 665, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "et-4/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER HEANET P_AE10 SRF22073 | #HEANET-AP1-100G-LL1 | ", + "circuits": [], + "snmp-index": 950, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae1.103", + "bundle": [], + "bundle-parents": [ + "xe-0/0/2", + "xe-0/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN_MANAGEMENT | ", + "circuits": [ + { + "id": 734050, + "name": "DCN_MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 716, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.2588", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE Test Connection | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 635, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "et-5/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | LIS-MAD | 200G", + "circuits": [], + "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": "rt1.pra.cz.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/5", + "et-0/1/2", + "et-0/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-PRA2-IPTRUNK $GS-00033| FRA-PRA2 |", + "circuits": [ + { + "id": 724545, + "name": "FRA-PRA2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 915, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-PRA2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FRA-PRA2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "ae6", + "bundle": [ + "et-2/0/2", + "et-2/0/5" + ], + "bundle-parents": [ + "et-2/0/2", + "et-2/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02373 | LJU01-ZAG", + "circuits": [], + "snmp-index": 795, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-ZAG", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "LJU01-ZAG", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.por.pt.geant.net", + "name": "et-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to GEANT ODF P2 - QSFP LR4 optic installed", + "circuits": [], + "snmp-index": 556, + "dashboards": [], + "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": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "ae12.0", + "bundle": [], + "bundle-parents": [ + "xe-0/1/5", + "xe-0/1/6" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VEEAMServer-Bra $GS-00082 | VEEAM backup-1.bra.sk.geant.net", + "circuits": [ + { + "id": 732469, + "name": "VEEAMSERVER-BRA", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 620, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-ams-nl-RE-IAS | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 623, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/0/2:0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "ae3.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-KAU-RT1 | ", + "circuits": [ + { + "id": 719887, + "name": "DCN-MANAGEMENT-KAU-RT1", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 614, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 524, + "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" + } + ], + "snmp-index": 894, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 608, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1212, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER HEANET P_AE10 SRF22073 | #HEANET-AP2-100G-LL1 | ", + "circuits": [], + "snmp-index": 596, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 516, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | ATH2-VIE | OTEGLOBE CID: 1-4XPLWDZ | OVERSUB-RISK-MPC3E", + "circuits": [], + "snmp-index": 623, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 665, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae11.333", + "bundle": [], + "bundle-parents": [ + "et-2/1/0", + "et-2/1/1", + "et-2/1/2" + ], + "description": "SRV_IAS CUSTOMER DFN #DFN-AP1-IAS IASPS $GS-00566 | ASN680 |", + "circuits": [ + { + "id": 728421, + "name": "DFN-AP1-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "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": "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": [], + "snmp-index": 1359, + "dashboards": [], + "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": [], + "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": "mx2.zag.hr.geant.net", + "name": "ae10.333", + "bundle": [], + "bundle-parents": [ + "et-5/0/2", + "et-5/0/5" + ], + "description": "SRV_IAS CUSTOMER ARNES #ARNES-AP2-IAS IASPS $GS-00553 | ASN2107", + "circuits": [ + { + "id": 730327, + "name": "ARNES-AP2-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 848, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "ARNES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ARNES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "et-4/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | COR-DUB", + "circuits": [], + "snmp-index": 940, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-DUB", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "COR-DUB", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-9/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE Verizon P_AE30 | VIENNA-VERIZON-2-LL-2 | VERIZON CID: GEANT-VIM-EU-01-PX", + "circuits": [], + "snmp-index": 571, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS P_AE3 SRF0000001 | rt1-sw1 (ex4300)", + "circuits": [], + "snmp-index": 564, + "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" + } + ], + "snmp-index": 1413, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1507, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 828, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.1627", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #gen-lon-SCION-SCION-INTERNET2-1 $GS-02297 |", + "circuits": [ + { + "id": 727047, + "name": "GEN-LON-SCION-SCION-INTERNET2-1", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1199, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "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": [], + "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": "rt2.cor.ie.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #COR-LON2-IPTRUNK $GS-02386| COR-LON2", + "circuits": [ + { + "id": 731117, + "name": "COR-LON2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 613, + "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": "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" + } + ], + "snmp-index": 1170, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "WACREN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "WACREN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 813, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 759, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 755, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "rt1.ham.de.geant.net", + "name": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | AMS-HAM", + "circuits": [], + "snmp-index": 781, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-HAM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-HAM", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "ae4", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01717 | PAR-PRD-ESX4 ESXI Traffic LAG", + "circuits": [], + "snmp-index": 587, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1052, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1460, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | COR-LON2-PAR - COR01-GRV2 1/1/5", + "circuits": [], + "snmp-index": 602, + "dashboards": [], + "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": [], + "snmp-index": 1262, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "|", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "|", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 563, + "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": [], + "snmp-index": 1565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/6.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT EUMETSAT #LON-EUMETSAT-SERVER-DATA-TRAFFIC $GS-02313 | LON-EUMETSAT-1G", + "circuits": [ + { + "id": 727971, + "name": "LON-EUMETSAT-SERVER-DATA-TRAFFIC", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 688, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "EUMETSAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EUMETSAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae7", + "bundle": [ + "xe-0/2/7" + ], + "bundle-parents": [ + "xe-0/2/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS | AMT RELAY MX204 ROUTER AMS-AMS ", + "circuits": [], + "snmp-index": 960, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX4 SLOT0 PORT1 VMNIC0", + "circuits": [ + { + "id": 658504, + "name": "730XD-4-SLOT0-PORT1-VMNIC0-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 522, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.191", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS NORDUNET #ham-mad-REDIRIS-NORDUNET $GS-02343 | ", + "circuits": [ + { + "id": 731423, + "name": "HAM-MAD-REDIRIS-NORDUNET", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 721, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/24", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX05 SLOT? PORT4 VMNIC11 - VSAN PORT", + "circuits": [ + { + "id": 658584, + "name": "730XD-5-VMNIC11", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 643, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.buc.ro.geant.net", + "name": "ae11.111", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-2/0/1", + "xe-2/0/2" + ], + "description": "SRV_L3VPN CUSTOMER ROEDUNET #ROEDUNET-AP1-LHCONE $GS-00857 | ASN2614", + "circuits": [ + { + "id": 663190, + "name": "ROEDUNET-AP1-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 643, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "ROEDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ROEDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae0", + "bundle": [ + "xe-4/1/4", + "xe-8/0/3", + "xe-11/2/1", + "xe-11/2/2" + ], + "bundle-parents": [ + "xe-4/1/4", + "xe-8/0/3", + "xe-11/2/1", + "xe-11/2/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01871 | ATH2-VIE |", + "circuits": [], + "snmp-index": 653, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 1571, + "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": 708737, + "name": "BUD-VIE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "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.mil2.it.geant.net", + "name": "et-9/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER UOM P_AE11 SRF22076 | #UOM-AP1-LL1 | ", + "circuits": [], + "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": "rt2.ams.nl.geant.net", + "name": "ae10.35", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-FUNET-ExpressRoute-VLAN3918 $GS-02328 | ", + "circuits": [ + { + "id": 731514, + "name": "NORDUNET-FUNET-EXPRESSROUTE-VLAN3918", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 674, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.3921", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET RARE #AMS-HAM-RARE-NORDUNET-24001 $GS-02430 |", + "circuits": [ + { + "id": 732791, + "name": "AMS-HAM-RARE-NORDUNET-24001", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1487, + "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.mil2.it.geant.net", + "name": "ae18.55", + "bundle": [], + "bundle-parents": [ + "et-2/0/2" + ], + "description": "SRV_GLOBAL CUSTOMER ACONET #ACONET-AP2-EUMETCAST $GS-00424 | ASN1853 | mcast", + "circuits": [ + { + "id": 661509, + "name": "ACONET-AP2-EUMETCAST", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 806, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ACONET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ACONET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RIG-RIG-IPTRUNK $GS-00060 | RIG-RIG |", + "circuits": [ + { + "id": 708715, + "name": "RIG-RIG-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 602, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-RIG", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RIG-RIG", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 756, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3907", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #Nordunet-Aalto-ExpressRoute-Vlan3907 $GS-01149 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731509, + "name": "NORDUNET-AALTO-EXPRESSROUTE-VLAN3907", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 963, + "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/0/6.11", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER WP6T3 WP6T3 #LON2-LON2-WP7T2SF-BMS8-JRA2T4-21089 $GS-00740 | SRF21089", + "circuits": [ + { + "id": 715036, + "name": "LON2-LON2-WP7T2SF-BMS8-JRA2T4-21089", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 675, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "WP6T3", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "WP6T3", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/7.1114", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2Circuit Infrastructure GEANT GEANT #UAT-Test-Infrastructure $GS-11114 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 719629, + "name": "UAT-TEST-INFRASTRUCTURE", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1059, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 665, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "lt-1/3/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #LON-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 1229, + "dashboards": [], + "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": [], + "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": "mx2.zag.hr.geant.net", + "name": "xe-2/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 757, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | COR-LON2", + "circuits": [], + "snmp-index": 600, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-LON2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "COR-LON2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 595, + "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": [], + "snmp-index": 1199, + "dashboards": [], + "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" + } + ], + "snmp-index": 1058, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "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" + } + ], + "snmp-index": 1178, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "HBKU", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HBKU", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_ae3 SRF0000001 | rt1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 550, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "so-1/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 727, + "dashboards": [], + "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": [], + "snmp-index": 1019, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-2/0/0.1630", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER GRnet SCION #ath-gen-SCION-GRNET-SCION-123079 $GS-02381 |", + "circuits": [ + { + "id": 729799, + "name": "ATH-GEN-SCION-GRNET-SCION-123079", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 710, + "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/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ESNET P_AE13 SRF9928017 |", + "circuits": [], + "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.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" + } + ], + "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": "mx2.zag.hr.geant.net", + "name": "ge-0/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 681, + "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": [], + "snmp-index": 566, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae7.0", + "bundle": [], + "bundle-parents": [ + "xe-0/2/7" + ], + "description": "SRV_INFRASTRUCTURE ACCESS | #AMS-AMS-AMT-RELAY-MX204-ROUTER ", + "circuits": [], + "snmp-index": 961, + "dashboards": [], + "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": 705894, + "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17088", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1289, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3901", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #Nordunet-Laurea-ExpressRoute-Vlan3901 $GS-01152 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731512, + "name": "NORDUNET-LAUREA-EXPRESSROUTE-VLAN3901", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 961, + "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": "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": [], + "snmp-index": 708, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 840, + "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" + } + ], + "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": "mx2.zag.hr.geant.net", + "name": "xe-2/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 738, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae11 | FRA-PRD-ESX03 SLOT0 PORT2 VMNIC1", + "circuits": [ + { + "id": 658487, + "name": "730XD-3-SLOT0-PORT2-VMNIC1", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 521, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "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" + } + ], + "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": "rt2.ath2.gr.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 539, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae14", + "bundle": [ + "et-10/1/2" + ], + "bundle-parents": [ + "et-10/1/2" + ], + "description": "LAG PUBLIC DE-CIX SRF9943055 $GA-01779 |", + "circuits": [], + "snmp-index": 652, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 564, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.par.fr.geant.net", + "name": "irb.3008", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS NMAAS #nmaas-isis-listener $GS-00203 | NMAAS IS-IS Listener Contact: niall.donaghy@geant.org", + "circuits": [ + { + "id": 712155, + "name": "INFOBLOX-TEST-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 630, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 519, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-9/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE Verizon P_AE19 |VIENNA-VERIZON-1-LL-1 | VERIZON CID: GEANT-VIN-EU-01-PX", + "circuits": [], + "snmp-index": 570, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "730XD-1-VM-TRAFFIC-LAG", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 578, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.9", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-DRAC-PAR-FR | ne-esxi-prod-par-1-idrac", + "circuits": [ + { + "id": 679317, + "name": "NE-ESXI-DRAC-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1078, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-9/0/2", + "et-9/0/5", + "et-9/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-PRA2-IPTRUNK $GS-00033| FRA-PRA2 | ", + "circuits": [ + { + "id": 724545, + "name": "FRA-PRA2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 593, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-PRA2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FRA-PRA2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RENAM", + "circuits": [], + "snmp-index": 565, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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_MIL2", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 677, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "xe-5/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | No optic present", + "circuits": [], + "snmp-index": 678, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae15.620", + "bundle": [], + "bundle-parents": [ + "et-1/0/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET RNP #bru-par-IMINDS-Belnet-RNP-1505 $GS-00680 |", + "circuits": [ + { + "id": 727507, + "name": "BRU-PAR-IMINDS-BELNET-RNP-1505", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1096, + "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": "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" + } + ], + "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.poz.pl.geant.net", + "name": "xe-1/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | New Leased Span Poznan-Vienna", + "circuits": [], + "snmp-index": 567, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.1103", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "description": "SRV_GLOBAL CUSTOMER SURF #SURF-AP1 $GS-00512 | ASN1103 |", + "circuits": [ + { + "id": 734591, + "name": "SURF-AP1", + "type": "GEANT IP", + "status": "non-monitored" + } + ], + "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": "rt1.rig.lv.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER LAT P_AE10 SRF9912943 | LAT-AP1-LL-1", + "circuits": [], + "snmp-index": 619, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER LAT P_AE10 SRF9912921 LAT-AP2-LL-1 | LAT CID: GS01-002-02", + "circuits": [], + "snmp-index": 600, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "rt1.pra.cz.geant.net", + "name": "et-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | POZ-PRA", + "circuits": [], + "snmp-index": 899, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF9928669 | #1", + "circuits": [], + "snmp-index": 635, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 650, + "dashboards": [], + "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": "non-monitored" + } + ], + "snmp-index": 1286, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "LOGICAL" + }, + { + "name": "SINGAREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 561, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 727, + "dashboards": [], + "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": [], + "snmp-index": 1579, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "SINGAREN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SINGAREN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 564, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae2", + "bundle": [ + "et-10/0/2", + "et-10/0/5", + "et-10/1/2" + ], + "bundle-parents": [ + "et-10/0/2", + "et-10/0/5", + "et-10/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01854 | MIL2-VIE |", + "circuits": [], + "snmp-index": 1022, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MIL2-VIE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "MIL2-VIE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "mx1.poz.pl.geant.net", + "name": "ae11.200", + "bundle": [], + "bundle-parents": [ + "et-3/3/0" + ], + "description": "SRV_GLOBAL CUSTOMER PIONIER #PIONIER-TemporaryVLAN $GS-00494 | Temporary Vlan for DMC TT#2019102134001066", + "circuits": [ + { + "id": 661705, + "name": "PIONIER-TEMPORARYVLAN", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 670, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 611, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae1", + "bundle": [ + "et-0/0/3" + ], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02030 | RIG-RIG |", + "circuits": [], + "snmp-index": 585, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-RIG", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "RIG-RIG", + "interface_type": "AGGREGATE" + } + ], + "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": [], + "snmp-index": 638, + "dashboards": [], + "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": [], + "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": "rt2.chi.md.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "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" + } + ], + "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.gen.ch.geant.net", + "name": "ge-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 610, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "et-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | CFP1 LR4 optic installed", + "circuits": [], + "snmp-index": 676, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC CIXP P_AE18 SRF9943491 | CIXP port: E513-X-XBRML-1.cern.ch eth4/1", + "circuits": [], + "snmp-index": 1304, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 590, + "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": [], + "snmp-index": 972, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 538, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT UBUNTUNET SRF996314 $GA-01463", + "circuits": [], + "snmp-index": 1471, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae1.103", + "bundle": [], + "bundle-parents": [ + "xe-2/1/2", + "xe-2/1/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN_MANAGEMENT_ZAG | ", + "circuits": [ + { + "id": 718917, + "name": "DCN_MANAGEMENT_ZAG", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1031, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 597, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/3/3.200", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER PIONIER TENET #lon-lon-GEANTOPEN-PIONIER-TENET-18067 $GS-00980 |", + "circuits": [ + { + "id": 718080, + "name": "LON-LON-GEANTOPEN-PIONIER-TENET-18067", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1568, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "interface_type": "LOGICAL" + }, + { + "name": "TENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919781 | PAR01-DTNX10-1 XCM 1", + "circuits": [], + "snmp-index": 593, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 511, + "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": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 530, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1290, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/11", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae3 | PAR-PRD-ESX3 SLOT0 PORT3 VMNIC2", + "circuits": [ + { + "id": 658508, + "name": "730XD-3-SLOT0-PORT3-VMNIC2-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 641, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 609, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.2511", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE SAO-DUB | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "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.cor.ie.geant.net", + "name": "ae10.1214", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT CUSTOMER HEANET GEANT #ams-dub2-HEANET-RARE-21061 $GS-00633 |", + "circuits": [ + { + "id": 732229, + "name": "AMS-DUB2-HEANET-RARE-21061", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 631, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 566, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 544, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae3.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-BRU2-BE | DCN MANAGEMENT ", + "circuits": [ + { + "id": 727160, + "name": "DCN-MANAGEMENT-BRU2-BE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 602, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/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" + } + ], + "snmp-index": 834, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "ae15.936", + "bundle": [], + "bundle-parents": [ + "et-0/0/2", + "et-1/0/2", + "et-4/1/0" + ], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS GEANT #AMS-BIL-REDIRIS-RARE $GS-02287 |", + "circuits": [ + { + "id": 726618, + "name": "AMS-BIL-REDIRIS-RARE", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 850, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | ATH2-ATH2", + "circuits": [], + "snmp-index": 589, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-ATH2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-ATH2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX1 SLOT4 PORT4 VMNIC7 - VSAN PORT", + "circuits": [ + { + "id": 658468, + "name": "730XD-1-SLOT4-PORT4-VMNIC7-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 517, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ae11", + "bundle": [ + "xe-2/0/4", + "xe-2/0/5", + "xe-2/0/9", + "xe-3/0/2" + ], + "bundle-parents": [ + "xe-2/0/4", + "xe-2/0/5", + "xe-2/0/9", + "xe-3/0/2" + ], + "description": "LAG CUSTOMER GRNET SRF9914707 $GA-01929 |", + "circuits": [], + "snmp-index": 593, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": "non-monitored" + } + ], + "snmp-index": 1307, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "CESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae20.3153", + "bundle": [], + "bundle-parents": [ + "et-2/1/2", + "et-5/1/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER SINET DFN #AMS-HAM-JAXA-SINET-DFN-14006 $GS-00640 |", + "circuits": [ + { + "id": 706057, + "name": "AMS-HAM-JAXA-SINET-DFN-14006", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1292, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "LOGICAL" + }, + { + "name": "SINET", + "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" + } + ], + "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.mil2.it.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 571, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.4040", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN RE_INTERCONNECT CANARIE #CANARIE-LON-LHCONE $GS-00810 | ASN6509", + "circuits": [ + { + "id": 661711, + "name": "CANARIE-LON-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 1093, + "dashboards": [ + "LHCONE", + "LHCONE_PEER", + "RE_PEER" + ], + "dashboard_info": { + "name": "CANARIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CANARIE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 572, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae14", + "bundle": [ + "et-3/1/5" + ], + "bundle-parents": [ + "et-3/1/5" + ], + "description": "LAG CUSTOMER CARNET SRF9927637 $GA-01865 | CARNet AP", + "circuits": [], + "snmp-index": 621, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CARNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "CARNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 619, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/11", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae3 | FRA-PRD-ESX03 SLOT0 PORT3 VMNIC2", + "circuits": [ + { + "id": 658550, + "name": "730XD-3-SLOT0-PORT3-VMNIC2", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 629, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae7", + "bundle": [ + "et-8/0/4", + "et-8/1/4" + ], + "bundle-parents": [ + "et-8/0/4", + "et-8/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE #GEN-PAR-800G-LAG $GA-01823 | GEN-PAR", + "circuits": [], + "snmp-index": 654, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-PAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "GEN-PAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae2.0", + "bundle": [], + "bundle-parents": [ + "et-10/0/2", + "et-10/0/5", + "et-10/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MIL2-VIE-IPTRUNK $GS-00057 | MIL2-VIE IP TRUNK", + "circuits": [ + { + "id": 725172, + "name": "MIL2-VIE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1023, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MIL2-VIE IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MIL2-VIE IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-LR | ", + "circuits": [], + "snmp-index": 591, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae18.333", + "bundle": [], + "bundle-parents": [ + "et-9/1/5" + ], + "description": "SRV_IAS CUSTOMER RESTENA #RESTENA-AP1-IAS IASPS $GS-00585 | ASN2602 |", + "circuits": [ + { + "id": 732134, + "name": "RESTENA-AP1-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "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": "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-00022 | BUC-CHI |", + "circuits": [ + { + "id": 713233, + "name": "BUC-CHI-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.3880", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT #WIX-TO-NETHERLIGHT-TEST $GS-00766 | WIX-to-Netherlight test 02/12/2014", + "circuits": [ + { + "id": 719133, + "name": "WIX-TO-NETHERLIGHT-TEST", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1062, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "WIX", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "WIX", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 641, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL | ", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BOD TestPort $GA-01470 | connected to ge-0/3/3", + "circuits": [], + "snmp-index": 604, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-1/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 677, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 727349, + "name": "BELNET-ZWEV-EXPRESSROUTE-VLAN4082", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 602, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae1.998", + "bundle": [], + "bundle-parents": [ + "xe-2/1/2", + "xe-2/1/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-zag-hr| SW1-EX3400 MANAGEMENT", + "circuits": [ + { + "id": 718936, + "name": "EX3400-MANAGEMENT-ZAG-HR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1032, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-2/0/2", + "et-2/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU01-ZAG-IPTRUNK $GS-02372| LJU01-ZAG", + "circuits": [ + { + "id": 729571, + "name": "LJU01-ZAG-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 796, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-ZAG", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-ZAG", + "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" + } + ], + "snmp-index": 797, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-3/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 770, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | BRU-PAR | ", + "circuits": [], + "snmp-index": 597, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-PAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BRU-PAR", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "mx1.bud.hu.geant.net", + "name": "ae18.10", + "bundle": [], + "bundle-parents": [ + "xe-1/0/3", + "xe-5/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": "operational" + } + ], + "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": "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" + } + ], + "snmp-index": 984, + "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": "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" + } + ], + "snmp-index": 593, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae1.202", + "bundle": [], + "bundle-parents": [ + "xe-5/2/3", + "xe-11/2/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #A10-DDOS-SCRUBBING-FRA | A10 Management A10 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", + "circuits": [ + { + "id": 732680, + "name": "A10-DDOS-SCRUBBING-FRA", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1406, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 523, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "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": 709302, + "name": "LON-LON-GEANTOPEN-ESNET-ESNET-170391", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "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.pra.cz.geant.net", + "name": "ae11.333", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_IAS CUSTOMER CESNET #CESNET-AP1-IAS IASPS $GS-00563 | ASN2852", + "circuits": [ + { + "id": 661262, + "name": "CESNET-AP1-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "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.vie.at.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915901 | VIE01-DTNX10-1 XCM 1", + "circuits": [], + "snmp-index": 636, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae27.0", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 973, + "dashboards": [], + "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": [], + "snmp-index": 635, + "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": [], + "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.ams.nl.geant.net", + "name": "xe-5/2/3.1214", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER HEANET GEANT #ams-dub2-HEANET-RARE-21061 $GS-00633 |", + "circuits": [ + { + "id": 732229, + "name": "AMS-DUB2-HEANET-RARE-21061", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1169, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae27.111", + "bundle": [], + "bundle-parents": [ + "et-2/1/5" + ], + "description": "SRV_L3VPN CUSTOMER ULAKBIM #ULAKBIM-AP2-LHCONE $GS-00869 | ASN8517 |", + "circuits": [ + { + "id": 715089, + "name": "ULAKBIM-AP2-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 742, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "ULAKBIM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ULAKBIM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.415", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/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" + } + ], + "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": "rt1.ham.de.geant.net", + "name": "ae11.111", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_L3VPN CUSTOMER NORDUNET #NORDUNET-AP2-LHCONE $GS-02118 | ASN2603 |", + "circuits": [ + { + "id": 731426, + "name": "NORDUNET-AP2-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 956, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/11", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 525, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 524, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/0.200", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON2-SEC-ESX-DEVICES-IDRAC |lon2-sec-esx20/21-devices-iDRAC CONTACT: anura.hettiarachchi@geant.org IMPLEMENTED: 20181031", + "circuits": [ + { + "id": 661169, + "name": "LON2-SEC-ESX-DEVICES-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 726, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 650, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #TAR-TAR-IPTRUNK $GS-02351 | TAR-TAR", + "circuits": [ + { + "id": 728950, + "name": "TAR-TAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 604, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "TAR-TAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "TAR-TAR", + "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": [], + "snmp-index": 756, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC INEX P_AE14 SRF9943027 | swi1-cwt1-1 Switch Port:Ethernet12", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-11/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP7T2SF SRF0000001 | PAR BMS Server #7 (Reserved for SWD/IT)", + "circuits": [], + "snmp-index": 1197, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 585, + "dashboards": [ + "IC1", + "RE_PEER" + ], + "dashboard_info": { + "name": "IC-1", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "IC-1", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 866, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "REDCLARA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDCLARA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-1/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 679, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | PRA-VIE", + "circuits": [], + "snmp-index": 906, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "PRA-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "PRA-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-7/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 826, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.29", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-UCLOUVAIN-ExpressRoute-VLAN4080 $GS-02152 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 719820, + "name": "BELNET-UCLOUVAIN-EXPRESSROUTE-VLAN4080", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 746, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "et-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | LJU01-MIL2", + "circuits": [], + "snmp-index": 761, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-MIL2", + "interface_type": "PHYSICAL" + } + ], + "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_VPLS INFRASTRUCTURE RARE P4 #RARE-PAR-RENATER $GS-00776 |", + "circuits": [ + { + "id": 712147, + "name": "RARE-PAR-RENATER", + "type": "L2SERVICES", + "status": "non-monitored" + } + ], + "snmp-index": 628, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae28.220", + "bundle": [], + "bundle-parents": [ + "et-4/1/1" + ], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 TENET #lon-lon-GEANTOPEN-INTERNET2-TENET-19004 $GS-00970 |", + "circuits": [ + { + "id": 718086, + "name": "LON-LON-GEANTOPEN-INTERNET2-TENET-19004", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 646, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "TENET", + "interface_type": "LOGICAL" + } + ], + "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" + } + ], + "snmp-index": 869, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "et-10/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER JISC P_AE12 SRF22051 | #JISC-AP2-LL3 | JISC ID: J/2C/0410/03/1CGE | ", + "circuits": [], + "snmp-index": 1159, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-10/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 | AMS-LON | Coriant G30 link 2", + "circuits": [], + "snmp-index": 1295, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "mx2.ath.gr.geant.net", + "name": "ge-2/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 674, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 564, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-11/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP7T2SF SRF0000001 | PAR BMS Server #6 (Reserved for SWD/IT)", + "circuits": [], + "snmp-index": 1196, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae13.200", + "bundle": [], + "bundle-parents": [ + "xe-0/0/7" + ], + "description": "SRV_GLOBAL CUSTOMER RASH | test VLAN for MGEN 2023041834003691", + "circuits": [], + "snmp-index": 933, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RASH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RASH", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.4006", + "bundle": [], + "bundle-parents": [], + "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" + } + ], + "snmp-index": 1157, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + }, + { + "name": "NKN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 517, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-10/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE FACEBOOK P_AE18 SRF9934787 | FB ID: FC-26603", + "circuits": [], + "snmp-index": 902, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.3005", + "bundle": [], + "bundle-parents": [], + "description": "SRV_VPLS INFRASTRUCTURE #RARE-P4-MANAGEMENT-VLAN26 | RARE P4 B1.AMS MGMT CONTACT: MIAN.USMAN@GEANT.ORG IMPLEMENTED: 20200116", + "circuits": [ + { + "id": 662971, + "name": "RARE-P4-MANAGEMENT-VLAN26", + "type": "L2SERVICES", + "status": "operational" + } + ], + "snmp-index": 1304, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-11/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE WP7T2SF SRF0000001 | AMS BMS Server #6 (Reserved for SWD/IT)", + "circuits": [], + "snmp-index": 1237, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 806, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.21", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PS-AMS-NL-IDRAC | PERFSONAR IDRAC", + "circuits": [ + { + "id": 663225, + "name": "PS-AMS-NL-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 753, + "dashboards": [], + "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": [], + "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": "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": [], + "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": "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": [], + "snmp-index": 1355, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 862, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "NISN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NISN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.131", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ocvm-lon-uk | OC VM User Traffic", + "circuits": [ + { + "id": 661633, + "name": "OCVM-LON-UK", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 822, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 604, + "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-11/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY UPSTREAM COLT | P_AE29 Interxion CID: DE201856 | COLT ID: 444032094", + "circuits": [], + "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": "rt2.kau.lt.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-2/0/4.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #par-lon2-SUPERPOP-QFX-GEANT $GS-00080 |", + "circuits": [ + { + "id": 729412, + "name": "PAR-LON2-SUPERPOP-QFX-GEANT", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 612, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx2.am.office.geant.net", + "name": "fxp0.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #SRX2-AMS-FXP0 |", + "circuits": [ + { + "id": 708157, + "name": "SRX2-AMS-FXP0", + "type": "CORPORATE", + "status": "non-monitored" + } + ], + "snmp-index": 13, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/2/7.1007", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET JISC #bru-lon-Fed4FIRE-BELNET-JISC-14023 $GS-00672 |", + "circuits": [ + { + "id": 727506, + "name": "BRU-LON-FED4FIRE-BELNET-JISC-14023", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1506, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + }, + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 1264, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4063", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-JUST-ExpressRoute-VLAN4063 $GS-02319 | ", + "circuits": [ + { + "id": 727778, + "name": "BELNET-JUST-EXPRESSROUTE-VLAN4063", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 667, + "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": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 539, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/1.23", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-ath-gr-idrac |perfSONAR iDRAC", + "circuits": [ + { + "id": 661314, + "name": "PS-ATH-GR-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 661, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 563, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "et-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | BRU-BRU |", + "circuits": [], + "snmp-index": 604, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-BRU", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BRU-BRU", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "et-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | No CFP installed", + "circuits": [], + "snmp-index": 748, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "xe-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS P_ae1 SRF0000001 | rt1-sw2 (ex3400)", + "circuits": [], + "snmp-index": 660, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 521, + "dashboards": [], + "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" + } + ], + "snmp-index": 601, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH-ATH2 | GRNET CID: GRNET ATH-ATH2 DWDM-1 #CH47", + "circuits": [], + "snmp-index": 629, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 828, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER EUMETSAT", + "circuits": [ + { + "id": 727950, + "name": "LONDON-LONDON-1GBE-004(GEANT)", + "type": "OOB IP LINK", + "status": "non-monitored" + } + ], + "snmp-index": 598, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "EUMETSAT", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "EUMETSAT", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 599, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/12", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 528, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 818, + "dashboards": [], + "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": [], + "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": "mx1.gen.ch.geant.net", + "name": "xe-2/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1338, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "lt-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE", + "circuits": [], + "snmp-index": 641, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-1/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER HEANET SRF9921665 $GA-01632 |", + "circuits": [], + "snmp-index": 571, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 752, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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 $GA-01943 |", + "circuits": [], + "snmp-index": 998, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae11", + "bundle": [ + "et-2/1/0", + "et-2/1/1", + "et-2/1/2" + ], + "bundle-parents": [ + "et-2/1/0", + "et-2/1/1", + "et-2/1/2" + ], + "description": "LAG CUSTOMER DFN SRF9923337 $GA-01957 |", + "circuits": [], + "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": "mx1.buc.ro.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1014, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/0.21", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-lon2-uk-idrac |perfSONAR iDRAC", + "circuits": [ + { + "id": 661895, + "name": "PS-LON2-UK-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 678, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4.22", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP-GENEVA-VLAN22 | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", + "circuits": [ + { + "id": 663037, + "name": "OWAMP-GENEVA-VLAN22", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 814, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae11.111", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_L3VPN CUSTOMER CESNET #CESNET-AP1-LHCONE $GS-00813 | ASN2852", + "circuits": [ + { + "id": 725154, + "name": "CESNET-AP1-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "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": "mx1.mad.es.geant.net", + "name": "xe-7/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 807, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-1/2/2.19", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT_INTERNAL #DASHBOARD-TEST-SERVICE-(DO-NOT-OPEN-TICKET)|", + "circuits": [ + { + "id": 707142, + "name": "DASHBOARD-TEST-SERVICE-(DO-NOT-OPEN-TICKET)", + "type": "CORPORATE", + "status": "operational" + } + ], + "snmp-index": 610, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 563, + "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" + } + ], + "snmp-index": 671, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4082", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-KULEUVEN-EXPRESSROUTE-4082 $GS-01134 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727174, + "name": "BELNET-KULEUVEN-EXPRESSROUTE-4082", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 638, + "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": "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" + } + ], + "snmp-index": 964, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 544, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.24", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-STADKORTRIJK-ExpressRoute-VLAN4084 $GS-01138 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711864, + "name": "BELNET-STADKORTRIJK-EXPRESSROUTE-VLAN4084", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1042, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RENAM", + "circuits": [], + "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": "rt1.mil2.it.geant.net", + "name": "xe-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "xe-1/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER NORDUNET P_AE11 SRF23008 | CONNECTED TO NORDUNET xe-0/1/1", + "circuits": [], + "snmp-index": 532, + "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": "ge-0/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 615, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-2/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 637, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 642, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 540, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae1", + "bundle": [ + "xe-0/0/2", + "xe-0/0/3" + ], + "bundle-parents": [ + "xe-0/0/2", + "xe-0/0/3" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001| rt1-sw2 (ex3400)", + "circuits": [], + "snmp-index": 709, + "dashboards": [], + "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": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae25", + "bundle": [ + "xe-3/1/1" + ], + "bundle-parents": [ + "xe-3/1/1" + ], + "description": "LAG RE_INTERCONNECT ANKABUT SRF20079 $GA-01836 |", + "circuits": [], + "snmp-index": 617, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ANKABUT", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ANKABUT", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae16.10", + "bundle": [], + "bundle-parents": [ + "et-3/1/2" + ], + "description": "SRV_MDVPN CUSTOMER AMRES #AMRES-AP1-BGP-LU-COC $GS-00997 | MDVPN CoC - AMRES", + "circuits": [ + { + "id": 725487, + "name": "AMRES-AP1-BGP-LU-COC", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 1049, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "AMRES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMRES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 668, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1290", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET RENATER #bru-gen-IMINDS-IMINDS-RENATER-16023 $GS-00670 |", + "circuits": [ + { + "id": 706946, + "name": "BRU-GEN-IMINDS-IMINDS-RENATER-16023", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 662, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + { + "name": "IMINDS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 648, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1136, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | SOF-ZAG", + "circuits": [], + "snmp-index": 648, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-ZAG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SOF-ZAG", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-3/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | RARE EDGECORE WEDGE100BF-32X xe-1", + "circuits": [], + "snmp-index": 750, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1270, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1327, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae23.25", + "bundle": [], + "bundle-parents": [ + "et-3/1/4" + ], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET SCION #BRU-GEN-FED4FIRE-SCION-9928774 $GS-00671 |", + "circuits": [ + { + "id": 714186, + "name": "BRU-GEN-FED4FIRE-SCION-9928774", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 693, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FED4FIRE", + "interface_type": "LOGICAL" + }, + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | MX1-SW1 | (ex3400)", + "circuits": [], + "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": "rt1.fra.de.geant.net", + "name": "ae11.931", + "bundle": [], + "bundle-parents": [ + "et-2/1/0", + "et-2/1/1", + "et-2/1/2" + ], + "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" + } + ], + "snmp-index": 916, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + { + "name": "DFN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "gr-11/1/0.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT IRANET #NL-IRANET $GS-01168 | ASN6736 |", + "circuits": [ + { + "id": 717888, + "name": "NL-IRANET", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 965, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "IRANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "IRANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.22", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 978, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GARR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GARR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 582, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 1558, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "NETHERLIGHT", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-1/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER RENATER P_AE14 | RENATER-100GB-LL3", + "circuits": [], + "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.ams.nl.geant.net", + "name": "xe-2/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 582, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-7/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | AMS-FRA", + "circuits": [], + "snmp-index": 543, + "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": "lt-4/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 611, + "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" + } + ], + "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": "mx1.ath2.gr.geant.net", + "name": "ge-1/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 542, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | BUC-BUD", + "circuits": [], + "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": "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" + } + ], + "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.kie.ua.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | KIE-POZ | RETN CID: OC-904687-1.PL.POZ.PCS-UA.KIV.KPI-50GHZ", + "circuits": [], + "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": "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" + } + ], + "snmp-index": 1041, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + { + "name": "AMS-IX", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE FACEBOOK SRF9933139 P_AE14 | FB ID: FC-26605", + "circuits": [], + "snmp-index": 1038, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ath2.gr.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 538, + "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": [], + "snmp-index": 656, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "et-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | FRA-PRA2", + "circuits": [], + "snmp-index": 886, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "ae15.408", + "bundle": [], + "bundle-parents": [ + "et-0/0/2", + "et-1/0/2", + "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" + } + ], + "snmp-index": 832, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-3/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 740, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "et-1/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 676, + "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" + } + ], + "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.ath2.gr.geant.net", + "name": "xe-3/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH-ATH2 | GRNET CID: GRNET ATH-ATH2 DWDM-4 #CH45", + "circuits": [], + "snmp-index": 594, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "ae10.0", + "bundle": [], + "bundle-parents": [ + "xe-3/0/7", + "xe-3/2/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #VEEAM-BACKUP-2-MAR-FR | VEEAM backup-2.mar.fr.geant.net", + "circuits": [ + { + "id": 708236, + "name": "VEEAM-BACKUP-2-MAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 611, + "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": [], + "snmp-index": 683, + "dashboards": [], + "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" + } + ], + "snmp-index": 544, + "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" + } + ], + "snmp-index": 1209, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "mx1.lon2.uk.geant.net", + "name": "xe-2/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | FORTIGATE CLUSTER LON2-1 1_2 | No optic installed", + "circuits": [], + "snmp-index": 1593, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 563, + "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 | ROEDUNET CID: BUC-CHI-040-1", + "circuits": [], + "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.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" + } + ], + "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": "mx1.buc.ro.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 585, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 544, + "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-EEX-ESNET-IPV6 $GS-00890 | ASN293 | AMS-EEX-ESNET-400G", + "circuits": [ + { + "id": 734114, + "name": "NL-EEX-ESNET-IPV6", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 1032, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": 727345, + "name": "BELNET-FGOV-EXPRESSROUTE-VLAN4090", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 592, + "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-7/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 846, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "et-5/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT BELLA P_AE11 SRF21059| #FOR-LIS-BELLA-100G | Circuit ID: BRFT1 PTLX1 100GE00001", + "circuits": [], + "snmp-index": 799, + "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": [], + "snmp-index": 818, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 865, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 601, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-11/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT UBUNTUNET P_AE17 SRF9930065", + "circuits": [], + "snmp-index": 1232, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.300", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NPL-TEST-LON-UK-VLAN300 | NPL test", + "circuits": [ + { + "id": 661352, + "name": "NPL-TEST-LON-UK-VLAN300", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 510, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-7/0/1.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #fra-lon2-SUPERPOP-QFX-2-GEANT $GS-00077 |", + "circuits": [ + { + "id": 729418, + "name": "FRA-LON2-SUPERPOP-QFX-2-GEANT", + "type": "GEANT - GBS", + "status": "non-monitored" + } + ], + "snmp-index": 1072, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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": "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" + } + ], + "snmp-index": 826, + "dashboards": [ + "IAS_UPSTREAM" + ], + "dashboard_info": { + "name": "COLT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COLT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 565, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 622, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 639, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GARR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GARR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21", + "bundle": [ + "xe-2/2/1" + ], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "LAG CUSTOMER MICROSOFT EXPRESSROUTE #1 SRF20047 $GA-01911 |GEANT-EXR01-AMS21-PRI-06162020", + "circuits": [], + "snmp-index": 728, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MICROSOFT", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "MICROSOFT", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GRNET P_AE11 SRF9914707 | IDC-GRF-F11-PP1/P41-42 IDC-BBH-MMR12-PP8PA/CAS02/P17-18 | OVERSUB-RISK-MPC3E", + "circuits": [], + "snmp-index": 627, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "so-1/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 935, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "et-9/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | no optic installed", + "circuits": [], + "snmp-index": 1137, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE Test", + "circuits": [], + "snmp-index": 567, + "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": [], + "snmp-index": 1044, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-LR | ", + "circuits": [], + "snmp-index": 689, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ae11.333", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-2/0/1", + "xe-2/0/2" + ], + "description": "SRV_IAS CUSTOMER ROEDUNET #ROEDUNET-AP1-IAS IASGWS $GS-00544 | ASN2614", + "circuits": [ + { + "id": 663112, + "name": "ROEDUNET-AP1-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 642, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "ROEDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ROEDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae11.112", + "bundle": [], + "bundle-parents": [ + "et-2/1/0", + "et-2/1/1", + "et-2/1/2" + ], + "description": "SRV_MDVPN CUSTOMER DFN #DFN-BGP-LU-COC-AP1 $GS-01001 | MDVPN CoC - DFN AP1", + "circuits": [ + { + "id": 728422, + "name": "DFN-BGP-LU-COC-AP1", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 783, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae0", + "bundle": [ + "et-1/0/2", + "et-1/0/5" + ], + "bundle-parents": [ + "et-1/0/2", + "et-1/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02368 | SOF-ZAG", + "circuits": [], + "snmp-index": 703, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-ZAG", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "SOF-ZAG", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "qfx.lon2.uk.geant.net", + "name": "ae31", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01710 | MX1.LON2.UK AE16", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 791, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 635, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.682", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER ORACLE REDIRIS SRF21051 #fra-mad-ORACLE-REDIRIS-21051-VL682 $GS-00702", + "circuits": [ + { + "id": 719538, + "name": "FRA-MAD-ORACLE-REDIRIS-21051-VL682", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1081, + "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": "mx1.lon2.uk.geant.net", + "name": "et-7/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | NO QSFP OPTIC INSTALLED", + "circuits": [], + "snmp-index": 892, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS | QFX1 C0 MGMT", + "circuits": [], + "snmp-index": 521, + "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": [], + "snmp-index": 662, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/13", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae4 | FRA-PRD-ESX04 SLOT0 PORT4 VMNIC3", + "circuits": [ + { + "id": 658420, + "name": "730XD-4-SLOT0-PORT4-VMNIC3", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 631, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae18.2602", + "bundle": [], + "bundle-parents": [ + "et-9/1/5" + ], + "description": "SRV_GLOBAL CUSTOMER RESTENA #RESTENA-AP1 $GS-00507 | ASN2602 |", + "circuits": [ + { + "id": 732142, + "name": "RESTENA-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "et-5/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER_GEO ESnet #ESnet-GEO-UK-1 $GA-01449 | SRF9928165 | Lon-EEX-ESnet-OPEN-100G", + "circuits": [], + "snmp-index": 1265, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae13.111", + "bundle": [], + "bundle-parents": [ + "et-4/0/4" + ], + "description": "SRV_L3VPN RE_INTERCONNECT ESNET #ESNET-EEX-LON-LHCONE $GS-00821 | ASN293", + "circuits": [ + { + "id": 730146, + "name": "ESNET-EEX-LON-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "xe-5/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | RARE EDGECORE WEDGE100BF-32X xe-0", + "circuits": [], + "snmp-index": 882, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.lon2.uk.geant.net", + "name": "xe-0/0/44", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | ", + "circuits": [], + "snmp-index": 544, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae15", + "bundle": [ + "xe-2/1/5" + ], + "bundle-parents": [ + "xe-2/1/5" + ], + "description": "LAG CUSTOMER MREN SRF21023 $GA-01903 | ", + "circuits": [], + "snmp-index": 622, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MREN", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "MREN", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae10.0", + "bundle": [], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/5" + ], + "description": "SRV_GLOBAL CUSTOMER JISC #JISC-AP1 $GS-00479 | ASN786 |", + "circuits": [ + { + "id": 661264, + "name": "JISC-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "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": "mx1.lon2.uk.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 #LON-LON2-800G-LAG $GA-01761 | LON2-LON ", + "circuits": [], + "snmp-index": 619, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON2-LON", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "LON2-LON", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1201, + "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": "et-3/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ULAKBIM P_AE11 SRF21-024 | ULAKBIM-AP1-LL1 | TTI CID: WL078543", + "circuits": [], + "snmp-index": 689, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ULAKBIM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ULAKBIM", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1285, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-4/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1046, + "dashboards": [], + "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": [], + "snmp-index": 695, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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 ", + "circuits": [], + "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.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": [], + "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.vie.at.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 646, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-7/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | AMS-HAM", + "circuits": [], + "snmp-index": 1381, + "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": "ae43", + "bundle": [ + "et-1/1/5" + ], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "LAG INFRASTRUCTURE ACCESS | NEMO DDOS Mitigation Server 1 | ", + "circuits": [], + "snmp-index": 1326, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 884, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 545, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/6.23", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #Old PS BUD idrac| Old perfSONAR iDRAC", + "circuits": [ + { + "id": 663064, + "name": "OLD", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 834, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.2282", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER HEANET INTERNET2 #AMS-DUB-INTERNET2-HEANET-21097 $GS-00630 |", + "circuits": [ + { + "id": 716898, + "name": "AMS-DUB-INTERNET2-HEANET-21097", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1146, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX3 SLOT4 PORT4 VMNIC7 - VSAN PORT", + "circuits": [ + { + "id": 658470, + "name": "730XD-3-SLOT4-PORT4-VMNIC7-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-4/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | ATH2-MIL2", + "circuits": [], + "snmp-index": 937, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-MIL2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 841, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "qfx.fra.de.geant.net", + "name": "xe-1/0/21", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae17 | FRA-PRD-ESX05 SLOT? PORT3 VMNIC10", + "circuits": [ + { + "id": 658421, + "name": "730XD-5-VMNIC10", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 641, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "fxp0.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT #SRX2-CH-FXP0 |", + "circuits": [], + "snmp-index": 13, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "ae13", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01727 | QFX.FRA.DE AE13", + "circuits": [], + "snmp-index": 592, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 557, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae12.334", + "bundle": [], + "bundle-parents": [ + "xe-0/0/4" + ], + "description": "SRV_IAS CUSTOMER BREN #BREN-AP2-IAS IASPS $GS-00558 | ASN6802 ", + "circuits": [ + { + "id": 731984, + "name": "BREN-AP2-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 759, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "BREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS VEEAM SRF0000001 | R730xd port1", + "circuits": [], + "snmp-index": 660, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae0", + "bundle": [ + "et-0/0/3" + ], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02275 | BRU-BRU |", + "circuits": [], + "snmp-index": 608, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-BRU", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BRU-BRU", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 1447, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "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 #fra-par-SUPERPOP-QFX-GEANT $GS-00078 |", + "circuits": [ + { + "id": 729477, + "name": "FRA-PAR-SUPERPOP-QFX-GEANT", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 977, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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": "mx2.zag.hr.geant.net", + "name": "ae12", + "bundle": [ + "xe-2/1/0" + ], + "bundle-parents": [ + "xe-2/1/0" + ], + "description": "LAG PRIVATE SETCOR SRF21033 $GA-02000 |", + "circuits": [], + "snmp-index": 619, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ae7", + "bundle": [ + "xe-2/0/0" + ], + "bundle-parents": [ + "xe-2/0/0" + ], + "description": "PHY INFRASTRUCTURE ACCESS AMT RELAY MX204 ROUTER LON2-LON2", + "circuits": [], + "snmp-index": 624, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 746, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-4/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER KIFU AP2 P_AE18 | (ZAG01-GRV4) 1/1/3 ", + "circuits": [], + "snmp-index": 1010, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "KIFU", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "KIFU", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.lon.uk.geant.net", + "name": "et-5/0/5.1501", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NORDUNET SRF21095 #HAM-LON-NORDUNET-NORDUNET-21095 |", + "circuits": [ + { + "id": 731424, + "name": "HAM-LON-NORDUNET-NORDUNET-21095", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 955, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "et-8/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | LIS-MAD | 200G", + "circuits": [], + "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": "rt1.mil2.it.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 672, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX01 SLOT4 PORT4 VMNIC4 - VSAN PORT", + "circuits": [], + "snmp-index": 517, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 843, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 540, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 877, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "CANARIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CANARIE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 734, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.50", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DASHBOARD-SERVER-AMS-VLAN50 | DBOARD", + "circuits": [ + { + "id": 663147, + "name": "DASHBOARD-SERVER-LON2-VLAN50", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 660, + "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": "730XD-4-VM-TRAFFIC-LAG", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 581, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "lt-11/1/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPEERING-AMS-NL-RE-IAS | BGP PEERING - RE SIDE", + "circuits": [], + "snmp-index": 1112, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 567, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4086", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-FGOV-ExpressRoute-VLAN4086 $GS-01132 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 706048, + "name": "BELNET-FGOV-EXPRESSROUTE-VLAN4086", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 643, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae2.998", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-cor-ie| SW1-EX3400 MANAGEMENT", + "circuits": [ + { + "id": 729964, + "name": "EX3400-MANAGEMENT-COR-IE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 609, + "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": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 513, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae9", + "bundle": [ + "et-11/0/5", + "et-11/1/2", + "et-11/1/5" + ], + "bundle-parents": [ + "et-11/0/5", + "et-11/1/2", + "et-11/1/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01833 | AMS-LON |", + "circuits": [], + "snmp-index": 705, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "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": "mx2.lis.pt.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 530, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/10", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae2 | PAR-PRD-ESX2 SLOT0 PORT3 VMNIC2", + "circuits": [ + { + "id": 658433, + "name": "730XD-2-SLOT0-PORT3-VMNIC2-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #RIG-TAR-IPTRUNK $GS-02345| RIG-TAR", + "circuits": [ + { + "id": 728734, + "name": "RIG-TAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 601, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-TAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RIG-TAR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": 727329, + "name": "BELNET-ARPGAN-EXPRESSROUTE-VLAN4080", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 599, + "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.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" + } + ], + "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": "rt1.pra.cz.geant.net", + "name": "xe-3/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER AMS", + "circuits": [], + "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": "rt1.the.gr.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | GRNET AP Migration from ATH1_2 | ", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "et-9/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE5 | MAD-MAR |", + "circuits": [], + "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": "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" + } + ], + "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.poz.pl.geant.net", + "name": "ae4", + "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-02341 | HAM-POZ-IPTRUNK", + "circuits": [], + "snmp-index": 602, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-POZ-IPTRUNK", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "HAM-POZ-IPTRUNK", + "interface_type": "AGGREGATE" + } + ], + "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": [], + "snmp-index": 542, + "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": [], + "snmp-index": 684, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-mad-es-RE-IAS| BGP Peering - RE Side", + "circuits": [], + "snmp-index": 901, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.101", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER GEANT GEANT #AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT |", + "circuits": [ + { + "id": 705901, + "name": "AMS-OFFICE-TO-LON2-(FOR-EDUVPN)-L2CIRCUIT", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1129, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED|Reserved for GCS Testing", + "circuits": [], + "snmp-index": 600, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae12.1", + "bundle": [], + "bundle-parents": [ + "xe-0/0/4" + ], + "description": "SRV_GLOBAL CUSTOMER BREN #BREN-AP2 $GS-00439 | ASN6802 |", + "circuits": [ + { + "id": 731987, + "name": "BREN-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 757, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "xe-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 545, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED AMT-ROUTER", + "circuits": [], + "snmp-index": 587, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 590, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + { + "name": "SURF", + "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" + } + ], + "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": "rt1.mar.fr.geant.net", + "name": "xe-3/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 659, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT ASGC $GA-01635 | SRF9911613 |", + "circuits": [], + "snmp-index": 716, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 849, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1298, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "xe-3/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC NIX P_AE12 SRF9943415 | ", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 594, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 617, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-4/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | LJU01-ZAG", + "circuits": [], + "snmp-index": 1002, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-ZAG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-ZAG", + "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": 708243, + "name": "AMS-POZ-RARE-P4-9951379", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 798, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "qfx.lon2.uk.geant.net", + "name": "ge-0/0/34", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | Brik C IPMI", + "circuits": [], + "snmp-index": 552, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1303, + "dashboards": [], + "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": [], + "snmp-index": 1260, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae3.998", + "bundle": [], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-ham1-de| SW1-EX3400 MANAGEMENT", + "circuits": [ + { + "id": 729129, + "name": "EX3400-MANAGEMENT-HAM1-DE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 816, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 538, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1002", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mad-Fed4FIRE-BELNET-RedIRIS-14011 $GS-00675 |", + "circuits": [ + { + "id": 719499, + "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14011", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 653, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 742, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae10.200", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_IAS CUSTOMER EENET #EENET-AP1-IAS IASPS $GS-00568 | ASN3221", + "circuits": [ + { + "id": 660447, + "name": "EENET-AP1-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 618, + "dashboards": [ + "IAS_CUSTOMER", + "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": "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" + } + ], + "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": "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": [], + "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.vie.at.geant.net", + "name": "ge-0/3/2.60", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-vie-at | KVMoIP", + "circuits": [ + { + "id": 661623, + "name": "KVMOIP-VIE-AT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 785, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/8.996", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT-INTERNAL #GEANT-OPERATIONS-LabConnectivity | GEANT MX1.LON Infinera VRF to Operations Lab", + "circuits": [ + { + "id": 678999, + "name": "GEANT-OPERATIONS-LABCONNECTIVITY", + "type": "CORPORATE", + "status": "non-monitored" + } + ], + "snmp-index": 631, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.240", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-SINET-EDGE-DEVICE-IDRAC | SINET edge-device-iDRAC", + "circuits": [ + { + "id": 662961, + "name": "AMS-SINET-EDGE-DEVICE-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1182, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 656, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-1/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | BUC-CHI | ROEDUNET CID: BUC-CHI-040-4", + "circuits": [], + "snmp-index": 673, + "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": "xe-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER_GEO HBKU #HBKU-GEO-UK-1 $GA-01458 | SRF18085 | Equinix ID: 20873393 |", + "circuits": [], + "snmp-index": 748, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "HBKU", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HBKU", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/21", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae17 | FRA-PRD-ESX05 SLOT? PORT2 VMNIC5", + "circuits": [ + { + "id": 658384, + "name": "730XD-5-VMNIC5", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 537, + "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": [], + "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": "mx1.ath2.gr.geant.net", + "name": "ae0", + "bundle": [ + "xe-2/0/6", + "xe-2/0/7", + "xe-2/0/8", + "xe-3/0/1" + ], + "bundle-parents": [ + "xe-2/0/6", + "xe-2/0/7", + "xe-2/0/8", + "xe-3/0/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01931 | ATH-ATH2 |", + "circuits": [], + "snmp-index": 573, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED |NOKIA RT0-RT1 TRUNK 20GB 2_2", + "circuits": [], + "snmp-index": 1041, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GEANT CORPORATE SRF000001 | GEANT Corporate to SRX2.CH - Via Vodafone Circuit ID H03684A", + "circuits": [], + "snmp-index": 600, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 600, + "dashboards": [], + "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" + } + ], + "snmp-index": 1564, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "UBUNTUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "UBUNTUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae38", + "bundle": [ + "xe-11/0/6" + ], + "bundle-parents": [ + "xe-11/0/6" + ], + "description": "LAG CUSTOMER CYNET AP2 SRF9951329 $GA-01968 |", + "circuits": [], + "snmp-index": 1144, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "CYNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.24", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #PS-AMS-NL-MANAGEMENT-VLAN24 | PERFSONAR MGMT", + "circuits": [ + { + "id": 663137, + "name": "PS-AMS-NL-MANAGEMENT-VLAN24", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 661, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/10", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 525, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/1.24", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-ath-gr-management |perfSONAR MGMT", + "circuits": [ + { + "id": 661912, + "name": "PS-ATH-GR-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 662, + "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" + } + ], + "snmp-index": 1223, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | WAS KIAE", + "circuits": [], + "snmp-index": 876, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4.60", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-gen-ch| KVMoIP", + "circuits": [ + { + "id": 663239, + "name": "KVMOIP-GEN-CH", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 816, + "dashboards": [], + "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": [], + "snmp-index": 1164, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ASNET-AM", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ASNET-AM", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 1569, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/6.200", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #infoblox-dns-bud-hu-vlan200| INFOBLOX DNS APPLIANCES", + "circuits": [ + { + "id": 663097, + "name": "INFOBLOX-DNS-BUD-HU-VLAN200", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 767, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "ae15", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01728 | PAR-PRD-ESX5 ESXI Traffic LAG", + "circuits": [ + { + "id": 658698, + "name": "730XD-5-ESXI-TRAFFIC-LAG-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 594, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae10 | FRA-PRD-ESX02 SLOT4 PORT2 VMNIC5", + "circuits": [ + { + "id": 658609, + "name": "730XD-2-SLOT4-PORT2-VMNIC5", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 524, + "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" + } + ], + "snmp-index": 1040, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS P_AE2 | rt1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 563, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "lt-8/1/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 1602, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "rt1.chi.md.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 571, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae8.0", + "bundle": [], + "bundle-parents": [ + "et-3/0/4", + "et-3/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-FRA-IPTRUNK $GS-00009 | AMS-FRA", + "circuits": [ + { + "id": 731640, + "name": "AMS-FRA-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1008, + "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-10/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | GEN-MIL2 | ", + "circuits": [], + "snmp-index": 1253, + "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": "et-9/1/5.2016", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-LON-LHCONE $GS-00846 | ASN27750", + "circuits": [ + { + "id": 678224, + "name": "REDCLARA-LON-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 753, + "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.lon.uk.geant.net", + "name": "et-9/1/5.1629", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #gen-lon-SCION-SCION-INTERNET2-2 $GS-02311 |", + "circuits": [ + { + "id": 727046, + "name": "GEN-LON-SCION-SCION-INTERNET2-2", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1202, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.420", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER DFN NKN #AMS-HAM-DFN-NKN-22080 $GS-02211 |", + "circuits": [ + { + "id": 724887, + "name": "AMS-HAM-DFN-NKN-22080", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1134, + "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": "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" + } + ], + "snmp-index": 1221, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 848, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae10.3260", + "bundle": [], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/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" + } + ], + "snmp-index": 1166, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + }, + { + "name": "NEA3R", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access", + "circuits": [], + "snmp-index": 598, + "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" + } + ], + "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.dub.ie.geant.net", + "name": "ae10.2282", + "bundle": [], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER HEANET INTERNET2 #AMS-DUB-INTERNET2-HEANET-21097 $GS-00630 |", + "circuits": [ + { + "id": 716898, + "name": "AMS-DUB-INTERNET2-HEANET-21097", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 741, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | BUD-ZAG 200Gb 1_2 ZAG01-GRV3 1/1/3", + "circuits": [], + "snmp-index": 998, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | GRNET AP Migration from ATH1_3 | ", + "circuits": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4063", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MSER-ULB-ExpressRoute-VLAN4063 $GS-02363 | ", + "circuits": [ + { + "id": 729793, + "name": "BELNET-MSER-ULB-EXPRESSROUTE-VLAN4063", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 700, + "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": "xe-5/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE SUPERPOP | FRA-PAR-QFX | to QFX xe-1/0/17", + "circuits": [], + "snmp-index": 821, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": [ + "xe-5/2/1", + "xe-11/1/6", + "xe-11/1/7" + ], + "bundle-parents": [ + "xe-5/2/1", + "xe-11/1/6", + "xe-11/1/7" + ], + "description": "LAG PRIVATE GOOGLE $GA-02225 |", + "circuits": [], + "snmp-index": 1004, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1", + "xe-1/1/0", + "xe-3/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH-ATH2-IPTRUNK $GS-00013 | ATH-ATH2 |", + "circuits": [ + { + "id": 708778, + "name": "ATH-ATH2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 630, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae16", + "bundle": [ + "et-3/0/5" + ], + "bundle-parents": [ + "et-3/0/5" + ], + "description": "LAG CUSTOMER AMRES SRF9938887 $GA-02239 |", + "circuits": [], + "snmp-index": 767, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "AMRES", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMRES", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-4/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1435, + "dashboards": [], + "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": [], + "snmp-index": 1281, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae5", + "bundle": [ + "et-4/0/2" + ], + "bundle-parents": [ + "et-4/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02385 | COR-DUB", + "circuits": [], + "snmp-index": 541, + "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": "xe-11/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | psmp-lhc-bw-par-fr.geant.org pS BWCTL", + "circuits": [], + "snmp-index": 1202, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.12", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1159, + "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/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 578, + "dashboards": [], + "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 |", + "circuits": [], + "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": "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": [], + "snmp-index": 1141, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.700", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER JISC INTERNET2 #LON-LON-SYNGENTA-JISC-INTERNET2-17052 $GS-00730 |", + "circuits": [ + { + "id": 705922, + "name": "LON-LON-SYNGENTA-JISC-INTERNET2-17052", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 676, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.123", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon-GEANTOpen-ESnet-NORDUNET-15039-1 $GS-00963 |", + "circuits": [ + { + "id": 661535, + "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-1", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1285, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 946, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/3.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON-PAR-FR-MANAGEMENT | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", + "circuits": [ + { + "id": 708186, + "name": "FLOWMON-PAR-FR-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1207, + "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" + } + ], + "snmp-index": 1411, + "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": 726344, + "name": "LON-LON-GEANTOPEN-ESNET-NEA3R", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1147, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NEA3R", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NEA3R", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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": "mx1.lon2.uk.geant.net", + "name": "xe-2/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0-RT1 TRUNK 20GB 2_2 | Currently connected to OLD PSMP BWCTL", + "circuits": [], + "snmp-index": 1578, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 530, + "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-02018 | BUC-CHI |", + "circuits": [], + "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": "rt2.bru.be.geant.net", + "name": "ae16.4066", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ONDD-ExpressRoute-Vlan4066 $GS-02390 | ", + "circuits": [ + { + "id": 730043, + "name": "BELNET-ONDD-EXPRESSROUTE-VLAN4066", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 675, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "lt-2/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #DUB-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 691, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 726345, + "name": "AMS-GEN-CERN-RARE-123010", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "xe-5/2/2.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RARE RARE #AMS-POZ-RARE-P4-9951379 $GS-00661 | RARE P4 TESTBED", + "circuits": [ + { + "id": 708243, + "name": "AMS-POZ-RARE-P4-9951379", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1448, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae15.720", + "bundle": [], + "bundle-parents": [ + "xe-0/0/3", + "xe-0/0/5", + "xe-0/1/1", + "xe-0/1/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #A10-DDOS-SCRUBBING-FRA-Dirty-Traffic $GS-00088| Dirty-Traffic CONTACT: SOC@geant.org IMPLEMENTED: 20170831", + "circuits": [ + { + "id": 732510, + "name": "A10-DDOS-SCRUBBING-FRA-DIRTY-TRAFFIC", + "type": "SERVER LINK", + "status": "operational" + } + ], + "snmp-index": 1399, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1353, + "dashboards": [], + "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" + } + ], + "snmp-index": 595, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "xe-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 657, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-3/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 688, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "srx2.am.office.geant.net", + "name": "ge-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY Surfnet Secondary - Service ID: 3287IR2 |", + "circuits": [], + "snmp-index": 515, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 751, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 766, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4092", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-NCCN-ExpressRoute-Vlan4092 $GS-01126 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727347, + "name": "BELNET-NCCN-EXPRESSROUTE-VLAN4092", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 645, + "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/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 524, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.101", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RARE GEANT #AMS-AMS-WP7TSF-RARE-200105-AMS", + "circuits": [ + { + "id": 714238, + "name": "AMS-AMS-WP7TSF-RARE-200105-AMS", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1441, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS FLOWMON-DDOS | FlowMon iDRAC CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20171010", + "circuits": [], + "snmp-index": 597, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae12.111", + "bundle": [], + "bundle-parents": [ + "et-2/1/5" + ], + "description": "SRV_L3VPN CUSTOMER PIONIER #PIONIER-AP2-LHCONE $GS-00843 | ASN8501", + "circuits": [ + { + "id": 732595, + "name": "PIONIER-AP2-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 1012, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 715, + "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": [], + "snmp-index": 678, + "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": [], + "snmp-index": 696, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY To Switch Cluster vme.0", + "circuits": [], + "snmp-index": 518, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ae20", + "bundle": [ + "ge-0/2/3" + ], + "bundle-parents": [ + "ge-0/2/3" + ], + "description": "LAG RE_INTERCONNECT UTIC SRF22101 $GA-02231 |", + "circuits": [], + "snmp-index": 661, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "lt-8/1/0.1112", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN INFRASTRUCTURE ACCESS LHCONE #LHCONE-routing-instance-Peering-geneva-lhcone| LHCONE routing-instance ", + "circuits": [], + "snmp-index": 1607, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GRNET LHCONE $GA-01364 |", + "circuits": [], + "snmp-index": 642, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 1051, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-2/0/0.705", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER GRNET BELNET #bru-ath-BELNET-GRNET-14016 $GS-00668 |", + "circuits": [ + { + "id": 727505, + "name": "BRU-ATH-BELNET-GRNET-14016", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 692, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 634, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ROEDUNET P_AE11 SRF19021 |RoEduNet te-0/6/0/10 | OVERSUB-RISK-MPC3E", + "circuits": [], + "snmp-index": 685, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ROEDUNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ROEDUNET", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "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": "rt1.fra.de.geant.net", + "name": "ae12.0", + "bundle": [], + "bundle-parents": [ + "xe-11/2/1", + "xe-11/2/2", + "xe-11/3/6" + ], + "description": "SRV_IAS PRIVATE VERIZON #FRANKFURT-VERIZON-1-15133-DE-1 $GS-00932 | ASN15133", + "circuits": [ + { + "id": 731612, + "name": "FRANKFURT-VERIZON-1-15133-DE-1", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "snmp-index": 1013, + "dashboards": [ + "IAS_PEERS", + "IAS_PRIVATE" + ], + "dashboard_info": { + "name": "VERIZON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "VERIZON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae30.991", + "bundle": [], + "bundle-parents": [ + "xe-5/0/2", + "xe-5/0/3", + "xe-7/0/2", + "xe-7/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #CORIANT-LIBRENMS-ACCESS-FRA-DE $GS-00108| CORIANT LIBRENMS ACCESS", + "circuits": [ + { + "id": 733023, + "name": "CORIANT-LIBRENMS-ACCESS-FRA-DE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1126, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "ae4", + "bundle": [ + "et-4/0/2", + "et-4/0/5" + ], + "bundle-parents": [ + "et-4/0/2", + "et-4/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02207 | GEN-MAR01 |", + "circuits": [], + "snmp-index": 617, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-MAR01", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "GEN-MAR01", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "xe-0/0/1:1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 591, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1317, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/2/4.1629", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #gen-lon-SCION-SCION-INTERNET2-2 $GS-02311 |", + "circuits": [ + { + "id": 727046, + "name": "GEN-LON-SCION-SCION-INTERNET2-2", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1262, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "so-1/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 730, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-10/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 | AMS-LON | Coriant G30 link 3", + "circuits": [], + "snmp-index": 1299, + "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/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | DDOS Mitigation Server link 1 Node 1 | ", + "circuits": [], + "snmp-index": 1293, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 727351, + "name": "BELNET-IMEC-EXPRESSROUTE-VLAN4085", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 590, + "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": "lo0.0", + "bundle": [], + "bundle-parents": [], + "description": "Router Loopback", + "circuits": [], + "snmp-index": 16, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 564, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1068, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "CANARIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CANARIE", + "interface_type": "LOGICAL" + }, + { + "name": "SURFNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE |reserved for PSMP", + "circuits": [], + "snmp-index": 596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 632, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 612, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 654, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae12", + "bundle": [ + "xe-3/0/2", + "xe-3/0/3" + ], + "bundle-parents": [ + "xe-3/0/2", + "xe-3/0/3" + ], + "description": "LAG PUBLIC NIX SRF9934393 $GA-01828 |", + "circuits": [], + "snmp-index": 918, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 604, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 1253, + "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/5.333", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS CUSTOMER SINGAREN #SINGAREN-IAS $GS-02359 | ASN136968", + "circuits": [], + "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": "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": [], + "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": "srx2.am.office.geant.net", + "name": "lo0.0", + "bundle": [], + "bundle-parents": [], + "description": "Router Loopback", + "circuits": [], + "snmp-index": 16, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.991", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access PARIS #PAR-TNMS | Internal network", + "circuits": [ + { + "id": 679315, + "name": "PAR-TNMS", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1079, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS PERFSONAR SRF9921395 | BWCTL CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150811", + "circuits": [], + "snmp-index": 1297, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae8.0", + "bundle": [], + "bundle-parents": [ + "et-7/0/5", + "et-7/1/2", + "et-7/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-HAM-IPTRUNK $GS-00010 | AMS-HAM-IPTRUNK", + "circuits": [ + { + "id": 728442, + "name": "AMS-HAM-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1431, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-HAM-IPTRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-HAM-IPTRUNK", + "interface_type": "LOGICAL" + } + ], + "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": [], + "snmp-index": 987, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS VEEAM-LAN SRF0000001 | R730XD NIC1", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae27", + "bundle": [ + "et-2/1/5" + ], + "bundle-parents": [ + "et-2/1/5" + ], + "description": "LAG CUSTOMER ULAKBIM SRF9940983 $GA-01962 | ULAKBIM-AP2-LAG", + "circuits": [], + "snmp-index": 740, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ULAKBIM", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ULAKBIM", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 558, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/0/7.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RENAM COGENT #bud-chi-EAP-RENAM-COGENT-22038 $GS-02110", + "circuits": [ + { + "id": 721471, + "name": "BUD-CHI-EAP-RENAM-COGENT-22038", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1172, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "LOGICAL" + }, + { + "name": "COGENT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "irb.991", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #CORIANT-LIBRENMS-ACCESS-PAR-FR | CORIANT LIBRENMS ACCESS", + "circuits": [ + { + "id": 712146, + "name": "CORIANT-LIBRENMS-ACCESS-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 931, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/20", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX5 SLOT? PORT4 VMNIC7", + "circuits": [ + { + "id": 658435, + "name": "730XD-5-VMNIC7-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE SRF00001 #TEST-INTERFACE-FOR-GCSTESTING-AMS $GA-01579 |", + "circuits": [], + "snmp-index": 677, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-4/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS DTN $GA-01465 | 100G testing", + "circuits": [], + "snmp-index": 1296, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-4/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | FRA-GEN-IPTRUNK", + "circuits": [], + "snmp-index": 924, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/2/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 600, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ae12.333", + "bundle": [], + "bundle-parents": [ + "xe-1/0/0" + ], + "description": "SRV_IAS CUSTOMER CYNET #CYNET-AP3-IAS IASGWS $GS-00526 | ASN3268 |", + "circuits": [ + { + "id": 663198, + "name": "CYNET-AP3-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 551, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CYNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-1/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | BUC-CHI | ROEDUNET CID: BUC-CHI-040-1", + "circuits": [], + "snmp-index": 536, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-CHI", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BUC-CHI", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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-GEN-ITER-SINET-RENATER-20025 $GS-00637 |", + "circuits": [ + { + "id": 705455, + "name": "AMS-GEN-ITER-SINET-RENATER-20025", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "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": "qfx.par.fr.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX2 SLOT4 PORT4 VMNIC7 - VSAN PORT", + "circuits": [ + { + "id": 658566, + "name": "730XD-2-SLOT4-PORT4-VMNIC7-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 631, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.1501", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET NORDUNET SRF21095 #HAM-LON-NORDUNET-NORDUNET-21095 $GS-00719 |", + "circuits": [ + { + "id": 731424, + "name": "HAM-LON-NORDUNET-NORDUNET-21095", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 959, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | OLD PSMP OWAMP", + "circuits": [], + "snmp-index": 607, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ae3.0", + "bundle": [], + "bundle-parents": [ + "xe-1/1/0", + "xe-1/1/1", + "xe-1/2/0", + "xe-1/2/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-CHI-IPTRUNK $GS-00022 | BUC-CHI |", + "circuits": [ + { + "id": 713233, + "name": "BUC-CHI-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 736, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-CHI", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BUC-CHI", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/1/4.1627", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #gen-lon-SCION-SCION-INTERNET2-1 $GS-02297 |", + "circuits": [ + { + "id": 727047, + "name": "GEN-LON-SCION-SCION-INTERNET2-1", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1261, + "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": "et-5/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | LR4 installed", + "circuits": [], + "snmp-index": 814, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 841, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae11.100", + "bundle": [], + "bundle-parents": [ + "et-2/1/0", + "et-2/1/1", + "et-2/1/2" + ], + "description": "SRV_GLOBAL CUSTOMER DFN #DFN-AP1 $GS-00452 | ASN680 | DFN ID: GE100/ANWD-KA2994-FRA-0GEANT DFN AP", + "circuits": [ + { + "id": 728408, + "name": "DFN-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "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.gen.ch.geant.net", + "name": "et-8/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GARR P_AE12 SRF21107 |", + "circuits": [], + "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": "rt1.ams.nl.geant.net", + "name": "ae26", + "bundle": [ + "xe-0/1/6" + ], + "bundle-parents": [ + "xe-0/1/6" + ], + "description": "LAG PRIVATE ORANGE #NL-ORANGE-LAG-2 $GA-02181", + "circuits": [], + "snmp-index": 1006, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 709, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae27.101", + "bundle": [], + "bundle-parents": [ + "xe-10/2/0" + ], + "description": "SRV_L2CIRCUIT CUSTOMER MAEEN INTERNET2 #LON-LON-GEANTOpen-MAEEN-INTERNET2-21086 $GS-00728 |", + "circuits": [ + { + "id": 715039, + "name": "LON-LON-GEANTOPEN-MAEEN-INTERNET2-21086", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "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": "rt2.ath2.gr.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | ATH2-ATH2", + "circuits": [], + "snmp-index": 589, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-ATH2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-ATH2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "mx2.zag.hr.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 549, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-11/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | GEN-MAR | ", + "circuits": [], + "snmp-index": 1216, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-MAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEN-MAR", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae12", + "bundle": [ + "xe-0/0/4" + ], + "bundle-parents": [ + "xe-0/0/4" + ], + "description": "LAG CUSTOMER BREN #BREN-AP2 $GA-01997 | ASN6802 | ", + "circuits": [], + "snmp-index": 756, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BREN", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BREN", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "lt-2/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-ath2-gr-RE-IAS| BGP Peering - RE Side", + "circuits": [], + "snmp-index": 644, + "dashboards": [], + "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": [], + "snmp-index": 1580, + "dashboards": [], + "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": [], + "snmp-index": 1444, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 551, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "et-1/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | PRA-VIE", + "circuits": [], + "snmp-index": 905, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "PRA-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "PRA-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae6", + "bundle": [ + "et-5/1/2" + ], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02008 | DUB-LON", + "circuits": [], + "snmp-index": 542, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "DUB-LON", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "DUB-LON", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "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": "mx1.poz.pl.geant.net", + "name": "et-8/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae7 | POZ-PRA", + "circuits": [], + "snmp-index": 1056, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "POZ-PRA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 539, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "et-8/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE7 | GEN-PAR-800G | to PAR-GRV2 1/3/8", + "circuits": [], + "snmp-index": 971, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-PAR-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEN-PAR-800G", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER_GEO Internet2 #Internet2-GEO-UK-1 $GA-01477 | SRF22015 | ANA-100G to WIX", + "circuits": [], + "snmp-index": 1406, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 590, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1328, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDCLARA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDCLARA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 656, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 578, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae9 | FRA-PRD-ESX01 SLOT0 PORT2 VMNIC1", + "circuits": [ + { + "id": 658486, + "name": "730XD-1-SLOT0-PORT2-VMNIC1", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 518, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae10.3554", + "bundle": [], + "bundle-parents": [ + "et-5/1/4" + ], + "description": "SRV_L2CIRCUIT CUSTOMER CSTNET CERN #gen-lon-IHEP-CERN-CSTNET $GS-02415 |", + "circuits": [ + { + "id": 732308, + "name": "GEN-LON-IHEP-CERN-CSTNET", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1289, + "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": "mx2.zag.hr.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 581, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae4", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02031 | KAU-RIG", + "circuits": [], + "snmp-index": 546, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-RIG", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "KAU-RIG", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "lt-10/1/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 1002, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "lt-1/1/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #PAR-IAS-RE-Peering | BGP Peering - IAS SIDE", + "circuits": [], + "snmp-index": 1501, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "ae3.25", + "bundle": [], + "bundle-parents": [ + "xe-3/0/8", + "xe-3/2/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS SUPERPOP #VEEAMServer-MAR-IDRAC | SuperPOP Backup Node iDRAC", + "circuits": [ + { + "id": 730041, + "name": "VEEAMSERVER-MAR-IDRAC", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 644, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4087", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ICT-ExpressRoute-VLAN4087 $GS-01133 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 706047, + "name": "BELNET-ICT-EXPRESSROUTE-VLAN4087", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 644, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "xe-0/0/0:3", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-10/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | MIL2-VIE |Connected to VIE01-GRV2.AT.GEANT.NET 1/1/5", + "circuits": [], + "snmp-index": 568, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 844, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "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": [], + "snmp-index": 1155, + "dashboards": [ + "L2_CIRCUIT" + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/3/3.1620", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #lon-par-SCION-INTERNET2-SCION-1 $GS-02295 |", + "circuits": [ + { + "id": 726975, + "name": "LON-PAR-SCION-INTERNET2-SCION-1", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1253, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae4", + "bundle": [ + "et-5/1/0" + ], + "bundle-parents": [ + "et-5/1/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01922 | AMS-BRU |", + "circuits": [], + "snmp-index": 632, + "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": "ge-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | BUC-CHI | ROEDUNET CID: BUC-CHI-040-3", + "circuits": [], + "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": "rt1.pra.cz.geant.net", + "name": "et-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | FRA-PRA2", + "circuits": [], + "snmp-index": 898, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10", + "bundle": [ + "et-0/0/1" + ], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "LAG CUSTOMER HEANET SRF9925909 $GA-01889 | HEANET-AP2-LAG", + "circuits": [], + "snmp-index": 628, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1125, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae14", + "bundle": [ + "xe-0/1/2", + "xe-0/1/3" + ], + "bundle-parents": [ + "xe-0/1/2", + "xe-0/1/3" + ], + "description": "LAG CUSTOMER BELNET GRID5000 $GA-01791 | BELNET", + "circuits": [], + "snmp-index": 623, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 667, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae6", + "bundle": [ + "et-4/0/2", + "et-4/0/5" + ], + "bundle-parents": [ + "et-4/0/2", + "et-4/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02374 | LJU01-ZAG", + "circuits": [], + "snmp-index": 590, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-ZAG", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "LJU01-ZAG", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "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": "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" + } + ], + "snmp-index": 599, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 600, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SRX-1 To TS eth1", + "circuits": [], + "snmp-index": 519, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae2", + "bundle": [ + "xe-5/0/2", + "xe-5/0/3" + ], + "bundle-parents": [ + "xe-5/0/2", + "xe-5/0/3" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN SRF0000001 $GA-02076 | mx1-sw3 (ex3400)", + "circuits": [], + "snmp-index": 630, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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 9 IDRAC", + "circuits": [ + { + "id": 725645, + "name": "RARE-BMS-SERVER-1-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 950, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_ae3 | rt2-sw1 (ex3400)", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.104", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #UK-ESNET-EEX-OPEN $GS-00917 | ASN2603 | Lon-EEX-ESnet-OPEN-100G", + "circuits": [ + { + "id": 661765, + "name": "UK-ESNET-EEX-OPEN", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 1284, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "xe-0/0/0:2", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 528, + "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": [], + "snmp-index": 675, + "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": [], + "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": "rt1.mil2.it.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 568, + "dashboards": [], + "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" + } + ], + "snmp-index": 1349, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + { + "name": "ESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "ae2.998", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-the-gr | SW1-EX3400 MANAGEMENT", + "circuits": [ + { + "id": 732800, + "name": "EX3400-MANAGEMENT-THE-GR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 611, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae1 | FRA-PRD-ESX01 SLOT0 PORT3 VMNIC2", + "circuits": [ + { + "id": 658489, + "name": "730XD-1-SLOT0-PORT3-VMNIC2", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 626, + "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" + } + ], + "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.gen.ch.geant.net", + "name": "xe-2/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1342, + "dashboards": [], + "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" + } + ], + "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": "srx1.am.office.geant.net", + "name": "lo0.0", + "bundle": [], + "bundle-parents": [], + "description": "Router Loopback", + "circuits": [], + "snmp-index": 16, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4080", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-UCLOUVAIN-ExpressRoute-VLAN4080 $GS-02152 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 719820, + "name": "BELNET-UCLOUVAIN-EXPRESSROUTE-VLAN4080", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 634, + "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": "ae30", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01709 | QFX.FRA.DE AE14", + "circuits": [], + "snmp-index": 608, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-3/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 752, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1127, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae11.333", + "bundle": [], + "bundle-parents": [ + "xe-0/0/1" + ], + "description": "SRV_IAS CUSTOMER MARNET #MARNET-AP1-IAS IASGWS $GS-00536 | ASN44224", + "circuits": [ + { + "id": 662956, + "name": "MARNET-AP1-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 733, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "MARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MARNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4091", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ZWEV-ExpressRoute-VLAN4091 $GS-01139 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711856, + "name": "BELNET-ZWEV-EXPRESSROUTE-VLAN4091", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 648, + "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.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": 727337, + "name": "BELNET-ICT-EXPRESSROUTE-VLAN4091", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 596, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "xe-0/0/2:3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 538, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED PCNL-90556247| PHY RE_INTERCONNECT UBUNTUNET P_AE17 SRF9930065 =MX1.AMS xe-11/0/1", + "circuits": [], + "snmp-index": 673, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 580, + "dashboards": [], + "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": [], + "snmp-index": 1705, + "dashboards": [ + "CAE1", + "RE_PEER" + ], + "dashboard_info": { + "name": "CAE1", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "CAE1", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "et-4/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER REDIRIS P_AE16 SRF23022 | CXC ID M21-12I-03-59 & 60", + "circuits": [], + "snmp-index": 977, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "ae13.100", + "bundle": [], + "bundle-parents": [ + "xe-3/0/0", + "xe-3/0/1" + ], + "description": "SRV_IAS PUBLIC DE-CIX #IX-Peerings-in-DE-CIX-MAR $GS-00948 |", + "circuits": [ + { + "id": 661980, + "name": "IX-PEERINGS-IN-DE-CIX-MAR", + "type": "IP PEERING - NON R&E (PUBLIC)", + "status": "operational" + } + ], + "snmp-index": 592, + "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.fra.de.geant.net", + "name": "xe-11/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE Verizon P_AE36 | FRANKFURT-VERIZON-2-LL-3 | Interxion CID: DE236890| VERIZON CID: GEANT-FRN-EU-05-PX", + "circuits": [], + "snmp-index": 899, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 794, + "dashboards": [ + "L2_CIRCUIT" + ], + "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" + } + ], + "snmp-index": 1001, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 602, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "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 $GA-02001 | LIS-MAD | 200G", + "circuits": [], + "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": "qfx.par.fr.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae9 | PAR-PRD-ESX1 SLOT0 PORT2 VMNIC1", + "circuits": [ + { + "id": 658469, + "name": "730XD-1-SLOT0-PORT2-VMNIC1-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 518, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ath2.gr.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | GRNET LHCONE | ", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.19", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-STAD-EXPRESSROUTE-VLAN4061 $GS-02245 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727346, + "name": "BELNET-STAD-EXPRESSROUTE-VLAN4061", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1483, + "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-11/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 | AMS-LON | Coriant G30 link 3", + "circuits": [], + "snmp-index": 1655, + "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/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" + } + ], + "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.bud.hu.geant.net", + "name": "xe-3/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 692, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae15", + "bundle": [ + "xe-0/0/3", + "xe-0/0/5", + "xe-0/1/1", + "xe-0/1/3" + ], + "bundle-parents": [ + "xe-0/0/3", + "xe-0/0/5", + "xe-0/1/1", + "xe-0/1/3" + ], + "description": "LAG INFRASTRUCTURE ACCESS A10-DDOS-SCRUBBING SRF0000001 $GA-01955 | Dirty-Traffic A10 CONTACT: SOC@geant.org IMPLEMENTED: 20170831", + "circuits": [], + "snmp-index": 1397, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 967, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.2727", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO.T8 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 641, + "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": "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": [], + "snmp-index": 809, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1337, + "dashboards": [], + "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": [], + "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": "rt1.ham.de.geant.net", + "name": "ae11.100", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GLOBAL CUSTOMER NORDUNET #NORDUNET-AP2 $GS-00493 | ASN2603 |", + "circuits": [ + { + "id": 731421, + "name": "NORDUNET-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 954, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS #BGPPeering-zag-hr-RE-IAS| BGP Peering - RE Side", + "circuits": [], + "snmp-index": 713, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 523, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/14", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX4 SLOT4 PORT1 VMNIC4 - VSAN PORT", + "circuits": [ + { + "id": 658631, + "name": "730XD-4-SLOT4-PORT1-VMNIC4-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "ae10", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG CUSTOMER EENET SRF9940433 $GA-02053 | EENET AP LAG", + "circuits": [], + "snmp-index": 608, + "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": "et-2/0/5.3001", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NETHERLIGHT QNREN #lon-lon-GEANTOpen-Netherlight-QNREN-15032 $GS-00972 |", + "circuits": [ + { + "id": 661767, + "name": "LON-LON-GEANTOPEN-NETHERLIGHT-QNREN-15032", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "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": "ae27", + "bundle": [ + "et-5/0/2" + ], + "bundle-parents": [ + "et-5/0/2" + ], + "description": "LAG PRIVATE T-SYSTEMS $GA-02270 | ", + "circuits": [], + "snmp-index": 1317, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | par fr POP LAN", + "circuits": [], + "snmp-index": 592, + "dashboards": [], + "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": [], + "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": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.1237", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER KREONET RARE #AMS-AMS-KREONET-RARE-22097 $GS-02218 | ", + "circuits": [ + { + "id": 734545, + "name": "AMS-AMS-KREONET-RARE-22097", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1040, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "KREONET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KREONET", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "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" + } + ], + "snmp-index": 611, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "CESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 646, + "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": [], + "snmp-index": 517, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae5.0", + "bundle": [], + "bundle-parents": [ + "et-9/0/4", + "et-9/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-GEN-IPTRUNK $GS-00034 | FRA-GEN-IPTRUNK", + "circuits": [ + { + "id": 726449, + "name": "FRA-GEN-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1463, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "xe-0/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 658, + "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": 729794, + "name": "BELNET-MSER-ULB-EXPRESSROUTE-VLAN4064", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 678, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.34", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS Customer Nordunet MICROSOFT #Nordunet-GEO-ExpressRoute-Vlan3916 $GS-02307 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727431, + "name": "NORDUNET-GEO-EXPRESSROUTE-VLAN3916", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1358, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 564, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 540, + "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" + } + ], + "snmp-index": 590, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | RESERVED FOR LAN SW - AK", + "circuits": [], + "snmp-index": 611, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1197, + "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": "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" + } + ], + "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": "rt1.ham.de.geant.net", + "name": "xe-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 546, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 562, + "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" + } + ], + "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": "mx2.zag.hr.geant.net", + "name": "ae5", + "bundle": [ + "et-3/0/2", + "et-3/0/5" + ], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01909 | BUD-ZAG | ", + "circuits": [], + "snmp-index": 589, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUD-ZAG", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BUD-ZAG", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-10/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 | AMS-LON | Coriant G30 link 1", + "circuits": [], + "snmp-index": 1289, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-1/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | BUC-CHI | ROEDUNET CID: BUC-CHI-040-2", + "circuits": [], + "snmp-index": 537, + "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": "et-4/0/4", + "bundle": [], + "bundle-parents": [], + "description": " PHY INFRASTRUCTURE BACKBONE P_AE8 | LON2-PAR-800G | to LON02-GRV4 1/1/8", + "circuits": [], + "snmp-index": 653, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON2-PAR-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LON2-PAR-800G", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX2 SLOT0 PORT1 VMNIC0", + "circuits": [ + { + "id": 658564, + "name": "730XD-2-SLOT0-PORT1-VMNIC0-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 519, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.201", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER ESNET #lon-lon-GEANTOpen-Esnet-TENET-180871 $GS-00966 |", + "circuits": [ + { + "id": 718088, + "name": "LON-LON-GEANTOPEN-ESNET-TENET-180871", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1009, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "TENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + { + "name": "TENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/0/5.3801", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET WIX #NORDU-TO-WIX-TEST $GS-00744 | Nordu-to-WIX test 1/12/2014", + "circuits": [ + { + "id": 661650, + "name": "NORDU-TO-WIX-TEST", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1278, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "WIX", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae15.100", + "bundle": [], + "bundle-parents": [ + "xe-2/1/5" + ], + "description": "SRV_GLOBAL CUSTOMER MREN #MREN-AP1 $GS-00491 | ASN40981 |", + "circuits": [ + { + "id": 732441, + "name": "MREN-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 864, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "ae6", + "bundle": [ + "et-0/0/1" + ], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02044 | KAU-POZ |", + "circuits": [], + "snmp-index": 547, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-POZ", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "KAU-POZ", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 679, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ae12.100", + "bundle": [], + "bundle-parents": [ + "xe-1/0/0" + ], + "description": "SRV_GLOBAL CUSTOMER CYNET #CYNET-AP3 $GS-00451 | ASN3268 |", + "circuits": [ + { + "id": 663102, + "name": "CYNET-AP3", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 552, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CYNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/3/4.1623", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #lon-par-SCION-INTERNET2-SCION-2 $GS-02309 |", + "circuits": [ + { + "id": 726979, + "name": "LON-PAR-SCION-INTERNET2-SCION-2", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1254, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER NORDUNET P_AE11 SRF23008 | CONNECTED TO NORDUNET xe-0/1/0", + "circuits": [], + "snmp-index": 531, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 608, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-2/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 645, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-8/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH2-VIE | OTEGlobe CID: 1-6RK0GB4", + "circuits": [], + "snmp-index": 990, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 904, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "WACREN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "WACREN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-8/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | AKAMAI 100GB PEERING", + "circuits": [], + "snmp-index": 996, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ae9.0", + "bundle": [], + "bundle-parents": [ + "et-4/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-FRA-IPTRUNK $GS-00023 | BUC-FRA | TTI REF: WL078541", + "circuits": [ + { + "id": 733131, + "name": "BUC-FRA-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 735, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-FRA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BUC-FRA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 824, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 566, + "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", + "circuits": [], + "snmp-index": 1047, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER_GEO PIONIER #PIONIER-GEO-UK-1 $GA-01453 | SRF9941269 | PIONIER 10G access to GeO", + "circuits": [], + "snmp-index": 1472, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.2010", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET ESNET #lon-lon-GEANTOpen-Esnet-NORDUNET-15039-2 $GS-00964 |", + "circuits": [ + { + "id": 660634, + "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-2", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1289, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | COR-COR", + "circuits": [], + "snmp-index": 604, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-COR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "COR-COR", + "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": [], + "snmp-index": 1452, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | BUC-SOF", + "circuits": [], + "snmp-index": 683, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-SOF", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BUC-SOF", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "xe-0/0/0:1", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.2210", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 HBKU #lon-lon-GEANTOPEN-HBKU-INTERNET2-190091 $GS-00967 |", + "circuits": [ + { + "id": 661607, + "name": "LON-LON-GEANTOPEN-HBKU-INTERNET2-190091", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 839, + "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": "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" + } + ], + "snmp-index": 549, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 831, + "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": 709295, + "name": "AMS-LON-MISC-UBUNTUNET-CANARIE-170352", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "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": "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" + } + ], + "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": "mx1.dub.ie.geant.net", + "name": "et-4/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 951, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "et-7/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | HAM-POZ", + "circuits": [], + "snmp-index": 1054, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-POZ", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HAM-POZ", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "ae2", + "bundle": [ + "xe-0/1/7" + ], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "xe-5/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS P_AE2 SRF0000001 | mx1-sw3 (ex3400)", + "circuits": [], + "snmp-index": 878, + "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-4/1/0" + ], + "description": "SRV_GLOBAL CUSTOMER REDIRIS #REDIRIS-AP2 $GS-00499 | ASN766 |", + "circuits": [ + { + "id": 718229, + "name": "REDIRIS-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "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": "mx1.poz.pl.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 591, + "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" + } + ], + "snmp-index": 971, + "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": "non-monitored" + } + ], + "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.ams.nl.geant.net", + "name": "ge-0/3/3.202", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE-2-MANAGEMENT | AMS GROOVE 2 DIRECT MANAGEMENT", + "circuits": [ + { + "id": 663194, + "name": "AMS-GROOVE-2-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1376, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "ae2", + "bundle": [ + "xe-0/1/0" + ], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN $GA-02055 | rt2-sw1 (ex3400)", + "circuits": [], + "snmp-index": 617, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "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" + } + ], + "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": "ge-0/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 601, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "xe-0/0/0:0", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH-ATH2 | GRNET CID: GRNET ATH-ATH2 DWDM-1 #CH47 ", + "circuits": [], + "snmp-index": 517, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 524, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | AMS-BRU |", + "circuits": [], + "snmp-index": 597, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-BRU", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-BRU", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-11/2/5.220", + "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" + } + ], + "snmp-index": 1032, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "AZSCIENCENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AZSCIENCENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-1/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 616, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.2000", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_MDVPN CUSTOMER REDIRIS #REDIRIS-BGP-LU-COC-AP1 $GS-01057 | MDVPN CoC - REDIRIS AP1", + "circuits": [ + { + "id": 719490, + "name": "REDIRIS-BGP-LU-COC-AP1", + "type": "MD-VPN (NATIVE)", + "status": "non-monitored" + } + ], + "snmp-index": 1128, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae10.333", + "bundle": [], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "description": "SRV_IAS CUSTOMER DFN #DFN-AP2-IAS IASPS $GS-00567 | ASN680 |", + "circuits": [ + { + "id": 732577, + "name": "DFN-AP2-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 1001, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.204", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-GROOVE-3-MANAGEMENT | AMS GROOVE 3 DIRECT MANAGEMENT", + "circuits": [ + { + "id": 663065, + "name": "AMS-GROOVE-3-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1378, + "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": [], + "snmp-index": 847, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 595, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 600, + "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": [], + "snmp-index": 1027, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.3018", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-PAR-SINET-SD-WAN-SINET-SINET-17091 $GS-00660 |", + "circuits": [ + { + "id": 705907, + "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17091", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1122, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "et-5/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | QSFP SR4 optic installed", + "circuits": [], + "snmp-index": 938, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/0/5.120", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL CUSTOMER EUMETSAT-SVALBARD #EUMET-SVALBARD-LON $GS-02156 | NU-S800115 | - Monitoring Link 2", + "circuits": [ + { + "id": 729170, + "name": "EUMET-SVALBARD-LON", + "type": "GEANT IP", + "status": "operational" + } + ], + "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": "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" + } + ], + "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": "rt1.ams.nl.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE ORANGE BUSINESS SYSTEMS P_AE26 | Digital Realty CID - NL185323", + "circuits": [], + "snmp-index": 649, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae10.0", + "bundle": [], + "bundle-parents": [ + "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": "operational" + } + ], + "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": "rt1.bra.sk.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER SANET P_AE13 SRF9938825", + "circuits": [], + "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": "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" + } + ], + "snmp-index": 550, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 639, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.252", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/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" + } + ], + "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": "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": [], + "snmp-index": 1325, + "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": [], + "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": "rt1.lju.si.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS P_AE2 | sw1- EX3400 XE-0/2/1", + "circuits": [], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1569, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "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.chi.md.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | BUC-CHI | ROEDUNET CID: BUC-CHI-040-2", + "circuits": [], + "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": "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": [], + "snmp-index": 656, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 548, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.1337", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "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" + } + ], + "snmp-index": 1120, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SURF", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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": "mx2.zag.hr.geant.net", + "name": "xe-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 733, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0 MGMT TRUNK 2_2", + "circuits": [], + "snmp-index": 1277, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3917", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GCS Customer Nordunet MICROSOFT #Nordunet-GEO-ExpressRoute-Vlan3917 $GS-02308 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731506, + "name": "NORDUNET-GEO-EXPRESSROUTE-VLAN3917", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 968, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC INEX P_AE14 SRF9930779 | swi1-cwt1-1 Switch Port:Ethernet29", + "circuits": [], + "snmp-index": 526, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER NETHERLIGHT", + "circuits": [], + "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.kie.ua.geant.net", + "name": "et-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | KIE-KIE | KIE-KIE-IP1", + "circuits": [], + "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": "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": [], + "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": "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" + } + ], + "snmp-index": 597, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.412", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/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" + } + ], + "snmp-index": 1085, + "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": "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" + } + ], + "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": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1001", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mad-Fed4FIRE-BELNET-RedIRIS-14010 $GS-00674 |", + "circuits": [ + { + "id": 719548, + "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14010", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 652, + "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": "ae9", + "bundle": [ + "et-10/0/2" + ], + "bundle-parents": [ + "et-10/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01995 | BUC-FRA |", + "circuits": [], + "snmp-index": 1378, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-FRA", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BUC-FRA", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/0.991", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-DUB-IE | ", + "circuits": [ + { + "id": 728797, + "name": "DCN-MANAGEMENT-DUB-IE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 700, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "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" + } + ], + "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.buc.ro.geant.net", + "name": "xe-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | BUC-CHI | ROEDUNET CID: BUC-CHI-040-1", + "circuits": [], + "snmp-index": 551, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae16.1", + "bundle": [], + "bundle-parents": [ + "et-3/0/5" + ], + "description": "SRV_GLOBAL CUSTOMER AMRES #AMRES-AP2 $GS-02240 | ASN13092 |", + "circuits": [ + { + "id": 732621, + "name": "AMRES-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 768, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "AMRES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMRES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "ae10.200", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_IAS CUSTOMER EENET #EENET-AP2-IAS IASPS $GS-00569 | ASN3221", + "circuits": [ + { + "id": 661317, + "name": "EENET-AP2-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 615, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "EENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER LITNET P_AE10 SRF21091 | ", + "circuits": [], + "snmp-index": 565, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LITNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LITNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 748, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4081", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ARTEV-ExpressRoute-VLAN4081 $GS-01123 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727334, + "name": "BELNET-ARTEV-EXPRESSROUTE-VLAN4081", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 623, + "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/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to GEANT ODF P9", + "circuits": [], + "snmp-index": 662, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/13", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "lt-11/1/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #AMS-IAS-RE-PEERING | BGP PEERING - IAS SIDE", + "circuits": [], + "snmp-index": 1113, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.2704", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 638, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 545, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 694, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 955, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 567, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "et-11/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC LINX P_AE20 SRF9948916 | LINX port: edge1-tch-et-5/1/0", + "circuits": [], + "snmp-index": 1652, + "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" + } + ], + "snmp-index": 1028, + "dashboards": [ + "IAS_UPSTREAM" + ], + "dashboard_info": { + "name": "COGENT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "COGENT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 579, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.250", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #VM-AMS-NL-IDRACS-250 | NEW VM IDRACS", + "circuits": [ + { + "id": 662988, + "name": "VM-AMS-NL-IDRACS-250", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 831, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF0000001 | VPLS Internet Access | To GTS EX P12", + "circuits": [], + "snmp-index": 726, + "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": [], + "snmp-index": 550, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | THE-THE", + "circuits": [], + "snmp-index": 594, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "THE-THE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "THE-THE", + "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-EEX-IPV6 $GS-00873 | ASN293 | IPv6", + "circuits": [ + { + "id": 730105, + "name": "CH-ESNET-EEX-IPV6", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 1285, + "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": "ae35", + "bundle": [ + "xe-11/1/5" + ], + "bundle-parents": [ + "xe-11/1/5" + ], + "description": "LAG PRIVATE CLOUDFERRO SRF19094 $GA-01966 |", + "circuits": [], + "snmp-index": 1030, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae16.200", + "bundle": [], + "bundle-parents": [ + "et-4/1/5" + ], + "description": "SRV_GLOBAL CUSTOMER RASH #RASH100G-MGEN-TEST| test VLAN for MGEN 2023041834003691", + "circuits": [ + { + "id": 728180, + "name": "RASH100G-MGEN-TEST", + "type": "GEANT IP", + "status": "non-monitored" + } + ], + "snmp-index": 946, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RASH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RASH", + "interface_type": "LOGICAL" + } + ], + "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" + } + ], + "snmp-index": 819, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 736, + "dashboards": [], + "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" + } + ], + "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": "rt1.por.pt.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 545, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED |NOKIA RT0-RT1 TRUNK 20GB 1_2", + "circuits": [], + "snmp-index": 1040, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/1.60", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #kvmoip-ath2-gr| KVMoIP -switch port 4", + "circuits": [ + { + "id": 661231, + "name": "KVMOIP-ATH2-GR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 665, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 788, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae5", + "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-01858 | PRA2-VIE | ", + "circuits": [], + "snmp-index": 1020, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "PRA2-VIE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "PRA2-VIE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "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.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" + } + ], + "snmp-index": 970, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-1/0/0.1001", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER ORIENTPLUS ORIENTPLUS #Test-CCC-VLAN ", + "circuits": [], + "snmp-index": 1067, + "dashboards": [ + "L2_CIRCUIT" + ], + "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": [], + "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": "mx2.lis.pt.geant.net", + "name": "ge-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 553, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1178, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.930", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/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": "non-monitored" + } + ], + "snmp-index": 1083, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.14", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1180, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4066", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-RVA-ONEM-ExpressRoute-VLAN4066 $GS-02431 | ", + "circuits": [ + { + "id": 732778, + "name": "BELNET-RVA-ONEM-EXPRESSROUTE-VLAN4066", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 704, + "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": "ge-0/3/2.25", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-det1-vie-at-idrac | NEMO DDOS Detection 1 iDRAC", + "circuits": [ + { + "id": 718923, + "name": "DDOS-DET1-VIE-AT-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 972, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "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" + } + ], + "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.lon.uk.geant.net", + "name": "xe-3/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE | ORACLE P_AE24 SRF20010 | ASN31898", + "circuits": [], + "snmp-index": 1464, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae10.100", + "bundle": [], + "bundle-parents": [ + "xe-0/0/0" + ], + "description": "SRV_GLOBAL CUSTOMER BREN #BREN-AP1 $GS-00438 | ASN6802 |", + "circuits": [ + { + "id": 731752, + "name": "BREN-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 749, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "xe-0/0/0:0", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 533, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT ESNET #Gen513-EEX-ESNET-1G $GA-01543 | SRF9927963", + "circuits": [], + "snmp-index": 618, + "dashboards": [], + "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": [], + "snmp-index": 657, + "dashboards": [], + "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" + } + ], + "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": "rt1.fra.de.geant.net", + "name": "xe-0/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | DDOS Mitigation Server link 1 Node 2 | ", + "circuits": [], + "snmp-index": 1295, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER DFN GOLE TESTBED $GA-20365 | ", + "circuits": [], + "snmp-index": 673, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 1573, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 652, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/7.1112", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2Circuit Customer GEANT GEANT #UAT-Test-GPlus $GS-11112 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 719645, + "name": "UAT-TEST-GPLUS", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1052, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 871, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-5/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE4 | AMS-BRU |", + "circuits": [], + "snmp-index": 880, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-BRU", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-BRU", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "ae4", + "bundle": [ + "et-0/0/1" + ], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02426 | SOF-THE", + "circuits": [], + "snmp-index": 601, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-THE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "SOF-THE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 541, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 962, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-1/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Was IUCC: GNT-E10-006", + "circuits": [], + "snmp-index": 852, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae11", + "bundle": [ + "xe-0/0/1" + ], + "bundle-parents": [ + "xe-0/0/1" + ], + "description": "LAG CUSTOMER MARNET $GA-01732 | MARNET AP1 ", + "circuits": [], + "snmp-index": 731, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MARNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "MARNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "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": "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": [], + "snmp-index": 525, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1269, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "ae3.0", + "bundle": [], + "bundle-parents": [ + "et-1/0/2", + "et-1/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LJU01-MIL2-IPTRUNK $GS-00051| LJU01-MIL2", + "circuits": [ + { + "id": 729572, + "name": "LJU01-MIL2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 800, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-MIL2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-MIL2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "mx1.vie.at.geant.net", + "name": "et-9/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CESNET P_AE23 |", + "circuits": [], + "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": "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": 727328, + "name": "BELNET-STADKORTRIJK-EXPRESSROUTE-VLAN-4083", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 605, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "ae1", + "bundle": [ + "et-0/0/3" + ], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02041 | KAU-KAU |", + "circuits": [], + "snmp-index": 585, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-KAU", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "KAU-KAU", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae1", + "bundle": [ + "et-3/1/5" + ], + "bundle-parents": [ + "et-3/1/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02349 | HAM-TAR", + "circuits": [], + "snmp-index": 806, + "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": "xe-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | AMS-AMS | BRK4 - P 1A2", + "circuits": [], + "snmp-index": 636, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-AMS", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-AMS", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "et-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | LJU01-ZAG", + "circuits": [], + "snmp-index": 767, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-ZAG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-ZAG", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae10", + "bundle": [ + "et-2/1/5" + ], + "bundle-parents": [ + "et-2/1/5" + ], + "description": "LAG PUBLIC VIX SRF9923739 $GA-01867 |", + "circuits": [], + "snmp-index": 690, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS A10-DDOS-SCRUBBING P_AE16 | A10 e8 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", + "circuits": [], + "snmp-index": 1280, + "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": "730XD-2-ESXI-TRAFFIC-LAG", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 575, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 733, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "et-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | MAD-MAR |", + "circuits": [], + "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": "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 $GS-00934 | ASN15169", + "circuits": [ + { + "id": 731196, + "name": "GOOGLE-FRA15-15169-DE", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "snmp-index": 999, + "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/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": [], + "snmp-index": 596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 666, + "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": [], + "snmp-index": 990, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae10.333", + "bundle": [], + "bundle-parents": [ + "xe-0/0/0" + ], + "description": "SRV_IAS CUSTOMER BREN #BREN-AP1-IAS IASPS $GS-00557 | ASN6802", + "circuits": [ + { + "id": 731749, + "name": "BREN-AP1-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 750, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "BREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 569, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "et-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | ULAKBIM AP2 Test 15/03/2023 ", + "circuits": [], + "snmp-index": 596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 647, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 710, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "xe-3/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 548, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 539, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS OCVM #OCVM-Management-Lon | ocvm.lon.uk ESXi port", + "circuits": [], + "snmp-index": 593, + "dashboards": [], + "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": [], + "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": "rt1.fra.de.geant.net", + "name": "xe-11/2/5.300", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL CUSTOMER AZSCIENCENET #AZSCIENCENET-AP1 $GS-00433 | ASN202993 |", + "circuits": [ + { + "id": 723799, + "name": "AZSCIENCENET-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 1033, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "AZSCIENCENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AZSCIENCENET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3921", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET RARE #AMS-HAM-RARE-NORDUNET-24001 $GS-02430 |", + "circuits": [ + { + "id": 732791, + "name": "AMS-HAM-RARE-NORDUNET-24001", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1017, + "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.lon2.uk.geant.net", + "name": "lt-10/1/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #LON2-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 1007, + "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": [], + "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": "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": [], + "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.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" + } + ], + "snmp-index": 1304, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae16", + "bundle": [ + "et-3/1/2" + ], + "bundle-parents": [ + "et-3/1/2" + ], + "description": "LAG CUSTOMER AMRES SRF22095 $GA-01902 |", + "circuits": [], + "snmp-index": 623, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "AMRES", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMRES", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "lt-0/0/0.13", + "bundle": [], + "bundle-parents": [], + "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #LJU-VRR | MDVPN VRR", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4090", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-fgov-ExpressRoute-Vlan4090 $GS-01124 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727345, + "name": "BELNET-FGOV-EXPRESSROUTE-VLAN4090", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 641, + "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": "ae4", + "bundle": [ + "xe-0/1/7" + ], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt2-sw2 (ex3400)", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae23.13", + "bundle": [], + "bundle-parents": [ + "xe-3/2/0", + "xe-3/2/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS FLOWMON #FLOWMON-LON-IDRAC $GS-01193 | DRAC LOM", + "circuits": [ + { + "id": 717586, + "name": "FLOWMON-LON-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1018, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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": [ + { + "id": 679360, + "name": "GEANT-CORPORATE-VIAVODAFONE", + "type": "CORPORATE", + "status": "operational" + } + ], + "snmp-index": 543, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "ae21.33", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS Customer BELNET MICROSOFT #BELNET-KULEUVEN-EXPRESSROUTE-4082 $GS-01134 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727174, + "name": "BELNET-KULEUVEN-EXPRESSROUTE-4082", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1354, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | BUC-SOF", + "circuits": [], + "snmp-index": 684, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-SOF", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BUC-SOF", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "mx2.zag.hr.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-7/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | AMS-LON", + "circuits": [], + "snmp-index": 1381, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4089", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-PREMIER-ExpressRoute-VLAN4089 $GS-01137 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711866, + "name": "BELNET-PREMIER-EXPRESSROUTE-VLAN4089", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 646, + "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.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" + } + ], + "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": "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": [], + "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": "rt1.kau.lt.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | RIG-TAR", + "circuits": [], + "snmp-index": 615, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "RIG-TAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "RIG-TAR", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 604, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS A10-DDOS-SCRUBBING P_AE15 | A10 e4 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", + "circuits": [], + "snmp-index": 1279, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.6", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1002, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae16", + "bundle": [ + "xe-0/0/4", + "xe-0/1/0", + "xe-0/1/2", + "xe-0/1/4" + ], + "bundle-parents": [ + "xe-0/0/4", + "xe-0/1/0", + "xe-0/1/2", + "xe-0/1/4" + ], + "description": "LAG INFRASTRUCTURE ACCESS A10-DDOS-SCRUBBING SRF0000001 $GA-01954 | Clean-Traffic A10 CONTACT: soc@geant.org IMPLEMENTED: 20170831", + "circuits": [], + "snmp-index": 1398, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 556, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 700, + "dashboards": [], + "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": [], + "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": "rt1.bru.be.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRU-BRU-IPTRUNK $GS-02277 | BRU-BRU IP TRUNK", + "circuits": [ + { + "id": 727155, + "name": "BRU-BRU-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 611, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-BRU IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BRU-BRU IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/12", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae12 | FRA-PRD-ESX04 SLOT4 PORT3 VMNIC6", + "circuits": [ + { + "id": 658618, + "name": "730XD-4-SLOT4-PORT3-VMNIC6", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 630, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY to Virgin Media NTU", + "circuits": [], + "snmp-index": 517, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "et-10/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER JISC P_AE12 SRF22040 | #JISC-AP2-LL2 | JISC ID: J/2C/0410/02/1CGE | ", + "circuits": [], + "snmp-index": 1152, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 585, + "dashboards": [], + "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": [], + "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": "mx1.par.fr.geant.net", + "name": "ae13.3005", + "bundle": [], + "bundle-parents": [ + "et-1/0/2", + "et-10/0/2" + ], + "description": "SRV_VPLS INFRASTRUCTURE RARE P4 #RARE-PAR-SWITCH $GS-00774 |", + "circuits": [ + { + "id": 712157, + "name": "RARE-PAR-SWITCH", + "type": "L2SERVICES", + "status": "non-monitored" + } + ], + "snmp-index": 821, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 932, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.7", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-IMEC-ExpressRoute-VLAN4092 $GS-02092 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 717899, + "name": "BELNET-IMEC-EXPRESSROUTE-VLAN4092", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1103, + "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.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" + } + ], + "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/0/1.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #fra-lon2-SUPERPOP-QFX-GEANT $GS00076 |", + "circuits": [ + { + "id": 729416, + "name": "FRA-LON2-SUPERPOP-QFX-GEANT", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 1018, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "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" + } + ], + "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.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" + } + ], + "snmp-index": 1142, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + { + "name": "SURF", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.3250", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER JISC NETHERLIGHT #ams-lon-GEANTOpen-JISC-NETHERLIGHT $GS-02400 |", + "circuits": [ + { + "id": 732708, + "name": "AMS-LON-GEANTOPEN-JISC-NEA3R", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1149, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | ATH2-VIE | OTEGLOBE CID: 1-6RK0GB4 | OVERSUB-RISK-MPC3E", + "circuits": [], + "snmp-index": 626, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae18", + "bundle": [ + "xe-10/0/2" + ], + "bundle-parents": [ + "xe-10/0/2" + ], + "description": "LAG PRIVATE FACEBOOK SRF9935091 $GA-01840 |", + "circuits": [], + "snmp-index": 714, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-11/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE Verizon P_AE36 | FRANKFURT-VERIZON-2-LL-2 | Interxion CID: DE236889| VERIZON CID: GEANT-FRN-EU-04-PX", + "circuits": [], + "snmp-index": 903, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.187", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS BELNET #bru-mad-Fed4FIRE-BELNET-RedIRIS-14011 $GS-00675 |", + "circuits": [ + { + "id": 719499, + "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14011", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1064, + "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": "ae8", + "bundle": [ + "et-7/0/4", + "et-7/1/4" + ], + "bundle-parents": [ + "et-7/0/4", + "et-7/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01915 | AMS-FRA", + "circuits": [], + "snmp-index": 605, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-FRA", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "AMS-FRA", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 913, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "MAEEN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MAEEN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "ae15.683", + "bundle": [], + "bundle-parents": [ + "et-0/0/2", + "et-1/0/2", + "et-4/1/0" + ], + "description": "SRV_L2CIRCUIT CUSTOMER ORACLE REDIRIS SRF21051 $GS-00701 | #bil-fra-ORACLE-REDIRIS-21051-VL683", + "circuits": [ + { + "id": 719124, + "name": "BIL-FRA-ORACLE-REDIRIS-21051-VL683", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 820, + "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": "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" + } + ], + "snmp-index": 1485, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.3004", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "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" + } + ], + "snmp-index": 1126, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE FACEBOOK SRF9934785 P_AE17 | FB ID: FA-1026202", + "circuits": [], + "snmp-index": 1469, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.10", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #NE-ESXI-VMnetwork-PAR-FR | ne-esxi-prod-par-1 VMnetwork", + "circuits": [ + { + "id": 679316, + "name": "NE-ESXI-VMNETWORK-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1076, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ae11.100", + "bundle": [], + "bundle-parents": [ + "et-3/1/0" + ], + "description": "SRV_GLOBAL CUSTOMER ULAKBIM #ULAKBIM-AP1 $GS-00517 | ASN8517 |", + "circuits": [ + { + "id": 662949, + "name": "ULAKBIM-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 734, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ULAKBIM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ULAKBIM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 789, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "TENET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "TENET", + "interface_type": "LOGICAL" + } + ], + "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" + } + ], + "snmp-index": 553, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "et-8/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER REDIRIS P_AE16 SRF21114 |", + "circuits": [], + "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.mil2.it.geant.net", + "name": "ae6", + "bundle": [ + "et-4/1/2" + ], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $DA-000198 | ATH2-MIL2", + "circuits": [], + "snmp-index": 747, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-MIL2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH2-MIL2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 603, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 613, + "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": "non-monitored" + } + ], + "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.ams.nl.geant.net", + "name": "xe-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT ASNET $GA-01635 | SRF9911613 |", + "circuits": [], + "snmp-index": 670, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "et-7/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK-2 $GS-00007 | AMS-AMS IP TRUNK", + "circuits": [ + { + "id": 708713, + "name": "AMS-AMS-IPTRUNK-2", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1213, + "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": "mx1.lon.uk.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 585, + "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-1/2/2.13", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #INFOBLOX-LON2-REPORTING-SERVER | LON2 Infoblox Reporting Server", + "circuits": [ + { + "id": 661561, + "name": "INFOBLOX-LON2-REPORTING-SERVER", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1182, + "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" + } + ], + "snmp-index": 972, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kie.ua.geant.net", + "name": "xe-0/0/1:0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae10.100", + "bundle": [], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "description": "SRV_GLOBAL CUSTOMER DFN #DFN-AP2 $GS-00453 | ASN680 |", + "circuits": [ + { + "id": 732567, + "name": "DFN-AP2", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 998, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 821, + "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" + } + ], + "snmp-index": 1174, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.35", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1409, + "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": "xe-4/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE SUPERPOP | PAR-LON2-QFX | to QFX xe-0/0/42", + "circuits": [], + "snmp-index": 1275, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 968, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX02 SLOT4 PORT4 VMNIC7 - VSAN PORT", + "circuits": [ + { + "id": 658615, + "name": "730XD-2-SLOT4-PORT4-VMNIC7", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 572, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/14", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/0/1:0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.3019", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SD-WAN-SINET-SINET-17088 $GS-00649 |", + "circuits": [ + { + "id": 705894, + "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17088", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 784, + "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": "xe-4/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | NEMO DDOS SERVER link 1 Node 2", + "circuits": [], + "snmp-index": 1282, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-9/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | GEN-MIL2 |GRV2 1/1/3 (Facing GEN GRV1 1/1/3) ", + "circuits": [], + "snmp-index": 826, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEN-MIL2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "so-1/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 731, + "dashboards": [], + "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" + } + ], + "snmp-index": 613, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae14.100", + "bundle": [], + "bundle-parents": [ + "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": "operational" + } + ], + "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.par.fr.geant.net", + "name": "irb.999", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #infinera-par-fr-mgmt-vrf-vlan999|", + "circuits": [], + "snmp-index": 738, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.13", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ICT-ExpressRoute-VLAN4087 $GS-01133 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 706047, + "name": "BELNET-ICT-EXPRESSROUTE-VLAN4087", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1078, + "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-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | PRA-VIE", + "circuits": [], + "snmp-index": 894, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "PRA-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "PRA-VIE", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 1356, + "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": [], + "snmp-index": 692, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "ge-0/0/15", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae4", + "bundle": [ + "et-11/1/2", + "et-11/1/5" + ], + "bundle-parents": [ + "et-11/1/2", + "et-11/1/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01878 | GEN-MAR |", + "circuits": [], + "snmp-index": 650, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-MAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "GEN-MAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 569, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.1304", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER KREONET SWITCH #ams-fra-SCION-KREONET-SWITCH $GS-02292 |", + "circuits": [ + { + "id": 734614, + "name": "AMS-FRA-SCION-KREONET-SWITCH", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1141, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SWITCH", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.30", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MOBILIT-ExpressRoute-VLAN4093 $GS-02169 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 720020, + "name": "BELNET-MOBILIT-EXPRESSROUTE-VLAN4093", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 761, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 683, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-11/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 | AMS-LON | Coriant G30 link 2", + "circuits": [], + "snmp-index": 1653, + "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": "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" + } + ], + "snmp-index": 990, + "dashboards": [ + "CAE1", + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + { + "name": "SINGAREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 600, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "ae11.111", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-1/1/5" + ], + "description": "SRV_L3VPN CUSTOMER ARNES #ARNES-AP1-LHCONE $GS-00807 | ASN2107", + "circuits": [ + { + "id": 730048, + "name": "ARNES-AP1-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 584, + "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": "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": 709296, + "name": "AMS-LON-MISC-UBUNTUNET-INTERNET2-170342", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "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": "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" + } + ], + "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": "rt1.fra.de.geant.net", + "name": "xe-11/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CYNET P_AE38 SRF9911591 |Limmasol Connectivity | Interxion CID:DE145855 | Tamares CID: GNT-E10-007 ", + "circuits": [], + "snmp-index": 852, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "CYNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/3.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": 723847, + "name": "PS-VIE-AT-BWCTL", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 806, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 808, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1176", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET SCION #BRU-PAR-FED4FIRE-SCION-9951467 $GS-00682 |", + "circuits": [ + { + "id": 714190, + "name": "BRU-PAR-FED4FIRE-SCION-9951467", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 661, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + }, + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.3021", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON-SINET-INTERNET-ACCESS | SINET Internet access", + "circuits": [ + { + "id": 660551, + "name": "LON-SINET-INTERNET-ACCESS", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 643, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4080", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #Belnet-ARPGAN-ExpressRoute-VLAN4080 $GS-01122 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727329, + "name": "BELNET-ARPGAN-EXPRESSROUTE-VLAN4080", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 621, + "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-2/0/5.3807", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT #WIX-TO-NETHERLIGHT-TEST2 $GS-00768 | WIX-to-Netherlight test 03/12/2014", + "circuits": [ + { + "id": 719128, + "name": "WIX-TO-NETHERLIGHT-TEST2", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1595, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "WIX", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "WIX", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-9/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | FRA-GEN-IPTRUNK", + "circuits": [], + "snmp-index": 1247, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 701, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 608, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 611, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4085", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-IMEC-ExpressRoute-VLAN4085 $GS-02091 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 727351, + "name": "BELNET-IMEC-EXPRESSROUTE-VLAN4085", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 631, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | SOF-THE", + "circuits": [], + "snmp-index": 691, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-THE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SOF-THE", + "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" + } + ], + "snmp-index": 606, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "fxp0", + "bundle": [], + "bundle-parents": [], + "description": "FXP0 Interface", + "circuits": [], + "snmp-index": 1, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae5.0", + "bundle": [], + "bundle-parents": [ + "xe-0/0/5", + "xe-0/0/6" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-AMS-IPTRUNK $GS-02458| AMS-AMS | ", + "circuits": [], + "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": "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": [], + "snmp-index": 541, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE3 | rt2-sw1(ex3400)", + "circuits": [], + "snmp-index": 540, + "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" + } + ], + "snmp-index": 948, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-4/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1048, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "et-9/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 | LON2-PAR-800G | to PAR-GRV3 1/1/8", + "circuits": [], + "snmp-index": 760, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON2-PAR-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LON2-PAR-800G", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 640, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 654, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae11.100", + "bundle": [], + "bundle-parents": [ + "xe-0/0/1" + ], + "description": "SRV_GLOBAL CUSTOMER MARNET #MARNET-AP1 $GS-00489 | ASN44224 | ", + "circuits": [ + { + "id": 662913, + "name": "MARNET-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 732, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MARNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 574, + "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": [], + "snmp-index": 577, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1584, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Was PSMP Server", + "circuits": [], + "snmp-index": 605, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae13.106", + "bundle": [], + "bundle-parents": [ + "et-4/0/4" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #UK-ESNET-EEX-IPV6 $GS-00916 | ASN293 | Lon-EEX-ESnet-IPv6-400G", + "circuits": [ + { + "id": 730142, + "name": "UK-ESNET-EEX-IPV6", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 969, + "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": "et-1/1/5.3068", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RARE CANARIE #AMS-AMS-RARE-CANARIE-21013 $GS-00627 |", + "circuits": [ + { + "id": 734551, + "name": "AMS-AMS-RARE-CANARIE-21013", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1147, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CANARIE", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "ae9", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01723 | PAR-PRD-ESX1 VM Traffic LAG", + "circuits": [ + { + "id": 658692, + "name": "730XD-1-VM-TRAFFIC-LAG-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 588, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 830, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1005", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mad-Fed4FIRE-BELNET-RedIRIS-14014 $GS-00678 |", + "circuits": [ + { + "id": 719532, + "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14014", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 656, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-2/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | ATH-MIL | OTEGLOBE CID: 1-4XPLWIS", + "circuits": [], + "snmp-index": 644, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae2", + "bundle": [ + "et-10/0/5", + "et-10/1/2", + "et-10/1/5" + ], + "bundle-parents": [ + "et-10/0/5", + "et-10/1/2", + "et-10/1/5" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01886 | GEN-MIL2 | ", + "circuits": [], + "snmp-index": 743, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-MIL2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "GEN-MIL2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "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": "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": 732777, + "name": "BELNET-RVA-ONEM-EXPRESSROUTE-VLAN4067", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 683, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-3/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 736, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.21", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-lon-uk-psmp-bwctl-vlan21 |psmp-gn-drac-lon-uk.geant.org pS iDRAC", + "circuits": [ + { + "id": 661299, + "name": "PS-LON-UK-PSMP-BWCTL-VLAN21", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 775, + "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" + } + ], + "snmp-index": 591, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-10/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | GEN-MIL2 |", + "circuits": [], + "snmp-index": 1252, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GEN-MIL2", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 1298, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GRNET P_AE10 SRF995511 | GRNET-AP1-LL1", + "circuits": [], + "snmp-index": 518, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | GRNET AP2_3 |", + "circuits": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "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": [], + "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": "qfx.par.fr.geant.net", + "name": "xe-0/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae10 | PAR-PRD-ESX2 SLOT4 PORT2 VMNIC5", + "circuits": [ + { + "id": 658565, + "name": "730XD-2-SLOT4-PORT2-VMNIC5-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 524, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.130", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ocvm-lon-uk-ilo | OC VM iDRAC", + "circuits": [ + { + "id": 661498, + "name": "OCVM-LON-UK-ILO", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 821, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "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.buc.ro.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 609, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BRU-BRU-IPTRUNK $GS-02277 | BRU-BRU IP TRUNK", + "circuits": [ + { + "id": 727155, + "name": "BRU-BRU-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 608, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-BRU IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BRU-BRU IP TRUNK", + "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 | GRV3 1/1/4", + "circuits": [], + "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.tar.ee.geant.net", + "name": "ae10.2702", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_L2CIRCUIT CUSTOMER SCION EENET #fra-tar-SCION-EENET $GS-02357 | ", + "circuits": [ + { + "id": 728914, + "name": "FRA-TAR-SCION-EENET", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 621, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EENET", + "interface_type": "LOGICAL" + }, + { + "name": "SCION", + "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": "730XD-3-VM-TRAFFIC-LAG", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 580, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 745, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 666, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "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" + } + ], + "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": "qfx.fra.de.geant.net", + "name": "xe-0/0/20", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX05 SLOT? PORT1 VMNIC4", + "circuits": [ + { + "id": 658581, + "name": "730XD-5-VMNIC4", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 684, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Was PSMP Server", + "circuits": [], + "snmp-index": 652, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.4050", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT CANARIE #UK-CANARIE $GS-00913 | ASN6509 | MANLAN Vlan:4050 ", + "circuits": [ + { + "id": 661410, + "name": "UK-CANARIE", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 1094, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "CANARIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CANARIE", + "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" + } + ], + "snmp-index": 1478, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 658, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "ae2", + "bundle": [ + "xe-0/1/7" + ], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 602, + "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" + } + ], + "snmp-index": 553, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 526, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.39", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-RVA-ONEM-ExpressRoute-VLAN4066 $GS-02431 | ", + "circuits": [ + { + "id": 732778, + "name": "BELNET-RVA-ONEM-EXPRESSROUTE-VLAN4066", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 1486, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ae3.0", + "bundle": [], + "bundle-parents": [ + "xe-1/0/0", + "xe-2/0/1", + "xe-2/1/0", + "xe-2/1/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH-MIL2-IPTRUNK $GS-00014 | ATH-MIL2 |", + "circuits": [ + { + "id": 708731, + "name": "ATH-MIL2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 685, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH-MIL2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER MREN P_AE15 SRF21023|", + "circuits": [], + "snmp-index": 744, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MREN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MREN", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "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.gen.ch.geant.net", + "name": "et-4/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER GARR P_AE12 |", + "circuits": [], + "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.buc.ro.geant.net", + "name": "ge-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 590, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae10.354", + "bundle": [], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER SINET DFN #AMS-HAM-JAXA-SINET-DFN-14006 $GS-00640 |", + "circuits": [ + { + "id": 706057, + "name": "AMS-HAM-JAXA-SINET-DFN-14006", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1002, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "LOGICAL" + }, + { + "name": "SINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 605, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "et-3/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | COR-PAR-IP1 | SR4 to PAR01-GRV6 1/1/12", + "circuits": [], + "snmp-index": 830, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-LR | ", + "circuits": [], + "snmp-index": 687, + "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" + } + ], + "snmp-index": 1141, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + { + "name": "SURF", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-2/0/2", + "et-2/0/5", + "et-2/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #HAM-POZ-IPTRUNK $GS-02339| HAM-POZ-IPTRUNK", + "circuits": [ + { + "id": 728444, + "name": "HAM-POZ-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 804, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-POZ-IPTRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HAM-POZ-IPTRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ae8.0", + "bundle": [], + "bundle-parents": [ + "et-4/0/4", + "et-4/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON2-PAR-800G-IPTRUNK $GS-00053 | LON2-PAR | Coriant G30 800G", + "circuits": [ + { + "id": 724532, + "name": "LON2-PAR-800G-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 768, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON2-PAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LON2-PAR", + "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" + } + ], + "snmp-index": 749, + "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-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" + } + ], + "snmp-index": 584, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1284, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-2/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 636, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/7.1113", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GCS Customer GEANT GEANT #UAT-Test-MS-Express-Route $GS-11113 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 719669, + "name": "UAT-TEST-MS-EXPRESS-ROUTE", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 1058, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "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": [], + "snmp-index": 977, + "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": [], + "snmp-index": 542, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "ae10", + "bundle": [ + "et-0/0/2" + ], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "LAG CUSTOMER LAT $GA-02074 | LAT-AP2-LAG", + "circuits": [], + "snmp-index": 588, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CERN P_AE17 SRF0000001 |", + "circuits": [], + "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.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" + } + ], + "snmp-index": 613, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "FCCN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FCCN", + "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": [], + "snmp-index": 1004, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 522, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 | BUD-VIE | BUD-VIE-100G-IP1", + "circuits": [], + "snmp-index": 926, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUD-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BUD-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "rt1.mil2.it.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-01775 | LJU01-MIL2", + "circuits": [], + "snmp-index": 690, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-MIL2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "LJU01-MIL2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "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": "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" + } + ], + "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": "ge-0/2/9.242", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON-SINET-HOST-DEVICE-IDRAC | SINET HOST-IDRAC", + "circuits": [ + { + "id": 661251, + "name": "LON-SINET-HOST-DEVICE-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 642, + "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": [], + "snmp-index": 1267, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": "non-monitored" + } + ], + "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": "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" + } + ], + "snmp-index": 598, + "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" + } + ], + "snmp-index": 1318, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-5/1/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE $GS-00008 #AMS-BRU-IPTRUNK-100G | AMS-BRU |", + "circuits": [ + { + "id": 727157, + "name": "AMS-BRU-IPTRUNK-100G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 663, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-BRU", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-BRU", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ae10.668", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-1/0/1", + "xe-3/0/0" + ], + "description": "SRV_L3VPN CUSTOMER GRNET #GRNET-AP1-COPERNICUS $GS-00828 | ASN5408", + "circuits": [ + { + "id": 713963, + "name": "GRNET-AP1-COPERNICUS", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 760, + "dashboards": [ + "COPERNICUS", + "NREN" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 540, + "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" + } + ], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | WAs UBUNTUNET", + "circuits": [], + "snmp-index": 572, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae26.0", + "bundle": [], + "bundle-parents": [ + "xe-0/1/6" + ], + "description": "SRV_IAS PRIVATE ORANGE BUSINESS SYSTEMS #NL-ORANGE-2281-2 $GS-02182| ASN2281 | ", + "circuits": [ + { + "id": 733925, + "name": "NL-ORANGE-2281-2", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "snmp-index": 1007, + "dashboards": [ + "IAS_PEERS", + "IAS_PRIVATE" + ], + "dashboard_info": { + "name": "ORANGE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ORANGE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "srx1.am.office.geant.net", + "name": "ge-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 516, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-2/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | NO OPTIC INSTALLED", + "circuits": [], + "snmp-index": 1560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.31", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 803, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "CESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-1/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER NORDUNET P_ae11 SRF21044 | #NORDUNET-AP2-100GB", + "circuits": [], + "snmp-index": 789, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "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.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": "operational" + } + ], + "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": "mx1.par.fr.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 608, + "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" + } + ], + "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": "rt1.por.pt.geant.net", + "name": "ae10.1934", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_MDVPN CUSTOMER FCCN #FCCN-BGP-LU-COC-AP2 $GS-01004 | MDVPN CoC - FCCN AP2", + "circuits": [ + { + "id": 712561, + "name": "FCCN-BGP-LU-COC-AP2", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 610, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "FCCN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FCCN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 649, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae9.0", + "bundle": [], + "bundle-parents": [ + "et-2/0/2", + "et-2/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-VIE-IPTRUNK $GS-00026 | BUD-VIE |", + "circuits": [ + { + "id": 708737, + "name": "BUD-VIE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 811, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUD-VIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BUD-VIE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "ae13", + "bundle": [ + "xe-3/0/0", + "xe-3/0/1" + ], + "bundle-parents": [ + "xe-3/0/0", + "xe-3/0/1" + ], + "description": "LAG PUBLIC DE-CIX SRF9938247 $GA-02205 |", + "circuits": [], + "snmp-index": 591, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 533, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "snmp-index": 1316, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + }, + { + "name": "KAUST", + "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": 716208, + "name": "AMS-PAR-RARE-RARE-21101", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 950, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/22", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae17 | PAR-PRD-ESX5 SLOT? PORT3 VMNIC10", + "circuits": [ + { + "id": 658436, + "name": "730XD-5-VMNIC10-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 539, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 777, + "dashboards": [], + "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": [], + "snmp-index": 1296, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 599, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-10/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 912, + "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" + } + ], + "snmp-index": 1034, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + { + "name": "ESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 546, + "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": [], + "snmp-index": 1260, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "|", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "|", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 588, + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 796, + "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": "ae20.0", + "bundle": [], + "bundle-parents": [ + "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": "operational" + } + ], + "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": "rt1.fra.de.geant.net", + "name": "lt-4/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 1182, + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 685, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "et-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | KAU-KAU | KAU-KAU-IP1", + "circuits": [], + "snmp-index": 532, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-KAU", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "KAU-KAU", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/3/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 891, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 745, + "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": [], + "snmp-index": 862, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915905 | BUD01-DTNX10-1 XCM 1", + "circuits": [], + "snmp-index": 593, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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-200G $GS-02203 | BIL-MAD 200G |", + "circuits": [ + { + "id": 719646, + "name": "BIL-MAD-IPTRUNK-200G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 838, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BIL-MAD 200G", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BIL-MAD 200G", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | NOKIA RT0 MGMT TRUNK 1_2", + "circuits": [], + "snmp-index": 1276, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "lt-1/3/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 1225, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | DUB-LON", + "circuits": [], + "snmp-index": 1405, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "DUB-LON", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "DUB-LON", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "xe-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC NIX P_AE12 SRF9934721 | CESNET ID: GEANT-to-NIX.CZ NIX.CZ ID: GEANT", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae8", + "bundle": [ + "et-9/0/2" + ], + "bundle-parents": [ + "et-9/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-01868 | BRA-VIE |", + "circuits": [], + "snmp-index": 751, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRA-VIE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BRA-VIE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 645, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-1/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 568, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae7.0", + "bundle": [], + "bundle-parents": [ + "et-7/0/4", + "et-7/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN-PAR-800G-IPTRUNK $GS-00040 | GEN-PAR | Coriant G30 800G", + "circuits": [ + { + "id": 721721, + "name": "GEN-PAR-800G-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1315, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-PAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEN-PAR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/2/7.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL RE_INTERCONNECT ESNET #NL-EEX-ESNET-OOB $GS-00891 | ASN293 | AMS-EEX-ESNET-1G-OOB", + "circuits": [ + { + "id": 708276, + "name": "NL-EEX-ESNET-OOB", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1199, + "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": "xe-0/1/6.1624", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SCION INTERNET2 #fra-lon-SCION-SCION-INTERNET2-1 $GS-02296 |", + "circuits": [ + { + "id": 726976, + "name": "FRA-LON-SCION-SCION-INTERNET2-1", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1336, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-3/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH-ATH2 | GRNET CID: GRNET ATH-ATH2 DWDM-4 #CH45", + "circuits": [], + "snmp-index": 732, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/8.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS WP6 Netronome server # Netronome-IDRAC-LON2-UK | IDRAC CONTACT: pavle.vuletic@amres.ac.rs IMPLEMENTED: 20180502", + "circuits": [ + { + "id": 708158, + "name": "NETRONOME-IDRAC-LON2-UK", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1174, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 921, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 567, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.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" + } + ], + "snmp-index": 616, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae25.0", + "bundle": [], + "bundle-parents": [ + "xe-3/1/1" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT ANKABUT #UK-ANKABUT $GS-00906 | ASN47862 |", + "circuits": [ + { + "id": 708290, + "name": "UK-ANKABUT", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 633, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ANKABUT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ANKABUT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 759, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #TAR-TAR-IPTRUNK $GS-02351| TAR-TAR", + "circuits": [ + { + "id": 728950, + "name": "TAR-TAR-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 601, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "TAR-TAR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "TAR-TAR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | lon uk POP LAN", + "circuits": [], + "snmp-index": 601, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 604, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 584, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | ATH-MIL | OTEGLOBE CID: 1-94LW1NA", + "circuits": [], + "snmp-index": 643, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-MIL", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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.chi.md.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 570, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.2018", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_L3VPN RE_INTERCONNECT REDCLARA #REDCLARA-LIS-LHCONE $GS-00848 | ASN27750", + "circuits": [ + { + "id": 713840, + "name": "REDCLARA-LIS-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "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": "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": [], + "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.lon2.uk.geant.net", + "name": "ae2.0", + "bundle": [], + "bundle-parents": [ + "et-3/0/4", + "et-3/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #LON-LON2-800G-IPTRUNK $GS-00052 | LON2-LON | Coriant G30 800G", + "circuits": [ + { + "id": 719902, + "name": "LON-LON2-800G-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 725, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON2-LON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LON2-LON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ae20.100", + "bundle": [], + "bundle-parents": [ + "ge-0/2/3" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT UTIC #BUD-UTIC $GS-02232 | ASN8670 |", + "circuits": [ + { + "id": 726343, + "name": "BUD-UTIC", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 813, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "UTIC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "UTIC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 692, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | FORTIGATE CLUSTER AMS-2 1_2", + "circuits": [], + "snmp-index": 715, + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 602, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae18.2001", + "bundle": [], + "bundle-parents": [ + "xe-2/2/0" + ], + "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" + } + ], + "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.lon.uk.geant.net", + "name": "xe-3/2/6.196", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS JISC #lon-mad-OFELIA-JISC-RedIRIS-13013 $GS-00733 |", + "circuits": [ + { + "id": 719488, + "name": "LON-MAD-OFELIA-JISC-REDIRIS-13013", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1499, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + }, + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-8/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 993, + "dashboards": [], + "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": [ + { + "id": 678999, + "name": "GEANT-OPERATIONS-LABCONNECTIVITY", + "type": "CORPORATE", + "status": "non-monitored" + } + ], + "snmp-index": 554, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER MICROSOFT EXPRESSROUTE #1 SRF20047 |GEANT-EXR01-AMS21-PRI-06162020", + "circuits": [], + "snmp-index": 581, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "MICROSOFT", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MICROSOFT", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/0.23", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #ps-dub-ie-idrac-vlan23 | perfSONAR iDRAC", + "circuits": [ + { + "id": 663246, + "name": "PS-DUB-IE-IDRAC-VLAN23", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 698, + "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": [], + "snmp-index": 563, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 576, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 810, + "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": [], + "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.vie.at.geant.net", + "name": "ge-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 648, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "rt2.the.gr.geant.net", + "name": "ae0", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02429 | THE-THE ", + "circuits": [], + "snmp-index": 600, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "THE-THE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "THE-THE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "ae10.100", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1" + ], + "description": "SRV_GLOBAL CUSTOMER LITNET #LITNET-AP1 $GS-00486 | ASN2847 |", + "circuits": [ + { + "id": 715805, + "name": "LITNET-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 608, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LITNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LITNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 823, + "dashboards": [], + "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 | MAR01-MIL2 |", + "circuits": [], + "snmp-index": 684, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MAR01-MIL2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "MAR01-MIL2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS VEEAM-LAN SRF0000001 | R730XD NIC2", + "circuits": [], + "snmp-index": 561, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 590, + "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": [], + "snmp-index": 1280, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 857, + "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": "730XD-1-ESXI-TRAFFIC-LAG", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 574, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "xe-5/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | 10G-LR installed | ", + "circuits": [], + "snmp-index": 681, + "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" + } + ], + "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": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.240", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LON-SINET-EDGE-DEVICE-IDRAC | SINET edge-device-iDRAC", + "circuits": [ + { + "id": 661457, + "name": "LON-SINET-EDGE-DEVICE-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 641, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.25", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1177, + "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": "xe-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 743, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ath2.gr.geant.net", + "name": "ae0", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $DA-00098 | ATH2-ATH2", + "circuits": [], + "snmp-index": 596, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-ATH2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH2-ATH2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER EENET P_AE10 | EENET - member of ae10", + "circuits": [], + "snmp-index": 593, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "EENET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "EENET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-0/1/6.1725", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SCION KAUST #ams-fra-KAUST-SCION $GS-02417|", + "circuits": [ + { + "id": 732828, + "name": "AMS-FRA-KAUST-SCION", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1579, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + }, + { + "name": "KAUST", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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.ams.nl.geant.net", + "name": "xe-2/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | psmp-gn-bw-ams.nl.geant.org pS BWCTL", + "circuits": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-1/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE AKAMAI P_AE27 | Interxion ID: DP28378", + "circuits": [], + "snmp-index": 923, + "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": [], + "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.lon.uk.geant.net", + "name": "ae8.0", + "bundle": [], + "bundle-parents": [ + "et-4/1/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS2-LON-IPTRUNK-100G $GS-00012 | AMS-LON |Coriant G30 100G", + "circuits": [ + { + "id": 708739, + "name": "AMS2-LON-IPTRUNK-100G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1428, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 703, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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-D0021 | INTERNET2-400G to BOSTON", + "circuits": [], + "snmp-index": 691, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "xe-1/2/2.12", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #CORSA-MANAGEMENT-LON2-UK | MGMT interface for corsa", + "circuits": [ + { + "id": 661358, + "name": "CORSA-MANAGEMENT-LON2-UK", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 980, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 600, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ae10.333", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0", + "xe-0/1/1", + "xe-1/0/1", + "xe-3/0/0" + ], + "description": "SRV_IAS CUSTOMER GRNET #GRNET-AP1-IAS IASGWS $GS-00530 | ASN5408 |", + "circuits": [ + { + "id": 661977, + "name": "GRNET-AP1-IAS", + "type": "GWS - INDIRECT", + "status": "operational" + } + ], + "snmp-index": 595, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/3.3021", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #AMS-SINET-INTERNET-ACCESS | SINET INTERNET ACCESS", + "circuits": [ + { + "id": 663141, + "name": "AMS-SINET-INTERNET-ACCESS", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1125, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/2.402", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #VIE-Groove-2-Management | VIE Groove 2 Direct Management", + "circuits": [ + { + "id": 661430, + "name": "VIE-GROOVE-2-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1191, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #DUB-LON-IPTRUNK $GS-00031| DUB-LON", + "circuits": [ + { + "id": 732108, + "name": "DUB-LON-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 714, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "DUB-LON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "DUB-LON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "ae10.38", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GCS Customer Nordunet MICROSOFT #Nordunet-MSER-ExpressRoute-Vlan3919 $GS-02412 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 732193, + "name": "NORDUNET-MSER-EXPRESSROUTE-VLAN3919", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 680, + "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": "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" + } + ], + "snmp-index": 966, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "EUMETSAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EUMETSAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "ae2.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-TARTU | DCN MANAGEMENT ", + "circuits": [ + { + "id": 734059, + "name": "DCN-MANAGEMENT-TARTU", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 620, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-9/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #DUB-LON-IPTRUNK $GS-00031| DUB-LON", + "circuits": [ + { + "id": 732108, + "name": "DUB-LON-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1327, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "DUB-LON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "DUB-LON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae2.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-COR2-IE | DCN MANAGEMENT ", + "circuits": [ + { + "id": 729962, + "name": "DCN-MANAGEMENT-COR2-IE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "so-1/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 728, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ae12.505", + "bundle": [], + "bundle-parents": [ + "xe-1/0/0" + ], + "description": "SRV_L2CIRCUIT CUSTOMER CYNET GRNET #ath2-ath2-CYNET-GRNET-18063 $GS-00667 |", + "circuits": [ + { + "id": 706046, + "name": "ATH2-ATH2-CYNET-GRNET-18063", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 557, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "CYNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GRNET", + "interface_type": "LOGICAL" + }, + { + "name": "CYNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 611, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE SETCOR SRF21033 P_AE12 | ", + "circuits": [], + "snmp-index": 739, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 601, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.lon2.uk.geant.net", + "name": "ge-0/0/37", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX02 IDRAC", + "circuits": [], + "snmp-index": 554, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.20", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-ARTEV-ExpressRoute-VLAN4090 $GS-01131 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711863, + "name": "BELNET-ARTEV-EXPRESSROUTE-VLAN4090", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 930, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "et-3/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | CFP1 LR4 optic installed", + "circuits": [], + "snmp-index": 677, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #KAU-RIG-IPTRUNK $GS-00044| KAU-RIG", + "circuits": [ + { + "id": 728946, + "name": "KAU-RIG-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 552, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-RIG", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KAU-RIG", + "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": 661535, + "name": "LON-LON-GEANTOPEN-ESNET-NORDUNET-15039-1", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1269, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-11/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY PRIVATE GOOGLE P_AE44 | Interxion CID DE236900", + "circuits": [], + "snmp-index": 869, + "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 | ", + "circuits": [], + "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": "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": [], + "snmp-index": 588, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "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.bra.sk.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | BRA-VIE", + "circuits": [], + "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": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.550", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #LHCONE-PAR-FR-VLAN550 | LHCONE", + "circuits": [ + { + "id": 661688, + "name": "LHCONE-PAR-FR-VLAN550", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 834, + "dashboards": [], + "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": [], + "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.kau.lt.geant.net", + "name": "ae3.998", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ex3400-management-kau-it| SW1-EX3400 MANAGEMENT", + "circuits": [ + { + "id": 719131, + "name": "EX3400-MANAGEMENT-KAU-IT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 612, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "xe-0/0/0:2", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 544, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-10/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 901, + "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" + } + ], + "snmp-index": 1170, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "ASNET-AM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ASNET-AM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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": "mx1.ams.nl.geant.net", + "name": "ge-9/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 849, + "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": [], + "snmp-index": 676, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 523, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-4/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER_GEO TENET #TENET-GEO-UK | P_AE28 SRF21083 |", + "circuits": [], + "snmp-index": 831, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "TENET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "TENET", + "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" + } + ], + "snmp-index": 677, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 608, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ge-0/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 597, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-3/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 696, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE NON-OPERATIONAL", + "circuits": [], + "snmp-index": 607, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 586, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 1773, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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": [], + "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.the.gr.geant.net", + "name": "ae0", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02428 | THE-THE ", + "circuits": [], + "snmp-index": 603, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "THE-THE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "THE-THE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-3/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | AMS-FRA", + "circuits": [], + "snmp-index": 649, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-FRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-FRA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-3/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 737, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.2501", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "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": [], + "snmp-index": 706, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.cor.ie.geant.net", + "name": "ae6", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02387 | COR-LON2", + "circuits": [], + "snmp-index": 612, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-LON2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "COR-LON2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL SRF0000001 | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 611, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/3/3.1112", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2Circuit Customer GEANT GEANT #UAT-Test-GPlus $GS-11112 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 719645, + "name": "UAT-TEST-GPLUS", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1444, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "et-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | FRA-PRA2", + "circuits": [], + "snmp-index": 897, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "FRA-PRA2", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "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.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 RENATER BELNET #bru-gen-IMINDS-IMINDS-RENATER-16023 $GS-00670 |", + "circuits": [ + { + "id": 706946, + "name": "BRU-GEN-IMINDS-IMINDS-RENATER-16023", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 774, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + { + "name": "IMINDS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 1286, + "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-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" + } + ], + "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": "mx2.zag.hr.geant.net", + "name": "ae13.100", + "bundle": [], + "bundle-parents": [ + "xe-2/1/1" + ], + "description": "SRV_GLOBAL CUSTOMER KREN SRF21110 $GS-02153 #KREN-AP1 | ASN211080 | ", + "circuits": [ + { + "id": 720370, + "name": "KREN-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 1037, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "KREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "KREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1071, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "REDCLARA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDCLARA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": 727350, + "name": "BELNET-UCLOUVAIN-EXPRESSROUTE-VLAN4088", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 609, + "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/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" + } + ], + "snmp-index": 929, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae10.1932", + "bundle": [], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "SRV_MDVPN CUSTOMER FCCN #FCCN-BGP-LU-COC-AP1 $GS-01003 | MDVPN CoC - FCCN AP1", + "circuits": [ + { + "id": 661908, + "name": "FCCN-BGP-LU-COC-AP1", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 599, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "FCCN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FCCN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae10.12", + "bundle": [], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "SRV_GLOBAL CUSTOMER HEANET #HEANET-AP1 $GS-00473 | ASN1213 |", + "circuits": [ + { + "id": 662978, + "name": "HEANET-AP1", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 615, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3903", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-JYV-ExpressRoute-VLAN3903 $GS-01151 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731513, + "name": "NORDUNET-JYV-EXPRESSROUTE-VLAN3903", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 962, + "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": "ge-0/2/0.23", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-vie-at-idrac |perfSONAR iDRAC", + "circuits": [ + { + "id": 661719, + "name": "PS-VIE-AT-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 941, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915907 | BUD01-DTNX10-1 XCM 2", + "circuits": [], + "snmp-index": 602, + "dashboards": [], + "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" + } + ], + "snmp-index": 1222, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1468, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS SINGAREN SRF9941819 | LON2-SingAREN-1G OOB", + "circuits": [], + "snmp-index": 533, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "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": "mx1.bud.hu.geant.net", + "name": "et-7/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | BUD-ZAG 300Gb 3_3 GRV1 1/1/5 - QSFP SR4 optic installed", + "circuits": [], + "snmp-index": 1138, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 936, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae28.240", + "bundle": [], + "bundle-parents": [ + "et-4/1/1" + ], + "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" + } + ], + "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": "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" + } + ], + "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": "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" + } + ], + "snmp-index": 535, + "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": [], + "snmp-index": 669, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.1620", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #lon-par-SCION-INTERNET2-SCION-1 $GS-02295 |", + "circuits": [ + { + "id": 726975, + "name": "LON-PAR-SCION-INTERNET2-SCION-1", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1167, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae16.10", + "bundle": [], + "bundle-parents": [ + "et-3/0/5" + ], + "description": "SRV_MDVPN CUSTOMER AMRES #AMRES-AP2-BGP-LU-COC $GS-02242 | MDVPN CoC - AMRES", + "circuits": [ + { + "id": 732622, + "name": "AMRES-AP2-BGP-LU-COC", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 769, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "AMRES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMRES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 725, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "ITER", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ITER", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 644, + "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" + } + ], + "snmp-index": 1023, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.2733", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE SAO-DUB | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "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.poz.pl.geant.net", + "name": "xe-1/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 563, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | GRNET AP Migration from ATH1_1 | ", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 786, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae11", + "bundle": [ + "xe-1/0/1", + "xe-1/1/0" + ], + "bundle-parents": [ + "xe-1/0/1", + "xe-1/1/0" + ], + "description": "LAG CUSTOMER NORDUNET $GA-02266 |", + "circuits": [], + "snmp-index": 553, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 642, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae14.990", + "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-ITER-SINET-RENATER-20025 $GS-00637 |", + "circuits": [ + { + "id": 705455, + "name": "AMS-GEN-ITER-SINET-RENATER-20025", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 887, + "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.ams.nl.geant.net", + "name": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | AMS-AMS", + "circuits": [], + "snmp-index": 941, + "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": "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": [], + "snmp-index": 1153, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RE_INTERCONNECT NETHERLIGHT $GA-01593 | NETHERLIGHT PORT ID: Asd001B-JNX-06 et-0/1/3 (D76BFBF6)", + "circuits": [], + "snmp-index": 945, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "et-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | BRU-BRU |", + "circuits": [], + "snmp-index": 606, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-BRU", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BRU-BRU", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.191", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER REDIRIS NORDUNET #ham-mad-REDIRIS-NORDUNET $GS-02343 | ", + "circuits": [ + { + "id": 731423, + "name": "HAM-MAD-REDIRIS-NORDUNET", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 957, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 700, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "GRENA", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "GRENA", + "interface_type": "AGGREGATE" + } + ], + "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": [], + "snmp-index": 663, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 846, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-4/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": 714984, + "name": "DTN-LON-100G-DATA", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 963, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "ae11", + "bundle": [ + "et-1/1/2", + "et-1/1/5" + ], + "bundle-parents": [ + "et-1/1/2", + "et-1/1/5" + ], + "description": "LAG CUSTOMER ARNES $GA-01742 | ARNES-AP1-LAG", + "circuits": [], + "snmp-index": 582, + "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-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" + } + ], + "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": "mx1.buc.ro.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "ae0", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $DA-00097 | ATH2-ATH2", + "circuits": [], + "snmp-index": 600, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-ATH2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH2-ATH2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.2591", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE HEAnet-DC-RNP-build7 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 636, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-3/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 691, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae28.1", + "bundle": [], + "bundle-parents": [ + "et-4/1/1" + ], + "description": "PHY CUSTOMER_GEO TENET #TENET-GEO-UK | P_AE28 SRF21083 |", + "circuits": [ + { + "id": 719827, + "name": "TENET-GEO-UK", + "type": "GEANT OPEN PORT", + "status": "operational" + } + ], + "snmp-index": 1173, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "TENET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "TENET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 741, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 916, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "ae10", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01682 | FRA-PRD-ESX02 VM Traffic LAG", + "circuits": [], + "snmp-index": 579, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 958, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae2", + "bundle": [ + "et-0/0/2" + ], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02278 | BRU-PAR | ", + "circuits": [], + "snmp-index": 609, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-PAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BRU-PAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.por.pt.geant.net", + "name": "lt-0/0/0.16", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS IAS SRF0000001 | BGP Peering - RE Side", + "circuits": [], + "snmp-index": 523, + "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" + } + ], + "snmp-index": 589, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE - WAS ORACLE", + "circuits": [], + "snmp-index": 686, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae10.2724", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE SAO-DUB | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 640, + "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": "ae14.0", + "bundle": [], + "bundle-parents": [ + "xe-4/0/0", + "xe-4/3/7", + "xe-7/0/0" + ], + "description": "SRV_IAS PRIVATE FACEBOOK #FACEBOOK-32934-VIE-FC-26605 $GS-00929 | ASN32934", + "circuits": [ + { + "id": 708205, + "name": "FACEBOOK-32934-VIE-FC-26605", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "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": "rt2.rig.lv.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "irb.999", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS INFINERA #INFINERA-AMS-NL-MANAGEMENT-VRF-VLAN999 |", + "circuits": [], + "snmp-index": 797, + "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": [], + "snmp-index": 604, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 585, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 559, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE |", + "circuits": [], + "snmp-index": 594, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1326, + "dashboards": [ + "NREN" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/3/3.1115", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2Circuit Infrastructure GEANT GEANT #UAT-Test-Interconnect $GS-11115 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 724242, + "name": "UAT-TEST-INTERCONNECT", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1447, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae5.0", + "bundle": [], + "bundle-parents": [ + "et-4/0/4", + "et-4/1/4" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #FRA-GEN-IPTRUNK $GS-00034 | FRA-GEN-IPTRUNK", + "circuits": [ + { + "id": 726449, + "name": "FRA-GEN-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 941, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae5.0", + "bundle": [], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUD-ZAG-IPTRUNK $GS-00027 | BUD-ZAG |", + "circuits": [ + { + "id": 726622, + "name": "BUD-ZAG-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 811, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUD-ZAG", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BUD-ZAG", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | PAR-PRD-ESX4 SLOT4 PORT4 VMNIC7 - VSAN PORT", + "circuits": [ + { + "id": 658400, + "name": "730XD-4-SLOT4-PORT4-VMNIC7-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 634, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bra.sk.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BRA-BUD", + "circuits": [], + "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.kie.ua.geant.net", + "name": "xe-0/0/2:1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 536, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 845, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.tar.ee.geant.net", + "name": "et-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | TAR-TAR", + "circuits": [], + "snmp-index": 597, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "TAR-TAR", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "TAR-TAR", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 598, + "dashboards": [], + "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": [], + "snmp-index": 660, + "dashboards": [], + "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" + } + ], + "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": "qfx.par.fr.geant.net", + "name": "ae10", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01724 | PAR-PRD-ESX2 VM Traffic LAG", + "circuits": [ + { + "id": 658687, + "name": "730XD-2-VM-TRAFFIC-LAG-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 589, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/0/1:2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 533, + "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" + } + ], + "snmp-index": 830, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae10.84", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_GLOBAL CUSTOMER LAT #LAT-AP1-IPv4 $GS-00483 | ASN5538 | LAT Primary IPv4", + "circuits": [ + { + "id": 709261, + "name": "LAT-AP1-IPV4", + "type": "GEANT IP", + "status": "operational" + } + ], + "snmp-index": 607, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-10/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | A10 DDOS 100G #2", + "circuits": [], + "snmp-index": 660, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "ae1", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01715 | PAR-PRD-ESX1 ESXI Traffic LAG", + "circuits": [ + { + "id": 658667, + "name": "730XD-1-ESXI-TRAFFIC-LAG-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 584, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 1591, + "dashboards": [], + "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": [], + "snmp-index": 757, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 515, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS A10-DDOS-SCRUBBING P_AE15 | A10 e3 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", + "circuits": [], + "snmp-index": 1265, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.1488", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RENATER ESNET #lon-par-NCSA-LAAS-ESNET-RENATER-15057 $GS-00738 |", + "circuits": [ + { + "id": 706056, + "name": "LON-PAR-NCSA-LAAS-ESNET-RENATER-15057", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1288, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + { + "name": "ESNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 921, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 526, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "lt-0/3/10", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS MDVPN | MDVPN VRR", + "circuits": [], + "snmp-index": 708, + "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": [], + "snmp-index": 733, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 829, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae2.103", + "bundle": [], + "bundle-parents": [ + "xe-5/0/2", + "xe-5/0/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-AMS-NL $GS-00115| ", + "circuits": [ + { + "id": 713349, + "name": "DCN-MANAGEMENT-AMS-NL", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1163, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "xe-0/0/1:3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.chi.md.geant.net", + "name": "et-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 593, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 546, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 933, + "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" + } + ], + "snmp-index": 545, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "et-7/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | HAM-POZ", + "circuits": [], + "snmp-index": 1061, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-POZ", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HAM-POZ", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 588, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RENAM", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "RENAM", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-9/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 842, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-2/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER DFN P_AE11 SRF21078 | DFN AP1 Migration 2_3", + "circuits": [], + "snmp-index": 682, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae4", + "bundle": [ + "et-3/0/2" + ], + "bundle-parents": [ + "et-3/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02425 | SOF-THE", + "circuits": [], + "snmp-index": 774, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-THE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "SOF-THE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.1725", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SCION KAUST #ams-fra-KAUST-SCION $GS-02417| ", + "circuits": [ + { + "id": 732828, + "name": "AMS-FRA-KAUST-SCION", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1142, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + }, + { + "name": "KAUST", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 947, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 546, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 761, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1210, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 520, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9915903 | VIE01-DTNX10-1 XCM 2", + "circuits": [], + "snmp-index": 643, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 915, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-1/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 570, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae6", + "bundle": [ + "et-9/1/2" + ], + "bundle-parents": [ + "et-9/1/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02006 | DUB-LON", + "circuits": [], + "snmp-index": 1293, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "DUB-LON", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "DUB-LON", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ESNET", + "circuits": [], + "snmp-index": 623, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "xe-4/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1036, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "operational" + } + ], + "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.vie.at.geant.net", + "name": "xe-8/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 994, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 568, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | MIL2-VIE |Connected to MIL02-GRV1 1/1/3 ", + "circuits": [], + "snmp-index": 653, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "MIL2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1003, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/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": [], + "snmp-index": 1511, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1335, + "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" + } + ], + "snmp-index": 1228, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "IRANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "IRANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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": "rt1.por.pt.geant.net", + "name": "xe-3/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to GEANT ODF P3", + "circuits": [], + "snmp-index": 532, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "rt1.ham.de.geant.net", + "name": "ae11", + "bundle": [ + "et-1/1/5" + ], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "LAG CUSTOMER NORDUNET SRF9919631 $GA-01893 |", + "circuits": [], + "snmp-index": 943, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "NORDUNET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 1194, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "lt-0/3/10.13", + "bundle": [], + "bundle-parents": [], + "description": "SRV_TUN INFRASTRUCTURE ACCESS MDVPN #PAR-VRR | MDVPN VRR", + "circuits": [], + "snmp-index": 712, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-11/2/2.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #par-lon2-SUPERPOP-QFX-2-GEANT $GS-00081 |", + "circuits": [ + { + "id": 729417, + "name": "PAR-LON2-SUPERPOP-QFX-2-GEANT", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 1117, + "dashboards": [ + "GBS_10G" + ], + "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/19", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_AE15 | LON2-PRD-ESX21 NIC2 PORT2", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS FLOWMON SRF0000001 | FlowMon1 Collector Interface CONTACT: evangelos.spatharas@geant.org IMPLEMENTED 20160816", + "circuits": [], + "snmp-index": 522, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.lon2.uk.geant.net", + "name": "ge-1/0/33", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | Brik B IPMI", + "circuits": [], + "snmp-index": 688, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-3/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER AMRES P_AE16 SRF21108", + "circuits": [], + "snmp-index": 693, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "AMRES", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMRES", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-9/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | FRA-GEN-IPTRUNK", + "circuits": [], + "snmp-index": 1213, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "xe-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 543, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae28.420", + "bundle": [], + "bundle-parents": [ + "et-4/1/1" + ], + "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" + } + ], + "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": "et-2/0/5.3806", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER WIX NETHERLIGHT #WIX-TO-NETHERLIGHT-TEST1 $GS-00767 | WIX-to-Netherlight test 03/12/2014", + "circuits": [ + { + "id": 719123, + "name": "WIX-TO-NETHERLIGHT-TEST1", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1594, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "WIX", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "WIX", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY #SRX2-SRX1-CH-OFFICE|", + "circuits": [], + "snmp-index": 514, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 795, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "et-7/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | BUD-ZAG 200Gb 2_2 BUD01 GRV1 1/1/4", + "circuits": [], + "snmp-index": 1132, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "rt1.mil2.it.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 566, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 729640, + "name": "BELNET-MSER-NCCN-EXPRESSROUTE-VLAN4065", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 676, + "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": "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" + } + ], + "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": "mx2.lis.pt.geant.net", + "name": "ae11.615", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT REDCLARA #PT-REDCLARA $GS-00903 | ASN27750 |", + "circuits": [ + { + "id": 713837, + "name": "PT-REDCLARA", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "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.poz.pl.geant.net", + "name": "xe-1/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae10.30", + "bundle": [], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "SRV_MDVPN CUSTOMER HEANET AP1 #HEANET-BGP-LU-COC-AP1 $GS-01008 | MDVPN CoC - HEANET AP1", + "circuits": [ + { + "id": 662965, + "name": "HEANET-BGP-LU-COC-AP1", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 614, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "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": [], + "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": "qfx.lon2.uk.geant.net", + "name": "ge-0/0/36", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | LON2-PRD-ESX01 IDRAC", + "circuits": [], + "snmp-index": 553, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae10", + "bundle": [ + "et-4/1/2" + ], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "LAG CUSTOMER HEANET SRF9927909 $GA-01925 | HEANET-AP1-LAG", + "circuits": [], + "snmp-index": 550, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/3/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 655, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER CESNET P_AE13 SRF9919647|", + "circuits": [], + "snmp-index": 923, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "CESNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "CESNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | EEnet AP2", + "circuits": [], + "snmp-index": 565, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae13.100", + "bundle": [], + "bundle-parents": [ + "xe-0/0/7" + ], + "description": "SRV_GLOBAL CUSTOMER RASH #RASH-AP1 $GS-00497 |ASN57961|", + "circuits": [ + { + "id": 661325, + "name": "RASH-AP1", + "type": "GEANT IP", + "status": "non-monitored" + } + ], + "snmp-index": 759, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "RASH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RASH", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 711, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/11", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | WAS ORANGE", + "circuits": [], + "snmp-index": 585, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ge-0/2/0.101", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #JUNOSSPACE-R720-ESXI-PAR-FR | JUNOSSPACE R720 ESXI", + "circuits": [ + { + "id": 661989, + "name": "JUNOSSPACE-R720-ESXI-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 865, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-4/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | LJU01-ZAG", + "circuits": [], + "snmp-index": 1003, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-ZAG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-ZAG", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae28", + "bundle": [ + "et-4/1/1" + ], + "bundle-parents": [ + "et-4/1/1" + ], + "description": "LAG RE_INTERCONNECT TENET SRF21083 $GA-02014 |", + "circuits": [], + "snmp-index": 724, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "TENET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "TENET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.bil.es.geant.net", + "name": "xe-3/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to GEANT ODF P10", + "circuits": [], + "snmp-index": 663, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae5", + "bundle": [ + "et-0/0/0" + ], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02384 | COR-DUB", + "circuits": [], + "snmp-index": 606, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-DUB", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "COR-DUB", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "et-8/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER REDIRIS P_AE16 SRF20096 |", + "circuits": [], + "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.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" + } + ], + "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.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": [], + "snmp-index": 1562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11", + "bundle": [ + "et-5/1/2" + ], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "LAG RE_INTERCONNECT BELLA SRF21059 $GA-02075 |", + "circuits": [], + "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.ams.nl.geant.net", + "name": "xe-11/2/2.101", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER RARE GEANT #AMS-AMS-WP7TSF-RARE-200105-AMS", + "circuits": [ + { + "id": 714238, + "name": "AMS-AMS-WP7TSF-RARE-200105-AMS", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1191, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae0", + "bundle": [ + "et-0/0/3" + ], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02276 | BRU-BRU |", + "circuits": [], + "snmp-index": 606, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRU-BRU", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BRU-BRU", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER KREN P_AE13 SRF21110 | #KREN-AP1-LL1 | ", + "circuits": [], + "snmp-index": 740, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "KREN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "KREN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "xe-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 663, + "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": [], + "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.par.fr.geant.net", + "name": "ae19.101", + "bundle": [], + "bundle-parents": [ + "et-3/0/4" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT INTERNET2 #FR-INTERNET2-2 $GS-D0022 | ASN11537 | ", + "circuits": [ + { + "id": 734868, + "name": "FR-INTERNET2-2", + "type": "IP PEERING - R&E", + "status": "non-monitored" + } + ], + "snmp-index": 1132, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + } + ], + "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" + } + ], + "snmp-index": 1218, + "dashboards": [], + "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" + } + ], + "snmp-index": 981, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RESTENA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RESTENA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.1623", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #lon-par-SCION-INTERNET2-SCION-2 $GS-02309 |", + "circuits": [ + { + "id": 726979, + "name": "LON-PAR-SCION-INTERNET2-SCION-2", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1192, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 579, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae17.0", + "bundle": [], + "bundle-parents": [ + "xe-3/3/0" + ], + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 797, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "xe-3/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 656, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae9 | PAR-PRD-ESX1 SLOT4 PORT3 VMNIC6", + "circuits": [ + { + "id": 658630, + "name": "730XD-1-SLOT4-PORT3-VMNIC6-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 525, + "dashboards": [], + "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": [], + "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": "mx1.ath2.gr.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "xe-2/0/0", + "xe-2/0/1", + "xe-2/0/3", + "xe-3/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-VIE-IPTRUNK $GS-00015 | ATH2-VIE |", + "circuits": [ + { + "id": 708735, + "name": "ATH2-VIE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 577, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-2/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | HAM-POZ", + "circuits": [], + "snmp-index": 791, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-POZ", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HAM-POZ", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 531, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER BREN SRF9915038 P_AE10 | ", + "circuits": [], + "snmp-index": 542, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BREN", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BREN", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | psmp-gn-bw-ams.nl.geant.org pS BWCTL", + "circuits": [], + "snmp-index": 637, + "dashboards": [], + "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" + } + ], + "snmp-index": 1131, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-5/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | SOF-ZAG", + "circuits": [], + "snmp-index": 1019, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-ZAG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SOF-ZAG", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-11/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 863, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 758, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 598, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae2.0", + "bundle": [], + "bundle-parents": [ + "et-10/0/5", + "et-10/1/2", + "et-10/1/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #GEN1-MIL2-IPTRUNK $GS-00039 | GEN1-MIL2 IP TRUNK", + "circuits": [ + { + "id": 718618, + "name": "GEN1-MIL2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 589, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN1-MIL2 IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEN1-MIL2 IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 613, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1477, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1063, + "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" + } + ], + "snmp-index": 589, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-11/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE -WAS SWITCH", + "circuits": [], + "snmp-index": 1233, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-0/0/13", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae4 | FRA-PRD-ESX04 SLOT0 PORT3 VMNIC2", + "circuits": [ + { + "id": 658382, + "name": "730XD-4-SLOT0-PORT3-VMNIC2", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 530, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae21.5", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1030, + "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": "et-9/1/5.3801", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET WIX #NORDU-TO-WIX-TEST $GS-00744 | Nordu-to-WIX test 1/12/2014", + "circuits": [ + { + "id": 661650, + "name": "NORDU-TO-WIX-TEST", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 974, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "WIX", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ge-1/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-1/0/0.111", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L3VPN RE_INTERCONNECT CSTNET #CSTNET-LON-LHCONE $GS-00815 | ASN23911", + "circuits": [ + { + "id": 661398, + "name": "CSTNET-LON-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 1063, + "dashboards": [ + "LHCONE", + "LHCONE_PEER", + "RE_PEER" + ], + "dashboard_info": { + "name": "CSTNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CSTNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae13.4088", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-NCCN-ExpressRoute-VLAN4088 $GS-01136 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 711865, + "name": "BELNET-NCCN-EXPRESSROUTE-VLAN4088", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 645, + "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-8/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE2 | LON1-LON2-800G | to LON01-GRV2 1/3/8", + "circuits": [], + "snmp-index": 916, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON1-LON2-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LON1-LON2-800G", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "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": "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" + } + ], + "snmp-index": 1214, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 580, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae2", + "bundle": [ + "xe-0/1/7" + ], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt1-sw2 (ex3400)", + "circuits": [], + "snmp-index": 599, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/5.301", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS CUSTOMER ENSTINET #NL-ENSTINET-IAS IASPS $GS-00579 | ASN6879 |", + "circuits": [ + { + "id": 734573, + "name": "NL-ENSTINET-IAS", + "type": "GEANT PEERING", + "status": "non-monitored" + } + ], + "snmp-index": 1131, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "ENSTINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ENSTINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 1268, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3911", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #Nordunet-HHU-ExpressRoute-Vlan3911 $GS-01150 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 731510, + "name": "NORDUNET-HHU-EXPRESSROUTE-VLAN3911", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 965, + "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": "ae19.0", + "bundle": [], + "bundle-parents": [ + "xe-2/2/4", + "xe-2/3/3" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | SPLUNK LON2 PEER02 MGMT | ", + "circuits": [], + "snmp-index": 799, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-3/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 596, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "mx1.ams.nl.geant.net", + "name": "ae21.10", + "bundle": [], + "bundle-parents": [ + "xe-2/2/1" + ], + "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" + } + ], + "snmp-index": 1020, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "FCCN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "FCCN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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", + "circuits": [ + { + "id": 730423, + "name": "BUC-SOF-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 671, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-SOF-IPTRUNK $GS-00024", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-SOF-IPTRUNK $GS-00024", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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": "mx1.bud.hu.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 603, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-3/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 597, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.2665", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO.T8 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 818, + "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": "xe-2/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS CORSA SRF0000001 | JRA MX to CORSA P5", + "circuits": [], + "snmp-index": 1577, + "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" + } + ], + "snmp-index": 1449, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 566, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-1/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | RASH AP2 TIR-SOF 100G", + "circuits": [], + "snmp-index": 654, + "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" + } + ], + "snmp-index": 1319, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.ch.office.geant.net", + "name": "fxp0.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT #SRX1-CH-FXP0 |", + "circuits": [], + "snmp-index": 13, + "dashboards": [], + "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": [], + "snmp-index": 686, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS A10-DDOS-SCRUBBING P_AE15 | A10 e1 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", + "circuits": [], + "snmp-index": 1263, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 651, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae12.334", + "bundle": [], + "bundle-parents": [ + "et-2/1/5" + ], + "description": "SRV_IAS CUSTOMER PIONIER #PIONIER-AP2-IAS IASPS $GS-00580 | ASN8501 |", + "circuits": [ + { + "id": 732590, + "name": "PIONIER-AP2-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 1014, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": 705908, + "name": "AMS-PAR-SINET-SD-WAN-SINET-SINET-17090", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1080, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "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": [], + "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.bru.be.geant.net", + "name": "ae13.4093", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MOBILIT-ExpressRoute-VLAN4093 $GS-02169 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [ + { + "id": 720020, + "name": "BELNET-MOBILIT-EXPRESSROUTE-VLAN4093", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 650, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | BELNET GRID5000_2", + "circuits": [], + "snmp-index": 569, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.666", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "description": "SRV_L3VPN CUSTOMER SURF #SURF-AP1-LHCONE-2 $GS-00793 | ASN1103 |", + "circuits": [ + { + "id": 734592, + "name": "SURF-AP1-LHCONE-2", + "type": "L3-VPN", + "status": "non-monitored" + } + ], + "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.mad.es.geant.net", + "name": "et-10/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae6 | BIL-MAD | 200G", + "circuits": [], + "snmp-index": 1045, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BIL-MAD", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BIL-MAD", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 561, + "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" + } + ], + "snmp-index": 840, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "xe-3/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 698, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 630, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GARR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GARR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ROEDUNET P_AE11 SRF9915022 |RoEduNet te-0/6/0/13", + "circuits": [], + "snmp-index": 529, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ROEDUNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ROEDUNET", + "interface_type": "PHYSICAL" + } + ], + "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-100G $GS-00019 | BRA-VIE |", + "circuits": [ + { + "id": 728897, + "name": "BRA-VIE-IPTRUNK-100G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "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": "srx2.am.office.geant.net", + "name": "ge-0/0/11", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 526, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.cor.ie.geant.net", + "name": "ae0", + "bundle": [ + "et-0/0/2" + ], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02404 | COR-COR", + "circuits": [], + "snmp-index": 611, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "COR-COR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "COR-COR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": [], + "snmp-index": 678, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-5/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER BENOCS | Interxion CID DE236793", + "circuits": [], + "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": "mx1.buc.ro.geant.net", + "name": "xe-2/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 773, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "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" + } + ], + "snmp-index": 735, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0.1004", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET REDIRIS #bru-mad-Fed4FIRE-BELNET-RedIRIS-14013 $GS-00677 |", + "circuits": [ + { + "id": 719544, + "name": "BRU-MAD-FED4FIRE-BELNET-REDIRIS-14013", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 655, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": "730XD-5-VM-TRAFFIC-LAG", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 585, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "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" + } + ], + "snmp-index": 787, + "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": "ae18.0", + "bundle": [], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS | SPLUNK AMS PEER01 MGMT | ", + "circuits": [], + "snmp-index": 969, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.lju.si.geant.net", + "name": "ae2", + "bundle": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "bundle-parents": [ + "xe-0/0/0", + "xe-0/0/1" + ], + "description": "LAG INFRASTRUCTURE ACCESS LAN | rt1-sw1 (ex3400)", + "circuits": [], + "snmp-index": 594, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "ae3.103", + "bundle": [], + "bundle-parents": [ + "xe-0/1/7" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-KAU-RT2 | ", + "circuits": [ + { + "id": 727978, + "name": "DCN-MANAGEMENT-KAU-RT2", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/1.22", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #OWAMP-ATH-GR | OWAMP CONTACT: ivan.garnizov@fau.de IMPLEMENTED: 20150810", + "circuits": [ + { + "id": 661979, + "name": "OWAMP-ATH-GR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 660, + "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": [], + "snmp-index": 970, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "TENET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "TENET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "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": "operational" + } + ], + "snmp-index": 622, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE GTS SRF9928059 |", + "circuits": [], + "snmp-index": 672, + "dashboards": [], + "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": [], + "snmp-index": 544, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "rt1.fra.de.geant.net", + "name": "xe-0/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS A10-DDOS-SCRUBBING P_AE16 | A10 e5 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", + "circuits": [], + "snmp-index": 1264, + "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" + } + ], + "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.lon.uk.geant.net", + "name": "ge-0/2/9.302", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #LON-Groove-3-Management | LON Groove 3 Direct Management", + "circuits": [ + { + "id": 661355, + "name": "LON-GROOVE-3-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1347, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1213, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "snmp-index": 1448, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 588, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-3/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 697, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ae7", + "bundle": [ + "et-7/0/4", + "et-7/1/4" + ], + "bundle-parents": [ + "et-7/0/4", + "et-7/1/4" + ], + "description": "LAG INFRASTRUCTURE BACKBONE #GEN-PAR-800G-LAG $GA-01887 | GEN-PAR", + "circuits": [], + "snmp-index": 1314, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "GEN-PAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "GEN-PAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 519, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "et-3/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | AMS-FRA", + "circuits": [], + "snmp-index": 659, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-FRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-FRA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "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": "mx1.ams.nl.geant.net", + "name": "xe-9/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | psmp-gn-owd-ams.nl.geant.org pS OWAMP", + "circuits": [], + "snmp-index": 712, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ae17.100", + "bundle": [], + "bundle-parents": [ + "xe-11/0/1" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT UBUNTUNET #NL-UBUNTUNET $GS-00902 | ASN36944 |", + "circuits": [ + { + "id": 663050, + "name": "NL-UBUNTUNET", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 1038, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "UBUNTUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "UBUNTUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "xe-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 574, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-11/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 | AMS-LON | Coriant G30 link 2", + "circuits": [], + "snmp-index": 1654, + "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": "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" + } + ], + "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": "rt1.ham.de.geant.net", + "name": "ae11.947", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_L2CIRCUIT CUSTOMER NORDUNET REDIRIS #HAM-MAD-NORDUNET-REDIRIS-22064 $GS-02183|", + "circuits": [ + { + "id": 731427, + "name": "HAM-MAD-NORDUNET-REDIRIS-22064", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 958, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NORDUNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + { + "name": "NORDUNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 827, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15.111", + "bundle": [], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "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" + } + ], + "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.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": [], + "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.ams.nl.geant.net", + "name": "xe-2/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 583, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 811, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-2/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 644, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-4/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | AMS-AMS", + "circuits": [], + "snmp-index": 1385, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-AMS", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-AMS", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", + "circuits": [], + "snmp-index": 533, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "xe-0/1/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 569, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.fra.de.geant.net", + "name": "xe-1/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | FRA-PRD-ESX04 SLOT4 PORT4 VMNIC7 - VSAN PORT", + "circuits": [ + { + "id": 658418, + "name": "730XD-4-SLOT4-PORT4-VMNIC7", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 622, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 594, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAR01-MIL2-IPTRUNK $GS-01185 | MAR01-MIL2 IP TRUNK", + "circuits": [ + { + "id": 718547, + "name": "MAR01-MIL2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 846, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MAR01-MIL2 IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MAR01-MIL2 IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/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" + } + ], + "snmp-index": 857, + "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": "mx2.lis.pt.geant.net", + "name": "ae11.2643", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO.T13 | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "snmp-index": 820, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 610, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER_GEO ESnet #ESnet-GEO-UK-1 | SRF9928165 | Lon-EEX-ESnet-OPEN-100G", + "circuits": [ + { + "id": 719821, + "name": "ESNET-GEO-UK-1", + "type": "GEANT OPEN PORT", + "status": "operational" + } + ], + "snmp-index": 1175, + "dashboards": [ + "GEANTOPEN" + ], + "dashboard_info": { + "name": "ESNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ESNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1046, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "ae12.0", + "bundle": [], + "bundle-parents": [ + "xe-3/0/2", + "xe-3/0/3" + ], + "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": "operational" + } + ], + "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": "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": [], + "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": "rt1.kie.ua.geant.net", + "name": "xe-0/0/1:3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.kie.ua.geant.net", + "name": "xe-0/0/2:1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 533, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "et-4/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE9 | BUC-FRA | TTI CID: WL078541", + "circuits": [], + "snmp-index": 716, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-FRA", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BUC-FRA", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "srx2.am.office.geant.net", + "name": "ge-0/0/12", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 1294, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 604, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.the.gr.geant.net", + "name": "xe-0/1/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN P_AE2 | rt1-sw1(ex3400)", + "circuits": [], + "snmp-index": 541, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bra.sk.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", + "circuits": [], + "snmp-index": 581, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae23.20", + "bundle": [], + "bundle-parents": [ + "xe-3/2/0", + "xe-3/2/1" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS GEANT IT #DataDomain-01-IDRAC PORT |", + "circuits": [ + { + "id": 729861, + "name": "DATADOMAIN-01-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 623, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "ae15", + "bundle": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "bundle-parents": [ + "et-1/1/2", + "et-2/0/5", + "et-5/0/5" + ], + "description": "LAG CUSTOMER SURF $GA-01919 | SURF AE11 (FE400497)", + "circuits": [], + "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": "mx2.lis.pt.geant.net", + "name": "et-3/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | CFP2 LR4 optic installed", + "circuits": [], + "snmp-index": 704, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "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.par.fr.geant.net", + "name": "ge-0/2/5.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #FLOWMON-PAR-FR-IDRAC | FlowMon1 Management + FanOut CONTACT: evangelos.spatharas@geant.org", + "circuits": [ + { + "id": 708278, + "name": "FLOWMON-PAR-FR-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1204, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae23.46", + "bundle": [], + "bundle-parents": [ + "xe-3/2/0", + "xe-3/2/1" + ], + "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" + } + ], + "snmp-index": 947, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "ASREN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ASREN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS LAN SRF0000001 | ath gr POP LAN", + "circuits": [], + "snmp-index": 647, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-3/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 598, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER JISC SRF9913015 $GA-01550 | NRENBBEXT-JISC", + "circuits": [], + "snmp-index": 529, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.kau.lt.geant.net", + "name": "et-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE6 | KAU-POZ | Coriant G30 link 1", + "circuits": [], + "snmp-index": 545, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "KAU-POZ", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "KAU-POZ", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-11/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH2-VIE | OTEGlobe CID: 1-4XPLWDZ", + "circuits": [], + "snmp-index": 867, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 601, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/7.1000", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT GEANT #ams-lon-TEST-INTERFACE-FOR-GCSTESTING-AMS $GS-02219|", + "circuits": [ + { + "id": 723849, + "name": "ETHS-MX1.AMS.NL_GE-0/3/6.1000-MX1.LON.UK_GE-0/3/2.1000", + "type": "GEANT - GBS", + "status": "non-monitored" + } + ], + "snmp-index": 1005, + "dashboards": [ + "GBS_10G" + ], + "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.140", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "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" + } + ], + "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": "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" + } + ], + "snmp-index": 909, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "AARNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AARNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "ae10", + "bundle": [ + "xe-0/0/0" + ], + "bundle-parents": [ + "xe-0/0/0" + ], + "description": "LAG CUSTOMER BREN AP1 SRF9915038 $GA-01291 | ", + "circuits": [], + "snmp-index": 748, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BREN", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "BREN", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ae5.0", + "bundle": [], + "bundle-parents": [ + "et-1/0/2", + "et-1/0/5", + "et-1/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #PRA2-VIE-IPTRUNK $GS-00059 | PRA2-VIE ", + "circuits": [ + { + "id": 724547, + "name": "PRA2-VIE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1021, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "PRA2-VIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "PRA2-VIE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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.buc.ro.geant.net", + "name": "ge-0/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 604, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1231, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "xe-3/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER JISC", + "circuits": [], + "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": "mx1.lon.uk.geant.net", + "name": "et-5/1/2.2050", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER ESNET NEA3R #lon-lon-GEANTOpen-ESNET-NEA3R $GS-02250 |", + "circuits": [ + { + "id": 726344, + "name": "LON-LON-GEANTOPEN-ESNET-NEA3R", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 1154, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "NEA3R", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NEA3R", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-2/0/5.2126", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER CERN CANARIE #lon-lon-Canarie-CERN-15014 $GS-00720 |", + "circuits": [ + { + "id": 661472, + "name": "LON-LON-CANARIE-CERN-15014", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "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": "mx1.ath2.gr.geant.net", + "name": "ge-1/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE - TESTING", + "circuits": [], + "snmp-index": 526, + "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_VPLS INFRASTRUCTURE VLAN3005 #RARE-P4-B1-FRA | RARE P4 b1.fra MGMT CONTACT: mian.usman@geant.org IMPLEMENTED: 20200116", + "circuits": [ + { + "id": 732564, + "name": "RARE-P4-B1-FRA", + "type": "L2SERVICES", + "status": "non-monitored" + } + ], + "snmp-index": 1438, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-1/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 676, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ae11.2602", + "bundle": [], + "bundle-parents": [ + "et-5/1/2" + ], + "description": "SRV_L2CIRCUIT MULTI_DOMAIN_OPEN_NSA AUTOGOLE DUB-SAO | UNIT CONFIGURATION HAS BEEN SYSTEM GENERATED", + "circuits": [], + "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.chi.md.geant.net", + "name": "et-0/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | CHI-CHI |", + "circuits": [], + "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": "mx1.ams.nl.geant.net", + "name": "ae12", + "bundle": [ + "et-4/0/2" + ], + "bundle-parents": [ + "et-4/0/2" + ], + "description": "LAG PUBLIC AMS-IX SRF9922987 $GA-01920 |", + "circuits": [], + "snmp-index": 717, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "ae1.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-THE-IPTRUNK $GS-02421| ATH2-THE", + "circuits": [ + { + "id": 734116, + "name": "ATH2-THE-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 599, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-THE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-THE", + "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": [], + "snmp-index": 718, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "et-7/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | AMS-AMS |", + "circuits": [], + "snmp-index": 1382, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-AMS", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-AMS", + "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" + } + ], + "snmp-index": 795, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "GARR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GARR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "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": "mx2.zag.hr.geant.net", + "name": "ae10.111", + "bundle": [], + "bundle-parents": [ + "et-5/0/2", + "et-5/0/5" + ], + "description": "SRV_L3VPN CUSTOMER ARNES #ARNES-AP2-LHCONE $GS-00808 | ASN2107", + "circuits": [ + { + "id": 730204, + "name": "ARNES-AP2-LHCONE", + "type": "L3-VPN", + "status": "operational" + } + ], + "snmp-index": 847, + "dashboards": [ + "LHCONE", + "LHCONE_CUST", + "NREN" + ], + "dashboard_info": { + "name": "ARNES", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ARNES", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "et-10/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae2 | GEN-MIL2 |", + "circuits": [], + "snmp-index": 1251, + "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": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001", + "circuits": [], + "snmp-index": 581, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.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-02171 | MAD-MAR01 |", + "circuits": [], + "snmp-index": 686, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MAD-MAR01", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "MAD-MAR01", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-8/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER KIFU AP2 P_AE18 | ", + "circuits": [], + "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": "mx1.poz.pl.geant.net", + "name": "xe-3/2/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 763, + "dashboards": [], + "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": [], + "snmp-index": 1273, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER BELNET $GA-02314 | IMINDS-IC-GEANT-10G", + "circuits": [], + "snmp-index": 563, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "PHYSICAL" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae12", + "bundle": [ + "et-2/1/5" + ], + "bundle-parents": [ + "et-2/1/5" + ], + "description": "LAG CUSTOMER PIONIER SRF9938339 $GA-01892 |", + "circuits": [], + "snmp-index": 1010, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "PIONIER", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "PIONIER", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "ae1", + "bundle": [ + "et-0/0/1" + ], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02423 | ATH2-THE", + "circuits": [], + "snmp-index": 521, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-THE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH2-THE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "xe-0/1/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 562, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "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": "mx2.lis.pt.geant.net", + "name": "et-4/1/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | no optic installed", + "circuits": [], + "snmp-index": 802, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1526, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "HBKU", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HBKU", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "et-4/1/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE8 | LON2-PAR-800G | to LON02-GRV2 1/3/9", + "circuits": [], + "snmp-index": 706, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LON2-PAR-800G", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LON2-PAR-800G", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 535, + "dashboards": [], + "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": [], + "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": "rt1.ham.de.geant.net", + "name": "ae10", + "bundle": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "description": "LAG CUSTOMER DFN SRF9924459 $GA-01894 |", + "circuits": [], + "snmp-index": 977, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "DFN", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/3/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 760, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-0/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1098, + "dashboards": [ + "NREN" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ge-0/2/9.3020", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SINET SINET #AMS-LON-SINET-SD-WAN-SINET-SINET-17084 $GS-00648 |", + "circuits": [ + { + "id": 705938, + "name": "AMS-LON-SINET-SD-WAN-SINET-SINET-17084", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 699, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "et-4/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae3 | LJU01-MIL2", + "circuits": [], + "snmp-index": 935, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "LJU01-MIL2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "LJU01-MIL2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4.23", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ps-gen-ch-idrac |perfSONAR iDRAC LHCONE", + "circuits": [ + { + "id": 663106, + "name": "PS-GEN-CH-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 768, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/2/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 598, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "ae1", + "bundle": [ + "et-0/0/2" + ], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02422 | ATH2-THE", + "circuits": [], + "snmp-index": 598, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-THE", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH2-THE", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS A10-DDOS-SCRUBBING P_AE16 | A10 e7 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", + "circuits": [], + "snmp-index": 1276, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "xe-2/2/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1336, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ge-0/3/6.991", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #DCN-MANAGEMENT-BUD-HU | ", + "circuits": [ + { + "id": 716952, + "name": "DCN-MANAGEMENT-BUD-HU", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1153, + "dashboards": [], + "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" + } + ], + "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": "ae10", + "bundle": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/5" + ], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/5" + ], + "description": "LAG CUSTOMER JISC SRF9923031 $GA-01845 | JISC-AP1-LAG", + "circuits": [], + "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": "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": [], + "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.lon.uk.geant.net", + "name": "ae10.930", + "bundle": [], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/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": "non-monitored" + } + ], + "snmp-index": 1095, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #MAD-IAS-RE-Peering | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 902, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "ge-0/3/2.28", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #ddos-mit2-vie-at-idrac | NEMO DDOS Mitigation 2 iDRAC | ", + "circuits": [ + { + "id": 727796, + "name": "DDOS-MIT2-VIE-AT-IDRAC", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1014, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "so-1/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 934, + "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": [], + "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.buc.ro.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 619, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae5.0", + "bundle": [], + "bundle-parents": [ + "et-9/0/2", + "et-9/0/5", + "et-9/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #MAD-MAR01-IPTRUNK $GS-00054 | MAD-MAR01 IP TRUNK", + "circuits": [ + { + "id": 717047, + "name": "MAD-MAR01-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 855, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "MAD-MAR01 IP TRUNK", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "MAD-MAR01 IP TRUNK", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-9/0/6.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS PERFSONAR #ps-ams-nl-owamp new | BWCTL CONTACT: ivan.garnizov@fau.de", + "circuits": [ + { + "id": 708246, + "name": "PS-AMS-NL-OWAMP", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 804, + "dashboards": [], + "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" + } + ], + "snmp-index": 1344, + "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": "ge-0/2/8.10", + "bundle": [], + "bundle-parents": [], + "description": "SRV_CORPORATE CUSTOMER GEANT-INTERNAL #GEANT-CORPORATE-ViaVodafone | GEANT Corporate to SRX2.CH - Via Vodafone", + "circuits": [ + { + "id": 679360, + "name": "GEANT-CORPORATE-VIAVODAFONE", + "type": "CORPORATE", + "status": "operational" + } + ], + "snmp-index": 841, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/2/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 747, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae4 | HAM-POZ", + "circuits": [], + "snmp-index": 783, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "HAM-POZ", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "HAM-POZ", + "interface_type": "PHYSICAL" + } + ], + "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" + } + ], + "snmp-index": 841, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "ge-1/3/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 537, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": "non-monitored" + } + ], + "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": "mx2.zag.hr.geant.net", + "name": "ge-0/3/8", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 679, + "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": 727334, + "name": "BELNET-ARTEV-EXPRESSROUTE-VLAN4081", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 601, + "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": "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" + } + ], + "snmp-index": 751, + "dashboards": [], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-7/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 789, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.bru.be.geant.net", + "name": "ae16.4065", + "bundle": [], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "SRV_GCS CUSTOMER BELNET MICROSOFT #BELNET-MSER-NCCN-ExpressRoute-VLAN4065 $GS-02371 | ", + "circuits": [ + { + "id": 729640, + "name": "BELNET-MSER-NCCN-EXPRESSROUTE-VLAN4065", + "type": "EXPRESS ROUTE", + "status": "operational" + } + ], + "snmp-index": 671, + "dashboards": [ + "GCS" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-2/0/3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-MIL2-IPTRUNK $DS-000199| ATH2-MIL2", + "circuits": [ + { + "id": 734736, + "name": "ATH2-MIL2-IPTRUNK", + "type": "IP TRUNK", + "status": "non-monitored" + } + ], + "snmp-index": 748, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-MIL2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-MIL2", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.ath2.gr.geant.net", + "name": "ae6", + "bundle": [ + "et-0/0/1" + ], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $DA-000197 | ATH2-MIL2", + "circuits": [], + "snmp-index": 602, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-MIL2", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "ATH2-MIL2", + "interface_type": "AGGREGATE" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mil2.it.geant.net", + "name": "ae10.1001", + "bundle": [], + "bundle-parents": [ + "et-2/1/2", + "et-2/1/5", + "et-11/1/0" + ], + "description": "SRV_MDVPN CUSTOMER GARR #GARR-BGP-LU-COC-AP1 $GS-01005 | MDVPN CoC - GARR AP1", + "circuits": [ + { + "id": 661246, + "name": "GARR-BGP-LU-COC-AP1", + "type": "MD-VPN (NATIVE)", + "status": "operational" + } + ], + "snmp-index": 794, + "dashboards": [ + "MDVPN_CUSTOMERS", + "NREN" + ], + "dashboard_info": { + "name": "GARR", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GARR", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 1281, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "SINET", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "SINET", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/17", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | SPARE", + "circuits": [], + "snmp-index": 649, + "dashboards": [], + "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": [], + "snmp-index": 779, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "et-4/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | GEN2 LR4 CFP INSTALLED", + "circuits": [], + "snmp-index": 1041, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "ae9.0", + "bundle": [], + "bundle-parents": [ + "et-10/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BUC-FRA-IPTRUNK $GS-00023 | BUC-FRA | TTI REF: WL078541", + "circuits": [ + { + "id": 733131, + "name": "BUC-FRA-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1380, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BUC-FRA", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BUC-FRA", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.dub.ie.geant.net", + "name": "ae10.1213", + "bundle": [], + "bundle-parents": [ + "et-4/1/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER HEANET GEANT #dub-fra-HEANET-RARE-20062 $GS-00689 |", + "circuits": [ + { + "id": 733011, + "name": "DUB-FRA-HEANET-RARE-20062", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 711, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "HEANET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "HEANET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "ae15.205", + "bundle": [], + "bundle-parents": [ + "et-1/0/5" + ], + "description": "SRV_GLOBAL RE_INTERCONNECT CANARIE #FR-CANARIE-vlan205 $GS-00882 | ASN6509 | MANLAN ID: 205", + "circuits": [ + { + "id": 660632, + "name": "FR-CANARIE-VLAN205", + "type": "IP PEERING - R&E", + "status": "operational" + } + ], + "snmp-index": 867, + "dashboards": [ + "RE_PEER" + ], + "dashboard_info": { + "name": "CANARIE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "CANARIE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "et-9/1/5.101", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER MAEEN INTERNET2 #LON-LON-GEANTOpen-MAEEN-INTERNET2-21086 $GS-00728 | ", + "circuits": [ + { + "id": 715039, + "name": "LON-LON-GEANTOPEN-MAEEN-INTERNET2-21086", + "type": "GEANT OPEN CROSS CONNECT", + "status": "operational" + } + ], + "snmp-index": 652, + "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": "mx1.gen.ch.geant.net", + "name": "ge-0/3/4.302", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #GEN-Groove-2-Management | GEN Groove 2 Direct Management", + "circuits": [ + { + "id": 662911, + "name": "GEN-GROOVE-2-MANAGEMENT", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1453, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.bru.be.geant.net", + "name": "ae4.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE $GS-00008 #AMS-BRU-IPTRUNK-100G | AMS-BRU |", + "circuits": [ + { + "id": 727157, + "name": "AMS-BRU-IPTRUNK-100G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 612, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-BRU", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-BRU", + "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": [], + "snmp-index": 534, + "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" + } + ], + "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": "rt1.por.pt.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 511, + "dashboards": [], + "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": [], + "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.lon.uk.geant.net", + "name": "et-9/1/5.1626", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER INTERNET2 SCION #fra-lon-SCION-SCION-INTERNET2-2 $GS-02310 |", + "circuits": [ + { + "id": 732703, + "name": "FRA-LON-SCION-SCION-INTERNET2-2", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1198, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "srx2.ch.office.geant.net", + "name": "ge-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 513, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/2/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 655, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.rig.lv.geant.net", + "name": "xe-0/1/1", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 560, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt2.tar.ee.geant.net", + "name": "ae0", + "bundle": [ + "et-0/0/3" + ], + "bundle-parents": [ + "et-0/0/3" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02353 | TAR-TAR", + "circuits": [], + "snmp-index": 599, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "TAR-TAR", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "TAR-TAR", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "rt2.ams.nl.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED |Oracle 2_2 Patched to NL.AMS.AMS9.S145.T05.H24.X12", + "circuits": [], + "snmp-index": 567, + "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": [], + "snmp-index": 519, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "xe-2/0/0.1006", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER BELNET GRNET #bru-ath-Fed4FIRE-BELNET-GRnet-14015 $GS-00669 |", + "circuits": [ + { + "id": 727516, + "name": "BRU-ATH-FED4FIRE-BELNET-GRNET-14015", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 693, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BELNET", + "interface_type": "LOGICAL" + }, + { + "name": "GRNET", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae10.420", + "bundle": [], + "bundle-parents": [ + "et-3/0/2", + "et-3/0/5", + "et-3/1/2" + ], + "description": "SRV_L2CIRCUIT CUSTOMER DFN NKN SRF22080 #AMS-HAM-DFN-NKN-22080 $GS-02211 |", + "circuits": [ + { + "id": 724887, + "name": "AMS-HAM-DFN-NKN-22080", + "type": "GEANT PLUS", + "status": "operational" + } + ], + "snmp-index": 1003, + "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": "mx2.lis.pt.geant.net", + "name": "xe-1/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 602, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY PUBLIC BIX P_AE18 SRF9946211 | GEANT 10G #1 - VH-NX7710-1 Eth2/14", + "circuits": [], + "snmp-index": 920, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1275, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "SWITCH", + "interface_type": "LOGICAL" + }, + { + "name": "AMS-IX", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "lt-0/0/0.61", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS INFRASTRUCTURE ACCESS GLOBAL #BUC-IAS-RE-PEERING | BGP Peering - IAS Side", + "circuits": [], + "snmp-index": 659, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-2/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ROEDUNET P_AE11 SRF19021 |RoEduNet te-0/6/0/11 | OVERSUB-RISK-MPC3E", + "circuits": [], + "snmp-index": 686, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "ROEDUNET", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ROEDUNET", + "interface_type": "PHYSICAL" + } + ], + "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": [], + "snmp-index": 519, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.par.fr.geant.net", + "name": "xe-4/3/6.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #par-fra-SUPERPOP-QFX-2-GEANT $GS-00079 |", + "circuits": [ + { + "id": 729480, + "name": "FRA-PAR-SUPERPOP-QFX-2-GEANT", + "type": "GEANT - GBS", + "status": "operational" + } + ], + "snmp-index": 1122, + "dashboards": [ + "GBS_10G" + ], + "dashboard_info": { + "name": "GEANT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "GEANT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "xe-5/2/3.375", + "bundle": [], + "bundle-parents": [], + "description": "SRV_L2CIRCUIT CUSTOMER SINGAREN RARE #AMS-LON-SINGAREN-RARE-123034 $GS-02315 | ", + "circuits": [ + { + "id": 727553, + "name": "AMS-LON-SINGAREN-RARE-123034", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1368, + "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": "rt1.ham.de.geant.net", + "name": "et-1/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | AMS-HAM", + "circuits": [], + "snmp-index": 779, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-HAM", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "AMS-HAM", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.poz.pl.geant.net", + "name": "ge-0/2/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 582, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "mx2.zag.hr.geant.net", + "name": "et-5/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER ARNES P_AE10 | ARNES AP2-100G LL1 (ZAG01-GRV1) 1/1/3", + "circuits": [], + "snmp-index": 1015, + "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": "xe-3/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE | Patched to GEANT ODF P5", + "circuits": [], + "snmp-index": 658, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16", + "bundle": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/1/5" + ], + "description": "LAG CUSTOMER REDIRIS SRF21114 $GA-01800 |", + "circuits": [], + "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": "rt2.tar.ee.geant.net", + "name": "xe-0/1/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS P_AE2 | rt2-sw1 (ex3400)", + "circuits": [], + "snmp-index": 563, + "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" + } + ], + "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": "rt1.chi.md.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 589, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.pra.cz.geant.net", + "name": "et-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | PRA-VIE", + "circuits": [], + "snmp-index": 903, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "PRA-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "PRA-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "xe-2/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE3 | MX1-SW1 | (ex3400)", + "circuits": [], + "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.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": 705912, + "name": "AMS-PAR-RENATER-RARE-20070", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1082, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RENATER", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "RENATER", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "ae11.333", + "bundle": [], + "bundle-parents": [ + "et-3/1/0" + ], + "description": "SRV_IAS CUSTOMER ULAKBIM #ULAKBIM-AP1-IAS IASPS $GS-00591 | ASN8517", + "circuits": [ + { + "id": 663080, + "name": "ULAKBIM-AP1-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 732, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "ULAKBIM", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ULAKBIM", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "rt2.chi.md.geant.net", + "name": "xe-0/0/1:3", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 534, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "et-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY CUSTOMER SURF P_AE15 | Connected to SURF Asd001B-JNX-06 et-0/0/1 (E6E7475B)", + "circuits": [], + "snmp-index": 943, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "SURF", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SURF", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-2/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | University of Mostar (SUM) ", + "circuits": [], + "snmp-index": 737, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "lt-11/1/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE ACCESS SRF0000001 ", + "circuits": [], + "snmp-index": 956, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.bud.hu.geant.net", + "name": "xe-5/2/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 935, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "dsc.0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE DISCARD | required for Multicast monitoring", + "circuits": [], + "snmp-index": 575, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/2/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS OPENFLOW SRF9915275 | ams-zag", + "circuits": [], + "snmp-index": 608, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ams.nl.geant.net", + "name": "xe-0/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE | SPLUNK AMS PEER02 link 1 | ", + "circuits": [], + "snmp-index": 632, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 642, + "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" + } + ], + "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.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" + } + ], + "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": "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": [], + "snmp-index": 582, + "dashboards": [ + "NREN", + "RE_CUST" + ], + "dashboard_info": { + "name": "URAN", + "interface_type": "AGGREGATE" + }, + "dashboards_info": [ + { + "name": "URAN", + "interface_type": "AGGREGATE" + } + ], + "port_type": "ACCESS" + }, + { + "router": "mx1.buc.ro.geant.net", + "name": "xe-1/0/1", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "ge-0/3/0", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE ACCESS INFINERA SRF9919787 | AMS01-DTNX10-1 XCM 2", + "circuits": [], + "snmp-index": 668, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae16.931", + "bundle": [], + "bundle-parents": [ + "et-4/0/0", + "et-8/1/2", + "et-8/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" + } + ], + "snmp-index": 1087, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "DFN", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "REDIRIS", + "interface_type": "LOGICAL" + }, + { + "name": "DFN", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": [], + "snmp-index": 702, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt1.rig.lv.geant.net", + "name": "ae10.33", + "bundle": [], + "bundle-parents": [ + "et-0/0/2" + ], + "description": "SRV_IAS CUSTOMER LAT #LAT-AP1-IAS IASPS $GS-00577 | ASN5538", + "circuits": [ + { + "id": 679344, + "name": "LAT-AP1-IAS", + "type": "GEANT PEERING", + "status": "operational" + } + ], + "snmp-index": 612, + "dashboards": [ + "IAS_CUSTOMER", + "NREN" + ], + "dashboard_info": { + "name": "LAT", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "LAT", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "ae6.0", + "bundle": [], + "bundle-parents": [ + "et-10/0/2", + "et-10/0/5" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #BIL-MAD-IPTRUNK-200G $GS-02203 | BIL-MAD 200G |", + "circuits": [ + { + "id": 719646, + "name": "BIL-MAD-IPTRUNK-200G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1134, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BIL-MAD 200G", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "BIL-MAD 200G", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ae14.333", + "bundle": [], + "bundle-parents": [ + "et-3/1/5" + ], + "description": "SRV_IAS CUSTOMER CARNET #CARNET-AP1-IAS IASPS $GS-00559 | ASN2108", + "circuits": [ + { + "id": 730169, + "name": "CARNET-AP1-IAS", + "type": "GEANT PEERING", + "status": "non-monitored" + } + ], + "snmp-index": 835, + "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/0.40", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #DEEPFIELD-IDRAC-PAR-FR | Deepfield iDRAC", + "circuits": [ + { + "id": 661374, + "name": "DEEPFIELD-IDRAC-PAR-FR", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 716, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.gen.ch.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 608, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "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": "qfx.par.fr.geant.net", + "name": "xe-1/0/13", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae4 | PAR-PRD-ESX4 SLOT0 PORT4 VMNIC3", + "circuits": [ + { + "id": 658509, + "name": "730XD-4-SLOT0-PORT4-VMNIC3-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 644, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ath2.gr.geant.net", + "name": "ae0.0", + "bundle": [], + "bundle-parents": [ + "et-0/0/0" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #ATH2-ATH2-IPTRUNK $DS-00099| ATH2-ATH2", + "circuits": [ + { + "id": 734099, + "name": "ATH2-ATH2-IPTRUNK", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 601, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH2-ATH2", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "ATH2-ATH2", + "interface_type": "LOGICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "xe-4/3/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 1066, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.kau.lt.geant.net", + "name": "ae4", + "bundle": [ + "et-0/0/1" + ], + "bundle-parents": [ + "et-0/0/1" + ], + "description": "LAG INFRASTRUCTURE BACKBONE $GA-02021 | KAU-RIG", + "circuits": [], + "snmp-index": 556, + "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": "xe-1/0/47", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_AE31 | MX1.LON2.UK xe-4/0/2", + "circuits": [], + "snmp-index": 687, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 865, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "ae2", + "bundle": [], + "bundle-parents": [], + "description": "LAG INFRASTRUCTURE LAN $GA-01720 | PAR-PRD-ESX2 ESXI Traffic LAG", + "circuits": [], + "snmp-index": 585, + "dashboards": [], + "port_type": "ACCESS" + }, + { + "router": "rt2.the.gr.geant.net", + "name": "xe-0/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 535, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "srx1.am.office.geant.net", + "name": "ge-0/0/11", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 527, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.lis.pt.geant.net", + "name": "ge-0/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 548, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-0/0/12", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae3 | PAR-PRD-ESX3 SLOT0 PORT4 VMNIC3", + "circuits": [ + { + "id": 658434, + "name": "730XD-3-SLOT0-PORT4-VMNIC3-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 529, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "et-5/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | SOF-ZAG", + "circuits": [], + "snmp-index": 1018, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-ZAG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SOF-ZAG", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "et-1/0/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae0 | SOF-ZAG", + "circuits": [], + "snmp-index": 650, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "SOF-ZAG", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "SOF-ZAG", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 798, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.mar.fr.geant.net", + "name": "et-1/1/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE1 | MAR-MIL2 |", + "circuits": [], + "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": "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": [], + "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": "mx1.poz.pl.geant.net", + "name": "ge-0/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 593, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon2.uk.geant.net", + "name": "ge-0/0/0.991", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #LON2-Groove | LON2 Groove G30", + "circuits": [ + { + "id": 707224, + "name": "LON2-GROOVE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 617, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 728913, + "name": "PAR-TAR-SCION-EENET", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1326, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "SCION", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "EENET", + "interface_type": "LOGICAL" + }, + { + "name": "SCION", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.ams.nl.geant.net", + "name": "so-1/2/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 936, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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-01932 | BUC-BUD", + "circuits": [], + "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": "mx1.lon2.uk.geant.net", + "name": "xe-2/2/6.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_10GGBS CUSTOMER GEANT #fra-lon2-SUPERPOP-QFX-2-GEANT $GS00077 |", + "circuits": [ + { + "id": 729418, + "name": "FRA-LON2-SUPERPOP-QFX-2-GEANT", + "type": "GEANT - GBS", + "status": "non-monitored" + } + ], + "snmp-index": 1029, + "dashboards": [ + "GBS_10G" + ], + "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 INFRASTRUCTURE ACCESS A10-DDOS-SCRUBBING P_AE16 | A10 e6 CONTACT: evangelos.spatharas@geant.org IMPLEMENTED: 20170831", + "circuits": [], + "snmp-index": 1278, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-2/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_AE0 | ATH-ATH2 | GRNET CID: GRNET ATH-ATH2 DWDM-1 #CH46", + "circuits": [], + "snmp-index": 630, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "ATH-ATH2", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "xe-1/0/0", + "bundle": [], + "bundle-parents": [], + "description": "PSY SPARE", + "circuits": [], + "snmp-index": 548, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "qfx.par.fr.geant.net", + "name": "xe-1/0/12", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_ae12 | PAR-PRD-ESX4 SLOT4 PORT3 VMNIC6", + "circuits": [ + { + "id": 658472, + "name": "730XD-4-SLOT4-PORT3-VMNIC6-PAR", + "type": "POP LAN LINK", + "status": "non-monitored" + } + ], + "snmp-index": 642, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.mad.es.geant.net", + "name": "lt-0/0/0", + "bundle": [], + "bundle-parents": [], + "description": "TUN INFRASTRUCTURE MDVPN |", + "circuits": [], + "snmp-index": 693, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.ath2.gr.geant.net", + "name": "xe-3/0/7", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 600, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.ham.de.geant.net", + "name": "ae11.3918", + "bundle": [], + "bundle-parents": [ + "et-1/1/5" + ], + "description": "SRV_GCS CUSTOMER NORDUNET MICROSOFT #NORDUNET-FUNET-ExpressRoute-VLAN3918 $GS-02328 | ", + "circuits": [ + { + "id": 731514, + "name": "NORDUNET-FUNET-EXPRESSROUTE-VLAN3918", + "type": "EXPRESS ROUTE", + "status": "non-monitored" + } + ], + "snmp-index": 969, + "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": "xe-1/0/35", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE LAN P_-- | Brik D Data Port 2", + "circuits": [], + "snmp-index": 736, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": [], + "snmp-index": 1568, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx1.lon.uk.geant.net", + "name": "ae10.3250", + "bundle": [], + "bundle-parents": [ + "et-4/1/3", + "et-5/0/2", + "et-9/0/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" + } + ], + "snmp-index": 1165, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "NETHERLIGHT", + "interface_type": "LOGICAL" + }, + { + "name": "JISC", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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" + } + ], + "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.ams.nl.geant.net", + "name": "ae9.0", + "bundle": [], + "bundle-parents": [ + "et-10/0/2", + "et-10/0/5", + "et-10/1/2" + ], + "description": "SRV_GLOBAL INFRASTRUCTURE BACKBONE #AMS-LON-IPTRUNK-300G $GS-00011 | AMS-LON | CORIANT G30 300G", + "circuits": [ + { + "id": 708724, + "name": "AMS-LON-IPTRUNK-300G", + "type": "IP TRUNK", + "status": "operational" + } + ], + "snmp-index": 1501, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "AMS-LON", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "AMS-LON", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx2.ath.gr.geant.net", + "name": "ge-2/3/5", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 677, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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": 705913, + "name": "AMS-PAR-RARE-INTERNET2-RNP-20061", + "type": "GEANT PLUS", + "status": "non-monitored" + } + ], + "snmp-index": 1087, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "RARE", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "INTERNET2", + "interface_type": "LOGICAL" + }, + { + "name": "RARE", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "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": "non-monitored" + } + ], + "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": "srx1.am.office.geant.net", + "name": "ge-0/0/10", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 525, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.sof.bg.geant.net", + "name": "xe-0/0/9", + "bundle": [], + "bundle-parents": [], + "description": "PHY SPARE", + "circuits": [], + "snmp-index": 659, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.buc.ro.geant.net", + "name": "xe-5/0/6", + "bundle": [], + "bundle-parents": [], + "description": "PHY RESERVED | RENAM 10G GBS | 10G-ER Optic to be supplied by RENAM", + "circuits": [], + "snmp-index": 680, + "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" + } + ], + "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.lon2.uk.geant.net", + "name": "ge-0/0/0.50", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE ACCESS #Dashboard-server-lon2-vlan50_ | DBOARD", + "circuits": [ + { + "id": 661562, + "name": "DASHBOARD-SERVER-LON2-VLAN50_", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 691, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "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" + } + ], + "snmp-index": 1183, + "dashboards": [ + "L2_CIRCUIT" + ], + "dashboard_info": { + "name": "JISC", + "interface_type": "LOGICAL" + }, + "dashboards_info": [ + { + "name": "JISC", + "interface_type": "LOGICAL" + }, + { + "name": "NEA3R", + "interface_type": "LOGICAL" + } + ], + "port_type": "SERVICE" + }, + { + "router": "mx1.vie.at.geant.net", + "name": "et-9/0/2", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae8 | BRA-VIE", + "circuits": [], + "snmp-index": 564, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "BRA-VIE", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "BRA-VIE", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + }, + { + "router": "rt1.fra.de.geant.net", + "name": "irb.991", + "bundle": [], + "bundle-parents": [], + "description": "SRV_GLOBAL INFRASTRUCTURE Access #CORIANT-LIBRENMS-ACCESS-FRA-DE | CORIANT LIBRENMS ACCESS", + "circuits": [ + { + "id": 733023, + "name": "CORIANT-LIBRENMS-ACCESS-FRA-DE", + "type": "SERVER LINK", + "status": "non-monitored" + } + ], + "snmp-index": 1229, + "dashboards": [], + "port_type": "UNKNOWN" + }, + { + "router": "mx2.zag.hr.geant.net", + "name": "ge-0/3/5.0", + "bundle": [], + "bundle-parents": [], + "description": "SRV_IAS PRIVATE OPTIMA-TELEKOM #HR-EduZone $GS-00936 | For Eduzone", + "circuits": [ + { + "id": 708280, + "name": "HR-EDUZONE", + "type": "IP PEERING - NON R&E (PRIVATE)", + "status": "operational" + } + ], + "snmp-index": 683, + "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": "rt1.fra.de.geant.net", + "name": "et-4/0/4", + "bundle": [], + "bundle-parents": [], + "description": "PHY INFRASTRUCTURE BACKBONE P_ae5 | FRA-GEN-IPTRUNK", + "circuits": [], + "snmp-index": 914, + "dashboards": [ + "INFRASTRUCTURE_BACKBONE" + ], + "dashboard_info": { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "PHYSICAL" + }, + "dashboards_info": [ + { + "name": "FRA-GEN-IPTRUNK", + "interface_type": "PHYSICAL" + } + ], + "port_type": "UNKNOWN" + } +] \ No newline at end of file diff --git a/test/error_report/data/small-inventory.json b/test/error_report/data/small-inventory.json new file mode 100644 index 0000000000000000000000000000000000000000..ee2350c007595774c4be6a1ea2177afd787e7a98 --- /dev/null +++ b/test/error_report/data/small-inventory.json @@ -0,0 +1,50 @@ +[ + { + "router": "mx1.ams.nl.geant.net", + "name": "ae1", + "bundle": [], + "bundle-parents": [], + "description": "PHY blah blah", + "circuits": [ + { + "id": 12112, + "name": "something", + "type": "SERVICE", + "status": "operational" + } + ], + "snmp-index": 1211 + }, + { + "router": "mx1.fra.de.geant.net", + "name": "ae10", + "bundle": [], + "bundle-parents": [], + "description": "PHY blah blah foo", + "circuits": [ + { + "id": 50028, + "name": "something", + "type": "SERVICE", + "status": "operational" + } + ], + "snmp-index": 1006 + }, + { + "router": "mx1.fra.de.geant.net", + "name": "ae99.1", + "bundle": [], + "bundle-parents": [], + "description": "SRV blah blah bar", + "circuits": [ + { + "id": 50028, + "name": "something", + "type": "SERVICE", + "status": "operational" + } + ], + "snmp-index": 9999 + } +] diff --git a/test/error_report/test_error_report.py b/test/error_report/test_error_report.py new file mode 100644 index 0000000000000000000000000000000000000000..853fb291740fb9f3849b52c226b1f2da4635d22b --- /dev/null +++ b/test/error_report/test_error_report.py @@ -0,0 +1,388 @@ +import json + +import pathlib +from unittest.mock import Mock, patch, call + +import jsonschema +import pytest +from brian_polling_manager.error_report import cli, config +from brian_polling_manager.error_report.cli import ( + ERROR_FIELDS, + INFLUX_TIME_WINDOW_TODAY, + INFLUX_TIME_WINDOW_YESTERDAY, + PROCESSED_ERROR_COUNTERS_SCHEMA, + _filter_and_convert_interfaces, + get_error_points, + get_relevant_interfaces, + interface_errors, + is_excluded_interface, + select_error_fields, +) + +DATA_DIR = pathlib.Path(__file__).parent / "data" + + +@pytest.fixture(autouse=True) +def mock_setup_logging(): + with patch.object(cli, "setup_logging") as mock: + yield mock + + +@pytest.fixture(scope="session") +def full_inventory(): + return json.loads(((DATA_DIR / "full-inventory.json").read_text())) + + +@pytest.fixture(scope="session") +def small_inventory(): + return json.loads(((DATA_DIR / "small-inventory.json").read_text())) + + +@pytest.fixture(params=["full_inventory", "small_inventory"]) +def inventory(request): + return request.getfixturevalue(request.param) + + +@pytest.fixture +def mock_influx_client(): + class FakeInfluxClient: + INFLUX_ERROR_FIELDS = {v.replace("-", "_"): k for k, v in ERROR_FIELDS.items()} + + def __init__(self) -> None: + self.today = [] + self.yesterday = [] + + def __enter__(self): + pass + + def add_point(self, hostname, interface, timestamp, payload): + converted_payload = { + self.INFLUX_ERROR_FIELDS[k]: v for k, v in payload.items() + } + point = ( + ("errors", {"hostname": hostname, "interface_name": interface}), + iter([converted_payload]), + ) + if timestamp == "today": + return self.today.append(point) + if timestamp == "yesterday": + return self.yesterday.append(point) + raise ValueError("'when' argument must be either 'today' or 'yesterday ") + + def query(self, q): + result = Mock() + if INFLUX_TIME_WINDOW_YESTERDAY in q: + result.items.return_value = self.yesterday + else: + result.items.return_value = self.today + return result + + return FakeInfluxClient() + + +@pytest.fixture +def create_error_point(mock_influx_client): + """Fixture for creating fake influx error points. + :param hostname: hostname + :param interface: interface name + :param timestamp: either ``today`` or ``yesterday`` + :param kwargs: one or more error fields with integer value: + ``input_framing_errors``, ``bit_error_seconds``,``errored_blocks_seconds``, + ``input_crc_errors``, ``input_total_errors``,``input_discards``,``input_drops``, + ``output_drops`` + + The created error points will be returned by the mock_influx fixture + """ + + def _create(hostname, interface, timestamp, **fields): + mock_influx_client.add_point(hostname, interface, timestamp, payload=fields) + return {(hostname, interface): fields} + + return _create + + +@pytest.fixture +def mocked_load_interfaces(inventory): + with patch.object(cli, "load_interfaces", return_value=inventory) as mock: + yield mock + + +@pytest.fixture +def get_interface_errors(small_inventory, mock_influx_client): + interfaces = _filter_and_convert_interfaces(small_inventory) + + def _get(**kwargs): + defaults = { + "client": mock_influx_client, + "interface_info": interfaces, + "errors": ERROR_FIELDS, + } + defaults.update(kwargs) + result = interface_errors(**defaults) + jsonschema.validate(result, PROCESSED_ERROR_COUNTERS_SCHEMA) + return result + + return _get + + +def test_validate_config(tmp_path): + config_file = tmp_path / "config.json" + content = { + "email": { + "from": "noreply@geant.org", + "reply-to": "noreply@geant.org", + "to": "some-bogus-email", + "contact": "someone@geant.org / NE team", + }, + "inventory": ["blah"], + "influx": { + "hostname": "hostname", + "database": "dbname", + "measurement": "errors", + "username": "some-username", + "password": "user-password", + }, + "exclude-interfaces": ["SOME DESCRIPTION PART"], + } + config_file.write_text(json.dumps(content)) + assert config.load(config_file) == content + + +def test_get_relevant_interfaces(full_inventory): + with patch.object(cli, "load_interfaces", return_value=full_inventory) as mock: + result = get_relevant_interfaces("some-host") + assert mock.call_args == call("some-host") + assert 0 < len(result) < len(full_inventory) + assert all( + "PHY" in i["description"].upper() + and "SPARE" not in i["description"].upper() + and "NON-OPERATIONAL" not in i["description"].upper() + and "RESERVED" not in i["description"].upper() + and "TEST" not in i["description"].upper() + and "dsc." not in i["name"].lower() + and "fxp" not in i["name"].lower() + for i in result.values() + ) + + +@pytest.mark.parametrize( + "description, exclusions, is_excluded", + [ + ("DESC", [], False), + ("DESC", ["DESC"], True), + ("DESC", ["desc"], True), + ("DESC", ["DESCMORE"], False), + ("DESC", ["MORE", "DESC"], True), + ("", ["DESC"], False), + ], +) +def test_excluded_interface(description, exclusions, is_excluded): + assert is_excluded_interface(description, exclusions) == is_excluded + + +def test_get_error_points(mock_influx_client, create_error_point): + create_error_point("some.rtr", "ifc.0", "today", framing_errors=1, input_drops=2) + create_error_point("some.rtr", "ifc.1", "today", framing_errors=3, output_drops=4) + create_error_point("some.rtr", "ifc.2", "yesterday", framing_errors=3) + assert get_error_points(mock_influx_client, INFLUX_TIME_WINDOW_TODAY) == { + ("some.rtr", "ifc.0"): {"last_input_framing_errors": 1, "last_input_drops": 2}, + ("some.rtr", "ifc.1"): {"last_input_framing_errors": 3, "last_output_drops": 4}, + } + + +def test_select_field_adds_missing_error_count(): + assert select_error_fields({"a": 1}, {"a": "A", "b": "B"}) == {"A": 1, "B": 0} + + +def test_select_error_fields_substitutes_none(): + assert select_error_fields({"a": 1, "b": None}, {"a": "A", "b": "B"}) == { + "A": 1, + "B": 0, + } + + +def test_select_error_fields_skips_other_fields(): + assert select_error_fields({"a": 1, "b": 2}, {"a": "A"}) == { + "A": 1, + } + + +def test_interface_errors_with_new_errors(create_error_point, get_interface_errors): + create_error_point( + "mx1.ams.nl.geant.net", + "ae1", + "today", + framing_errors=1, + bit_error_seconds=2, + errored_blocks_seconds=3, + input_crc_errors=4, + input_total_errors=5, + input_discards=6, + input_drops=7, + output_drops=8, + ) + errors = get_interface_errors() + assert errors == { + "interfaces": [ + { + "router": "mx1.ams.nl.geant.net", + "interface": "ae1", + "description": "PHY blah blah", + "error_counters": { + "framing-errors": 1, + "bit-error-seconds": 2, + "errored-blocks-seconds": 3, + "input-crc-errors": 4, + "input-total-errors": 5, + "input-discards": 6, + "input-drops": 7, + "output-drops": 8, + }, + } + ], + "excluded_interfaces": [], + } + + +def test_interface_errors_with_multiple_interfaces( + create_error_point, get_interface_errors +): + create_error_point("mx1.ams.nl.geant.net", "ae1", "today", framing_errors=1) + create_error_point("mx1.fra.de.geant.net", "ae10", "today", framing_errors=2) + errors = get_interface_errors() + assert errors["interfaces"] == [ + { + "router": "mx1.ams.nl.geant.net", + "interface": "ae1", + "description": "PHY blah blah", + "error_counters": { + "framing-errors": 1, + }, + }, + { + "router": "mx1.fra.de.geant.net", + "interface": "ae10", + "description": "PHY blah blah foo", + "error_counters": { + "framing-errors": 2, + }, + }, + ] + + +def test_logs_message_on_missing_error_counters_for_interface( + create_error_point, get_interface_errors, caplog +): + create_error_point("mx1.ams.nl.geant.net", "ae1", "today", framing_errors=1) + get_interface_errors() + assert "mx1.fra.de.geant.net - ae10 not found in influx data" in caplog.text + + +def test_does_not_check_for_logical_interfaces(get_interface_errors, caplog): + get_interface_errors() + assert "mx1.fra.de.geant.net - ae99.1" not in caplog.text + + +def test_skips_interface_with_0_errors(create_error_point, get_interface_errors): + create_error_point("mx1.ams.nl.geant.net", "ae1", "today") + errors = get_interface_errors() + assert not errors["interfaces"] + + +def test_interface_errors_doesnt_include_0_errors( + create_error_point, get_interface_errors +): + create_error_point( + "mx1.ams.nl.geant.net", "ae1", "today", input_drops=1, framing_errors=0 + ) + errors = get_interface_errors() + assert errors["interfaces"][0] == { + "router": "mx1.ams.nl.geant.net", + "interface": "ae1", + "description": "PHY blah blah", + "error_counters": { + "input-drops": 1, + }, + } + + +def test_increased_error_produces_diff(create_error_point, get_interface_errors): + create_error_point("mx1.ams.nl.geant.net", "ae1", "yesterday", input_drops=1) + + create_error_point("mx1.ams.nl.geant.net", "ae1", "today", input_drops=10) + errors = get_interface_errors() + assert errors["interfaces"][0] == { + "router": "mx1.ams.nl.geant.net", + "interface": "ae1", + "description": "PHY blah blah", + "error_counters": { + "input-drops": 10, + }, + "diff": { + "input-drops": 9, + }, + } + + +def test_unchanged_errors_do_not_show_up_in_diff( + create_error_point, get_interface_errors +): + create_error_point( + "mx1.ams.nl.geant.net", "ae1", "yesterday", input_drops=1, framing_errors=2 + ) + + create_error_point( + "mx1.ams.nl.geant.net", "ae1", "today", input_drops=10, framing_errors=2 + ) + errors = get_interface_errors() + assert errors["interfaces"][0]["diff"] == {"input-drops": 9} + + +def test_skips_interface_when_no_errors_have_changed( + create_error_point, get_interface_errors +): + create_error_point( + "mx1.ams.nl.geant.net", "ae1", "yesterday", input_drops=1, framing_errors=2 + ) + + create_error_point( + "mx1.ams.nl.geant.net", "ae1", "today", input_drops=1, framing_errors=2 + ) + errors = get_interface_errors() + assert not errors["interfaces"] + + +def test_processes_excluded_interface(create_error_point, get_interface_errors): + create_error_point( + "mx1.ams.nl.geant.net", "ae1", "today", input_drops=1, framing_errors=2 + ) + create_error_point( + "mx1.fra.de.geant.net", "ae10", "today", input_drops=3, framing_errors=4 + ) + + errors = get_interface_errors(exclusions=["foo"]) + assert errors["interfaces"] == [ + { + "router": "mx1.ams.nl.geant.net", + "interface": "ae1", + "description": "PHY blah blah", + "error_counters": {"input-drops": 1, "framing-errors": 2}, + } + ] + assert errors["excluded_interfaces"] == [ + { + "router": "mx1.fra.de.geant.net", + "interface": "ae10", + "description": "PHY blah blah foo", + "error_counters": { + "input-drops": 3, + "framing-errors": 4, + "bit-error-seconds": 0, + "errored-blocks-seconds": 0, + "input-crc-errors": 0, + "input-total-errors": 0, + "input-discards": 0, + "output-drops": 0, + }, + } + ]